:root {
  color-scheme: light;
  --neutral-primary-soft: #ffffff;
  --neutral-primary: #ffffff;
  --neutral-secondary-soft: #fafbfc;
  --neutral-secondary-medium: #f2f2f5;
  --neutral-tertiary-soft: #ededf0;
  --section-blue-soft: #f8fbff;
  --section-blue-medium: #eff6ff;
  --section-sky-soft: #f0f9ff;
  --section-slate-soft: #f6f8fb;
  --heading: #131316;
  --body: #5e5f6e;
  --body-subtle: #747686;
  --brand-softer: #eff6ff;
  --brand-soft: #dbeafe;
  --brand: #2563eb;
  --brand-medium: #bfdbfe;
  --brand-strong: #1d4ed8;
  --success-soft: #ecfdf5;
  --success: #059669;
  --success-strong: #047857;
  --warning-soft: #fffbeb;
  --warning: #d97706;
  --danger: #dc2626;
  --dark: #131316;
  --border-default: #e8e8ec;
  --border-default-medium: #e8e8ec;
  --border-default-strong: #e8e8ec;
  --border-brand-subtle: #bfdbfe;
  --color-1-400: rgba(255,255,255,0.15);
  --color-1-700: rgba(0,0,0,0.08);
  --brand-glow: rgba(37, 99, 235, 0.28);
  --overlay: rgba(19, 19, 22, 0.4);
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.04);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.06), 0 1px 2px -1px rgb(0 0 0 / 0.06);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.06), 0 2px 4px -2px rgb(0 0 0 / 0.06);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.07), 0 4px 6px -4px rgb(0 0 0 / 0.07);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.08);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.18);
  --ink: var(--heading);
  --muted: var(--body);
  --line: var(--border-default);
  --soft: var(--neutral-secondary-soft);
  --white: var(--neutral-primary-soft);
  --primary: var(--brand);
  --secondary: #0ea5e9;
  --cyan: var(--brand);
  --cyan-dark: var(--brand-strong);
  --lime: var(--success);
  --mint: var(--brand-softer);
  --amber: var(--warning);
  --shadow: var(--shadow-md);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--section-blue-soft);
  font-family: "Lato", system-ui, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 16px auto 0;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--neutral-primary-soft) 96%, transparent);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  animation: fade-slide-down 0.5s ease both;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: "Lato", system-ui, sans-serif;
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-name {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.brand-caption {
  color: var(--muted);
  font-family: "Lato", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.phone:hover {
  color: var(--cyan-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.mobile-nav button {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
  padding: 13px 18px;
  box-shadow: var(--shadow-xs), inset var(--color-1-400) 0 6px 0 -5px, var(--color-1-700) 0 4px 10px -5px;
  font-weight: 600;
  transition: all 0.15s ease;
}

.header-cta:hover,
.mobile-nav button:hover {
  background: linear-gradient(180deg, var(--brand-strong), var(--brand-strong));
  box-shadow: var(--shadow-sm), inset var(--color-1-400) 0 6px 0 -5px, 0 4px 16px -4px var(--brand-glow);
}

.burger {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.burger::before,
.burger::after,
.burger span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  content: "";
  transition: 0.2s ease;
}

.burger::before {
  top: 13px;
}

.burger span {
  top: 20px;
}

.burger::after {
  top: 27px;
}

.burger[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span {
  opacity: 0;
}

.burger[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 8px auto 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
  gap: 12px;
  animation: menu-open 0.18s ease both;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 52px;
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 58px 0 48px;
}

.hero-copy > *,
.hero-visual {
  animation: fade-slide-up 0.65s ease both;
}

.hero-copy .eyebrow { animation-delay: 0.06s; }
.hero-copy h1 { animation-delay: 0.14s; }
.hero-sub { animation-delay: 0.22s; }
.hero-actions { animation-delay: 0.3s; }
.hero-proof { animation-delay: 0.38s; }
.hero-visual { animation-delay: 0.34s; }

.hero-grid-lines {
  position: absolute;
  inset: 0 -40px;
  z-index: -1;
  opacity: 0.5;
  background-image:
    linear-gradient(color-mix(in srgb, var(--brand) 8%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--brand) 8%, transparent) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 56% 24%, black 0 35%, transparent 72%);
}

.eyebrow,
.section-kicker,
.offer-tag,
.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--cyan-dark);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before,
.offer-tag::before {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--brand);
  content: "";
  animation: pulse-dot 1.8s ease-in-out infinite;
}

h1,
.section-title,
.offer-copy h2,
.final-box h2 {
  margin: 0;
  font-family: "Lato", system-ui, sans-serif;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

h1 {
  max-width: 820px;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -1.2px;
}

em {
  color: var(--cyan-dark);
  font-style: normal;
}

.hero-sub {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  box-shadow: var(--shadow-xs), inset var(--color-1-400) 0 6px 0 -5px, var(--color-1-700) 0 4px 10px -5px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.15s ease;
}

.btn::after,
.header-cta::after,
form button::after,
.case-download button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255,255,255,0.24) 45%, transparent 58% 100%);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.btn:hover::after,
.header-cta:hover::after,
form button:hover::after,
.case-download button:hover::after {
  transform: translateX(120%);
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
}

.btn.primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, var(--brand-strong), var(--brand-strong));
  box-shadow: var(--shadow-sm), inset var(--color-1-400) 0 6px 0 -5px, 0 4px 16px -4px var(--brand-glow);
}

.btn.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--neutral-primary-soft);
}

.btn.secondary:hover {
  border-color: var(--border-default-strong);
  background: var(--neutral-secondary-medium);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-proof div,
.stat,
.pain-card,
.step-card,
.case-card,
.case-download,
.extra-cases article,
.team-row article,
.why-grid article,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--neutral-primary-soft);
  box-shadow: var(--shadow-xs);
}

.hero-proof div {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.hero-proof strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan-dark);
  font-family: "Lato", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.count-up {
  display: inline-block;
  min-width: 1.2ch;
  font-variant-numeric: tabular-nums;
}

.hero-proof strong .count-up {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

.hero-proof div > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  align-self: center;
}

.report-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: none;
  animation: float-soft 5s ease-in-out infinite;
}

.report-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
  font-size: 13px;
}

.report-head,
.report-row {
  display: grid;
  grid-template-columns: 1.45fr 0.88fr 0.55fr 0.7fr;
  gap: 10px;
  align-items: center;
}

.report-head {
  padding: 14px 18px;
  color: var(--muted);
  background: var(--soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-row {
  padding: 17px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.report-row span:first-child {
  color: var(--ink);
}

.report-row b {
  justify-self: start;
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--success-strong);
  background: var(--success-soft);
  font-size: 12px;
}

.report-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: var(--ink);
  background: var(--neutral-secondary-soft);
  font-weight: 900;
}

.floating-badge {
  position: absolute;
  border: 1px solid var(--border-default);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  background: var(--dark);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 900;
}

.floating-badge.left {
  left: -22px;
  bottom: 26px;
}

.floating-badge.right {
  top: 34px;
  right: -18px;
  background: var(--cyan-dark);
}

.logos-strip,
.stats-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.logos-strip {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logos-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.logos-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logos-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  font-weight: 800;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 34px 0 22px;
}

.stat {
  padding: 24px;
  box-shadow: var(--shadow-xs);
}

.stat strong {
  display: block;
  color: var(--cyan-dark);
  font-family: "Lato", system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

section {
  padding: 92px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-title {
  max-width: 820px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
}

.section-title.center,
.section-kicker.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-sub {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.pain-section {
  background: var(--neutral-primary-soft);
}

.how-section {
  background: var(--section-slate-soft);
}

.offer-section {
  background: var(--section-blue-medium);
}

.cases-section {
  background: var(--neutral-primary-soft);
}

.team-section {
  background: var(--section-blue-soft);
}

.why-section {
  background: var(--section-sky-soft);
}

.faq-section {
  background: var(--neutral-primary-soft);
}

.pain-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.pain-card {
  min-height: 260px;
  padding: 32px;
}

.pain-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--cyan-dark);
  background: var(--mint);
  font-family: "Lato", system-ui, sans-serif;
  font-size: 13px;
}

.pain-card h3,
.step-card h3,
.why-grid h3,
.extra-cases h4,
.team-row h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.pain-card p,
.step-card p,
.why-grid p,
.extra-cases p,
.team-row p,
.case-card p,
.case-download p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.step-card {
  padding: 32px;
  background: var(--white);
}

.step-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
  font-family: "Lato", system-ui, sans-serif;
  font-size: 22px;
}

.step-card strong {
  display: inline-flex;
  margin-top: 22px;
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--success-strong);
  background: var(--success-soft);
  font-size: 13px;
}

.offer-box {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.75fr);
  gap: 36px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 48px;
  background: var(--neutral-primary-soft);
  box-shadow: var(--shadow-md);
}

.offer-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.offer-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.offer-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.offer-copy li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.offer-copy li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--success);
  content: "✓";
  font-size: 12px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.scope-grid div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  background: var(--neutral-secondary-soft);
}

.scope-grid span {
  color: var(--cyan-dark);
  font-weight: 900;
}

.scope-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.lead-form,
.modal form,
.case-download form {
  display: grid;
  gap: 14px;
}

.lead-form {
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  background: var(--neutral-primary-soft);
  box-shadow: var(--shadow-xs);
}

.lead-form h3,
.modal-card h3,
.case-download h3 {
  margin: 0;
  font-size: 24px;
}

.lead-form > p,
.modal-card > p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.5;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border-default-medium);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--neutral-secondary-medium);
  outline: none;
  box-shadow: var(--shadow-xs);
  transition: all 0.2s ease;
}

input:hover {
  border-color: var(--border-default-strong);
}

input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

form button,
.case-download button {
  position: relative;
  overflow: hidden;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
  box-shadow: var(--shadow-xs), inset var(--color-1-400) 0 6px 0 -5px, var(--color-1-700) 0 4px 10px -5px;
  font-weight: 600;
  transition: all 0.15s ease;
}

form button:hover,
.case-download button:hover {
  background: linear-gradient(180deg, var(--brand-strong), var(--brand-strong));
  box-shadow: var(--shadow-sm), inset var(--color-1-400) 0 6px 0 -5px, 0 4px 16px -4px var(--brand-glow);
}

form button:disabled,
.case-download button:disabled {
  cursor: wait;
  opacity: 0.72;
  box-shadow: none;
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.form-trust span {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--success-strong);
  background: var(--success-soft);
  font-size: 12px;
  font-weight: 500;
}

small {
  color: var(--muted);
  line-height: 1.5;
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  margin-top: 40px;
}

.case-card,
.case-download {
  padding: 28px;
  box-shadow: var(--shadow-xs);
}

.case-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.case-top h3 {
  margin: 0;
  font-size: 28px;
}

.case-top p {
  margin: 6px 0 0;
}

.case-top span {
  align-self: flex-start;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--cyan-dark);
  background: var(--mint);
  font-weight: 900;
}

.featured h4 {
  margin: 28px 0 12px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.1;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.case-metrics div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  background: var(--neutral-secondary-soft);
}

.case-metrics strong {
  display: block;
  color: var(--cyan-dark);
  font-family: "Lato", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.case-metrics .count-up {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

.case-metrics div > span,
.extra-cases small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.keyword-cloud span {
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--neutral-secondary-medium);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.case-download ul {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.more-title {
  margin: 48px 0 18px;
  font-size: 28px;
}

.extra-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.extra-cases article {
  display: grid;
  grid-template-rows: auto auto minmax(84px, 1fr) auto minmax(50px, auto);
  padding: 24px;
}

.extra-cases span {
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.extra-cases h4 {
  margin: 24px 0 12px;
}

.extra-cases p {
  margin: 0;
}

.extra-cases strong {
  display: block;
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.extra-cases small {
  margin-top: 8px;
  min-height: 42px;
}

.team-head {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 40px;
  align-items: end;
}

.team-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 14px;
  overflow-x: auto;
  margin-top: 40px;
  padding-bottom: 10px;
}

.team-row article {
  min-height: 238px;
  padding: 22px;
  background: var(--neutral-primary-soft);
}

.team-photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  border: 1px dashed var(--border-brand-subtle);
  color: var(--cyan-dark);
  background:
    linear-gradient(135deg, var(--brand-softer), var(--neutral-secondary-soft)),
    var(--white);
  font-family: "Lato", system-ui, sans-serif;
  font-size: 13px;
}

.team-photo-placeholder::before {
  position: absolute;
  inset: 12px;
  border: 1px solid var(--border-brand-subtle);
  border-radius: 6px;
  content: "";
}

.team-photo-placeholder span {
  position: relative;
  z-index: 1;
}

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

.why-grid article {
  padding: 26px;
}

.why-grid h3 {
  margin-top: 0;
}

.narrow {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

details {
  padding: 20px 22px;
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  flex: 0 0 auto;
  color: var(--cyan-dark);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin-top: 14px;
}

.final-section {
  padding: 0 0 90px;
  background: var(--section-blue-soft);
}

.final-box {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-brand-subtle);
  border-radius: 12px;
  padding: 58px;
  color: var(--ink);
  background: var(--brand-softer);
  box-shadow: var(--shadow-md);
}

.final-box p {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 600;
}

.final-box h2 {
  max-width: 780px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}

.final-box em {
  color: var(--brand-strong);
}

.final-box .btn {
  margin-top: 28px;
  color: var(--white);
  background: linear-gradient(180deg, var(--brand), var(--brand-strong));
}

.final-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.final-points span {
  border: 1px solid var(--border-brand-subtle);
  border-radius: 999px;
  padding: 10px 13px;
  background: var(--neutral-primary-soft);
  font-size: 13px;
  font-weight: 500;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-weight: 800;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--overlay);
  backdrop-filter: blur(4px);
}

.modal[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(480px, 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  background: var(--neutral-primary);
  box-shadow: var(--shadow-xl);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
}

.modal-close:hover {
  background: var(--neutral-secondary-medium);
  color: var(--ink);
}

.modal-badge {
  margin-bottom: 12px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 360px;
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--white);
  background: var(--dark);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
}

.toast[hidden] {
  display: none;
}

.is-hidden {
  opacity: 0;
  transform: translateY(18px);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

@keyframes fade-slide-down {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menu-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand) 32%, transparent);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px transparent;
    transform: scale(0.88);
  }
}

@keyframes float-soft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .is-hidden {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .nav-links,
  .phone,
  .header-cta {
    display: none;
  }

  .burger {
    display: block;
    margin-left: auto;
  }

  .hero,
  .offer-box,
  .case-feature,
  .team-head {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-visual {
    max-width: 640px;
  }

  .stats-strip,
  .pain-grid,
  .extra-cases {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    margin-top: 8px;
  }

  .brand span:last-child {
    font-size: 14px;
  }

  .hero {
    gap: 0;
    padding: 32px 0 28px;
  }

  h1 {
    font-size: clamp(29px, 8.2vw, 32px);
    line-height: 1.08;
  }

  .hero-sub,
  .section-sub,
  .offer-copy > p,
  .team-head p:last-child {
    font-size: 16px;
  }

  .hero-sub {
    line-height: 1.55;
  }

  .hero-visual,
  .hero-proof {
    display: none;
  }

  .btn {
    min-height: 50px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-proof,
  .stats-strip,
  .pain-grid,
  .steps-grid,
  .scope-grid,
  .case-metrics,
  .extra-cases,
  .why-grid,
  .logos-strip {
    grid-template-columns: 1fr;
  }

  .logos-strip {
    align-items: start;
  }

  section {
    padding: 68px 0;
  }

  .section-title,
  .offer-copy h2,
  .final-box h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .offer-box,
  .final-box {
    padding: 26px;
  }

  .report-shell {
    transform: none;
  }

  .report-head,
  .report-row {
    grid-template-columns: 1.2fr 0.7fr 0.5fr 0.7fr;
    font-size: 11px;
  }

  .report-row {
    padding: 13px 12px;
  }

  .report-head {
    padding: 12px;
  }

  .report-top,
  .report-foot,
  .case-top,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-badge {
    display: none;
  }

  .lead-form,
  .modal-card,
  .case-card,
  .case-download {
    padding: 22px;
  }

  .team-row {
    grid-template-columns: repeat(5, 210px);
    max-width: 100%;
    overscroll-behavior-inline: contain;
  }

  .extra-cases article {
    grid-template-rows: auto;
  }

  .extra-cases small {
    min-height: 0;
  }

  .hero-grid-lines {
    inset: 0;
  }

  .site-footer {
    padding-bottom: 30px;
  }
}
