/* neral — presentation → adaptive landing */
@font-face {
  font-family: "Random Grotesque Standard";
  src:
    url("../assets/fonts/RG-StandardRegular.otf") format("opentype"),
    url("../assets/fonts/RG-StandardRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Random Grotesque Standard";
  src:
    url("../assets/fonts/RG-StandardBold.otf") format("opentype"),
    url("../assets/fonts/RG-StandardBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Random Grotesque Standard";
  src:
    url("../assets/fonts/RG-StandardSemibold.otf") format("opentype"),
    url("../assets/fonts/RG-StandardSemibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Random Grotesque Spacious Black";
  src:
    url("../assets/fonts/RG-SpaciousBlackIt.otf") format("opentype"),
    url("../assets/fonts/RG-SpaciousBlackIt.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Random Grotesque Spacious Black";
  src:
    url("../assets/fonts/RG-SpaciousBlackIt.otf") format("opentype"),
    url("../assets/fonts/RG-SpaciousBlackIt.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Random Grotesque Slim Black";
  src:
    url("../assets/fonts/RG-SlimBlackIt.otf") format("opentype"),
    url("../assets/fonts/RG-SlimBlackIt.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Random Grotesque Slim Black";
  src:
    url("../assets/fonts/RG-SlimBlackIt.otf") format("opentype"),
    url("../assets/fonts/RG-SlimBlackIt.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Brand palette */
  --maroon: #72201b;
  --coral: #ed7470;
  --pink: #f6c8c6;
  --blue: #1d1dab;
  --blue-bright: #507ff7;
  --cyan: #73f7f8;
  --ink: #2a2a2a;
  --cream: #e8e3d7;
  --peach: #ffa07a;

  /* Derived */
  --blue-deep: #12148a;
  --blue-mid: #1d1dab;
  --coral-soft: #ffa07a;
  --salmon: #ed7470;
  --pink-soft: #f6c8c6;
  --cream-warm: #e8e3d7;
  --beige: #e8e3d7;
  --ink-soft: #2a2a2a;
  --white: #ffffff;
  --lavender: #c8cce8;

  --side: clamp(1.25rem, 4vw, 4rem);
  --radius-plaque: 60px;
  --radius-xl: 60px;
  --radius-lg: 60px;
  --radius-md: 1.25rem;
  --container: min(1456px, calc(100% - 2.5rem));
  --container-wide: min(1664px, calc(100% - 2.5rem));
  --font: "Onest", system-ui, sans-serif;
  --font-display: "Random Grotesque Standard", "Onest", system-ui, sans-serif;
  --font-btn: "Random Grotesque Spacious Black", "Onest", system-ui, sans-serif;
  --font-slim: "Random Grotesque Slim Black", "Onest", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Type scale — единая шкала размеров текста.
     Раньше каждый блок считал свой размер вручную (calc(rem + Npx)),
     из-за чего одинаковый по роли текст «прыгал» на 20-30% между секциями. */
  --fs-2xs: 0.75rem;     /* 12px — микро-теги, футноты */
  --fs-xs: 0.875rem;     /* 14px — лейблы/эйбраузеры */
  --fs-sm: 0.9375rem;    /* 15px — компактный текст, списки */
  --fs-base: 1rem;       /* 16px — базовый абзац */
  --fs-md: 1.0625rem;    /* 17px — акцентный абзац/подпись под цифрой */
  --fs-lg: 1.1875rem;    /* 19px — маленький подзаголовок */
  --fs-lead: clamp(1.15rem, 2.2vw, 1.45rem);  /* лид-абзацы/цитаты */
  --fs-xl: clamp(1.35rem, 2.4vw, 1.65rem);    /* h3 карточек */
  --fs-2xl: clamp(1.5rem, 3.5vw, 2.25rem);    /* стандартный h2 секции */
  --fs-3xl: clamp(1.75rem, 4vw, 2.75rem);     /* крупный вступительный h2 */
  --fs-4xl: clamp(2.25rem, 5vw, 3.25rem);     /* цифра-статистика, средняя */
  --fs-5xl: clamp(3rem, 8vw, 4.5rem);         /* цифра-статистика, крупная */
  --fs-6xl: clamp(5rem, 14vw, 8rem);          /* гигантская цифра-статистика */
  --fs-btn-sm: 0.9rem;                        /* инлайн-кнопки в карточках */
  --fs-btn-lg: clamp(1.15rem, 2.2vw, 1.65rem);/* крупные кнопки в конце секций */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.45;
  overflow-x: clip;
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container-wide {
  width: var(--container-wide);
  margin-inline: auto;
}

/* Brand logo */
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(1.35rem, 1.8vw, 1.75rem);
  object-fit: contain;
}

.brand--light {
  color: var(--cream);
}

.brand--dark {
  color: var(--ink);
}

/* Legacy text logo (other sections) */
.logo {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.12em;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.logo .plus,
.logo .spark {
  color: var(--peach);
  font-weight: 600;
  font-size: 0.55em;
  line-height: 1;
  margin-top: 0.08em;
}

.logo--light {
  color: var(--cream);
}

.logo--dark {
  color: var(--ink);
}

.brand__star {
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  margin-top: 0.05em;
  flex-shrink: 0;
  color: var(--peach);
  line-height: 0;
}

.brand__star svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Spark icon (fallback clip) */
.spark-icon {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  background: var(--cyan);
  clip-path: polygon(50% 0%, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0% 50%, 39% 35%);
}

.spark-img {
  width: 0.98rem;
  height: 0.98rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  object-fit: contain;
  display: block;
}

/* Header — full-bleed */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1rem 0;
  background: #2a2a2a;
  overflow: visible;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s, padding 0.35s;
}

.site-header.is-scrolled {
  background: #2a2a2a;
  backdrop-filter: none;
  padding: 0.7rem 0;
}

.site-header .brand {
  flex-shrink: 0;
}

.site-header .brand-logo {
  height: clamp(1.35rem, 1.8vw, 1.75rem);
}

.site-header__inner {
  width: 100%;
  padding-inline: var(--side);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  flex: 1;
}

.nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.85rem, 1.05vw, 0.95rem);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--white);
}

.header-actions {
  display: none;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-left: auto;
  flex-shrink: 0;
  overflow: visible;
}

.header-phone {
  color: var(--cream);
  font-size: clamp(0.85rem, 1.05vw, 0.95rem);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.header-phone:hover {
  color: var(--peach);
}

.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  background: var(--peach);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-sm);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
  z-index: 5;
  --star-hover-color: var(--coral);
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s;
}

.header-cta:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
}

.burger {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  margin-left: auto;
}

.burger span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--white);
  position: relative;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: #2a2a2a;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-nav .header-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.5rem;
}

.mobile-nav .header-phone {
  color: var(--peach);
  font-size: 1.15rem;
  margin-top: 1rem;
}

/* Sections common */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ========== HERO — full-bleed fluid ========== */
.hero {
  background: var(--blue);
  color: var(--cream);
  padding: clamp(6.66rem, 12.1vw, 8.47rem) var(--side) clamp(3rem, 6vw, 4.5rem);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

.hero__inner {
  display: grid;
  gap: clamp(2.44rem, 5.57vw, 3.83rem);
  width: 100%;
  max-width: none;
}

.hero__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

.hero__logo {
  display: inline-flex;
}

.hero__logo .brand-logo {
  height: clamp(3.5rem, 8.4vw, 6.3rem);
  width: auto;
}

.hero__intro {
  max-width: 100%;
}

.hero__title {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 0.65rem;
}

.hero__sub {
  color: var(--peach);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
}

.hero__main {
  display: grid;
  gap: 1rem;
  margin-top: 0;
}

.hero__row {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  min-width: 0;
}

/* Pill mask: starts off-screen left, radius 1000 */
.hero__img-wrap {
  border-radius: 1000px;
  overflow: hidden;
  height: 50vh;
  width: 75vw;
  max-width: none;
  /* pull left so rounded left edge stays off-screen */
  margin-left: calc(var(--side) * -1 - 25vh);
  min-width: 0;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 40%;
  display: block;
}

.hero__caption {
  font-size: var(--fs-sm);
  line-height: 1.45;
  color: #ffa07a;
  max-width: 34.22rem;
}

.hero__caption em,
.hero__caption strong {
  color: #ffa07a;
  font-style: italic;
  font-weight: 700;
}

.hero__points {
  display: grid;
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
  width: fit-content;
  max-width: min(33.96rem, 100%);
}

.hero__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  min-width: 0;
}

.hero__point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.4;
  color: var(--cream);
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--peach);
  color: var(--ink);
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-sm);
  text-transform: uppercase;
  overflow: visible;
  z-index: 5;
  --star-hover-color: var(--coral);
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s;
}

.hero-cta:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
}

.hero-cta__label,
.star-burst__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 10px;
}

.btn-arrow__shaft {
  display: block;
  width: 0.55em;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transform-origin: left center;
  transition: width 0.35s var(--ease);
}

.btn-arrow__head {
  display: block;
  width: 0.42em;
  height: 0.42em;
  margin-left: -0.12em;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.header-cta:hover .btn-arrow__shaft,
.hero-cta:hover .btn-arrow__shaft,
.check-card__cta:hover .btn-arrow__shaft,
.key-card__cta:hover .btn-arrow__shaft,
.why-dark__cta:hover .btn-arrow__shaft,
.what__cta:hover .btn-arrow__shaft,
.numbers__cta:hover .btn-arrow__shaft,
.love__cta:hover .btn-arrow__shaft,
.process__cta:hover .btn-arrow__shaft,
.task-card__cta:hover .btn-arrow__shaft,
.industry__cta:hover .btn-arrow__shaft,
.custom-card__cta:hover .btn-arrow__shaft,
.case-card__cta:hover .btn-arrow__shaft,
.btn:hover .btn-arrow__shaft,
.modal__submit:hover .btn-arrow__shaft {
  width: 1.25em;
}

@media (prefers-reduced-motion: reduce) {
  .btn-arrow__shaft {
    transition: none;
  }
}

.hero-cta__burst,
.star-burst {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  pointer-events: none;
  z-index: -1;
  overflow: visible;
}

.hero-cta__star,
.star-burst__star {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--s, 10px);
  height: var(--s, 10px);
  margin: 0;
  opacity: 0;
  display: block;
  transform: translate(-50%, -50%) scale(0.15);
  will-change: transform, opacity;
  animation-name: hero-star-burst;
  animation-duration: var(--d, 1.4s);
  animation-delay: var(--delay, 0s);
  animation-timing-function: var(--ease-star, cubic-bezier(0.15, 0.85, 0.25, 1));
  animation-fill-mode: forwards;
}

.hero-cta__star svg,
.star-burst__star svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes hero-star-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.12) rotate(0deg);
  }
  8% {
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1) rotate(var(--rot));
  }
}

.hero__aside,
.hero__row,
.hero__main,
.hero__inner {
  overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta__star,
  .star-burst__star {
    animation: none !important;
    display: none;
  }
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  overflow: visible;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-sm);
  text-transform: uppercase;
  overflow: visible;
  z-index: 5;
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
  --star-hover-color: var(--coral-soft);
}

.btn--coral:hover {
  background: var(--coral-soft);
}

.btn--coral.js-discuss {
  --star-hover-color: var(--ink);
}

.btn--coral.js-discuss:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  --star-hover-color: var(--cream);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ========== CHECKLIST ========== */
.checklist {
  background: var(--blue);
  color: var(--cream);
}

.checklist__title {
  font-size: var(--fs-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 30.8ch;
  margin-bottom: 2.5rem;
}

.checklist__title .accent {
  color: var(--peach);
}

.checklist__grid {
  display: grid;
  gap: 0;
}

.check-card {
  background: var(--beige);
  border-radius: var(--radius-plaque);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  color: var(--ink);
  overflow: visible;
}

.check-card__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.check-card__list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  color: var(--ink);
  font-size: var(--fs-base);
  line-height: 1.4;
  cursor: pointer;
  padding: 0.7rem 0.85rem;
  border-radius: 1rem;
  background: rgba(42, 42, 42, 0.05);
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.check-item:hover {
  background: rgba(42, 42, 42, 0.09);
}

.check-item:has(.check-item__input:checked) {
  background: rgba(237, 116, 112, 0.16);
  border-color: rgba(237, 116, 112, 0.35);
}

.check-item__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.check-box {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(42, 42, 42, 0.35);
  border-radius: 0.4rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.55);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.check-item:hover .check-box {
  border-color: var(--coral);
}

.check-item__input:checked + .check-box {
  background: var(--coral);
  border-color: var(--coral);
  transform: scale(1.05);
}

.check-item__input:checked + .check-box::after {
  content: "";
  width: 0.35rem;
  height: 0.65rem;
  border: solid var(--cream);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.check-item__input:focus-visible + .check-box {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.check-item__text {
  padding-top: 0.1rem;
}

.check-card__footer {
  display: grid;
  gap: calc(1.15rem + 10px);
  margin-top: 0.5rem;
  justify-items: center;
  overflow: visible;
}

.check-result {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: calc(0.85rem + 12px);
  align-items: center;
  width: 100%;
}

.check-result__score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25em;
  flex-shrink: 0;
  line-height: 1;
}

.check-result__num {
  font-size: var(--fs-4xl);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.check-result__of {
  font-size: var(--fs-sm);
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
}

.check-result__bar {
  position: relative;
  min-height: 3.1rem;
  border-radius: 999px;
  background: rgba(42, 42, 42, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.check-result__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--white), var(--coral));
  transition: width 0.35s var(--ease);
}

.check-result__label {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0.65rem 1.1rem;
  font-size: var(--fs-sm);
  line-height: 1.3;
  color: var(--ink);
  font-weight: 600;
}

.check-card__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-sm);
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
  min-width: 14.5rem;
  overflow: visible;
  z-index: 5;
  --star-hover-color: var(--blue);
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s, box-shadow 0.25s;
}

.check-card__cta:hover {
  background: var(--blue);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.key-card {
  background: var(--coral);
  border-radius: var(--radius-plaque);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  overflow: visible;
}

.key-card__label {
  margin-top: 20px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.key-card__lead {
  margin-top: 16px;
  font-size: var(--fs-lead);
  font-weight: 700;
  color: var(--beige);
  line-height: 1.3;
}

.key-card__bottom {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  overflow: visible;
}

.key-card__body {
  margin: 0;
  width: 80%;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.key-card__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-sm);
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
  overflow: visible;
  z-index: 5;
  --star-hover-color: var(--blue);
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s, box-shadow 0.25s;
}

.key-card__cta:hover {
  background: var(--blue);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* ========== WHY / 80% ========== */
.why {
  background: var(--cream-warm);
}

.why__grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.why__left {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.why__left .section-title-coral {
  color: var(--coral);
  font-size: var(--fs-xl);
  font-weight: 600;
  max-width: 16ch;
  margin: 1.25rem 0 calc(2rem + 30px);
  line-height: 1.25;
}

.stat-big {
  font-family: var(--font-btn);
  font-size: var(--fs-6xl);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--ink);
}

.stat-big__caption {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  max-width: calc(28ch * 1.2);
  line-height: 1;
}

.footnote {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: var(--fs-2xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

.why-bubble {
  background: var(--pink-soft);
  border-radius: var(--radius-plaque);
  padding-top: clamp(2.75rem, 4.5vh, 4rem);
  padding-bottom: calc(clamp(2.75rem, 4.5vh, 4rem) * 1.15);
  padding-inline: 7%;
  margin-bottom: 0;
}

.why-bubble h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-bubble p {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1;
  max-width: calc(42ch * 1.2);
}

.why-bubble p strong {
  font-weight: 700;
}

.why-dark {
  background: var(--ink-soft);
  color: var(--beige);
  border-radius: var(--radius-plaque);
  padding-top: clamp(2.75rem, 4.5vh, 4rem);
  padding-bottom: calc(clamp(2.75rem, 4.5vh, 4rem) * 1.15);
  padding-inline: 7%;
  overflow: visible;
}

.why-dark__kicker {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--beige);
  margin-bottom: 0.35rem;
}

.why-dark__kicker strong {
  font-weight: 600;
}

.why-dark__lead {
  font-family: var(--font-display);
  font-size: var(--fs-lead);
  font-weight: 700;
  line-height: 1;
  color: var(--beige);
  margin-bottom: calc(1.5rem + 30px);
  width: 60%;
}

.why-dark__cols {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 0;
}

.why-dark__cols > p {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1;
  color: var(--beige);
  width: 70%;
}

.why-dark h4 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--beige);
}

.why-dark .skill-list {
  display: grid;
  gap: 0.75rem;
}

.why-dark .skill-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1;
  color: var(--beige);
}

.why-dark .spark-icon {
  width: calc(0.7rem + 2px);
  height: calc(0.7rem + 2px);
  margin-top: 0.25rem;
  background: var(--pink-soft);
  color: var(--pink-soft);
}

.why-dark__footer {
  margin-top: calc(1rem + 50px);
  padding-top: 0;
  border-top: none;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1;
  color: var(--beige);
}

.why-dark__footer .hl {
  font-family: var(--font-btn);
  font-weight: 900;
  font-style: italic;
  color: var(--coral);
}

.why-dark__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 0.75rem 1.85rem;
  border-radius: 999px;
  background: var(--coral);
  color: var(--cream);
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-sm);
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
  overflow: visible;
  z-index: 5;
  --star-hover-color: var(--peach);
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s, box-shadow 0.25s;
}

.why-dark__cta:hover {
  background: var(--peach);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* ========== WHAT WE DO ========== */
.what {
  background: var(--cream);
  overflow-x: clip;
}

.what__head {
  display: grid;
  row-gap: 1.25rem;
  column-gap: calc(1.25rem * 0.6);
  margin-bottom: 60px;
}

.what__head h2 {
  color: var(--coral);
  font-size: var(--fs-3xl);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.what__intro {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1.1;
  max-width: 42ch;
  color: var(--ink);
}

.what__intro--right {
  color: var(--ink-soft);
  max-width: calc(42ch * 1.2);
}

.steps {
  position: relative;
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
}

.step {
  border-radius: var(--radius-plaque);
  padding-top: calc(clamp(1.35rem, 2.8vw, 2rem) + 60px);
  padding-inline: 7%;
  padding-bottom: 12%;
  color: var(--beige);
  position: relative;
  overflow: visible;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.step--01 {
  background: #507ff7;
}

.step--02 {
  background: #1d1dab;
}

.step--03 {
  background: #2a2a2a;
}

.step__num {
  font-family: var(--font-btn);
  font-size: 70px;
  font-weight: 900;
  font-style: normal;
  color: #f6c8c6;
  line-height: 1;
  letter-spacing: 5%;
  margin-bottom: 1rem;
}

.step__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
  margin-top: 30px;
  color: var(--beige);
  width: 70%;
}

.step__text {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.15;
  color: var(--beige);
  margin-top: 0;
  width: 70%;
}

.step--03 .step__title,
.step--03 .step__text {
  width: 100%;
}

.step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.tag {
  background: var(--coral);
  color: var(--white);
  font-size: var(--fs-2xs);
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.what__cta-wrap {
  display: flex;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem) var(--side) 0;
}

.what__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-lg);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  max-width: min(40rem, 100%);
  overflow: visible;
  z-index: 5;
  isolation: isolate;
  --star-hover-color: var(--ink);
  transition: transform 0.25s var(--ease);
}

.what__cta .star-burst__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.1rem, 2vw, 1.45rem) clamp(2rem, 4vw, 3.25rem);
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  max-width: 100%;
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
}

.what__cta .star-burst {
  z-index: 0;
}

.what__cta:hover {
  transform: translateY(-2px);
}

.what__cta:hover .star-burst__label {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

/* ========== TASKS ========== */
.tasks {
  background: var(--cream-warm);
  overflow-x: clip;
}

.tasks .container {
  width: 100%;
  max-width: none;
  padding-inline: var(--side);
  box-sizing: border-box;
}

.tasks h2 {
  font-family: var(--font-display);
  color: var(--coral);
  font-size: var(--fs-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  width: 70vw;
  max-width: 70vw;
  margin-bottom: 2rem;
}

.tasks-grid {
  display: grid;
  /* same length for row + column so H/V gaps match */
  gap: 1vw;
  width: 100%;
  margin: 0;
  padding-inline: var(--side);
  box-sizing: border-box;
}

.task-card {
  background: var(--ink);
  color: #e8e3d7;
  border-radius: var(--radius-plaque);
  padding-top: 7%;
  padding-inline: 7%;
  padding-bottom: 4%;
  display: flex;
  flex-direction: column;
}

.task-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 40px;
  width: 70%;
  color: #f6c8c6;
}

.task-card h3 .teal {
  color: #73f7f8;
}

.task-card__body {
  display: grid;
  gap: 1.25rem;
  flex: 1;
}

.task-card__desc {
  font-family: "Random Grotesque Standard", var(--font-display), sans-serif;
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1.15;
  color: #e8e3d7;
}

.task-card__qs-label {
  font-family: var(--font-btn);
  font-size: var(--fs-2xs);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f6c8c6;
  margin-bottom: 0.65rem;
}

.task-card__qs li {
  font-family: "Random Grotesque Standard", var(--font-display), sans-serif;
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 1.15;
  padding-left: 0.85rem;
  position: relative;
  margin-bottom: 0.45rem;
  color: #e8e3d7;
}

.task-card__qs li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #73f7f8;
}

.task-card__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: auto;
  padding-top: 40px;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-sm);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
  z-index: 5;
  isolation: isolate;
  --star-hover-color: var(--peach);
  transition: transform 0.25s var(--ease);
}

.task-card__cta .star-burst__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.85rem;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
}

.task-card__cta .star-burst {
  z-index: 0;
}

.task-card__cta:hover {
  transform: translateY(-1px);
}

.task-card__cta:hover .star-burst__label {
  background: var(--peach);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* ========== INDUSTRIES ========== */
.industries {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 122, 80, 0.12), transparent 50%),
    var(--blue-mid);
  color: var(--white);
  overflow-x: clip;
}

.industries .container {
  width: 100%;
  max-width: none;
  padding-inline: var(--side);
  box-sizing: border-box;
}

.industries h2 {
  font-family: var(--font-display);
  color: var(--coral-soft);
  font-size: var(--fs-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  width: 30vw;
  max-width: 30vw;
  margin: 1.5rem 0 2.5rem;
}

.industries-grid {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
  padding-inline: var(--side);
  box-sizing: border-box;
}

.industry {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.industry__img {
  /* was 4/3; height −15% → 4 / (3 * 0.85) */
  aspect-ratio: 4 / 2.55;
  overflow: hidden;
  border-radius: var(--radius-plaque);
}

.industry__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-plaque);
  padding-top: clamp(1.35rem, 2.5vw, 1.75rem);
  padding-inline: 7%;
  padding-bottom: 6%;
}

.industry:nth-child(odd) .industry__body {
  background: var(--coral-soft);
  color: var(--blue-deep);
}

.industry:nth-child(even) .industry__body {
  background: var(--beige);
  color: var(--blue-deep);
}

.industry__body h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 0.8;
  margin-bottom: 0.85rem;
}

.industry__body .label {
  font-family: var(--font-btn);
  font-size: var(--fs-xs);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 0.65rem;
}

.industry__body li {
  font-family: "Random Grotesque Standard", var(--font-display), sans-serif;
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 1.15;
  padding-left: 0.85rem;
  position: relative;
  margin-bottom: 0.3rem;
  color: #000000;
}

.industry__body li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.industry__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: auto;
  padding-top: 40px;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-sm);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
  z-index: 5;
  isolation: isolate;
  --star-hover-color: var(--coral);
  transition: transform 0.25s var(--ease);
}

.industry__cta .star-burst__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
}

.industry__cta .star-burst {
  z-index: 0;
}

.industry__cta:hover {
  transform: translateY(-1px);
}

.industry__cta:hover .star-burst__label {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* ========== CUSTOM ========== */
.custom {
  background: var(--cream-warm);
}

.custom__grid {
  display: grid;
  gap: 2rem;
}

.custom__left h2 {
  font-family: var(--font-display);
  color: var(--coral);
  font-size: var(--fs-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 16ch;
  margin: 1.25rem 0 0;
}

.custom .stat-big {
  letter-spacing: 2%;
  margin-top: calc(2rem + 50px);
}

.custom .stat-big__caption {
  margin-top: 0.25rem;
}

.custom-cards {
  display: grid;
  gap: 0;
  width: 100%;
}

.custom-card {
  border-radius: var(--radius-plaque);
  padding-top: 5%;
  padding-inline: 7%;
  padding-bottom: 5%;
  display: flex;
  flex-direction: column;
}

.custom-card--pink {
  background: var(--pink);
  color: var(--ink);
}

.custom-card--dark {
  background: var(--ink-soft);
  color: var(--beige);
}

.custom-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 40px;
}

.custom-card__cols {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 0;
}

.custom-card__cols .label {
  font-family: var(--font-slim);
  font-size: var(--fs-xs);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.custom-card--pink .label {
  color: #72201b;
}

.custom-card--dark .label {
  color: #ffa07a;
}

.custom-card__cols > div > p:not(.label):not(.custom-card__summary),
.custom-card__cols li {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.15;
}

.custom-card__cols li {
  padding-left: 0.85rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.custom-card__cols li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.custom-card__summary {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1.15;
  margin-top: calc(1rem + 24px);
  padding-top: 0;
  border-top: none;
}

.custom-card--dark .custom-card__summary {
  border-top: none;
}

.custom-card__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: auto;
  padding-top: 60px;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-sm);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
  z-index: 5;
  isolation: isolate;
  --star-hover-color: var(--coral);
  transition: transform 0.25s var(--ease);
}

.custom-card__cta .star-burst__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
}

.custom-card__cta .star-burst {
  z-index: 0;
}

.custom-card__cta:hover {
  transform: translateY(-1px);
}

.custom-card__cta:hover .star-burst__label {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.custom-card--dark .custom-card__cta {
  --star-hover-color: var(--peach);
}

.custom-card--dark .custom-card__cta .star-burst__label {
  background: var(--coral);
  color: var(--white);
}

.custom-card--dark .custom-card__cta:hover .star-burst__label {
  background: var(--peach);
  color: var(--ink);
}

/* ========== CASES ========== */
.cases {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255, 122, 80, 0.12), transparent 45%),
    var(--blue);
  color: var(--white);
  overflow-x: clip;
}

.cases .container {
  width: 100%;
  max-width: none;
  padding-inline: var(--side);
  box-sizing: border-box;
}

.cases h2 {
  font-family: var(--font-display);
  color: var(--coral);
  font-size: var(--fs-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 1.25rem 0 2.5rem;
}

.cases-grid {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
  padding-inline: var(--side);
  box-sizing: border-box;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.case-card__img {
  /* previous 4/1.275, height +25% */
  aspect-ratio: 4 / 1.59375;
  overflow: hidden;
  border-radius: var(--radius-plaque);
}

.case-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-plaque);
  padding-top: calc(clamp(1.35rem, 2.5vw, 1.75rem) + 3%);
  padding-inline: 10%;
  padding-bottom: 9%;
  color: var(--blue-deep);
}

.case-card:nth-child(odd) .case-card__body {
  background: var(--peach);
}

.case-card:nth-child(even) .case-card__body {
  background: var(--cream);
}

.case-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.case-card__body > p:not(.case-card__result):not(.case-card__footer) {
  font-family: "Random Grotesque Standard", var(--font-display), sans-serif;
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #000000;
}

.case-card__result {
  font-family: var(--font-slim);
  font-size: var(--fs-sm);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 0.65rem;
  color: var(--blue);
}

.case-card__footer {
  font-family: "Random Grotesque Standard", var(--font-display), sans-serif;
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.15;
  color: #000000;
  opacity: 1;
}

.case-card__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: auto;
  padding-top: 40px;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-sm);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
  z-index: 5;
  isolation: isolate;
  --star-hover-color: var(--coral);
  transition: transform 0.25s var(--ease);
}

.case-card__cta .star-burst__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
}

.case-card__cta .star-burst {
  z-index: 0;
}

.case-card__cta:hover {
  transform: translateY(-1px);
}

.case-card__cta:hover .star-burst__label {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* ========== LOVE ========== */
.love {
  background:
    linear-gradient(180deg, #f7c4bc 0%, #f0b0a6 100%);
}

.love h2 {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--maroon);
  margin: 1.25rem 0 calc(2.5rem + 10px - 24px);
  width: 80vw;
  max-width: 80vw;
}

.love-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  width: 80vw;
  max-width: 80vw;
  /* Single-column mobile: no compensating shift needed (only relevant once
     love-item padding is columnar, from 640px up — see RESPONSIVE block) */
  margin-left: 0;
}

.love-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-content: start;
  /* slots 1–4: content 15% narrower than prior 86% (7% inset) → ~73.1% */
  background: transparent;
  border-radius: 0;
  padding-inline: 13.45%;
  padding-block: 0;
  box-sizing: border-box;
}

.love-item > div {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.love-item__num {
  font-family: var(--font-btn);
  font-size: var(--fs-4xl);
  font-weight: 900;
  color: var(--coral);
  letter-spacing: 5%;
  line-height: 1;
}

.love-item h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}

.love-item p {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

.love__aside {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  min-height: 440px;
}

.love__photo {
  border-radius: var(--radius-plaque);
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

.love__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.love-feature {
  background: var(--blue);
  color: var(--beige);
  border-radius: var(--radius-plaque);
  padding-top: calc(clamp(1.35rem, 2.5vw, 1.75rem) + 2%);
  padding-inline: 7%;
  padding-bottom: 12%;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
}

.love-feature__num {
  font-family: var(--font-btn);
  font-size: var(--fs-4xl);
  font-weight: 900;
  color: var(--pink);
  letter-spacing: 5%;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.love-feature h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--pink-soft);
}

.love-feature p {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.15;
  color: var(--beige);
}

.love__cta-wrap {
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem) 0 0;
}

.love__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-lg);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  overflow: visible;
  z-index: 5;
  isolation: isolate;
  --star-hover-color: var(--ink);
  transition: transform 0.25s var(--ease);
}

.love__cta .star-burst__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 2.4vw, 1.75rem) clamp(2.5rem, 5vw, 4rem);
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
}

.love__cta .star-burst {
  z-index: 0;
}

.love__cta:hover {
  transform: translateY(-2px);
}

.love__cta:hover .star-burst__label {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* ========== PROCESS ========== */
.process {
  background: var(--cream);
}

.process__grid {
  display: grid;
  gap: 2rem;
}

.process__left h2 {
  font-family: var(--font-display);
  color: var(--coral);
  font-size: var(--fs-2xl);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

.process__stat {
  font-family: var(--font-btn);
  font-size: var(--fs-5xl);
  font-weight: 900;
  color: var(--blue-bright);
  letter-spacing: 0;
  line-height: 1;
  margin-top: 50px;
}

.process__stat-label {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1.15;
  margin: 0.1rem 0 0;
}

.process__copy {
  margin-top: calc(1.5rem + 30px);
}

.process__left .process__copy p {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 38ch;
}

.process__left .process__copy p:last-child {
  margin-bottom: 0;
}

.process__left .process__copy strong {
  font-weight: 600;
}

.process-cards {
  display: grid;
  gap: 0;
}

.process-card {
  border-radius: var(--radius-plaque);
  padding-top: 5%;
  padding-inline: 7%;
  padding-bottom: 5%;
}

.process-card--dark {
  background: var(--ink-soft);
  color: var(--beige);
}

.process-card--pink {
  background: var(--pink-soft);
  color: var(--ink);
  display: flex;
  flex-direction: column;
}

.process-card__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  height: 100%;
}

.process-card__col {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.process-card__col .price-block {
  margin-top: auto;
}

.process-card--dark > h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.process-card--pink h3 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.process-card--dark .spark-list {
  width: 70%;
  max-width: 70%;
}

.process-card--dark .spark-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.process-card--dark .spark-icon {
  color: var(--pink);
  background: var(--pink);
  width: calc(0.7rem + 2px);
  height: calc(0.7rem + 2px);
  margin-top: 0.3rem;
}

.process-card--pink p {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.15;
}

.process-card--pink p strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: var(--fs-md);
  font-weight: 600;
}

.process-card--pink .process-card__body {
  font-family: var(--font-display);
  font-weight: 400;
}

.process-card__note {
  margin-top: 0.75rem;
}

.price-block {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: none;
}

.price-block .label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.price-block .price {
  font-family: var(--font-btn);
  font-size: var(--fs-xl);
  font-weight: 900;
  color: var(--blue-bright);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: none;
}

.process__cta-wrap {
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem) var(--side) 0;
}

.process__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-lg);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  overflow: visible;
  z-index: 5;
  isolation: isolate;
  --star-hover-color: var(--ink);
  transition: transform 0.25s var(--ease);
}

.process__cta .star-burst__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 2.4vw, 1.75rem) clamp(2.5rem, 5vw, 4rem);
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
}

.process__cta .star-burst {
  z-index: 0;
}

.process__cta:hover {
  transform: translateY(-2px);
}

.process__cta:hover .star-burst__label {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* ========== NUMBERS ========== */
.numbers {
  background:
    radial-gradient(ellipse at 70% 80%, rgba(255, 200, 180, 0.2), transparent 45%),
    var(--blue-bright);
  color: var(--white);
  overflow-x: clip;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-bottom: 0;
}

.numbers .container {
  width: 100%;
  max-width: none;
  padding-inline: var(--side);
  box-sizing: border-box;
}

.numbers h2 {
  font-family: var(--font-display);
  color: var(--pink-soft);
  font-size: var(--fs-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.numbers-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 0;
  padding-inline: var(--side);
  box-sizing: border-box;
}

.numbers__cta-wrap {
  display: flex;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem) var(--side) 0;
}

.numbers__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-lg);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  overflow: visible;
  z-index: 5;
  isolation: isolate;
  --star-hover-color: var(--ink);
  transition: transform 0.25s var(--ease);
}

.numbers__cta .star-burst__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 2.4vw, 1.75rem) clamp(2.5rem, 5vw, 4rem);
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
}

.numbers__cta .star-burst {
  z-index: 0;
}

.numbers__cta:hover {
  transform: translateY(-2px);
}

.numbers__cta:hover .star-burst__label {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* Fill remaining viewport height below the cards + CTA */
.numbers::after {
  content: "";
  flex: 1 1 auto;
  min-height: 0;
}

.num-card {
  border-radius: var(--radius-plaque);
  padding: clamp(1.5rem, 3vw, 2rem) 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 160px;
  height: 100%;
  box-sizing: border-box;
}

.num-card--pink {
  background: var(--pink-soft);
}

.num-card--cream {
  background: var(--cream);
}

.num-card--dark {
  background: var(--ink-soft);
}

.num-card--photo {
  padding: 0;
  overflow: hidden;
  min-height: 200px;
}

.num-card--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  display: block;
}

.num-card__value {
  font-family: var(--font-btn);
  font-size: var(--fs-5xl);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.8;
}

.num-card--pink .num-card__value {
  color: var(--coral);
}

.num-card--cream .num-card__value {
  color: var(--blue-bright);
}

.num-card--pink:nth-child(3) .num-card__value {
  color: var(--maroon);
}

.num-card__label {
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  width: 80%;
  max-width: 80%;
}

.num-card--dark .num-card__value {
  color: var(--pink-soft);
  font-size: var(--fs-5xl);
}

.num-card--dark .num-card__label {
  color: var(--cyan);
}

/* ========== CTA / CONTACT — same composition as hero ========== */
.cta {
  background: var(--blue);
  color: var(--cream);
  padding: clamp(6.66rem, 12.1vw, 8.47rem) var(--side) clamp(3rem, 6vw, 4.5rem);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

.cta__inner {
  display: grid;
  gap: clamp(2.44rem, 5.57vw, 3.83rem);
  width: 100%;
  max-width: none;
}

.cta__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: end;
}

.cta__logo {
  display: inline-flex;
}

.cta__logo .brand-logo {
  height: clamp(3.5rem, 8.4vw, 6.3rem);
  width: auto;
}

.cta__title {
  font-family: var(--font-btn);
  font-size: clamp(2.5rem, 5vw, 70px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  color: #ffa07a;
  margin: 0;
  font-style: normal;
}

.cta__main {
  display: grid;
  gap: 1rem;
  margin-top: 0;
}

.cta__row {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  min-width: 0;
}

/* Pill: left edge off-screen, visible part = 45vw */
.cta__img-wrap {
  border-radius: 1000px;
  overflow: hidden;
  height: 50vh;
  width: calc(45vw + 25vh);
  max-width: none;
  margin-left: calc(var(--side) * -1 - 25vh);
  min-width: 0;
}

.cta__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 40%;
  display: block;
}

.cta__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
}

.cta__lead {
  font-family: var(--font-display);
  font-size: var(--fs-lead);
  font-weight: 600;
  line-height: 1.25;
  color: #f6c8c6;
  margin: 0 0 30px;
  max-width: none;
  width: 70%;
}

.cta__points {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cta__point {
  display: grid;
  gap: 0.25rem;
}

.cta__step-label {
  font-family: var(--font-btn);
  font-size: var(--fs-xs);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffa07a;
  margin: 0;
  line-height: 1.2;
}

.cta__step-text {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.35;
  color: var(--cream);
  margin: 0;
}

.cta__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}

.cta__person {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1.25;
  color: #ed7470;
  margin: 0;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0;
}

.cta__aside,
.cta__row,
.cta__main,
.cta__inner {
  overflow: visible;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(2.75rem, 5vw, 4rem) var(--side) clamp(1.5rem, 2.5vw, 2rem);
  font-family: var(--font-display);
  position: relative;
  overflow: hidden;
  border-top: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  width: 100%;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
}

.site-footer__brand {
  display: grid;
  gap: 0.55rem;
}

.site-footer__logo {
  display: inline-flex;
  width: fit-content;
  transition: opacity 0.2s;
}

.site-footer__logo:hover {
  opacity: 0.85;
}

.site-footer__logo img {
  height: clamp(2.1rem, 3.2vw, 2.6rem);
  width: auto;
  display: block;
}

.site-footer__tag {
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 1.3;
  color: rgba(232, 227, 215, 0.55);
  margin: 0;
}

.site-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.25rem;
}

.site-footer__contact {
  display: grid;
  gap: 0.2rem;
  text-decoration: none;
  color: inherit;
}

.site-footer__contact-label {
  font-family: var(--font-btn);
  font-size: var(--fs-2xs);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 227, 215, 0.4);
}

.site-footer__contact-value {
  font-family: var(--font-btn);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  color: #ffa07a;
  transition: color 0.2s;
}

.site-footer__contact:hover .site-footer__contact-value {
  color: var(--coral);
}

.site-footer__nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  padding: 0;
  border-top: none;
  border-bottom: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.site-footer__nav::-webkit-scrollbar {
  display: none;
}

.site-footer__nav a {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: rgba(232, 227, 215, 0.78);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.15rem 0.95rem;
  transition: color 0.2s;
}

.site-footer__nav a:first-child {
  padding-left: 0;
}

.site-footer__nav a:not(:last-child)::after {
  content: none;
}

.site-footer__nav a:hover {
  color: #ffa07a;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.5rem;
}

.site-footer__policy {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: rgba(232, 227, 215, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__policy:hover {
  color: var(--cream);
}

.site-footer__copy {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: rgba(232, 227, 215, 0.35);
  margin: 0;
}

@media (min-width: 900px) {
  .site-footer__nav {
    justify-content: flex-start;
  }

  .site-footer__nav a {
    font-size: var(--fs-sm);
    padding: 0.15rem 1.15rem;
  }

  .site-footer__nav a:first-child {
    padding-left: 0;
  }

  .site-footer__contacts {
    justify-content: flex-end;
  }
}

/* ========== DISCUSS MODAL ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), visibility 0.22s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 42, 42, 0.55);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 40rem);
  background: var(--cream);
  color: var(--ink);
  border-radius: 32px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s var(--ease);
}

.modal.is-open .modal__panel {
  transform: none;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(42, 42, 42, 0.08);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.modal__close:hover {
  background: var(--ink);
  color: var(--cream);
}

.modal__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}

.modal__lead {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.15;
  color: rgba(42, 42, 42, 0.72);
  margin-bottom: 1.5rem;
}

.modal__form {
  display: grid;
  gap: 1.15rem;
}

.modal__field {
  display: grid;
  gap: 0.45rem;
}

.modal__label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(42, 42, 42, 0.55);
}

.modal__input {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border-radius: 1rem;
  border: 1.5px solid rgba(42, 42, 42, 0.15);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.modal__input::placeholder {
  color: rgba(42, 42, 42, 0.4);
}

.modal__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 29, 171, 0.15);
}

.modal__status {
  min-height: 1.4em;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.35;
  color: rgba(42, 42, 42, 0.62);
}

.modal__status.is-success {
  color: var(--blue);
}

.modal__status.is-error {
  color: var(--maroon);
}

.modal__status a {
  color: inherit;
  text-decoration: underline;
}

.modal__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}

.modal__consent input {
  flex: none;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  accent-color: var(--blue);
}

.modal__consent span {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  line-height: 1.4;
  color: rgba(42, 42, 42, 0.65);
}

.modal__consent a {
  color: var(--blue);
  text-decoration: underline;
}

.modal__submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-btn);
  font-weight: 900;
  font-size: var(--fs-btn-sm);
  text-transform: uppercase;
  overflow: visible;
  z-index: 5;
  --star-hover-color: var(--coral);
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s;
}

.modal__submit:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
}

.modal__submit:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

/* ========== MOBILE TEXT SAFETY ==========
   A handful of "statement" text blocks use line-height: 1 combined with a
   width/max-width in %, tuned so the text sits on one line at desktop
   widths. On narrow mobile screens the same % width forces these into
   several lines, and line-height: 1 leaves no room between them — lines
   visually collide. Below 900px (before any of these columns get their
   desktop treatment) we widen them back out and give lines room to
   breathe, without touching anything at 900px+. */
@media (max-width: 899px) {
  .key-card__body,
  .why-dark__lead,
  .why-dark__cols > p {
    width: 100%;
  }

  .step__title,
  .step__text {
    width: 100%;
  }

  .key-card__body,
  .stat-big__caption,
  .why-bubble p,
  .why-dark__lead,
  .why-dark__cols > p,
  .why-dark .skill-list li,
  .why-dark__footer {
    line-height: 1.3;
  }
}

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
  .checklist__grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
  }

  .tasks-grid {
    grid-template-columns: 1fr 1fr;
    /* ~1% of plaque width (plaque ≈ half viewport) */
    gap: 0.5vw;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }

  .love-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2rem;
    margin-left: calc((80vw - 2rem) / 2 * -0.1345);
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
  }

  .num-card--wide {
    grid-column: 1 / -1;
  }

  .why-dark__cols {
    grid-template-columns: 1fr 1fr;
  }

  .custom-card__cols {
    grid-template-columns: 30% 60%;
    column-gap: 10%;
    row-gap: 0;
  }

  .task-card__body {
    grid-template-columns: 40% 40%;
    column-gap: 20%;
    row-gap: 0;
  }

  .process-card__cols {
    grid-template-columns: 40% 50%;
    column-gap: 10%;
    row-gap: 0;
  }
}

@media (min-width: 900px) {
  .nav,
  .header-actions {
    display: flex;
  }

  .burger {
    display: none;
  }

  .love-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
      "love1 love2 aside"
      "love3 love4 aside";
    column-gap: 0;
    row-gap: 0;
    align-items: stretch;
    margin-left: calc(80vw / 3 * -0.1345);
  }

  .love-grid > .love-item:nth-child(1) { grid-area: love1; }
  .love-grid > .love-item:nth-child(2) { grid-area: love2; }
  .love-grid > .love-item:nth-child(3) { grid-area: love3; }
  .love-grid > .love-item:nth-child(4) { grid-area: love4; }

  .love-grid > .love__aside {
    grid-area: aside;
    min-height: 0;
    height: 100%;
  }

  .love-grid > .love-item:nth-child(1),
  .love-grid > .love-item:nth-child(2) {
    align-self: center;
  }

  .love-grid > .love-item:nth-child(3),
  .love-grid > .love-item:nth-child(4) {
    align-self: start;
    padding-top: calc(clamp(1.35rem, 2.5vw, 1.75rem) + 2%);
  }

  .hero__top {
    display: grid;
    grid-template-columns: calc(40vw - var(--side)) 45vw;
    column-gap: 0;
    align-items: start;
    min-height: 0;
  }

  .hero__logo {
    grid-column: 1;
    justify-self: start;
  }

  .hero__intro {
    grid-column: 2;
    position: static;
    left: auto;
    top: auto;
    width: auto;
    max-width: none;
  }

  .hero__main {
    display: grid;
    gap: 1rem;
    margin-top: clamp(1.725rem, 3.45vw, 2.875rem);
  }

  .hero__row {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .hero__img-wrap {
    flex: 0 0 auto;
    width: 75vw;
    height: 50vh;
    border-radius: 1000px;
    margin-left: calc(var(--side) * -1 - 25vh);
  }

  .hero__points {
    flex: 0 1 auto;
    width: fit-content;
    max-width: min(33.96rem, calc(25vw * 1.21275 - 30px - var(--side)));
    align-self: center;
    margin: 0;
  }

  .hero__aside {
    flex: 0 1 auto;
    max-width: min(33.96rem, calc(25vw * 1.21275 - 30px - var(--side)));
  }

  .hero__caption {
    max-width: 34.22rem;
  }

  .cta__top {
    display: grid;
    grid-template-columns: calc(40vw - var(--side)) 45vw;
    column-gap: 0;
    align-items: end;
    min-height: 0;
  }

  .cta__logo {
    grid-column: 1;
    justify-self: start;
  }

  .cta__title {
    grid-column: 2;
    font-size: 70px;
  }

  .cta__main {
    display: grid;
    gap: 1rem;
    margin-top: clamp(1.725rem, 3.45vw, 2.875rem);
  }

  .cta__row {
    display: flex;
    align-items: stretch;
    gap: 5vw;
  }

  .cta__img-wrap {
    flex: 0 0 auto;
    width: calc(45vw + 25vh);
    height: 50vh;
    border-radius: 1000px;
    margin-left: calc(var(--side) * -1 - 25vh);
    align-self: stretch;
  }

  .cta__points {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .cta__aside {
    flex: 0 0 40vw;
    width: 40vw;
    max-width: 40vw;
    min-width: 0;
    align-self: stretch;
    min-height: 50vh;
  }

  .why__grid {
    grid-template-columns: 0.85fr 1.78fr;
    align-items: stretch;
    gap: 3rem;
  }

  .what__head {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }

  .what__head h2 {
    grid-column: 1 / -1;
  }

  .steps {
    grid-template-columns: 2fr 2fr 1fr;
    align-items: stretch;
  }

  .step__tags {
    position: absolute;
    left: 7%;
    right: 7%;
    top: clamp(1.1rem, 2vw, 1.75rem);
    z-index: 3;
    margin: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.2rem;
    pointer-events: none;
  }

  .step__tags .tag {
    flex: 0 0 auto;
    font-size: var(--fs-2xs);
    padding: 0.35rem clamp(0.35rem, 0.6vw, 0.7rem);
  }

  .step--01,
  .step--02,
  .step--03 {
    padding-top: calc(clamp(5.5rem, 9vw, 7.5rem) + 60px);
  }

  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .custom__grid {
    grid-template-columns: 0.75fr 1.4fr;
    gap: 3rem;
    overflow: visible;
  }

  .custom-cards {
    width: calc(100% + 70px);
    max-width: calc(100% + 70px);
    justify-self: stretch;
  }

  .process__grid {
    grid-template-columns: 0.9fr 1.716fr;
    gap: 3rem;
  }

  .numbers-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, clamp(200px, 22vw, 280px));
    align-items: stretch;
  }

  .num-card:nth-child(1),
  .num-card:nth-child(2),
  .num-card:nth-child(3) {
    grid-column: span 2;
  }

  .num-card:nth-child(4) {
    grid-column: span 2;
  }

  .num-card:nth-child(5) {
    grid-column: span 4;
  }

  .num-card--wide {
    grid-column: span 4;
  }

  .num-card--photo {
    min-height: 0;
  }

  .num-card--photo img {
    min-height: 0;
  }
}

@media (min-width: 1100px) {
  .hero {
    padding-top: clamp(7.26rem, 10.89vw, 9.075rem);
    padding-bottom: clamp(3.5rem, 5vw, 5rem);
  }

  .hero__title {
    font-size: 1.9rem;
  }

  .cta {
    padding-top: clamp(7.26rem, 10.89vw, 9.075rem);
    padding-bottom: clamp(3.5rem, 5vw, 5rem);
  }

  .cta__title {
    font-size: 70px;
  }
}

@media (max-width: 639px) {
  .hero__row {
    display: grid;
    gap: 1.25rem;
  }

  .hero__img-wrap {
    width: calc(100% + var(--side) + 20vw);
    height: 40vh;
    margin-left: calc(var(--side) * -1 - 20vw);
    border-radius: 1000px;
  }

  .hero__points {
    max-width: 100%;
  }

  .cta__row {
    display: grid;
    gap: 1.25rem;
  }

  .cta__img-wrap {
    width: calc(100% + var(--side) + 20vw);
    height: 40vh;
    margin-left: calc(var(--side) * -1 - 20vw);
    border-radius: 1000px;
  }

  .cta__points {
    max-width: 100%;
  }

  .cta__aside {
    max-width: 100%;
  }
}
