:root {
  --bg: #f4f8ff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --navy: #07152f;
  --navy-2: #0b1f47;
  --navy-3: #102a5f;
  --text: #22304f;
  --muted: #65728f;
  --muted-dark: #afbdd8;
  --line: rgba(7, 21, 47, 0.1);
  --line-dark: rgba(255, 255, 255, 0.11);
  --primary: #0b63f6;
  --primary-dark: #074bc0;
  --cyan: #25d9ff;
  --green: #23c577;
  --soft-blue: #eaf3ff;
  --shadow: 0 24px 70px rgba(7, 21, 47, 0.15);
  --shadow-soft: 0 16px 44px rgba(7, 21, 47, 0.1);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 217, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(11, 99, 246, 0.12), transparent 26rem),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 45%, #ffffff 100%);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }

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

.skip-link {
  position: absolute;
  left: 20px;
  top: -60px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(6, 42, 112, 0.88), rgba(11, 99, 246, 0.68));
  border-bottom: 1px solid rgba(37, 217, 255, 0.2);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}
.site-header.is-scrolled {
  background: linear-gradient(90deg, rgba(5, 25, 62, 0.96), rgba(7, 63, 151, 0.92));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.08);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
}
.brand-mark {
  width: 46px;
  height: 38px;
  display: grid;
  place-items: center;
}
.brand-name { white-space: nowrap; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.93rem;
}
.nav-links a {
  position: relative;
  padding-block: 8px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
  transition: width 180ms ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: white;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), #0756df 55%, #274df4);
  box-shadow: 0 14px 32px rgba(11, 99, 246, 0.32);
}
.btn-primary:hover { box-shadow: 0 20px 40px rgba(11, 99, 246, 0.42); }
.btn-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.14); }
.text-link {
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.section { padding: 96px 0; position: relative; }
.section-dark {
  position: relative;
  color: white;
  background:
    radial-gradient(circle at 16% 18%, rgba(37, 217, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(11, 99, 246, 0.28), transparent 32rem),
    linear-gradient(145deg, var(--navy) 0%, #091a3a 48%, #041124 100%);
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  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: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.hero {
  min-height: 830px;
  display: flex;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 62px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--spotlight-x, 50%) var(--spotlight-y, 35%), rgba(37,217,255,.14), transparent 26rem);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 22px 22px;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 1.05fr);
  gap: 54px;
  align-items: center;
}
.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.8;
  pointer-events: none;
}
.hero-glow-one {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(37, 217, 255, 0.22), transparent 62%);
  top: 90px;
  right: 9%;
}
.hero-glow-two {
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(11, 99, 246, 0.22), transparent 66%);
  left: -130px;
  top: 210px;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37, 217, 255, 0.11);
  color: var(--cyan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  border: 1px solid rgba(37, 217, 255, 0.16);
}
.section:not(.section-dark) .section-kicker,
.options-section .section-kicker,
.faq-section .section-kicker,
.who-section .section-kicker,
.problem-section .section-kicker,
.process-section .section-kicker,
.fundamentals-section .section-kicker {
  background: rgba(11, 99, 246, 0.08);
  color: var(--primary);
  border-color: rgba(11, 99, 246, 0.1);
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
}
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  margin: 20px 0 22px;
  color: white;
  font-size: clamp(3rem, 6vw, 6.05rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  max-width: 800px;
}
h1::selection, h2::selection, p::selection { background: rgba(37,217,255,.28); }
.hero-intro {
  max-width: 650px;
  color: rgba(232, 240, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(232, 240, 255, 0.74);
  font-size: 0.94rem;
}
.trust-row p { margin-bottom: 0; }
.trust-row strong { color: white; }
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-stack span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: -8px;
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  font-size: 0.62rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}
.avatar-stack span:first-child { margin-left: 0; }

.hero-visual {
  position: relative;
  min-height: 570px;
  perspective: 1100px;
}
.orbit-ring {
  position: absolute;
  inset: 34px 20px 40px 20px;
  border: 1px solid rgba(37, 217, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-14deg);
}
.mockup-card,
.floating-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}
.laptop {
  position: absolute;
  inset: 76px 0 auto auto;
  width: min(100%, 590px);
  min-height: 355px;
  padding: 14px;
  border-radius: 30px;
  transform: rotateY(-10deg) rotateX(5deg) rotateZ(-1deg);
}
.browser-dots {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 8px;
}
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}
.site-preview {
  min-height: 300px;
  border-radius: 22px;
  padding: 24px;
  color: white;
  overflow: hidden;
  position: relative;
}
.site-preview::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
}
.luxe-preview {
  background:
    linear-gradient(140deg, rgba(8, 17, 34, .2), rgba(7, 21, 47, .88)),
    radial-gradient(circle at 75% 30%, rgba(37,217,255,.35), transparent 15rem),
    linear-gradient(135deg, #102a5f, #07152f);
}
.site-preview nav {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 54px;
}
.site-preview nav strong {
  margin-right: auto;
  color: white;
}
.site-preview h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: .95;
  letter-spacing: -.06em;
  max-width: 420px;
  margin-bottom: 14px;
}
.site-preview p {
  max-width: 370px;
  color: rgba(255,255,255,.78);
  margin-bottom: 18px;
}
.site-preview button,
.phone-screen button {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
}
.phone {
  position: absolute;
  right: 36px;
  bottom: 22px;
  width: 170px;
  min-height: 330px;
  border-radius: 32px;
  padding: 12px;
  transform: rotateZ(5deg);
}
.phone-speaker {
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  margin: 2px auto 10px;
}
.phone-screen {
  min-height: 288px;
  border-radius: 24px;
  padding: 20px 16px;
  background:
    radial-gradient(circle at 80% 0, rgba(37,217,255,.35), transparent 8rem),
    linear-gradient(160deg, #0e2c66, #081832);
  color: white;
}
.phone-screen small,
.floating-card small {
  display: block;
  color: rgba(255,255,255,.68);
  font-weight: 700;
}
.phone-screen h3 {
  margin: 16px 0 18px;
  line-height: 1.05;
  letter-spacing: -.04em;
  font-size: 1.55rem;
}
.phone-tabs { display: flex; gap: 6px; margin-top: 34px; }
.phone-tabs span {
  height: 8px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.floating-card {
  position: absolute;
  z-index: 4;
  border-radius: 20px;
  color: white;
  padding: 16px;
  animation: floaty 5.8s ease-in-out infinite;
}
.speed-card { left: 5px; top: 40px; width: 166px; }
.leads-card { right: 4px; top: 24px; width: 180px; animation-delay: -1s; }
.leads-card svg { color: var(--cyan); height: 54px; margin: 4px 0; }
.mobile-card { left: 80px; bottom: 35px; display: flex; gap: 10px; align-items: center; animation-delay: -2s; }
.check {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(35, 197, 119, .16);
  color: #80f0b2;
  font-weight: 700;
}
.score-ring {
  width: 58px;
  height: 58px;
  margin: 10px 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 8px solid rgba(37,217,255,.26);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.1);
  font-weight: 700;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.value-strip {
  margin-top: -52px;
  position: relative;
  z-index: 5;
  padding-bottom: 22px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.value-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(7, 21, 47, .08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}
.value-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  font-weight: 700;
  flex: 0 0 auto;
}
.value-card h2 { font-size: 1rem; margin-bottom: 0; color: var(--navy); }
.value-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading.left { text-align: left; margin-inline: 0; }
.section-heading h2,
.review-copy h2,
.contact-copy h2,
.fundamentals-panel h2 {
  margin: 16px 0 14px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.06em;
}
.section-dark .section-heading h2,
.section-dark .review-copy h2,
.section-dark .contact-copy h2 { color: white; }
.section-heading p,
.fundamentals-panel p,
.review-copy p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}
.section-dark .section-heading p,
.section-dark .review-copy p,
.section-dark .contact-copy p { color: rgba(232, 240, 255, .74); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.industry-card,
.option-card,
.process-card,
.mini-card,
.problem-list > div,
.faq-list details {
  border: 1px solid rgba(7, 21, 47, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}
.industry-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.industry-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -50px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(11, 99, 246, .08);
}
.industry-card:hover,
.option-card:hover,
.service-card:hover,
.concept-card:hover,
.process-card:hover,
.mini-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.industry-card span,
.option-top span,
.process-card span,
.problem-list span {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -.03em;
}
.industry-card h3,
.option-card h3,
.problem-list strong,
.process-card h3,
.mini-card h3 { color: var(--navy); margin: 10px 0 8px; letter-spacing: -.03em; }
.industry-card p,
.option-card p,
.problem-list p,
.process-card p,
.mini-card p { color: var(--muted); margin-bottom: 0; }

.problem-section { background: linear-gradient(180deg, rgba(234, 243, 255, .55), rgba(255,255,255,.75)); }
.problem-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 44px;
  align-items: start;
}
.problem-grid .btn { margin-top: 26px; }
.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.problem-list > div {
  padding: 20px;
}
.problem-list strong { display: block; font-size: 1.08rem; }

.services-section { padding-bottom: 104px; }
.services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  font-weight: 700;
  margin-bottom: 18px;
}
.service-card h3 { color: white; letter-spacing: -.025em; font-size: 1.26rem; margin-bottom: 10px; }
.service-card p { color: rgba(232, 240, 255, .72); margin-bottom: 22px; }
.service-card a { color: var(--cyan); font-weight: 700; }
.service-card a span { transition: transform 180ms ease; display: inline-block; }
.service-card a:hover span { transform: translateX(4px); }

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.option-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}
.option-card.featured {
  border-color: rgba(11, 99, 246, .28);
  background:
    radial-gradient(circle at 100% 0, rgba(37, 217, 255, .14), transparent 16rem),
    white;
}
.option-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(11, 99, 246, .08);
  font-size: .75rem;
  font-weight: 700;
}
.option-top { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.option-card h3 { font-size: 1.35rem; }
.option-card ul,
.review-card ul {
  padding: 0;
  margin: 22px 0 24px;
  list-style: none;
}
.option-card li,
.review-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--muted);
}
.option-card li::before,
.review-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.concepts-section { padding-bottom: 104px; }
.concept-note {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: -16px auto 30px;
  padding: 18px 22px;
  color: rgba(232, 240, 255, .76);
  text-align: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}
.concept-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.concept-card {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.075);
  box-shadow: 0 22px 60px rgba(0,0,0,.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.concept-preview {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.concept-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.58) 100%);
}
.concept-preview::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -55px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
}
.concept-preview > * { position: relative; z-index: 1; }
.concept-preview small {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .08em;
}
.concept-preview h3 { margin: 12px 0 12px; color: white; font-size: 1.8rem; line-height: 1.02; letter-spacing: -.038em; }
.concept-preview span {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.95);
  color: var(--navy);
  font-weight: 700;
  font-size: .84rem;
}
.concept-body { padding: 22px; }
.concept-body h4 { color: white; margin-bottom: 10px; font-size: 1.06rem; }
.concept-body p { color: rgba(232, 240, 255, .72); margin-bottom: 10px; }
.concept-body p:last-child { margin-bottom: 0; }
.beauty-preview { background: radial-gradient(circle at 80% 20%, rgba(255, 132, 193,.68), transparent 12rem), linear-gradient(135deg, #531d4c, #120f2a); }
.clinic-preview { background: radial-gradient(circle at 75% 15%, rgba(42, 217, 185,.72), transparent 12rem), linear-gradient(135deg, #0f5262, #091b39); }
.trade-preview { background: radial-gradient(circle at 75% 20%, rgba(255, 166, 59,.72), transparent 12rem), linear-gradient(135deg, #4e2b10, #0b1834); }
.food-preview { background: radial-gradient(circle at 75% 18%, rgba(255, 93, 67,.76), transparent 12rem), linear-gradient(135deg, #532015, #11183a); }
.shop-preview { background: radial-gradient(circle at 75% 18%, rgba(37, 217, 255,.72), transparent 12rem), linear-gradient(135deg, #17325a, #07152f); }
.pro-preview { background: radial-gradient(circle at 75% 18%, rgba(120, 134, 255,.72), transparent 12rem), linear-gradient(135deg, #1c2554, #07152f); }

.process-section { background: linear-gradient(180deg, #fff, #f5f9ff); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-card {
  padding: 24px;
  position: relative;
}
.process-card::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -17px;
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}
.process-card:last-child::after { display: none; }
.process-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(11, 99, 246, .08);
}

.fundamentals-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(37, 217, 255, .12), transparent 20rem),
    #f8fbff;
}
.fundamentals-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.fundamentals-panel {
  padding: 36px;
  border-radius: var(--radius-xl);
  color: white;
  background:
    radial-gradient(circle at 85% 15%, rgba(37,217,255,.28), transparent 18rem),
    linear-gradient(145deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}
.fundamentals-panel h2 { color: white; }
.fundamentals-panel p { color: rgba(232, 240, 255, .74); }
.fundamentals-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mini-card { padding: 24px; }
.mini-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  margin-bottom: 14px;
  font-weight: 700;
}

.review-cta { padding: 88px 0; }
.review-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 36px;
  align-items: center;
}
.review-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
}
.review-card h3 { color: white; margin: 18px 0 8px; }
.review-card li { color: rgba(232, 240, 255, .76); }
.review-meter {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  overflow: hidden;
}
.review-meter span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.faq-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  align-items: start;
}
.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 0; overflow: hidden; }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(11, 99, 246, .08);
  flex: 0 0 auto;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

.contact-section { padding-bottom: 92px; }
.contact-glow {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37,217,255,.2), transparent 65%);
}
.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 42px;
  align-items: start;
}
.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.contact-methods a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  transition: background 180ms ease, transform 180ms ease;
}
.contact-methods a:hover { background: rgba(255,255,255,.11); transform: translateX(4px); }
.contact-methods span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  font-weight: 700;
}
.contact-methods strong { display: block; color: white; }
.contact-methods small { color: rgba(232, 240, 255, .72); }
.contact-form {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  color: var(--text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 21, 47, .12);
  border-radius: 14px;
  background: #f7faff;
  padding: 13px 14px;
  outline: none;
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(11,99,246,.45);
  box-shadow: 0 0 0 4px rgba(11,99,246,.1);
  background: white;
}
.contact-form .btn { width: 100%; border: 0; }
.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .84rem;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  display: none;
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: .9rem;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  color: #064e3b;
  background: rgba(35, 197, 119, .14);
  border: 1px solid rgba(35, 197, 119, .28);
}
.form-status.is-error {
  color: #7f1d1d;
  background: rgba(239, 68, 68, .12);
  border: 1px solid rgba(239, 68, 68, .25);
}
.contact-form .btn[disabled] {
  opacity: .72;
  cursor: not-allowed;
  transform: none;
}

.site-footer {
  color: rgba(232, 240, 255, .78);
  background: #030b1a;
  padding: 54px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}
.footer-brand { margin-bottom: 14px; }
.site-footer h2 {
  margin-bottom: 14px;
  color: white;
  font-size: 1rem;
}
.site-footer p { max-width: 330px; }
.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 9px;
  color: rgba(232, 240, 255, .72);
}
.site-footer a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .9rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { margin: 0 !important; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 90ms; }
.delay-2 { transition-delay: 170ms; }
.delay-3 { transition-delay: 250ms; }

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

@media (max-width: 1040px) {
  .nav-links { gap: 18px; }
  .hero-grid,
  .problem-grid,
  .fundamentals-grid,
  .review-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 540px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid,
  .services-grid,
  .options-grid,
  .concept-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card::after { display: none; }
}

@media (max-width: 860px) {
  .nav { min-height: 70px; }
  .menu-toggle { display: inline-block; order: 3; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(7, 21, 47, .97);
    box-shadow: 0 18px 50px rgba(0,0,0,.3);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px; }
  .section { padding: 74px 0; }
  .hero { min-height: auto; padding: 118px 0 78px; }
  .hero-grid { gap: 30px; }
  .laptop { width: 100%; right: auto; left: 0; }
  .phone { right: 14px; }
  .speed-card { left: 0; }
  .leads-card { right: 0; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .brand-name { font-size: .95rem; }
  h1 { font-size: clamp(2.65rem, 16vw, 4.1rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .trust-row { align-items: flex-start; }
  .hero-visual { min-height: 470px; }
  .laptop { min-height: 310px; padding: 10px; transform: none; }
  .site-preview { min-height: 255px; padding: 18px; }
  .site-preview nav span { display: none; }
  .site-preview h2 { font-size: 2.15rem; }
  .phone { width: 145px; min-height: 285px; bottom: 10px; }
  .phone-screen { min-height: 244px; padding: 16px 12px; }
  .phone-screen h3 { font-size: 1.28rem; }
  .floating-card { padding: 12px; }
  .speed-card { width: 132px; top: 26px; }
  .leads-card { width: 145px; top: 4px; }
  .mobile-card { left: 12px; bottom: 2px; }
  .value-grid,
  .industry-grid,
  .services-grid,
  .options-grid,
  .concept-grid,
  .process-grid,
  .fundamentals-list,
  .problem-list,
  .form-row,
  .footer-grid { grid-template-columns: 1fr; }
  .value-strip { margin-top: 0; padding-top: 20px; }
  .section-heading h2,
  .review-copy h2,
  .contact-copy h2,
  .fundamentals-panel h2 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .contact-form,
  .fundamentals-panel { padding: 22px; border-radius: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Privacy and contact-form compliance additions */
.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 11px !important;
  margin: 4px 0 12px !important;
  color: var(--text) !important;
  font-weight: 500 !important;
  font-size: .86rem !important;
  line-height: 1.55;
}
.checkbox-label input {
  width: 18px !important;
  height: 18px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--primary);
  box-shadow: none !important;
}
.form-privacy {
  margin: 4px 0 16px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.6;
}
.form-privacy a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-disclosure {
  max-width: 420px !important;
  margin-top: 16px;
  color: rgba(232, 240, 255, .58) !important;
  font-size: .78rem;
  line-height: 1.65;
}
.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.legal-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 128px 0 82px;
}
.legal-hero-grid {
  position: relative;
  z-index: 2;
}
.legal-hero h1 {
  margin-bottom: 20px;
}
.last-updated {
  display: inline-flex;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(232, 240, 255, .78);
  background: rgba(255,255,255,.07);
  font-size: .9rem;
}
.legal-section {
  background: linear-gradient(180deg, #fff, #f5f9ff);
}
.legal-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.legal-summary,
.legal-content {
  border: 1px solid rgba(7, 21, 47, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}
.legal-summary {
  position: sticky;
  top: 104px;
  padding: 26px;
}
.legal-summary h2,
.legal-content h2 {
  color: var(--navy);
  letter-spacing: -.035em;
}
.legal-summary p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}
.legal-content {
  padding: 38px;
}
.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 1.45rem;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content ul {
  margin: 0 0 20px;
  padding-left: 22px;
}
.legal-content li {
  margin-bottom: 8px;
}
.legal-content strong {
  color: var(--navy);
}

@media (max-width: 1040px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-summary { position: static; }
}

@media (max-width: 680px) {
  .legal-hero { min-height: auto; padding: 118px 0 72px; }
  .legal-content,
  .legal-summary { padding: 24px; }
  .footer-bottom > div { gap: 12px; }
}
