/* ============================================================
   Boost Websites — styles.css
   ============================================================ */

:root {
  --ink-950: #060b16;
  --ink-900: #0a1424;
  --ink-800: #101e36;
  --ink-700: #1a2c4a;
  --blue: #3e7bff;
  --blue-deep: #2563eb;
  --teal: #2fd6b5;
  --grad: linear-gradient(135deg, #3e7bff 0%, #2fd6b5 100%);
  --grad-soft: linear-gradient(135deg, rgba(62,123,255,.12), rgba(47,214,181,.12));
  --bg-light: #f5f8fd;
  --bg-white: #ffffff;
  --text-head: #0e1b2e;
  --text-body: #47586f;
  --text-on-dark: #eaf1fb;
  --text-on-dark-sub: #9fb2cc;
  --border-light: #e3eaf4;
  --border-dark: rgba(255, 255, 255, .09);
  --amber: #ffb01f;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-md: 0 6px 24px rgba(14, 27, 46, .08);
  --shadow-lg: 0 24px 64px rgba(14, 27, 46, .16);
  --shadow-glow: 0 12px 40px rgba(62, 123, 255, .35);
  --font-head: "Sora", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--text-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

section { scroll-margin-top: calc(var(--header-h) + 12px); }

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}
.container-narrow { width: min(820px, 100% - 48px); }

.nowrap { white-space: nowrap; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 17px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(62, 123, 255, .45); }
.btn-ghost {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
  color: var(--text-on-dark);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .25);
  color: var(--text-on-dark);
}
.btn-outline:hover { border-color: var(--teal); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 20px 36px; font-size: 17px; }
.btn-sm { padding: 12px 22px; font-size: 14.5px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 11, 22, .82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.logo-mark { display: inline-flex; filter: drop-shadow(0 4px 12px rgba(62, 123, 255, .4)); }
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo-text em {
  font-style: normal;
  font-weight: 500;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav > a:not(.btn) {
  color: var(--text-on-dark-sub);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .18s ease;
}
.main-nav > a:not(.btn):hover { color: #fff; }
.nav-phone {
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink-950);
  padding: calc(var(--header-h) + 72px) 0 110px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
}
.orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(62, 123, 255, .55), transparent 65%);
  top: -180px; left: -120px;
}
.orb-2 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(47, 214, 181, .32), transparent 65%);
  bottom: -260px; right: -160px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.hero-inner > * { min-width: 0; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-on-dark-sub);
}
.price-badge {
  text-transform: none;
  letter-spacing: .02em;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  gap: 8px;
}
.price-badge .p0 { color: var(--teal); }
.price-badge svg { opacity: .6; }
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(47, 214, 181, .6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 214, 181, .6); }
  70% { box-shadow: 0 0 0 9px rgba(47, 214, 181, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 214, 181, 0); }
}
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 800;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-sub {
  color: var(--text-on-dark-sub);
  font-size: clamp(17px, 1.6vw, 19.5px);
  max-width: 54ch;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--text-on-dark); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-on-dark-sub);
  font-size: 14.5px;
  font-weight: 500;
}
.tick { width: 17px; height: 17px; color: var(--teal); flex: none; }

/* Hero visual */
.hero-visual { position: relative; }
.browser-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-800);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .55);
}
.browser-frame img { width: 100%; height: auto; }
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.b-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.b-dot:nth-child(1) { background: #ff6159; }
.b-dot:nth-child(2) { background: #ffbd2e; }
.b-dot:nth-child(3) { background: #28c840; }
.b-url {
  margin-left: 12px;
  flex: 1;
  min-width: 0;
  font-size: 12px;
  color: var(--text-on-dark-sub);
  background: rgba(255,255,255,.06);
  border-radius: 7px;
  padding: 5px 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 30, 54, .92);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
  animation: floaty 6s ease-in-out infinite;
}
.float-card strong { display: block; color: #fff; font-size: 14px; font-family: var(--font-head); font-weight: 600; }
.float-card small { color: var(--text-on-dark-sub); font-size: 12.5px; }
.float-approved { top: -22px; right: -14px; }
.float-builder { bottom: -26px; left: -18px; animation-delay: -3s; }
.float-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.float-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid rgba(255, 255, 255, .25);
  flex: none;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--ink-900);
  border-top: 1px solid var(--border-dark);
  padding: 34px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 2.6vw, 34px);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 14px; color: var(--text-on-dark-sub); }

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section-tint { background: var(--bg-light); }
.section-dark { background: var(--ink-950); position: relative; overflow: hidden; }
.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  margin-bottom: 18px;
  text-wrap: balance;
}
.section-head p { font-size: 17.5px; }
.on-dark { color: #fff; }
.on-dark-sub { color: var(--text-on-dark-sub); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.section-cta { text-align: center; margin-top: 56px; }
.cta-note { display: block; margin-top: 14px; font-size: 14px; color: var(--text-body); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 34px 26px 30px;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(62, 123, 255, .3);
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 15px; }

/* ---------- Comparison ---------- */
.compare-scroll { overflow-x: auto; padding: 18px 4px 26px; }
.compare-table {
  min-width: 780px;
  display: grid;
  gap: 0;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.15fr;
  align-items: stretch;
}
.compare-row > div {
  padding: 18px 22px;
  font-size: 15px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-row:last-child > div { border-bottom: 0; }
.compare-row > div:first-child { border-radius: 0; background: transparent; border-bottom-color: transparent; }
.c-feature {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-head);
  font-size: 15px !important;
}
.compare-header > div {
  background: transparent !important;
  border-bottom: 0 !important;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-head);
  font-size: 16px;
  padding-bottom: 14px;
}
.compare-header .c-boost {
  color: var(--text-head);
  gap: 9px;
}
.compare-row .c-boost {
  background: #fff;
  position: relative;
  box-shadow: -1px 0 0 var(--border-light);
}
.compare-row:not(.compare-header) .c-boost {
  background: linear-gradient(135deg, rgba(62,123,255,.055), rgba(47,214,181,.055)), #fff;
}
.compare-table {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}
.compare-header { background: var(--bg-white); }
.c-good, .c-bad, .c-warn {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex: none;
}
.c-good { background: rgba(47, 214, 181, .15); color: #0ca678; }
.c-bad { background: rgba(224, 49, 49, .09); color: #e03131; }
.c-warn { background: rgba(255, 176, 31, .15); color: #b8860b; }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(62, 123, 255, .3);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--grad-soft);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 23px; height: 23px; }
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; }

/* ---------- Case study ---------- */
.case-study {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.case-study > * { min-width: 0; }
.case-visual .browser-frame { box-shadow: 0 40px 90px rgba(0, 0, 0, .6); }
.stars { display: flex; gap: 4px; color: var(--amber); margin-bottom: 22px; }
.case-copy blockquote {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.case-attribution { margin-bottom: 34px; }
.case-attribution strong {
  display: block;
  font-family: var(--font-head);
  color: #fff;
  font-size: 17px;
}
.case-attribution span { color: var(--text-on-dark-sub); font-size: 14.5px; }
.case-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.case-fact {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.case-fact strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-on-dark-sub);
  margin-bottom: 5px;
}
.case-fact span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Portfolio grid (below case study) */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 64px;
}
.work-item { margin: 0; }
.work-item .browser-frame { box-shadow: 0 24px 60px rgba(0, 0, 0, .5); }
.work-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: top; }
.work-item figcaption { margin-top: 14px; }
.work-item figcaption strong {
  display: block;
  font-family: var(--font-head);
  color: #fff;
  font-size: 16px;
}
.work-item figcaption span { color: var(--text-on-dark-sub); font-size: 13.5px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.about-photo { position: relative; }
.about-photo img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: top;
  box-shadow: var(--shadow-lg);
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: -16px auto auto -16px;
  width: 120px; height: 120px;
  border-radius: 22px;
  background: var(--grad);
  opacity: .16;
  z-index: -1;
}
.about-photo-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 20px;
  box-shadow: var(--shadow-md);
}
.about-photo-badge strong {
  display: block;
  font-family: var(--font-head);
  color: var(--text-head);
  font-size: 16px;
}
.about-photo-badge span { font-size: 13px; color: var(--text-body); }
.about-copy h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 800; margin-bottom: 20px; }
.about-copy p { margin-bottom: 18px; }
.about-copy p strong { color: var(--text-head); }
.about-points { list-style: none; margin: 26px 0 30px; display: grid; gap: 13px; }
.about-points li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; }
.about-points .tick { margin-top: 4px; color: #0ca678; }
.about-contact { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-head);
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease;
}
.contact-chip:hover { border-color: var(--blue); transform: translateY(-2px); }
.contact-chip svg { color: var(--blue-deep); }

/* ---------- Pricing ---------- */
#pricing .orb-1 { top: auto; bottom: -200px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 460px));
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
}
.price-card {
  position: relative;
  background: var(--ink-800);
  border: 1px solid var(--border-dark);
  border-radius: 22px;
  padding: 42px 36px 36px;
  display: flex;
  flex-direction: column;
}
.price-featured {
  background: linear-gradient(var(--ink-800), var(--ink-800)) padding-box,
              var(--grad) border-box;
  border: 2px solid transparent;
  box-shadow: 0 30px 80px rgba(62, 123, 255, .22);
}
.price-flag {
  position: absolute;
  top: -15px; left: 36px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 16px;
  box-shadow: 0 8px 20px rgba(62, 123, 255, .35);
}
.price-flag-alt { background: var(--ink-700); border: 1px solid var(--border-dark); box-shadow: none; }
.price-card h3 { color: #fff; font-size: 21px; margin-bottom: 14px; }
.price-line { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.price-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 52px;
  letter-spacing: -0.03em;
  color: #fff;
}
.price-per { color: var(--text-on-dark-sub); font-size: 17px; font-weight: 500; }
.price-note { color: var(--text-on-dark-sub); font-size: 14.5px; margin-bottom: 26px; }
.price-note strong { color: var(--teal); }
.price-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.price-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-on-dark);
  font-size: 15px;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(47, 214, 181, .16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10.5l3.2 3.2L15 6.5' fill='none' stroke='%232fd6b5' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.guarantee {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(47, 214, 181, .07);
  border: 1px solid rgba(47, 214, 181, .25);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.guarantee-icon {
  width: 52px; height: 52px;
  flex: none;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(47, 214, 181, .3);
}
.guarantee strong {
  display: block;
  font-family: var(--font-head);
  color: #fff;
  font-size: 17.5px;
  margin-bottom: 6px;
}
.guarantee p { color: var(--text-on-dark-sub); font-size: 15px; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  border-color: rgba(62, 123, 255, .35);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--text-head);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  width: 26px; height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--grad-soft);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-body { padding: 0 24px 22px; }
.faq-body p { font-size: 15.5px; }

/* ---------- Final CTA / Form ---------- */
.section-cta-final {
  background: var(--ink-950);
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-3 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(62, 123, 255, .4), transparent 65%);
  top: -160px; right: -100px;
}
.orb-4 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(47, 214, 181, .28), transparent 65%);
  bottom: -200px; left: -120px;
}
.lead-form {
  position: relative;
  background: rgba(16, 30, 54, .65);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-dark);
  border-radius: 22px;
  padding: 40px;
  display: grid;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: grid; gap: 8px; }
.form-field label {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-on-dark);
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239fb2cc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  cursor: pointer;
}
.form-field select:invalid { color: rgba(159, 178, 204, .55); }
.form-field select option { color: #0e1b2e; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: #fff;
  background: rgba(6, 11, 22, .55);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
  width: 100%;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(159, 178, 204, .55); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(62, 123, 255, .22);
}
.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--text-on-dark-sub);
  font-size: 14px;
  text-align: center;
}
.cta-alt { text-align: center; margin-top: 28px; font-size: 15px; }
.cta-alt a { color: #fff; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); }
.cta-alt a:hover { border-bottom-color: var(--teal); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  border-top: 1px solid var(--border-dark);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand p {
  margin-top: 16px;
  color: var(--text-on-dark-sub);
  font-size: 14px;
  line-height: 1.7;
}
.footer-nav { display: grid; gap: 11px; align-content: start; }
.footer-nav a, .footer-contact a {
  color: var(--text-on-dark-sub);
  text-decoration: none;
  font-size: 14.5px;
  transition: color .18s ease;
}
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { display: grid; gap: 11px; align-content: start; }
.footer-contact a:first-child {
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}
.footer-legal {
  border-top: 1px solid var(--border-dark);
  padding: 22px 24px;
  text-align: center;
}
.footer-legal p { color: rgba(159, 178, 204, .6); font-size: 13px; }

/* ---------- Mobile CTA bar ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(6, 11, 22, .9);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-dark);
  display: none;
  transform: translateY(110%);
  transition: transform .3s ease;
}
.mobile-cta.show { transform: translateY(0); }

/* ---------- Reveal animations ----------
   Hidden state only applies once JS has stamped html.js —
   if the script fails to load, the page stays fully visible. */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}
html.js .reveal.visible { opacity: 1; transform: translateY(0); }
.d-1 { transition-delay: .1s; }
.d-2 { transition-delay: .2s; }
.d-3 { transition-delay: .3s; }
.d-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card { animation: none; }
  .pulse-dot { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1180px) {
  .nav-phone { display: none; }
  .main-nav { gap: 18px; }
  .main-nav > a:not(.btn) { font-size: 14px; }
  .main-nav .btn-sm { padding: 11px 18px; font-size: 14px; }
}

@media (max-width: 1080px) {
  .hero-inner { gap: 44px; }
  .steps, .features { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-950);
    border-bottom: 1px solid var(--border-dark);
    padding: 12px 24px 24px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.btn) { padding: 14px 4px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .main-nav > a.btn { margin-top: 16px; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }
  .site-header { background: rgba(6, 11, 22, .88); backdrop-filter: blur(14px); }

  .hero { padding: calc(var(--header-h) + 48px) 0 130px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; max-width: 560px; margin-inline: auto; }
  .float-approved { top: -18px; right: 0; }
  .float-builder { bottom: -22px; left: 0; }

  .case-study { grid-template-columns: 1fr; gap: 44px; }
  .work-grid { grid-template-columns: 1fr; gap: 36px; max-width: 560px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 420px; }
  .pricing-grid { grid-template-columns: minmax(0, 520px); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .section { padding: 76px 0; }
  .container, .container-narrow { width: min(1160px, 100% - 40px); }
  .steps, .features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 28px 22px; }
  .hero-ctas .btn { width: 100%; }
  .mobile-cta { display: block; }
  .site-footer { padding-bottom: 74px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .case-facts { grid-template-columns: 1fr; }
  .price-amount { font-size: 44px; }
  .guarantee { flex-direction: column; }
}
