/* Page bundle: home.css */

:root {
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --home-shadow-chip: 0 10px 20px -16px rgba(85, 52, 27, 0.45), 0 2px 8px -6px rgba(208, 93, 38, 0.3);
  --home-shadow-soft: 0 14px 24px -20px rgba(85, 52, 27, 0.36), 0 4px 10px -8px rgba(208, 93, 38, 0.2);
  --home-shadow-soft-hover: 0 18px 30px -20px rgba(85, 52, 27, 0.44), 0 8px 14px -10px rgba(208, 93, 38, 0.28);
  --home-shadow-card: 0 20px 32px -22px rgba(85, 52, 27, 0.42), 0 8px 14px -10px rgba(208, 93, 38, 0.2);
  --home-shadow-card-hover: 0 24px 36px -20px rgba(85, 52, 27, 0.5), 0 12px 20px -12px rgba(208, 93, 38, 0.3);
  --home-shadow-button: 0 14px 24px -16px rgba(85, 52, 27, 0.5), 0 8px 14px -10px rgba(208, 93, 38, 0.3);
  --home-shadow-button-hover: 0 18px 28px -16px rgba(85, 52, 27, 0.58), 0 12px 20px -12px rgba(208, 93, 38, 0.36);
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-md);
}

.section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.section__title {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: var(--space-sm) var(--space-md);
  z-index: 100;
}

.btn--arrow-animated:hover {
  color: white !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background-color: var(--color-primary);
  color: white;
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover,
.btn--secondary:focus {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.125rem;
}

.btn--sweep-primary {
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding-inline: 1.5rem;
  background-color: var(--color-primary);
  color: white;
  box-shadow: var(--home-shadow-button);
  isolation: isolate;
}

.btn--sweep-primary .btn__label {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  color: white;
  transition: color 0.4s ease;
}

.btn--sweep-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  z-index: 0;
  background-color: var(--color-accent);
  transform: translate3d(100%, 0, 0) skew(28deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.btn--sweep-primary:hover .btn__label,
.btn--sweep-primary:focus .btn__label {
  color: var(--color-primary);
}

.btn--sweep-primary:hover::before,
.btn--sweep-primary:focus::before {
  transform: skew(28deg);
}

.btn--arrow-animated {
  gap: 4px;
  padding: 0.95rem 2.25rem;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-full);
  background-color: white;
  color: var(--color-primary);
  font-weight: 600;
  box-shadow: var(--home-shadow-soft);
  background-clip: padding-box;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn--arrow-animated .btn__text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn--arrow-animated svg {
  position: absolute;
  width: 24px;
  z-index: 1;
  fill: currentColor;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn--arrow-animated .btn__arr-1 {
  right: 16px;
}

.btn--arrow-animated .btn__arr-2 {
  left: -25%;
}

.btn--arrow-animated .btn__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  z-index: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn--arrow-animated.btn--secondary:hover,
.btn--arrow-animated.btn--secondary:focus {
  background-color: transparent;
  color: white;
  border-color: var(--color-primary);
  border-radius: var(--radius-full);
  box-shadow: var(--home-shadow-button-hover);
}

.btn--arrow-animated:hover .btn__arr-1,
.btn--arrow-animated:focus .btn__arr-1 {
  right: -25%;
}

.btn--arrow-animated:hover .btn__arr-2,
.btn--arrow-animated:focus .btn__arr-2 {
  left: 16px;
}

.btn--arrow-animated:hover .btn__text,
.btn--arrow-animated:focus .btn__text {
  transform: translateX(12px);
}

.btn--arrow-animated:hover .btn__circle,
.btn--arrow-animated:focus .btn__circle {
  width: 320px;
  height: 320px;
  opacity: 1;
}

.btn--arrow-animated:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-hero--home {
  padding-top: 130px;
  padding-bottom: var(--space-md);
  background: var(--color-bg);
}

.page-hero__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: rgba(235, 146, 56, 0.1);
  backdrop-filter: blur(8px);
  border: 0.5px solid rgba(208, 93, 38, 0.25);
  color: var(--color-accent-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: var(--home-shadow-chip);
}

.page-hero__badge--mobile {
  display: none;
}

.page-hero--home .page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero--home .page-hero__subtitle {
  font-size: 1.375rem;
  line-height: 1.7;
  color: var(--color-text-light);
  max-width: 760px;
  margin: 0 auto var(--space-2xl);
}

.page-hero--home .page-hero__subtitle strong {
  color: var(--color-primary);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.services .container {
  position: relative;
  z-index: 1;
}

.services .section__header {
  max-width: 780px;
  margin-bottom: var(--space-3xl);
}

.services .section__subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--color-text-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background-color: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-accent-light);
  border-radius: 28px;
  padding: clamp(1.35rem, 2.1vw, 2rem);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--home-shadow-card);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(235, 146, 56, 0.18) 0%, rgba(208, 93, 38, 0.38) 52%, rgba(235, 146, 56, 0.18) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--home-shadow-card-hover);
  border-color: var(--color-accent-dark);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--color-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  padding: 0.65rem;
  stroke-width: 1.7;
}

.service-card__title {
  color: var(--color-primary);
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}

.service-card__description {
  color: var(--color-text-light);
  margin-bottom: 1.35rem;
  font-size: 0.97rem;
  line-height: 1.6;
}

.service-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-card__features li {
  color: var(--color-text);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.45;
}

.service-card__features li::before {
  content: '->';
  color: var(--color-accent-dark);
  opacity: 0.72;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

.service-card:hover .service-card__features li::before {
  opacity: 1;
  transform: translateX(2px);
}

.about {
  background: var(--color-bg);
}

.about .section__header--about {
  max-width: 860px;
  margin-bottom: var(--space-2xl);
}

.about .section__title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  letter-spacing: -0.02em;
}

.about .section__subtitle {
  font-size: 1.16rem;
  line-height: 1.58;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about .value-card {
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border-radius: 24px;
  border: 1px solid var(--color-accent-light);
  text-align: left;
  box-shadow: var(--home-shadow-soft);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.about .value-card:hover {
  border-color: var(--color-accent-dark);
  box-shadow: var(--home-shadow-soft-hover);
  transform: translateY(-3px);
}

.about .value-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  color: var(--color-primary);
  background: transparent;
}

.about .value-card__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about .value-card__title {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.about .value-card__description {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

.about__process {
  background: var(--color-bg-alt);
  border-radius: 28px;
  border: 1px solid var(--color-accent-light);
  padding: clamp(1.4rem, 2.2vw, 2rem);
  box-shadow: var(--home-shadow-card);
}

.process-header {
  margin-bottom: 1.75rem;
}

.process-badge,
.section-badge,
.cta--home .cta-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 20px -14px rgba(208, 93, 38, 0.45), 0 4px 10px -8px rgba(85, 52, 27, 0.4);
}

.process-badge {
  margin-bottom: 0.95rem;
}

.process-title {
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  margin-bottom: 0;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.45rem;
}

.timeline-line {
  width: 2px;
  min-height: 36px;
  flex: 1;
  background: rgba(85, 52, 27, 0.2);
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-content {
  flex: 1;
  padding-bottom: 0.4rem;
}

.timeline-content h4 {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.timeline-content p {
  color: var(--color-text-light);
  font-size: 0.875rem;
  line-height: 1.45;
}

.trust .section__header {
  max-width: 860px;
}

.section-badge {
  margin-bottom: 1rem;
}

.trust .section__title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
}

.trust .section__subtitle {
  font-size: 1.15rem;
  line-height: 1.58;
}

.trust__values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
  margin: var(--space-3xl) 0;
}

.value-card-large {
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border-radius: 22px;
  border: 1px solid var(--color-accent-light);
  box-shadow: var(--home-shadow-soft);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.value-card-large:hover {
  border-color: var(--color-accent-dark);
  box-shadow: var(--home-shadow-soft-hover);
  transform: translateY(-3px);
}

.value-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.value-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card-large h3 {
  color: var(--color-primary);
  font-size: 1.16rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
}

.value-card-large p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

.trust__testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  margin: var(--space-3xl) 0;
}

.testimonial-card {
  background: var(--color-bg-alt);
  border-radius: 22px;
  padding: 1.6rem;
  border: 1px solid var(--color-accent-light);
  box-shadow: var(--home-shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonial-card:hover {
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--home-shadow-soft-hover);
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--color-accent);
  margin-bottom: 0.9rem;
}

.star-icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.testimonial-text {
  color: var(--color-text);
  font-size: 0.97rem;
  line-height: 1.58;
  margin-bottom: 1.3rem;
}

.testimonial-author {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.testimonial-author__meta {
  text-align: right;
}

.author-name {
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
}

.author-title {
  color: var(--color-text-light);
  font-size: 0.78rem;
  line-height: 1.3;
}

.cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
}

.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta__title {
  color: white;
  margin-bottom: var(--space-lg);
}

.cta__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
}

.cta__actions {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.cta--home .cta__title {
  font-size: clamp(2.3rem, 5.3vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.cta--home .cta__description {
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta--home .cta__actions {
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta--home .btn--primary {
  background: white;
  color: #1a1a1a;
  border: 1px solid white;
  border-radius: var(--radius-full);
  padding: 0.95rem 2.25rem;
}

.cta--home .btn--primary:hover,
.cta--home .btn--primary:focus {
  background: transparent;
  color: white;
}

.cta--home .btn--secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  padding: 0.95rem 2.25rem;
}

.cta--home .btn--secondary:hover,
.cta--home .btn--secondary:focus {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.cta--home .cta__trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: white;
}

.cta--home .cta__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta--home .cta__trust span::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 600;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(235, 146, 56, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(235, 146, 56, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(235, 146, 56, 0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

.service-card:hover .service-card__icon {
  animation: float 2s ease-in-out infinite;
}

body.home-page {
  position: relative;
  isolation: isolate;
}

body.home-page #services,
body.home-page #about,
body.home-page #trust,
body.home-page #contact {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

body.home-page .page-hero--home .btn--arrow-animated.btn--secondary:hover,
body.home-page .page-hero--home .btn--arrow-animated.btn--secondary:focus,
body.home-page .page-hero--home .btn--arrow-animated.btn--secondary:focus-visible {
  background: white;
  border-color: currentColor;
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .trust__values,
  .trust__testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    max-width: 480px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section,
  .services.section,
  .about.section,
  .trust.section {
    padding: 48px 0 40px;
  }

  .section__header {
    margin-bottom: 32px;
  }

  .section__title,
  .services .section__title,
  .about .section__title,
  .trust .section__title {
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    background: none;
    color: var(--color-primary);
    -webkit-text-fill-color: currentColor;
  }

  .section__subtitle,
  .services .section__subtitle,
  .about .section__subtitle,
  .trust .section__subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
  }

  .page-hero--home {
    padding-top: calc(max(80px, env(safe-area-inset-top) + 66px));
    padding-bottom: 36px;
  }

  .page-hero--home .page-hero__content {
    max-width: none;
    margin: 0;
    text-align: center;
  }

  .page-hero__badge--desktop {
    display: none;
  }

  .page-hero__badge--mobile {
    display: inline-flex;
  }

  .page-hero--home .page-hero__title {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--color-primary);
  }

  .page-hero--home .page-hero__subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    margin: 0 auto 28px;
    max-width: 36ch;
    line-height: 1.5;
    text-align: center;
    text-wrap: balance;
  }

  .hero__actions {
    flex-direction: column;
    gap: 12px;
    margin: 0;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 56px;
    border-radius: var(--radius-full);
    padding: 16px 24px;
    font-weight: 600;
    font-size: 1rem;
    justify-content: center;
  }

  .page-hero--home .btn--sweep-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    box-shadow: var(--home-shadow-button);
  }

  .page-hero--home .btn--sweep-primary::before {
    display: none;
  }

  .page-hero--home .btn--arrow-animated {
    background: white;
    backdrop-filter: blur(12px);
    border: 0.5px solid rgba(229, 229, 229, 0.7);
    color: var(--color-primary);
    box-shadow: var(--home-shadow-soft);
    gap: 10px;
  }

  .page-hero--home .btn--arrow-animated .btn__arr-1,
  .page-hero--home .btn--arrow-animated .btn__circle {
    display: none;
  }

  .page-hero--home .btn--arrow-animated .btn__arr-2 {
    position: static;
    width: 20px;
    transform: rotate(90deg);
  }

  .page-hero--home .btn--arrow-animated .btn__text,
  .page-hero--home .btn--arrow-animated:hover .btn__text,
  .page-hero--home .btn--arrow-animated:focus .btn__text {
    transform: none;
  }

  .page-hero--home .btn--arrow-animated:hover,
  .page-hero--home .btn--arrow-animated:focus {
    background: white;
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: none;
    box-shadow: var(--home-shadow-soft-hover);
  }

  .services__grid,
  .trust__values {
    grid-template-columns: 1fr;
  }

  .trust__testimonials {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(84%, 1fr);
    gap: 14px;
    margin: var(--space-3xl) 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .trust__testimonials::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .service-card__title {
    white-space: normal;
  }

  .about .value-card:hover {
    transform: none;
  }

  .about .value-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-areas:
      'icon title'
      'icon description';
    column-gap: 0.8rem;
    row-gap: 0.28rem;
    align-items: start;
    padding: 1rem;
    border-radius: 20px;
  }

  .about .value-card__icon {
    grid-area: icon;
    position: relative;
    z-index: 1;
    align-self: center;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 14px;
    border: 1px solid rgba(235, 146, 56, 0.35);
    background: linear-gradient(135deg, rgba(235, 146, 56, 0.16), rgba(208, 93, 38, 0.12));
  }

  .about .value-card__icon svg {
    width: 20px;
    height: 20px;
    display: block;
    stroke-width: 1.8;
  }

  .about .value-card__title {
    grid-area: title;
    font-size: 1.05rem;
    margin: 0;
  }

  .about .value-card__description {
    grid-area: description;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .testimonial-card {
    padding: 1.35rem;
  }

  .cta--home {
    padding: var(--space-3xl) 0;
  }

  .cta--home .cta__title {
    font-size: 2.25rem;
  }

  .cta--home .cta__description {
    font-size: 1rem;
  }

  .cta--home .cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta--home .btn--primary,
  .cta--home .btn--secondary {
    width: 100%;
    max-width: 280px;
  }

  .cta--home .cta__trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: center;
    align-items: start;
    gap: 0.55rem 1rem;
    font-size: 0.82rem;
  }

  .cta--home .cta__trust span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }

  .cta--home .cta__trust span:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .page-hero--home {
    padding-top: 80px;
  }

  .page-hero--home .page-hero__subtitle {
    font-size: 0.95rem;
  }

  .service-card {
    padding: clamp(1rem, 4vw, 1.35rem);
  }

  .value-card-large,
  .testimonial-card,
  .about__process {
    padding: 1.15rem;
  }

  .cta--home {
    padding: var(--space-2xl) 0;
  }

  .cta--home .cta__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .cta--home .cta__description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .cta--home .cta__trust {
    font-size: 1rem;
    gap: 0.45rem 0.75rem;
  }
}
