*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body, button, input, textarea, select, option { font-family: 'Urbanist', sans-serif; color: #151515; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; cursor: pointer; }
img { display: block; }
.container { max-width: 1440px; margin: 0 auto; }

/* ===== HERO ===== */
.hero {
  background: transparent;
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  gap: 16px;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
}
.hero__nav {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 28px 40px;
}
.hero__logo { display: block; height: 56px; width: auto; flex-shrink: 0; }
.hero__menu {
  display: flex; gap: 45px; list-style: none;
}
.hero__menu a {
  color: #fff; font-weight: 600; font-size: 17.57px;
  line-height: normal;
}
.hero__menu a.active,
.hero__menu a[aria-current="page"] {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.hero__menu a:hover { opacity: 0.85; }
.hero__signup {
  background: #fff; color: #ff880b; font-family: 'Urbanist', sans-serif;
  font-weight: 500; font-size: 16px; padding: 16px 36px;
  border-radius: 12px; border: none; cursor: pointer;
  letter-spacing: -0.48px; transition: opacity 0.2s;
}
.hero__signup:hover { opacity: 0.9; }
.home-page .hero__nav {
  justify-content: flex-start;
}
.home-page .hero__menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hero__content {
  position: relative; z-index: 5;
  text-align: center; color: #fff;
  padding: clamp(8px, 1.5vh, 16px) 40px 0;
  max-width: 100%; margin: 0 auto;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 16px;
  font-size: 39.8px; font-weight: 400; letter-spacing: -0.4px;
  line-height: 1.4; margin-bottom: 8px;
}
.hero__badge-icon { width: 51px; height: 58px; }
.hero__title {
  font-size: 80px; font-weight: 500; line-height: 1.1;
  letter-spacing: -2.88px; margin-top: 0; margin-bottom: 8px;
}
.hero__title_first {
    letter-spacing: 0px; margin: 0px 1px 0px 1px;
}
.hero__subtitle {
  font-size: 22px; font-weight: 400; line-height: 26.4px;
  letter-spacing: 0.36px; max-width: 660px; margin: 0 auto;
  opacity: 0.95;
}
.hero__cards {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; gap: 17px;
  max-width: 791px; margin: auto auto clamp(20px, 3vh, 40px);
  padding-bottom: 0;
}
.hero__card {
  display: flex; gap: 20px; align-items: center;
}
.hero__card-img {
  width: 163px; height: 203px; border-radius: 25px;
  overflow: hidden; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
}
.hero__card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.hero__card-img--gygs {
  border: none; background: #fff; height: 214px;
}
.hero__card-img--gygs img { width: 100%; height: 100%; object-fit: cover; object-position: 85% 48%; transform: scale(1.80) !important; transform-origin: 85% 57%; display: block; }
.hero__card-body {
  flex: 1; padding: 12px 21px;
  border-radius: 25px; min-height: 203px;
  display: flex; flex-direction: column; justify-content: center; gap: 15px;
  background: rgba(80, 80, 80, 0.37);
  overflow: hidden;
}
.hero__card--talent .hero__card-body { background: rgba(80, 80, 80, 0.37); }
.hero__card-body h3 {
  font-size: 40px; font-weight: 500; color: #fff;
  line-height: 1.1; letter-spacing: -1.6px;
}
.hero__card-body p {
  font-size: 21.6px; font-weight: 400; color: #fff;
  line-height: 26.4px; letter-spacing: 0.36px;
  max-width: 538px;
}
.hero__card-cta {
  align-self: flex-end;
  background: #ff880b; color: #fff; border: none;
  padding: 12px 24px; border-radius: 47px;
  font-size: 20px; font-weight: 400; cursor: pointer;
  font-family: 'Urbanist', sans-serif;
}

@media (max-height: 900px) and (min-width: 769px) {
  .hero__nav {
    padding: 20px 32px;
  }

  .hero__content {
    padding-top: 8px;
  }

  .hero__badge {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .hero__badge-icon {
    width: 42px;
    height: 48px;
  }

  .hero__title {
    font-size: 60px;
    line-height: 1.02;
    margin-bottom: 6px;
  }

  .hero__subtitle {
    font-size: 18px;
    line-height: 22px;
    max-width: 520px;
  }

  .hero__cards {
    gap: 12px;
    margin-bottom: 20px;
  }

  .hero__card-img {
    width: 148px;
    height: 184px;
  }

  .hero__card-img--gygs {
    height: 192px;
  }

  .hero__card-body {
    min-height: 184px;
    padding: 10px 18px;
    gap: 10px;
  }

  .hero__card-body h3 {
    font-size: 32px;
  }

  .hero__card-body p {
    font-size: 18px;
    line-height: 22px;
  }

  .hero__card-cta {
    padding: 10px 20px;
    font-size: 17px;
  }
}

/* ===== TRUSTED ===== */
.trusted {
  padding: 40px 0 16px;
  text-align: center;
  overflow: hidden;
}
.trusted__title { font-size: 15px; color: #6b7280; margin-bottom: 20px; }
.trusted__marquee {
  width: 100%;
  overflow: hidden;
  padding: 6px 0;
}
.trusted__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: trusted-marquee 34s linear infinite;
  will-change: transform;
}
.trusted__row {
  display: flex;
  flex: none;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  padding: 0 24px;
  min-height: 76px;
  white-space: nowrap;
}
.trusted__row img {
  flex: none;
  display: block;
  height: auto;
  width: auto;
  max-width: 200px;
  max-height: 58px;
  object-fit: contain;
  object-position: center;
}

@keyframes trusted-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trusted__track {
    animation: none;
  }
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 80px;
  display: flex; flex-direction: column; gap: 64px;
}
.about__top { display: flex; justify-content: space-between; align-items: flex-end; }
.about__left { max-width: 550px; }
.about__label {
  font-size: 16px; font-weight: 700; color: #ff880b;
  text-transform: uppercase; letter-spacing: 2.56px;
  margin-bottom: 15px;
}
.about__heading {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 56px; font-weight: 500; color: #272727;
  line-height: 0.95; letter-spacing: -1.12px;
}
.about__heading-line {
  display: block;
}
.about__heading-line--highlight {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px 7px;
  border-radius: 6px;
  background: #faf0e4;
  color: #ff880b;
}
.about__right { max-width: 510px; }
.about__right p {
  font-size: 20px; font-weight: 400; color: #6b7280;
  line-height: 30px; letter-spacing: 0.5px;
}
.about__divider { width: 100%; height: 1px; background: #e5e7eb; }
.about__stats { display: flex; align-items: center; justify-content: space-between; }
.about__stat { display: flex; align-items: center; gap: 20px; }
.about__stat-value {
  font-family: 'Urbanist', sans-serif; font-weight: 500;
  font-size: 120px; color: #272727; letter-spacing: -4.8px; line-height: 1;
}
.about__stat-label {
  font-size: 18px; font-weight: 500; color: #6b7280;
  line-height: 26px; letter-spacing: 0.45px; width: 114px;
}
.about__stat-divider { width: 1px; height: 47px; background: #e5e7eb; }

/* ===== PROBLEM ===== */
.problem {
  background: #faf0e4; padding: 120px 28px 140px;
  display: flex; flex-direction: column; gap: 34px;
  position: relative; overflow: hidden;
  min-height: 100vh;
  justify-content: center;
}
.problem > .subtitle-tag,
.problem__headline,
.problem__author {
  width: 100%;
  position: relative;
  z-index: 1;
}
.problem > .subtitle-tag {
  display: flex;
  justify-content: flex-start;
}
.problem__headline {
  width: 100%;
  padding-right: 0;
}
.problem__quote-graphic {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  height: 100%;
  width: auto;
  aspect-ratio: 579 / 462;
  display: block;
  pointer-events: none;
}
.subtitle-tag {
  display: inline-flex; align-items: center; gap: 16px;
}
.subtitle-dot {
  width: 14px; height: 6px; background: #ff880b;
  border-radius: 2px; flex-shrink: 0;
}
.subtitle-text {
  font-size: 18px; font-weight: 600;
  color: #151515; line-height: 20px;
}
.subtitle-text--regular {
  border-radius: 13302.241px;
  background: linear-gradient(238deg, #FF880B -44.8%, #B0B0B0 128.7%);
  display: flex;
  padding: 0 22px;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 37.25px;
}
.problem__title {
  margin: 0;
  width: fit-content;
  max-width: none;
  display: flex; flex-direction: column;
  align-items: flex-start;
  text-align: left;
  font-size: clamp(100px, 13vw, 200px); font-weight: 700; color: #beb4a8;
  letter-spacing: -0.065em; line-height: 0.94;
  position: relative;
  z-index: 1;
  margin-left: 0;
  margin-right: auto;
}
.problem__title-line { display: block; white-space: nowrap; }
.problem__title-muted { color: #beb4a8; }
.problem__title .hl { color: #ff880b; }
.problem__author {
  display: grid; grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px; align-items: center;
}
.problem__author-info {
  display: flex; align-items: center; gap: 14px;
  width: auto; flex-shrink: 0;
}
.problem__author-info > div:last-child {
  align-self: flex-start;
}
.problem__avatar {
  width: 76px; height: 76px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
}
.problem__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; color: transparent; }
.problem__author-name {
  font-weight: 500;
  font-size: 27px; color: #131313; letter-spacing: -0.04em; line-height: 1.1;
}
.problem__author-role {
  font-weight: 500;
  font-size: 24px; color: #ff880b; letter-spacing: -0.04em; line-height: 1.15;
}
.problem__quote {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 740px;
  padding-top: 2px;
}
.problem__quote-text {
  margin: 0;
  font-size: 18px; font-weight: 400; color: #131313;
  line-height: 1.28; max-width: 740px;
}
.problem__quote-sub {
  margin: 0;
  font-size: 18px; font-weight: 400; color: #000;
  line-height: 1.28; letter-spacing: 0;
}
.problem__quote-sub .hl { color: #ff880b; font-weight: 600; }

/* ===== SHIFT ===== */
.shift {
  width: 100%;
  margin: 20px 0 0;
  background: #f7f4ef;
  border-radius: 0;
  padding: 34px 28px 22px;
  text-align: center;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}
.shift__content {
  max-width: 930px;
  margin: 0 auto;
  padding-top: 0;
}
.shift__subtitle {
  justify-content: center;
  margin-bottom: 18px;
}
.shift__heading-italic {
  margin: 0 0 18px;
  font-size: 58px;
  font-weight: 400;
  font-style: normal;
  color: #1e112e;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.shift__heading {
  margin: 0 0 18px;
  font-size: 66px;
  font-weight: 600;
  color: #1e112e;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.shift__heading .hl {
  color: #ff880b;
  background: none;
  padding: 0;
}
.shift__heading .ul {
  color: #ff880b;
  text-decoration: none;
}
.shift__tagline {
  max-width: 820px;
  margin: 0 auto 6px;
  font-size: 18px;
  color: rgba(21, 21, 21, 0.68);
  line-height: 1.45;
}
.shift__map {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  height: 340px;
  position: relative;
  overflow: hidden;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shift__map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
}

/* ===== SOLUTION ===== */
.solution {
  padding: 80px 72px;
  display: flex; flex-direction: column; gap: 64px;
}
.solution__header { display: flex; flex-direction: column; gap: 32px; }
.solution__text {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 100px;
}
.solution__title {
  font-size: 64px; font-weight: 400; color: #151515;
  line-height: 64px; letter-spacing: -1.92px; max-width: 585px;
}
.solution__desc {
  font-size: 24px; font-weight: 400; color: rgba(0, 0, 0, 0.7);
  line-height: 26px; max-width: 510px; letter-spacing: 0.5px;
}
.solution__cards { display: flex; gap: 24px; }
.solution__card {
  flex: 1; height: 519px; border-radius: 8px;
  overflow: hidden; padding: 40px; position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
}
.solution__card--orange { background: #ff880b; color: #fff; }
.solution__card--cream { background: #faf0e4; color: #151515; }
.solution__card-label {
  font-size: 24px; font-weight: 500; letter-spacing: -0.96px;
  text-transform: uppercase; line-height: 24px;
}
.solution__card--cream .solution__card-label { color: rgba(0,0,0,0.6); }
.solution__card-title {
  font-size: 48px; font-weight: 400; line-height: 52px;
  letter-spacing: -1.44px; margin-top: 56px;
}
.solution__card--cream .solution__card-title { color: #313131; }
.solution__card-desc {
  font-size: 20px; font-weight: 400; line-height: 28px;
  letter-spacing: -0.2px; margin-top: auto; width: 100%; max-width: none;
}
.solution__card--orange .solution__card-vector {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  opacity: 1;
  pointer-events: none;
}

/* ===== FEATURES ===== */
.features {
  padding: 0 72px 80px;
  display: flex; flex-direction: column; gap: 52px;
}
.features__title {
  font-size: 52px; font-weight: 500; color: #151515;
  line-height: 64.2px; letter-spacing: -0.51px; max-width: 576px;
}
.features__list { display: flex; gap: 23px; }
.features__item { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.features__icon {
  width: 48px; height: 48px; background: #ff880b;
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; overflow: hidden;
  padding: 12px;
}
.features__icon img { width: 24px; height: 24px; }
.features__item h4 {
  font-family: 'Urbanist', sans-serif; font-size: 20px;
  font-weight: 400; color: #151515; line-height: 28px; letter-spacing: -0.2px;
}
.features__item p {
  font-size: 18px; font-weight: 400; color: rgba(0,0,0,0.6);
  line-height: 20px; letter-spacing: 0.36px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 80px 40px; text-align: center;
  border-radius: 40px; background: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 47px;
  overflow: hidden;
}
.how-it-works__header {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.how-it-works__title {
  font-size: 52px; font-weight: 500; color: #000;
  line-height: 1.1; letter-spacing: -1.56px; max-width: 638px;
}
.how-it-works__desc {
  font-size: 18px; font-weight: 500; color: #000;
  opacity: 0.5; line-height: 1.1; letter-spacing: 0.18px; max-width: 714px;
}
.how-it-works__hint {
  font-size: 18px; font-weight: 500; color: #000;
  line-height: 1.1; letter-spacing: 0.18px;
}
.how-it-works__hint strong { color: #ff880b; font-weight: 700; }
.how-it-works__steps {
  display: flex; gap: 45px; max-width: 1317px; width: 100%;
}
.step-card {
  flex: 1; height: 486px; border-radius: 25px;
  overflow: hidden; position: relative; cursor: default;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.step-card__inner {
  width: 100%; height: 100%; position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  will-change: transform;
}
.step-card.is-flipped .step-card__inner { transform: rotateY(180deg); }
.step-card__front, .step-card__back {
  position: absolute; inset: 0; border-radius: 25px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.step-card__front { background: #faf0e4; transform: rotateY(0deg); }
.step-card__back { transform: rotateY(180deg); }
.step-card__back { background: #ff880b; }
.step-card__number {
  font-size: 792px; font-weight: 900; line-height: 1.1;
  position: absolute; left: 50%; top: -133px;
  transform: translateX(-30%);
  pointer-events: none; z-index: 0;
  letter-spacing: 13.2px;
}
.step-card__front .step-card__number { color: rgba(255, 136, 11, 0.10); }
.step-card__back .step-card__number { color: rgba(255, 255, 255, 0.15); }
.step-card__badge {
  display: inline-flex; padding: 11px 17px; border-radius: 28px;
  font-size: 21.6px; font-weight: 400; letter-spacing: 0.36px;
  z-index: 2; align-self: flex-start; line-height: 1.1;
}
.step-card__front .step-card__badge { background: #fff; color: #ff880b; }
.step-card__back .step-card__badge { background: #fff; color: #9B9B9B; }
.step-card__label {
  position: absolute; bottom: 180px; left: -5px;
  font-size: 120px; font-weight: 900; line-height: 0.8;
  letter-spacing: 1.29px; z-index: 1;
}
.step-card__front .step-card__label {
  color: rgba(255, 136, 11, 0.13);
  position: absolute;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}
.step-card__back .step-card__label {
  color: rgba(255, 255, 255, 0.20);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}
.step-card__text {
  z-index: 2; text-align: left; margin-top: auto;
  display: flex; flex-direction: column; gap: 25px;
  max-width: 366px;
}
.step-card__front .step-card__text {
  border-radius: 16px;
  padding: 14px 12px;
  margin: 0 -12px -12px;
}
.step-card__text h3 { font-size: 40px; font-weight: 600; letter-spacing: 0.36px; line-height: 1.1; }
.step-card__text p { font-size: 18px; font-weight: 500; line-height: 1.1; }
.step-card__front .step-card__text h3 { color: #815E39; }
.step-card__front .step-card__text p { color: #5c3c20; }
.step-card__back .step-card__text h3 { color: #fff; }
.step-card__back .step-card__text p { color: #fff; }

@media (hover: none), (pointer: coarse) {
  .step-card__front,
  .step-card__back {
    transition: opacity 0.6s ease;
  }

  .step-card__front {
    opacity: 1;
  }

  .step-card__back {
    opacity: 0;
  }

  .step-card.is-flipped .step-card__front {
    opacity: 0;
  }

  .step-card.is-flipped .step-card__back {
    opacity: 1;
  }
}
.how-it-works__buttons { display: flex; gap: 12px; }
.how-it-works__btn-group { display: flex; align-items: center; }
.how-it-works__btn {
  padding: 18px 24px; border-radius: 47px; border: none;
  font-size: 16px; font-weight: 400; cursor: pointer;
  font-family: 'Urbanist', sans-serif;
}
.how-it-works__btn-icon {
  padding: 12px; border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.how-it-works__btn--primary { background: #ff880b; color: #fff; }
.how-it-works__btn-icon--primary { background: #ff880b; }
.how-it-works__btn--secondary { background: #371901; color: #fff; }
.how-it-works__btn-icon--secondary { background: #371901; }

/* ===== WHY CHOOSE ===== */
.why-choose {
  padding: 72px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 72px;
}
.why-choose__header {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  max-width: 517px;
}
.why-choose__title {
  font-size: 56px; font-weight: 400; color: #0c0e12;
  line-height: 1.1; letter-spacing: -1.68px;
}
.why-choose__desc {
  font-size: 20px; font-weight: 400; color: #0c0e12;
  line-height: 1.4; letter-spacing: -0.2px; opacity: 0.64;
}
.why-choose__grid {
  display: grid; grid-template-columns: 1fr 2fr 1fr;
  gap: 28px; align-items: center;
  max-width: 1295px; width: 100%;
}
.why-choose__col { display: flex; flex-direction: column; gap: 40px; text-align: left; }
.why-choose__col--left { text-align: right; }
.why-choose__col--left .why-choose__item { align-items: flex-end; }
.why-choose__phone {
  width: 100%; height: 560px; background: #f8f8f8;
  border-radius: 20px; overflow: hidden; flex-shrink: 0;
  position: relative;
}
.why-choose__phone img {
  position: absolute; width: 100%; height: 100%; object-fit: cover;
  top: 0; left: 0;
}
.why-choose__item { display: flex; flex-direction: column; gap: 12px; }
.why-choose__item-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 4px rgba(219,225,255,0.25), inset 0 -2px 8px rgba(219,225,255,0.54);
  position: relative;
}
.why-choose__item-icon img { width: 24px; height: 24px; }
.why-choose__item h4 {
  font-size: 20px; font-weight: 500; color: #0c0e12;
  line-height: 1.2; letter-spacing: -0.2px;
}
.why-choose__item p {
  font-size: 16px; font-weight: 400; color: #0c0e12;
  line-height: 1.5; opacity: 0.64;
}

/* ===== CAPABILITIES ===== */
.capabilities {
  padding: 100px 30px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.capabilities__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1140px; width: 100%; text-align: left;
}
.capabilities__title {
  font-size: 54px; font-weight: 500; color: #1e112e;
  line-height: 1.2; max-width: 610px;
}
.capabilities__desc {
  font-size: 18px; font-weight: 500; color: #867a96;
  line-height: 1.6; max-width: 440px;
}
.capabilities__grid {
  display: flex; gap: 24px; max-width: 1140px; width: 100%;
}
.capability-card {
  flex: 1; background: #f9f9f9; border-radius: 20px;
  padding: 30px 40px; display: flex; flex-direction: column; gap: 16px;
  text-align: left; overflow: hidden;
}
.capability-card__icon {
  width: 50px; height: 50px; background: #fff;
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 20px 40px rgba(89,57,131,0.1);
  overflow: hidden; flex-shrink: 0;
}
.capability-card__icon img { width: 24px; height: 24px; }
.capability-card h4 { font-size: 24px; font-weight: 500; color: #1e112e; line-height: 1.2; }
.capability-card p { font-size: 16px; font-weight: 500; color: #867a96; line-height: 1.6; }

/* ===== COMPARISON ===== */
.comparison {
  background: #faf0e4; padding: 34px 24px 58px;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.comparison__header {
  text-align: center; max-width: 760px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.comparison__title {
  margin: 0;
  font-size: 58px; font-weight: 400; color: #1e112e; line-height: 0.98;
  letter-spacing: -0.04em;
}
.comparison__desc {
  margin: 0;
  max-width: 690px;
  font-size: 18px; font-weight: 400; color: #5f5651; line-height: 1.45;
}
.comparison__table {
  width: min(986px, 100%);
  display: grid;
  grid-template-columns: 150px 247px 208px 357px;
  gap: 8px;
  align-items: start;
  --comparison-row-heights: 56px 56px 56px 56px 92px 56px 56px 56px;
}
.comparison__features {
  margin-top: 62px;
  padding: 6px 8px 0 4px;
  display: grid;
  grid-template-rows: var(--comparison-row-heights);
  align-self: stretch;
}
.comparison__feature {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e7ddcf;
  padding-right: 8px;
  color: #272321;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.15;
}
.comparison__feature:last-child { border-bottom: none; }
.comparison__column { display: grid; grid-template-rows: auto 1fr; gap: 8px; }
.comparison__column-header {
  min-height: 54px;
  background: #fff; border-radius: 22px; padding: 10px 24px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 24px; font-weight: 400; color: #2c2522;
}
.comparison__column--gygler .comparison__column-header { background: #ff880b; color: #fff; }
.comparison__column-body {
  background: #fff; border: 1px solid #fff;
  border-radius: 22px; padding: 10px 14px;
}
.comparison__column--gygler .comparison__column-body { background: #ff880b; border-color: transparent; }
.comparison__column-body .features-list {
  display: grid;
  grid-template-rows: var(--comparison-row-heights);
  gap: 0;
  padding: 2px 0;
}
.comparison__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 15px;
  font-weight: 400;
  color: #62605e;
  line-height: 1.2;
}
.comparison__column--gygler .comparison__row { color: #fff; }
.comparison__row:last-child { border-bottom: none; }
.comparison__copy { display: block; }
.comparison__column--gygler .comparison__row { border-bottom-color: rgba(255,255,255,0.24); }
.comparison__column-body hr { display: none; }
.comparison__icon {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 1px;
}

/* ===== SERVING ===== */
.serving {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding: 56px 36px 40px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: #d6b483;
  background:
    radial-gradient(circle at 13% 100%, rgba(255, 78, 16, 0.88) 0%, rgba(255, 78, 16, 0) 38%),
    radial-gradient(circle at 100% 100%, rgba(255, 199, 46, 0.8) 0%, rgba(255, 199, 46, 0) 42%),
    linear-gradient(180deg, rgba(63, 41, 9, 0.14) 0%, rgba(63, 41, 9, 0.18) 35%, rgba(147, 77, 0, 0.2) 62%, rgba(255, 133, 10, 0.48) 100%),
    url("../images/home-session-serving.png");
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto, 100% 100%;
}
.serving__inner {
  width: min(1340px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
  position: relative;
  z-index: 1;
}
.serving__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: min(100%, 1120px);
  text-align: center;
  color: #fff;
}
.serving__title {
  margin: 0;
  font-size: 112px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.serving__desc {
  margin: 0;
  max-width: 980px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.38;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
.serving__partners {
  display: block;
  width: min(100%, 680px);
  height: auto;
}

/* ===== CTA ===== */
.cta { padding: 32px 80px; display: flex; justify-content: center; }
.cta__inner {
  width: min(1280px, 100%);
  position: relative;
  padding-top: 110px;
}
.cta__box {
  position: relative;
  min-height: 392px;
  padding: 64px 48px 78px;
  border-radius: 24px;
  overflow: visible;
  background: linear-gradient(90deg, #ff8a0c 0%, #cb6a06 62%, #b45a03 100%);
}
.cta__box::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 400px;
  height: 100%;
  border-radius: 50%;
  background: url(../images/g-logo-3d.png) no-repeat center / contain;
  opacity: 0.14;
  pointer-events: none;
}
.cta__woman {
  position: absolute;
  right: -40px;
  bottom: 0px;
  width: 42%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}
.cta__woman img {
  width: 85%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}
.cta__content {
  position: relative;
  max-width: 560px;
  color: #fff;
  display: flex; flex-direction: column; gap: 24px; z-index: 3;
}
.cta__label {
  display: inline-flex; padding: 0;
  border-radius: 32px;
  font-size: 16px; font-weight: 500; color: #fff;
  letter-spacing: 0.2px; backdrop-filter: blur(54px);
  align-self: flex-start;
}
.cta__title {
  font-size: 62px;
  font-weight: 400;
  color: #fff;
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 540px;
}
.cta__desc {
  max-width: 620px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.45;
}
.cta__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cta__btn {
  background: rgba(255,255,255,0.21); color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 47px; padding: 5px 5px 5px 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 400; cursor: pointer;
  font-family: 'Urbanist', sans-serif;
}
.cta__btn-arrow {
  width: 41px; height: 41px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cta__btn-arrow img { width: 100%; height: 100%; }

/* ===== FOOTER ===== */
:root {
  --footer-text: #201f1d;
  --footer-white: #ffffff;
  --footer-cream: #f6eadb;
  --footer-orange: #ff880b;
  --footer-orange-deep: #e46811;
  --footer-shadow-soft: 0 12px 28px rgba(112, 67, 20, 0.08);
  --footer-transition: 220ms ease;
}

.footer {
  margin: 16px 0 0;
  font-family: 'Urbanist', sans-serif;
}

.footer__panel {
  border-radius: 28px 28px 0 0;
  background: var(--footer-cream);
  border: 1px solid rgba(149, 119, 80, 0.16);
  box-shadow: var(--footer-shadow-soft);
  padding: clamp(24px, 3vw, 32px) clamp(18px, 3vw, 42px);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.footer__logo {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  width: fit-content;
  transition: transform var(--footer-transition), opacity var(--footer-transition);
}

.footer__logo:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer__logo img {
  width: clamp(132px, 15vw, 168px);
  height: auto;
}

.footer__primary {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  flex-wrap: nowrap;
  gap: clamp(28px, 3vw, 38px);
}

.footer__primary a {
  color: #171315;
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: color var(--footer-transition), transform var(--footer-transition);
}

.footer__primary a:hover {
  color: var(--footer-orange-deep);
  transform: translateY(-1px);
}

.footer__bottom {
  margin-top: clamp(18px, 2vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  text-align: center;
}

.footer__bottom p {
  margin: 0;
  color: #85776d;
  font-size: 0.76rem;
  line-height: 1.5;
  white-space: nowrap;
}

.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer__legal a {
  color: #85776d;
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--footer-transition);
}

.footer__legal a:hover {
  color: var(--footer-orange-deep);
}

/* ===== HAMBURGER (hidden on desktop) ===== */
.hero__hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px; z-index: 20;
}
.hero__hamburger span {
  display: block; width: 28px; height: 3px; background: #fff;
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-open .hero__hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .hero__hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hero__hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== FLUID DESKTOP (1025px - 1765px) ===== */
@media (min-width: 1025px) and (max-width: 1765px) {
  .problem__title {
    font-size: clamp(108px, 10vw, 176px);
  }
}

/* ===== TABLET (769px - 1024px) ===== */
@media (max-width: 1024px) {
  /* Hero */
  .hero { min-height: 100dvh; }
  .hero__nav { padding: 24px 30px; }
  .hero__menu { gap: 24px; }
  .hero__menu a { font-size: 15px; }
  .hero__signup { padding: 12px 24px; font-size: 14px; }
  .hero__content { padding: 32px 30px 0; }
  .hero__badge { font-size: 28px; }
  .hero__badge-icon { width: 40px; height: 45px; }
  .hero__title { font-size: 52px; }
  .hero__subtitle { font-size: 18px; line-height: 24px; }
  .hero__cards { max-width: 650px; }
  .hero__card-body h3 { font-size: 30px; }
  .hero__card-body p { font-size: 18px; }

  /* Trusted */
  .trusted__row { gap: 50px; padding: 0 20px; }

  /* About */
  .about { padding: 60px 40px; gap: 40px; }
  .about__top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .about__heading { font-size: 42px; }
  .about__right { max-width: 100%; }
  .about__stats { flex-wrap: wrap; gap: 24px; }
  .about__stat-value { font-size: 80px; }

  /* Problem */
  .problem { padding: 72px 30px 80px; }
  .problem__headline { padding-right: clamp(120px, 16vw, 190px); }
  .problem__quote-graphic { right: 0; }
  .problem__title { width: 100%; max-width: 100%; font-size: clamp(68px, 7.8vw, 80px); }
  .problem__author { grid-template-columns: 260px minmax(0, 1fr); gap: 28px; }

  /* Shift */
  .shift {
    padding: 32px 24px 18px;
    border-radius: 0;
  }
  .shift__heading-italic { font-size: 48px; line-height: 1.04; }
  .shift__heading { font-size: 54px; line-height: 1; }
  .shift__tagline { font-size: 17px; }
  .shift__map { height: 290px; max-width: none; }

  /* Solution */
  .solution { padding: 60px 40px; }
  .solution__text { flex-direction: column; gap: 24px; align-items: flex-start; }
  .solution__title { font-size: 48px; line-height: 52px; }
  .solution__cards { flex-direction: column; }
  .solution__card { height: auto; min-height: 350px; }

  /* Features */
  .features { padding: 0 40px 60px; }
  .features__title { font-size: 38px; line-height: 48px; }
  .features__list { flex-wrap: wrap; }
  .features__item { flex: 1 1 calc(50% - 12px); min-width: 250px; }

  /* How it works */
  .how-it-works { padding: 60px 30px; }
  .how-it-works__title { font-size: 40px; }
  .how-it-works__steps { flex-direction: column; gap: 24px; }
  .step-card { flex: none; height: 400px; }

  /* Why choose */
  .why-choose { padding: 48px 30px; gap: 48px; }
  .why-choose__title { font-size: 42px; }
  .why-choose__grid { flex-direction: column; gap: 40px; }
  .why-choose__col { width: 100%; }
  .why-choose__col--left { text-align: left; }
  .why-choose__col--left .why-choose__item { align-items: flex-start; }
  .why-choose__phone { width: 100%; max-width: 500px; height: 400px; margin: 0 auto; }

  /* Capabilities */
  .capabilities { padding: 60px 30px; }
  .capabilities__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .capabilities__title { font-size: 40px; }
  .capabilities__grid { flex-wrap: wrap; }
  .capability-card { flex: 1 1 calc(50% - 12px); min-width: 280px; }

  /* Comparison */
  .comparison { padding: 25px 20px; }
  .comparison__title { font-size: 40px; }
  .comparison__table { overflow-x: auto; width: 100%; padding-bottom: 10px; }
  .comparison__feature { font-size: 14px; }
  .comparison__column-header { font-size: 22px; }

  /* Serving */
  .serving {
    min-height: 760px;
    padding: 64px 30px 36px;
  }
  .serving__inner {
    gap: 42px;
  }
  .serving__title {
    font-size: 72px;
  }
  .serving__desc {
    max-width: 980px;
    font-size: 20px;
  }
  .serving__partners {
    width: min(100%, 580px);
  }

  /* CTA */
  .cta { padding: 32px 30px; }
  .cta__inner { width: 100%; padding-top: 92px; }
  .cta__box { min-height: 404px; padding: 54px 40px 88px; overflow: hidden; }
  .cta__title { font-size: 48px; line-height: 1.02; }
  .cta__woman { width: 40%; right: 16px; bottom: 8px; }
  .cta__content { max-width: 52%; }

  /* Footer */
  .footer {
    margin: 16px 0 0;
  }
  .footer__panel {
    padding: 24px 28px;
  }
  .footer__logo img { width: 150px; }
  .footer__primary { gap: 24px; }
  .footer__primary a { font-size: 1rem; }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
  /* Nav - hamburger + slide menu */
  .hero__hamburger { display: flex; }
  .hero__nav { flex-wrap: wrap; }
  .hero__menu {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    transform: none;
    background: rgba(255,136,11,0.97); backdrop-filter: blur(10px);
    padding: 16px 30px 24px; z-index: 100;
    border-radius: 0 0 20px 20px;
  }
  .nav-open .hero__menu { display: flex; }
  .hero__menu li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .hero__menu a { font-size: 18px; }
  .hero__signup { padding: 10px 20px; font-size: 14px; }
  .hero__nav-balance { display: none; }
  .hero__logo { height: 40px; }
  .home-page .hero__nav,
  .business-page .hero__nav {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .home-page .hero__hamburger,
  .business-page .hero__hamburger {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .business-page .business-nav__cta {
    margin-left: auto;
  }

  /* Hero content */
  .hero { min-height: auto; padding-bottom: 30px; }
  .hero__content { padding: 28px 20px 0; }
  .hero__badge { font-size: 20px; gap: 10px; }
  .hero__badge-icon { width: 32px; height: 36px; }
  .hero__title { font-size: 36px; letter-spacing: -1.5px; }
  .hero__subtitle { font-size: 16px; line-height: 22px; max-width: 100%; }
  .hero__cards { max-width: 100%; padding: 0 20px 30px; margin-top: 30px; }
  .hero__card { flex-direction: column; }
  .hero__card--gygs { flex-direction: column-reverse; }
  .hero__card-img { width: 100%; height: 180px; }
  .hero__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    margin: 0;
  }
  .hero__card-img--gygs { height: 180px; }
  .hero__card-img--gygs img {
    width: 100%;
    height: 155%;
    object-fit: cover;
    object-position: center;
    margin: 0;
  }
  .hero__card-body { min-height: auto; padding: 16px; }
  .hero__card-body h3 { font-size: 26px; }
  .hero__card-body p { font-size: 16px; line-height: 22px; }
  .hero__card-cta { font-size: 16px; padding: 10px 20px; }

  /* Trusted */
  .trusted__row { gap: 18px; padding: 0 16px; }
  .trusted__row img { max-width: 150px; max-height: 46px; }

  /* About */
  .about { padding: 40px 20px; gap: 32px; }
  .about__heading { font-size: 32px; }
  .about__heading-line--highlight { padding: 3px 8px 5px; }
  .about__right p { font-size: 16px; line-height: 24px; }
  .about__stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .about__stat-value { font-size: 64px; letter-spacing: -2px; }
  .about__stat-divider { display: none; }

  /* Problem */
  .problem { padding: 56px 20px 64px; gap: 26px; }
  .problem__headline { padding-right: 120px; }
  .problem__title { width: 100%; max-width: 100%; font-size: 54px; line-height: 0.96; letter-spacing: -0.05em; }
  .problem__quote-graphic { right: 0; }
  .problem__author { grid-template-columns: 1fr; gap: 20px; }
  .problem__author-info { gap: 12px; text-align: left; }
  .problem__author-name { font-size: 22px; line-height: 1.15; }
  .problem__author-role { font-size: 20px; }
  .problem__quote-text { font-size: 18px; line-height: 1.3; }

  /* Shift */
  .shift {
    min-height: auto;
    padding: 28px 18px 14px;
    border-radius: 20px;
  }
  .shift__subtitle { margin-bottom: 14px; }
  .shift__heading-italic { font-size: 34px; line-height: 1.05; margin-bottom: 14px; }
  .shift__heading { font-size: 36px; line-height: 1.02; margin-bottom: 14px; }
  .shift__tagline { font-size: 16px; }
  .shift__map { height: 200px; max-width: 100%; }

  /* Solution */
  .solution { padding: 40px 20px; gap: 32px; }
  .solution__title { font-size: 32px; line-height: 36px; }
  .solution__desc { font-size: 18px; }
  .solution__card { padding: 24px; min-height: 280px; }
  .solution__card-label { font-size: 18px; }
  .solution__card-title { font-size: 32px; line-height: 36px; margin-top: 24px; }
  .solution__card-desc { font-size: 16px; line-height: 24px; }

  /* Features */
  .features { padding: 0 20px 40px; gap: 32px; }
  .features__title { font-size: 28px; line-height: 36px; }
  .features__list { flex-direction: column; }
  .features__item { flex: 1 1 100%; }

  /* How it works */
  .how-it-works { padding: 40px 20px; gap: 32px; border-radius: 24px; }
  .how-it-works__title { font-size: 32px; }
  .how-it-works__desc { font-size: 16px; }
  .step-card { flex: none; height: 350px; min-height: 0; }
  .step-card__number,
  .step-card--2 .step-card__back .step-card__number,
  .step-card--3 .step-card__back .step-card__number {
    font-size: 260px;
    top: -18px;
    left: auto;
    right: -18px;
    line-height: 1;
    letter-spacing: 0;
  }
  .step-card__label { font-size: 38px; bottom: 136px; left: 18px; }
  .step-card__text { max-width: 100%; padding-right: 36px; gap: 10px; }
  .step-card__text h3 { font-size: 24px; }
  .step-card__text p { font-size: 15px; }

  /* Why choose */
  .why-choose {
    padding: 40px 20px;
    gap: 32px;
    align-items: stretch;
  }
  .why-choose__header {
    max-width: none;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
  .why-choose__title { font-size: 32px; }
  .why-choose__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .why-choose__phone {
    order: -1;
    width: min(100%, 360px);
    height: auto;
    aspect-ratio: 548 / 560;
    margin: 0 auto 8px;
    border-radius: 22px;
  }
  .why-choose__col,
  .why-choose__col--left {
    width: 100%;
    gap: 16px;
    text-align: left;
  }
  .why-choose__col--left .why-choose__item {
    align-items: stretch;
  }
  .why-choose__item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px 14px;
    align-items: start;
    padding: 16px 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(12, 14, 18, 0.08);
    box-shadow: 0 8px 24px rgba(12, 14, 18, 0.05);
  }
  .why-choose__item-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .why-choose__item h4,
  .why-choose__item p {
    grid-column: 2;
    margin: 0;
  }

  /* Capabilities */
  .capabilities { padding: 40px 20px; }
  .capabilities__title { font-size: 30px; }
  .capabilities__grid { flex-direction: column; }
  .capability-card { min-width: 100%; }

  /* Comparison */
  .comparison {
    align-items: stretch;
    gap: 20px;
  }
  .comparison__title { font-size: 30px; }
  .comparison__table {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    overflow: visible;
    padding-bottom: 0;
  }
  .comparison__features { display: none; }
  .comparison__column {
    gap: 0;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e9decf;
    background: #ffffff;
  }
  .comparison__column-header {
    min-height: 52px;
    padding: 14px 18px;
    justify-content: flex-start;
    border-radius: 0;
    font-size: 20px;
  }
  .comparison__column-body {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .comparison__column-body .features-list {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .comparison__row {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: start;
    padding: 14px 16px;
    font-size: 15px;
  }
  .comparison__row::before {
    content: attr(data-label);
    grid-column: 2;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a7d67;
  }
  .comparison__copy { grid-column: 2; }
  .comparison__icon {
    grid-row: 1 / span 2;
    margin-top: 2px;
  }
  .comparison__column--gygler { border-color: #ff880b; }
  .comparison__column--gygler .comparison__row::before { color: rgba(255,255,255,0.74); }

  /* Serving */
  .serving {
    min-height: 680px;
    padding: 54px 20px 28px;
    align-items: center;
  }
  .serving__inner {
    gap: 34px;
  }
  .serving__title {
    font-size: 48px;
    line-height: 0.96;
  }
  .serving__desc {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.45;
  }
  .serving__partners {
    width: min(100%, 460px);
  }

  /* CTA */
  .cta { padding: 24px 20px; }
  .cta__inner { min-height: auto; padding-top: 0; }
  .cta__box { position: relative; min-height: auto; padding: 40px 24px 28px; overflow: hidden; }
  .cta__box::before { width: 220px; height: 220px; left: -10px; top: 6px; opacity: 0.12; }
  .cta__woman { display: none; }
  .cta__content { position: relative; top: auto; left: auto; transform: none; max-width: 100%; gap: 18px; }
  .cta__title { font-size: 32px; line-height: 40px; }
  .cta__desc { font-size: 16px; }
  .cta__buttons { gap: 10px; }

  /* Footer */
  .footer {
    margin: 12px 0 0;
  }
  .footer__panel {
    border-radius: 24px 24px 0 0;
    padding: 20px 18px;
  }
  .footer__top {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }
  .footer__logo,
  .footer__primary {
    grid-column: auto;
    justify-self: center;
  }
  .footer__logo img {
    width: 132px;
  }
  .footer__primary {
    width: auto;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
  .footer__primary a {
    font-size: 0.92rem;
  }
  .footer__bottom {
    margin-top: 16px;
    gap: 8px 14px;
  }
  .footer__bottom p {
    white-space: normal;
  }
  .footer__legal {
    gap: 8px 12px;
  }
  .footer__legal a {
    font-size: 0.68rem;
  }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
  .hero__nav { padding: 16px 16px; }
  .hero__logo { height: 34px; }
  .hero__content { padding: 22px 16px 0; }
  .hero__title { font-size: 28px; letter-spacing: -1px; }
  .hero__badge { font-size: 16px; }
  .hero__badge-icon { width: 26px; height: 30px; }
  .hero__subtitle { font-size: 14px; line-height: 20px; }
  .hero__cards { padding: 0 16px 24px; }
  .hero__card-body h3 { font-size: 22px; }
  .hero__card-body p { font-size: 14px; }

  .about { padding: 32px 16px; }
  .about__heading { font-size: 26px; }
  .about__heading-line--highlight { padding: 2px 7px 4px; border-radius: 4px; }
  .about__stat-value { font-size: 48px; }

  .problem__headline { padding-right: 84px; }
  .problem__title { width: 100%; max-width: 100%; font-size: 34px; line-height: 0.98; }
  .problem__quote-graphic { right: 0; }
  .problem__author-name { font-size: 18px; }
  .problem__author-role { font-size: 16px; }

  .solution__title { font-size: 26px; line-height: 30px; }
  .solution__card-title { font-size: 26px; line-height: 30px; }

  .how-it-works__title { font-size: 26px; }
  .step-card { flex: none; height: 312px; min-height: 0; }
  .step-card__number,
  .step-card--2 .step-card__back .step-card__number,
  .step-card--3 .step-card__back .step-card__number {
    font-size: 220px;
    top: -8px;
    right: -10px;
  }
  .step-card__label { font-size: 34px; bottom: 118px; }
  .step-card__text { padding-right: 24px; }

  .why-choose__title { font-size: 26px; }
  .why-choose__phone {
    width: min(100%, 320px);
    border-radius: 20px;
    margin-bottom: 4px;
  }
  .why-choose__item {
    padding: 14px 14px 16px;
    border-radius: 16px;
    gap: 6px 12px;
  }
  .why-choose__item h4 { font-size: 18px; }
  .why-choose__item p { font-size: 15px; line-height: 1.45; }

  .capabilities__title { font-size: 24px; }
  .comparison__title { font-size: 24px; }
  .serving {
    min-height: 620px;
    padding: 42px 16px 24px;
  }
  .serving__inner {
    gap: 26px;
  }
  .serving__title {
    font-size: 38px;
  }
  .serving__desc {
    font-size: 16px;
  }
  .serving__partners {
    width: min(100%, 320px);
  }
  .cta__title { font-size: 26px; line-height: 32px; }

  .footer {
    margin: 8px 0 0;
  }
  .footer__panel {
    border-radius: 20px 20px 0 0;
    padding: 18px 14px;
  }
  .footer__logo img {
    width: 126px;
  }
  .footer__primary {
    gap: 10px 18px;
  }
  .footer__primary a {
    font-size: 0.9rem;
  }
  .footer__legal {
    gap: 8px 10px;
  }
  .footer__bottom p,
  .footer__legal a {
    font-size: 0.66rem;
  }
}

@media (max-width: 480px) {
  .footer__bottom {
    gap: 8px 12px;
  }
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal[data-delay="1"] { transition-delay: 0.15s; }
  .reveal[data-delay="2"] { transition-delay: 0.3s; }
  .reveal[data-delay="3"] { transition-delay: 0.45s; }
  .reveal[data-delay="4"] { transition-delay: 0.6s; }
  .reveal[data-delay="5"] { transition-delay: 0.75s; }
}
