:root {
  --navy-950: #041022;
  --navy-900: #07172f;
  --navy-850: #0b2244;
  --navy-800: #0f2c55;
  --ink: #0b1830;
  --text: #30415d;
  --muted: #66758d;
  --line: #dce5f1;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --blue: #1677ff;
  --blue-2: #35b8ff;
  --cyan: #25c6da;
  --green: #22b983;
  --violet: #7459ff;
  --orange: #ffab3d;
  --red: #ff6174;
  --shadow-sm: 0 10px 30px rgba(12, 42, 84, .08);
  --shadow-md: 0 24px 70px rgba(5, 24, 54, .16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { display: block; }

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { padding: 104px 0; }
.section-muted { background: var(--surface-soft); }
.section-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(22, 119, 255, .24), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 52%, #0a2a57);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: rgba(4, 16, 34, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(18px);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 74px;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 13px;
  color: #fff;
  font-weight: 850;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--blue-2), var(--blue), var(--violet));
  box-shadow: 0 8px 26px rgba(22, 119, 255, .35);
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 14px; font-weight: 780; }
.brand-copy small { margin-top: 4px; color: rgba(255,255,255,.58); font-size: 12px; }
.desktop-nav { display: flex; justify-content: center; gap: 30px; }
.desktop-nav a { color: rgba(255,255,255,.72); font-size: 14px; transition: color .2s ease; }
.desktop-nav a:hover { color: #fff; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-nav {
  display: none;
  padding: 8px 20px 20px;
  background: rgba(4, 16, 34, .98);
}
.mobile-nav a {
  display: block;
  padding: 13px 0;
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 760;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-sm { min-height: 42px; padding: 10px 16px; border-radius: 12px; font-size: 14px; }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #3e67ff);
  box-shadow: 0 14px 34px rgba(22,119,255,.28);
}
.button-primary:hover { box-shadow: 0 18px 42px rgba(22,119,255,.38); }
.button-secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), #5d7cff);
  box-shadow: 0 14px 34px rgba(116,89,255,.24);
}
.button-outline { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.06); }
.button-outline:hover { background: rgba(255,255,255,.11); }
.button-ghost { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.04); }
.button-outline-dark { color: var(--ink); border-color: var(--line); background: #fff; }
.button-block { width: 100%; }

.hero { padding: 82px 0 76px; }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 66px;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: -180px; top: -180px; background: rgba(36, 130, 255, .12); }
.hero-glow-two { width: 360px; height: 360px; left: 30%; bottom: -250px; background: rgba(94, 67, 255, .16); }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #52c7ff;
  font-size: 13px;
  font-weight: 790;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: #36c6ff; box-shadow: 0 0 20px #36c6ff; }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(45px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.45;
}
.hero-price {
  display: inline-grid;
  gap: 4px;
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(79, 181, 255, .24);
  border-radius: 16px;
  background: rgba(23, 86, 160, .19);
}
.hero-price span { color: rgba(255,255,255,.6); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.hero-price strong { font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { max-width: 610px; margin: 16px 0 0; color: rgba(255,255,255,.52); font-size: 13px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 670px;
  margin-top: 34px;
}
.trust-row > div { padding: 15px 14px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.045); }
.trust-row strong { display: block; color: #fff; font-size: 20px; }
.trust-row span { display: block; margin-top: 2px; color: rgba(255,255,255,.54); font-size: 12px; }

.hero-visual { min-width: 0; }
.portrait-shell {
  position: relative;
  width: min(100%, 480px);
  margin-left: auto;
  padding: 26px 26px 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(23, 80, 151, .27), rgba(255,255,255,.045));
  box-shadow: 0 36px 90px rgba(0,0,0,.3);
}
.portrait-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(75, 176, 255, .18);
  border-radius: 28px;
  pointer-events: none;
}
.portrait-backdrop {
  position: absolute;
  inset: 22% 10% 5%;
  border-radius: 50% 50% 20% 20%;
  background: radial-gradient(circle at 50% 20%, rgba(66,179,255,.36), transparent 58%);
  filter: blur(8px);
}
.portrait-shell img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 26px 26px 0 0;
}
.portrait-caption {
  position: absolute;
  z-index: 5;
  left: 44px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(4, 20, 46, .83);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
  backdrop-filter: blur(12px);
}
.portrait-caption strong, .portrait-caption small { display: block; }
.portrait-caption strong { font-size: 14px; }
.portrait-caption small { color: rgba(255,255,255,.58); font-size: 11px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #34d49d; box-shadow: 0 0 0 5px rgba(52,212,157,.13); }
.float-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 220px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 680;
  background: rgba(4,20,46,.82);
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
}
.float-icon { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 9px; color: #fff; background: linear-gradient(135deg, var(--blue-2), var(--blue)); }
.float-card-top { left: -52px; top: 132px; }
.float-card-bottom { right: -36px; bottom: 92px; }

.proof-strip { padding: 0; background: #fff; }
.proof-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -1px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  box-shadow: var(--shadow-sm);
}
.proof-item { display: flex; gap: 15px; min-width: 0; padding: 24px 26px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-icon { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 auto; border-radius: 15px; color: var(--blue); font-weight: 850; background: #eaf3ff; }
.proof-item strong, .proof-item span { display: block; }
.proof-item strong { margin-bottom: 4px; font-size: 15px; }
.proof-item div span { color: var(--muted); font-size: 13px; line-height: 1.45; }

.section-heading { max-width: 820px; margin-bottom: 48px; }
.section-heading.compact { margin-bottom: 0; }
.section-heading .section-kicker { margin-bottom: 14px; color: var(--blue); }
.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading p { max-width: 720px; margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: rgba(255,255,255,.62); }
.section-heading.light .section-kicker { color: #52c7ff; }

.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.solution-card {
  position: relative;
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.solution-card:hover { transform: translateY(-5px); border-color: #c8d9ef; box-shadow: 0 20px 50px rgba(12,42,84,.13); }
.card-number { position: absolute; top: 22px; right: 24px; color: #aebbd0; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.solution-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; }
.solution-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-blue { color: var(--blue); background: #e9f2ff; }
.icon-green { color: var(--green); background: #e7f8f2; }
.icon-violet { color: var(--violet); background: #f0edff; }
.icon-orange { color: #ec8b16; background: #fff2df; }
.icon-cyan { color: #16aabd; background: #e7f9fb; }
.icon-red { color: var(--red); background: #ffebee; }
.solution-card h3 { margin: 22px 0 10px; font-size: 22px; letter-spacing: -.02em; }
.solution-card p { margin: 0; color: var(--muted); }

.starter-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 70px; }
.starter-card { overflow: hidden; border: 1px solid #cfddf0; border-radius: 28px; background: #fff; box-shadow: var(--shadow-md); }
.starter-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 34px; border-bottom: 1px solid var(--line); }
.starter-label { color: var(--blue); font-size: 12px; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; }
.starter-top h3 { margin: 8px 0 0; font-size: 27px; line-height: 1.2; }
.starter-price { min-width: 150px; text-align: right; }
.starter-price small, .starter-price span { display: block; color: var(--muted); font-size: 12px; }
.starter-price strong { display: block; color: var(--blue); font-size: 30px; line-height: 1.1; }
.starter-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; padding: 30px 34px; }
.starter-list div { display: flex; gap: 10px; color: var(--text); }
.starter-list span { display: grid; place-items: center; width: 22px; height: 22px; flex: 0 0 auto; border-radius: 50%; color: #fff; font-size: 12px; font-weight: 800; background: var(--green); }
.starter-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 34px; color: var(--muted); background: #f6f9fd; }
.starter-footer a { color: var(--blue); font-weight: 750; }

.cases-section { background: linear-gradient(145deg, #041022, #071a35 52%, #0b2a55); }
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.case-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 26px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}
.case-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 30px 24px;
  border-right: 1px solid rgba(255,255,255,.09);
  background: radial-gradient(circle at 50% 40%, rgba(38,137,255,.24), transparent 62%);
}
.case-visual svg { width: 145px; max-width: 85%; fill: none; stroke: #62c7ff; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 15px rgba(56,172,255,.35)); }
.case-line { position: absolute; left: 18px; right: 18px; bottom: 23px; display: flex; align-items: center; justify-content: center; gap: 7px; color: rgba(255,255,255,.58); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.case-line i { width: 18px; height: 1px; background: rgba(79,181,255,.52); }
.case-copy { display: flex; flex-direction: column; justify-content: center; padding: 34px; }
.case-tag { align-self: flex-start; padding: 7px 10px; border: 1px solid rgba(82,199,255,.21); border-radius: 999px; color: #62c7ff; font-size: 11px; font-weight: 760; text-transform: uppercase; letter-spacing: .08em; background: rgba(31,125,216,.12); }
.case-copy h3 { margin: 18px 0 12px; color: #fff; font-size: 24px; line-height: 1.2; }
.case-copy p { margin: 0; color: rgba(255,255,255,.6); }
.case-copy strong { margin-top: 20px; color: #fff; font-size: 14px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 0; margin: 0; list-style: none; }
.process-step { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.process-step::after { content: ""; position: absolute; top: 54px; right: -17px; z-index: 3; width: 18px; height: 2px; background: #ccd9e9; }
.process-step:last-child::after { display: none; }
.process-step > span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 16px; color: var(--blue); font-weight: 850; background: #eaf3ff; }
.process-step h3 { margin: 22px 0 8px; font-size: 20px; }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.price-card.featured { border-color: rgba(22,119,255,.38); box-shadow: 0 22px 60px rgba(22,119,255,.14); }
.price-badge { align-self: flex-start; padding: 7px 10px; border-radius: 999px; color: var(--blue); font-size: 11px; font-weight: 780; text-transform: uppercase; letter-spacing: .08em; background: #eaf3ff; }
.price-badge.secondary { color: var(--violet); background: #f0edff; }
.price-badge.muted { color: #65758d; background: #eef2f6; }
.price-card h3 { margin: 22px 0 10px; font-size: 24px; line-height: 1.25; }
.price-value { color: var(--blue); font-size: 38px; font-weight: 850; letter-spacing: -.04em; }
.price-value small { font-size: 14px; font-weight: 650; }
.price-value.price-text { color: var(--ink); font-size: 32px; }
.price-card ul { display: grid; gap: 11px; padding: 0; margin: 26px 0 30px; list-style: none; color: var(--text); }
.price-card li { position: relative; padding-left: 23px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 850; }
.price-card .button { margin-top: auto; }

.why-section { overflow: hidden; }
.why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.why-intro { position: sticky; top: 116px; }
.why-intro h2 { margin: 0; font-size: clamp(34px, 4.2vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.why-intro p { margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.why-list { display: grid; gap: 14px; }
.why-item { display: flex; gap: 20px; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.why-item > span { display: grid; place-items: center; width: 52px; height: 52px; flex: 0 0 auto; border-radius: 16px; color: #fff; font-size: 17px; font-weight: 850; background: linear-gradient(135deg, var(--blue-2), var(--blue)); }
.why-item h3 { margin: 1px 0 7px; font-size: 20px; }
.why-item p { margin: 0; color: var(--muted); }

.faq-section { background: linear-gradient(135deg, #07172f, #0a2850); }
.faq-grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: 70px; align-items: start; }
.accordion { display: grid; gap: 12px; }
.accordion details { border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(255,255,255,.05); }
.accordion summary { position: relative; padding: 22px 60px 22px 24px; color: #fff; font-weight: 720; list-style: none; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; top: 50%; right: 22px; transform: translateY(-50%); color: #52c7ff; font-size: 27px; font-weight: 400; }
.accordion details[open] summary::after { content: "−"; }
.accordion p { margin: 0; padding: 0 24px 23px; color: rgba(255,255,255,.62); }

.lead-section { padding: 108px 0; background: #fff; }
.lead-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.lead-copy h2 { max-width: 650px; margin: 0; font-size: clamp(36px, 4.8vw, 58px); line-height: 1.04; letter-spacing: -.05em; }
.lead-copy > p { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.lead-points { display: grid; gap: 16px; margin-top: 34px; }
.lead-points > div { display: flex; gap: 15px; align-items: flex-start; }
.lead-points > div > span { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 13px; color: var(--blue); font-size: 12px; font-weight: 850; background: #eaf3ff; }
.lead-points p { margin: 0; color: var(--muted); }
.lead-points strong { display: block; margin-bottom: 2px; color: var(--ink); }
.direct-contact { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 34px; color: var(--muted); font-size: 14px; }
.direct-contact a { color: var(--blue); font-weight: 750; }

.lead-form { padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface-soft); box-shadow: var(--shadow-md); }
.form-head { margin-bottom: 24px; }
.form-head h3 { margin: 0; font-size: 29px; }
.form-head p { margin: 5px 0 0; color: var(--muted); }
.field { display: grid; gap: 8px; margin-top: 17px; }
.field > span { color: var(--text); font-size: 13px; font-weight: 720; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #ced9e7;
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input, .field select { min-height: 52px; padding: 0 15px; }
.field textarea { padding: 14px 15px; resize: vertical; min-height: 124px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(22,119,255,.1); }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--red); }
.field input::placeholder, .field textarea::placeholder { color: #a0adbe; }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.consent { display: flex; gap: 10px; margin: 20px 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.consent input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 1px; accent-color: var(--blue); }
.consent a { color: var(--blue); text-decoration: underline; }
.submit-button[disabled] { opacity: .7; cursor: wait; transform: none; }
.form-status { min-height: 24px; margin-top: 15px; color: var(--muted); font-size: 13px; }
.form-status.success { color: #11865e; }
.form-status.error { color: #c53a50; }

.site-footer { padding: 64px 0 26px; color: #fff; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 60px; }
.footer-brand { color: #fff; }
.footer-grid > div > p { max-width: 430px; color: rgba(255,255,255,.52); }
.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links strong { margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,.62); font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.42); font-size: 12px; }

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #fff;
  font-weight: 760;
  background: linear-gradient(135deg, var(--blue), #415bff);
  box-shadow: 0 16px 42px rgba(22,119,255,.38);
}
.floating-cta svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .hero-grid { gap: 36px; }
  .float-card-top { left: -20px; }
  .float-card-bottom { right: -10px; }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .case-card { grid-template-columns: 1fr; }
  .case-visual { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .section { padding: 78px 0; }
  .desktop-nav, .header-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .site-header.open .mobile-nav { display: block; }
  .site-header.open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 58px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { text-align: center; }
  .hero h1, .hero-lead, .hero-note { margin-inline: auto; }
  .hero-price { text-align: left; }
  .hero-actions { justify-content: center; }
  .trust-row { margin-inline: auto; }
  .portrait-shell { margin: 18px auto 0; }
  .portrait-shell img { height: 600px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .starter-grid, .why-grid, .faq-grid, .lead-grid { grid-template-columns: 1fr; gap: 44px; }
  .why-intro { position: static; }
  .case-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .floating-cta { display: flex; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 66px 0; }
  .header-inner { min-height: 66px; }
  .brand-copy strong { font-size: 13px; }
  .hero { padding: 46px 0 58px; }
  .hero h1 { font-size: clamp(39px, 12vw, 58px); }
  .hero-lead { font-size: 18px; }
  .hero-actions .button { width: 100%; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .portrait-shell { padding: 15px 15px 0; border-radius: 28px; }
  .portrait-shell img { height: 500px; object-position: center 8%; }
  .portrait-caption { left: 28px; bottom: 15px; }
  .float-card { max-width: 175px; font-size: 11px; padding: 9px 10px; }
  .float-card-top { left: 5px; top: 105px; }
  .float-card-bottom { right: 5px; bottom: 82px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; padding: 24px; }
  .starter-top { display: grid; padding: 25px; }
  .starter-price { text-align: left; }
  .starter-list { grid-template-columns: 1fr; padding: 25px; }
  .starter-footer { align-items: flex-start; flex-direction: column; padding: 18px 25px; }
  .case-copy { padding: 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card:last-child { grid-column: auto; }
  .lead-form { padding: 24px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .floating-cta span { display: none; }
  .floating-cta { width: 52px; height: 52px; padding: 0; justify-content: center; }
}

@media (max-width: 620px) {
  .hero-price { width: 100%; }
  .hero-price strong { white-space: nowrap; font-size: 16px; letter-spacing: -.025em; }
}

.floating-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease, box-shadow .2s ease;
}
.floating-cta.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
