/* ============================================================
   SKAVVO DIGITAL
   Palette (≈60% blue / 40% orange):
     Deep Navy #0B1524 · Electric Blue #2E7DF7 (dominant) · Kinetic Orange #FF5A00 (accent) · Ice White #F8F9FA
   Type: Plus Jakarta Sans (display) · Inter (body)
   ============================================================ */

:root {
  --navy-950: #070E1A;
  --navy-900: #0B1524;
  --navy-800: #111E33;
  --navy-700: #1A2C47;
  --navy-600: #263E60;

  --blue: #2E7DF7;
  --blue-soft: #5B9BFF;
  --blue-deep: #1A5FD0;
  --blue-tint: #EAF2FE;

  --orange: #FF5A00;
  --orange-soft: #FF8A3D;
  --orange-tint: #FFF1E9;

  --white: #F8F9FA;
  --ink: #0B1524;
  --line: #E2E7EE;
  --muted: #94A3B8;
  --muted-ink: #55637A;

  --ff-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;

  --r-card: 14px;
  --r-price: 10px;
  --r-pill: 999px;
  --r-input: 8px;

  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0.14, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; font-family: var(--ff-body); color: var(--ink); background: var(--white);
  line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.skip { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--blue); color: #fff; padding: 10px 16px; border-radius: var(--r-input); }
.skip:focus { left: 12px; top: 12px; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ============================================================
   SCROLL REVEAL — restrained: 14px lift, once, never blocks reading
   ============================================================ */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.62s var(--ease), transform 0.62s var(--ease); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   AMBIENT — layered gradient depth + barely-there drift
   ============================================================ */
.ambient { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.ambient::after {
  /* soft mesh wash for depth under the orbs — kept low so it never competes with text */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 78% 8%, rgba(46,125,247,0.07) 0%, transparent 62%),
    radial-gradient(70% 60% at 12% 92%, rgba(91,155,255,0.05) 0%, transparent 64%),
    linear-gradient(150deg, rgba(46,125,247,0.03) 0%, transparent 45%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(130px); will-change: transform; }
.orb-a {
  width: 660px; height: 660px; top: -16%; right: -8%;
  background: conic-gradient(from 210deg at 50% 50%, rgba(46,125,247,0.2), rgba(91,155,255,0.1), rgba(26,95,208,0.17), rgba(46,125,247,0.2));
  animation: driftA 42s var(--ease-soft) infinite alternate;
}
.orb-b {
  width: 520px; height: 520px; bottom: -20%; left: 4%;
  background: radial-gradient(circle at 40% 40%, rgba(91,155,255,0.13) 0%, rgba(46,125,247,0.05) 52%, transparent 74%);
  animation: driftB 52s var(--ease-soft) infinite alternate;
}
/* orange: nudged up, still clearly under the blue */
.orb-c {
  width: 420px; height: 420px; top: 44%; right: 28%;
  background: radial-gradient(circle, rgba(255,90,0,0.17) 0%, rgba(255,90,0,0.06) 52%, transparent 72%);
  animation: driftC 46s var(--ease-soft) infinite alternate;
}
/* the hero sits behind the headline — dim it further still */
.hero .ambient .orb-a { opacity: 0.55; }
.hero .ambient .orb-b { opacity: 0.5; }
.hero .ambient .orb-c { opacity: 0.8; }
.hero .ambient::after { opacity: 0.6; }
@keyframes driftA { from { transform: translate3d(0,0,0) scale(1) rotate(0deg); } to { transform: translate3d(-46px, 34px, 0) scale(1.08) rotate(24deg); } }
@keyframes driftB { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(52px, -32px, 0) scale(1.1); } }
@keyframes driftC { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-38px, -44px, 0) scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .orb { animation: none; } }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--ff-display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-soft);
  display: inline-flex; align-items: center; gap: 12px; margin: 0 0 22px;
}
.eyebrow .tick { width: 28px; height: 2px; background: var(--blue-soft); display: inline-block; border-radius: 2px; }
.eyebrow-ink { color: var(--blue); }
.eyebrow-ink .tick { background: var(--blue); }

.section-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.12; letter-spacing: -0.025em; margin: 0 0 18px; color: var(--ink); }
.section-title.light { color: #fff; }
.section-sub { font-size: 1.05rem; color: var(--muted-ink); max-width: 50ch; margin: 0; }
.section-head { max-width: 680px; margin-bottom: 48px; }

.page-head { max-width: 760px; padding: clamp(48px, 7vh, 84px) 0 clamp(30px, 4vh, 44px); }
.page-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.06; letter-spacing: -0.03em; margin: 0 0 18px; color: var(--ink); }
.page-lead { font-size: 1.14rem; color: var(--muted-ink); max-width: 60ch; margin: 0; }
.block-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.35rem, 2.4vw, 1.9rem); letter-spacing: -0.02em; margin: 0 0 10px; color: var(--ink); }
.block-sub { color: var(--muted-ink); margin: 0; max-width: 58ch; }

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-display); font-weight: 700; font-size: 0.92rem;
  padding: 14px 26px; border: 1.5px solid transparent; border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform 0.42s var(--ease), background 0.32s var(--ease), color 0.28s var(--ease), border-color 0.32s var(--ease), box-shadow 0.5s var(--ease);
}
.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 14px -6px rgba(46,125,247,0.5); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(46,125,247,0.6); }

.btn-ghost { background: rgba(255,255,255,0.05); color: #fff; border-color: rgba(255,255,255,0.2); }
.btn-ghost:hover { border-color: var(--blue-soft); color: var(--blue-soft); background: rgba(46,125,247,0.12); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-tint); }

/* ---------- guarantee tags ---------- */
.guarantees { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 22px 0 0; padding: 0; }
.guarantees li { display: inline-flex; align-items: center; gap: 8px; font-size: 0.84rem; color: #A7B4C6; }
.gt { width: 17px; height: 17px; border-radius: 50%; flex: none; background: rgba(255,90,0,0.16); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 700; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(11, 21, 36, 0.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--navy-700); }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 78px; gap: 40px; }

.logo { display: inline-flex; align-items: baseline; gap: 10px; justify-self: start; }
.logo-name {
  font-family: var(--ff-display); font-weight: 800; font-size: 1.34rem; letter-spacing: 0.1em;
  background: linear-gradient(100deg, #FFFFFF 0%, #CFE0FB 45%, var(--blue-soft) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1;
}
.logo-dot { color: var(--orange); -webkit-text-fill-color: var(--orange); }
.logo-sub { font-family: var(--ff-display); font-weight: 600; font-size: 0.54rem; letter-spacing: 0.42em; color: var(--muted); }
.footer-word { font-size: 1.2rem; }

.nav { justify-self: center; }
.nav-links { position: relative; display: flex; align-items: center; gap: 34px; }

/* the single sliding indicator — one pill can never collide with another */
.nav-pill {
  position: absolute; top: 50%; left: 0; height: 36px; border-radius: var(--r-pill);
  background: linear-gradient(180deg, rgba(46,125,247,0.22), rgba(46,125,247,0.12));
  border: 1px solid rgba(91,155,255,0.28);
  transform: translateY(-50%) translateX(0); width: 0; opacity: 0;
  pointer-events: none; z-index: 0;
  transition: transform 0.3s var(--ease), width 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-pill.is-on { opacity: 1; }
/* persistent marker for the current page (also part of the light orange accent) */
.nav-links > a.is-active::after, .nav-item > a.is-active::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: -4px; height: 2px;
  border-radius: 2px; background: var(--orange);
}

.nav-links > a, .nav-item > a {
  position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-display); font-weight: 600; font-size: 1rem; color: #C8D2E0;
  padding: 8px 4px;
  transition: color 0.26s var(--ease);
}
.nav-links > a:hover, .nav-item:hover > a, .nav-item.is-open > a,
.nav-links > a.is-active, .nav-item > a.is-active { color: #fff; }

/* caret signals a submenu; flips on hover */
.nav-caret {
  font-size: 0.62rem; line-height: 1; color: var(--blue-soft); opacity: 0.8;
  transition: transform 0.36s var(--ease), opacity 0.26s var(--ease);
}
.nav-item:hover .nav-caret, .nav-item.is-open .nav-caret { transform: rotate(180deg); opacity: 1; }

.nav-item { position: relative; }

/* ---- dropdowns ---- */
.nav-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 260px; background: var(--navy-800); border: 1px solid var(--navy-700);
  border-radius: var(--r-card); padding: 8px; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  box-shadow: 0 28px 70px -20px rgba(0,0,0,0.8);
  transition: opacity 0.24s var(--ease), transform 0.3s var(--ease), visibility 0.24s;
  z-index: 70;
}
.nav-menu::before { content: ""; position: absolute; top: -20px; left: -12px; right: -12px; height: 24px; }
.nav-item.is-open .nav-menu, .nav-item:focus-within .nav-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-menu a { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--ff-display); font-weight: 600; font-size: 0.9rem; color: #C8D2E0; padding: 12px 14px; border-radius: 9px; white-space: nowrap; transition: background 0.22s var(--ease), color 0.22s var(--ease), padding-left 0.26s var(--ease); }
.nav-menu a:hover { background: rgba(46,125,247,0.18); color: #fff; padding-left: 18px; }
.nav-menu .caret { color: var(--muted); font-size: 1.1rem; transition: transform 0.26s var(--ease); }
.nav-sub-wrap.is-open > a { background: rgba(46,125,247,0.18); color: #fff; }
.nav-sub-wrap.is-open .caret { transform: translateX(3px); }

.nav-sub-wrap { position: relative; }
.nav-sub {
  position: absolute; top: -8px; left: 100%;
  min-width: 190px; background: var(--navy-800); border: 1px solid var(--navy-700);
  border-radius: var(--r-card); padding: 8px; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateX(-8px);
  box-shadow: 0 28px 70px -20px rgba(0,0,0,0.8);
  transition: opacity 0.22s var(--ease), transform 0.3s var(--ease), visibility 0.22s;
  margin-left: 10px;
}
.nav-sub::before { content: ""; position: absolute; top: 0; left: -18px; width: 20px; height: 100%; }
.nav-sub-wrap.is-open .nav-sub, .nav-sub-wrap:focus-within .nav-sub { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); }

.btn-contact {
  position: relative; overflow: hidden; justify-self: end;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 0.95rem;
  color: #fff; padding: 12px 30px; border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,90,0,0.5); background: rgba(255,90,0,0.08);
  transition: color 0.3s var(--ease), border-color 0.36s var(--ease), box-shadow 0.5s var(--ease), transform 0.44s var(--ease);
  z-index: 1;
}
.btn-contact::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, var(--orange-soft) 0%, var(--orange) 58%, var(--orange) 100%);
  transform: scale(0.25); opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}
.btn-contact:hover, .btn-contact.is-active { border-color: var(--orange); transform: translateY(-1px); box-shadow: 0 0 18px rgba(255,90,0,0.3); }
.btn-contact:hover::before, .btn-contact.is-active::before { transform: scale(1.7); opacity: 1; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; justify-self: end; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; }

.mobile-nav { display: none; flex-direction: column; gap: 2px; padding: 14px 28px 24px; border-bottom: 1px solid var(--navy-700); background: var(--navy-900); }
.mobile-nav a:not(.btn-contact) { padding: 14px 0; color: #C8D2E0; border-bottom: 1px solid var(--navy-700); font-family: var(--ff-display); font-weight: 600; font-size: 1rem; }
.mobile-nav a.is-active { color: var(--blue-soft); }
.mobile-nav .btn-contact { margin-top: 18px; }

/* ============================================================
   ROUTER
   ============================================================ */
.page[hidden] { display: none; }
.page { animation: pageIn 0.36s var(--ease); }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .page { animation: none; } }

/* light sections get a faint dotted field + blue wash so white doesn't go flat */
.section-light { position: relative; background: var(--white); color: var(--ink); overflow: hidden; }
.section-light::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(46,125,247,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(90% 55% at 50% 0%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(90% 55% at 50% 0%, #000 0%, transparent 78%);
}
.section-light::after {
  content: ""; position: absolute; top: -180px; right: -140px; width: 620px; height: 620px;
  pointer-events: none; z-index: 0; border-radius: 50%; filter: blur(90px);
  background: radial-gradient(circle, rgba(46,125,247,0.1) 0%, transparent 68%);
}
.section-light > .wrap { position: relative; z-index: 1; }
.section-alt { background: #F1F4F8; padding: clamp(56px, 8vh, 92px) 0; }
.section-light > .wrap > .section-head:first-child { padding-top: clamp(56px, 8vh, 92px); }
.page-cta { display: flex; flex-wrap: wrap; gap: 14px; padding: 48px 0 clamp(56px, 8vh, 92px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--navy-900); color: #fff; padding: clamp(72px, 12vh, 130px) 0 clamp(64px, 9vh, 104px); }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1; background: radial-gradient(120% 90% at 20% 30%, transparent 40%, rgba(7,14,26,0.5) 100%); }
.hero-wrap { position: relative; z-index: 2; width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 28px; }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.05fr) 0.95fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 760px; }
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(91,155,255,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(91,155,255,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(150deg, #000 0%, transparent 55%);
  opacity: 0.4; pointer-events: none;
}

/* dim star field — barely-there sparkle */
.stars-field { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.stars-field span {
  position: absolute; color: var(--blue-soft); font-size: 11px; line-height: 1;
  opacity: 0.16; animation: twinkle 7s ease-in-out infinite;
}
.stars-field span:nth-child(1) { top: 14%; left: 12%; animation-delay: 0s; }
.stars-field span:nth-child(2) { top: 28%; left: 68%; font-size: 8px; animation-delay: 1.4s; }
.stars-field span:nth-child(3) { top: 62%; left: 22%; font-size: 9px; animation-delay: 2.6s; }
.stars-field span:nth-child(4) { top: 18%; left: 46%; font-size: 7px; animation-delay: 3.4s; }
.stars-field span:nth-child(5) { top: 74%; left: 58%; font-size: 10px; animation-delay: 0.8s; }
.stars-field span:nth-child(6) { top: 44%; left: 86%; font-size: 8px; animation-delay: 4.2s; color: var(--orange-soft); }
.stars-field span:nth-child(7) { top: 84%; left: 38%; font-size: 7px; animation-delay: 5.1s; }
.stars-field span:nth-child(8) { top: 8%; left: 78%; font-size: 9px; animation-delay: 2.1s; }
.stars-field span:nth-child(9) { top: 54%; left: 8%; font-size: 7px; animation-delay: 6s; color: var(--orange-soft); }
@keyframes twinkle {
  0%, 100% { opacity: 0.07; transform: scale(0.85); }
  50%      { opacity: 0.3;  transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { .stars-field span { animation: none; } }
/* hero entrance — gentle staggered fade-up on load (one pass, no loop) */
@keyframes heroUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes heroVisIn { from { opacity: 0; transform: translateY(26px) scale(0.97); } to { opacity: 1; transform: none; } }
.hero-copy > * { animation: heroUp 0.7s var(--ease) both; }
.hero-copy .eyebrow { animation-delay: 0.06s; }
.hero-copy .hero-title { animation-delay: 0.16s; }
.hero-copy .hero-lead { animation-delay: 0.26s; }
.hero-copy .hero-cta { animation-delay: 0.36s; }
.hero-copy .guarantees { animation-delay: 0.46s; }
.hero-copy .trust-pills { animation-delay: 0.54s; }
.hero-visual { animation: heroVisIn 0.9s var(--ease) 0.34s both; }
@media (prefers-reduced-motion: reduce) { .hero-copy > *, .hero-visual { animation: none; } }

.hero-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1.02; letter-spacing: -0.035em; margin: 0 0 24px; color: #fff; text-wrap: balance; }
.hero-title .accent { color: var(--orange); }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.24rem); color: #A7B4C6; max-width: 56ch; margin: 0 0 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.trust-pills { display: flex; margin-top: 30px; }
.pill { display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px; border-radius: var(--r-pill); background: rgba(255,255,255,0.05); border: 1px solid var(--navy-600); }
.pill .g-logo { width: 15px; height: 15px; }
.pill .stars { color: #FFC530; font-size: 0.8rem; letter-spacing: 1px; }
.pill-txt { font-size: 0.8rem; color: #A7B4C6; }
.pill-txt strong { color: #fff; font-weight: 600; }

/* ---- low-effort 3D placeholder ---- */
.hero-visual { perspective: 1200px; display: flex; justify-content: center; }
.card3d {
  width: 100%; max-width: 420px; border-radius: var(--r-card);
  background: linear-gradient(160deg, rgba(30,48,78,0.92) 0%, rgba(11,21,36,0.95) 100%);
  border: 1px solid var(--navy-600);
  box-shadow: 0 50px 90px -40px rgba(0,0,0,0.9), 0 0 60px -30px rgba(46,125,247,0.5);
  transform: rotateY(-16deg) rotateX(7deg) translateZ(0);
  transform-style: preserve-3d;
  animation: float3d 9s var(--ease-soft) infinite alternate;
  overflow: hidden;
}
@keyframes float3d {
  from { transform: rotateY(-16deg) rotateX(7deg) translateY(0); }
  to   { transform: rotateY(-11deg) rotateX(4deg) translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) { .card3d { animation: none; } }
.card3d-bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; border-bottom: 1px solid var(--navy-700); background: rgba(255,255,255,0.03); }
.card3d-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--navy-600); }
.card3d-bar span:first-child { background: rgba(255,90,0,0.7); }
.card3d-body { padding: 22px; display: grid; gap: 12px; }
.card3d-body .l { height: 9px; border-radius: 5px; background: linear-gradient(90deg, rgba(46,125,247,0.5), rgba(46,125,247,0.12)); }
.card3d-body .l1 { width: 62%; }
.card3d-body .l2 { width: 88%; background: linear-gradient(90deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04)); }
.card3d-body .l3 { width: 44%; background: linear-gradient(90deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04)); }
.card3d-blk { height: 92px; border-radius: 9px; background: linear-gradient(140deg, rgba(46,125,247,0.24), rgba(255,90,0,0.1)); border: 1px solid var(--navy-600); margin-top: 4px; }
.card3d-cta { height: 32px; width: 130px; border-radius: var(--r-pill); background: var(--blue); box-shadow: 0 8px 20px -8px rgba(46,125,247,0.9); }

/* ============================================================
   CREDIBILITY STRIP
   ============================================================ */
.cred-strip { background: var(--navy-800); border-top: 1px solid var(--navy-700); border-bottom: 1px solid var(--navy-700); padding: 20px 0; }
.cred-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 14px 36px; justify-content: space-between; }
.cred-list li { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-weight: 600; font-size: 0.88rem; color: #C8D2E0; }
.cred-list .gt { background: rgba(46,125,247,0.18); color: var(--blue-soft); }

/* ============================================================
   SOCIAL PROOF — sliding marquee
   ============================================================ */
.social-proof { background: var(--navy-950); color: #fff; padding: 46px 0; }
.sp-label { font-family: var(--ff-display); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 22px; }
.sp-note { color: #4A5A72; }
.marquee { position: relative; overflow: hidden; margin-bottom: 34px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 56px; animation: slide 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--ff-display); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.06em; color: #3C4C64; white-space: nowrap; transition: color 0.3s var(--ease); }
.marquee-track span:hover { color: var(--orange-soft); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.sp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 0; padding-top: 28px; border-top: 1px solid var(--navy-700); }
.sp-stats div { display: flex; flex-direction: column; }
.sp-stats dt { font-family: var(--ff-display); font-weight: 800; font-size: 1.9rem; color: var(--blue-soft); line-height: 1; }
.sp-stats dd { margin: 9px 0 0; font-size: 0.85rem; color: var(--muted); }

/* ============================================================
   ARGUMENT
   ============================================================ */
.argue { padding: clamp(56px, 8vh, 92px) 0; display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.argue .section-head { margin-bottom: 0; }
.argue-body { border-left: 3px solid var(--blue); padding-left: 30px; }
.argue-body p { margin: 0 0 16px; color: var(--muted-ink); font-size: 1.02rem; }
.argue-lead { font-size: 1.16rem !important; color: var(--ink) !important; }
.argue-lead strong { color: var(--ink); font-weight: 600; }
.argue-punch { font-family: var(--ff-display); font-weight: 800; font-size: 1.3rem; color: var(--orange) !important; letter-spacing: -0.02em; padding: 6px 0; }

/* ============================================================
   FIVE QUESTIONS + BEFORE WE DESIGN (given room to breathe)
   ============================================================ */
.questions { position: relative; overflow: hidden; background: var(--navy-900); color: #fff; padding: clamp(64px, 10vh, 110px) 0 clamp(72px, 11vh, 120px); }
.questions-inner { position: relative; z-index: 2; }
.q-five { list-style: none; margin: 0 0 clamp(64px, 9vh, 96px); padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.q-five li { display: flex; flex-direction: column; gap: 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--navy-600); border-radius: var(--r-card); padding: 22px 20px; font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; color: #fff; transition: transform 0.42s var(--ease), border-color 0.32s var(--ease), background 0.32s var(--ease); }
.q-five li:hover { transform: translateY(-5px); border-color: var(--blue); background: rgba(46,125,247,0.1); }
.q-no { font-size: 0.75rem; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; }

/* its own darker band so it reads as a separate beat, not a tail of "our approach" */
.deep-band { position: relative; overflow: hidden; background: var(--navy-950); border-top: 1px solid var(--navy-700); padding: clamp(64px, 10vh, 110px) 0; }
.deep-band .wrap { position: relative; z-index: 2; }
.q-deep { background: var(--navy-900); border: 1px solid var(--navy-700); border-radius: var(--r-card); padding: clamp(32px, 4vw, 48px); max-width: 860px; box-shadow: 0 40px 80px -50px rgba(0,0,0,0.9); }
.q-deep-title { font-family: var(--ff-display); font-weight: 800; font-size: 1.5rem; margin: 0 0 8px; color: #fff; letter-spacing: -0.02em; }
.q-deep-sub { margin: 0 0 26px; color: var(--muted); font-size: 0.96rem; }
.q-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 16px; }
.q-list li { position: relative; padding-left: 28px; color: #C8D2E0; font-size: 0.98rem; line-height: 1.5; }
.q-list li::before { content: "?"; position: absolute; left: 0; top: 0; font-family: var(--ff-display); font-weight: 800; color: var(--blue-soft); }
.q-list em { font-style: normal; color: var(--orange); font-weight: 600; }
.q-deep-foot { margin: 0; padding-top: 22px; border-top: 1px solid var(--navy-700); color: #fff; font-weight: 500; }

/* ============================================================
   FLOW
   ============================================================ */
.flow { list-style: none; margin: 0; padding: 0; max-width: 720px; position: relative; }
.flow::before { content: ""; position: absolute; left: 21px; top: 30px; bottom: 30px; width: 2px; background: linear-gradient(180deg, var(--blue) 0%, var(--blue) 55%, rgba(255,90,0,0.55) 100%); }
.flow-step { display: grid; grid-template-columns: 44px 1fr; gap: 20px; align-items: start; padding-bottom: 28px; position: relative; }
.flow-step:last-child { padding-bottom: 0; }
.flow-no { width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 2px solid var(--blue); color: var(--blue); display: inline-flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 800; font-size: 1rem; position: relative; z-index: 1; transition: background 0.34s var(--ease), color 0.34s var(--ease), box-shadow 0.4s var(--ease); }
.section-alt .flow-no { background: #F1F4F8; }
.flow-step:hover .flow-no { background: var(--blue); color: #fff; box-shadow: 0 0 0 6px rgba(46,125,247,0.14); }
.flow-step h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.14rem; margin: 9px 0 4px; color: var(--ink); letter-spacing: -0.02em; }
.flow-step p { margin: 0; color: var(--muted-ink); font-size: 0.95rem; }

/* ============================================================
   SERVICES INDEX
   ============================================================ */
.svc-index { border-top: 1px solid var(--line); }
.svc-row { display: grid; grid-template-columns: 76px 1fr auto 40px; align-items: center; gap: 24px; padding: 26px 22px; border-bottom: 1px solid var(--line); border-radius: var(--r-card); color: var(--ink); transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.44s var(--ease); }
.svc-no { font-family: var(--ff-display); font-weight: 800; font-size: 1rem; color: var(--blue); transition: color 0.3s var(--ease); }
.svc-main { display: flex; flex-direction: column; gap: 5px; }
.svc-name { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.25rem, 2.3vw, 1.7rem); letter-spacing: -0.025em; line-height: 1.1; }
.svc-desc { font-size: 0.97rem; color: var(--muted-ink); transition: color 0.3s var(--ease); }
.svc-tag { font-family: var(--ff-display); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); background: var(--blue-tint); border-radius: var(--r-pill); padding: 6px 13px; white-space: nowrap; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.svc-arrow { font-size: 1.25rem; color: var(--muted-ink); justify-self: end; transition: transform 0.44s var(--ease), color 0.3s var(--ease); }
.svc-row:hover { background: var(--navy-900); color: #fff; transform: translateX(8px); }
.svc-row:hover .svc-no { color: var(--blue-soft); }
.svc-row:hover .svc-desc { color: #A7B4C6; }
.svc-row:hover .svc-tag { background: rgba(46,125,247,0.2); color: var(--blue-soft); }
.svc-row:hover .svc-arrow { color: var(--orange); transform: translateX(5px); }

/* ============================================================
   PRICING
   ============================================================ */
.promise { display: flex; align-items: flex-start; gap: 14px; background: var(--blue-tint); border: 1px solid rgba(46,125,247,0.28); border-radius: var(--r-card); padding: 20px 24px; margin-bottom: 44px; }
.promise-mark { width: 24px; height: 24px; border-radius: 50%; background: var(--blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex: none; margin-top: 2px; }
.promise p { margin: 0; color: #1F3E6B; font-size: 0.98rem; }
.promise strong { color: var(--blue-deep); }

.pricing-intro { padding: 0 0 30px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; background: var(--navy-900); color: #fff; border: 1.5px solid var(--navy-700); border-radius: var(--r-price); padding: 34px 28px; display: flex; flex-direction: column; will-change: transform; transition: transform 0.58s var(--ease), border-color 0.45s var(--ease), box-shadow 0.62s var(--ease), background 0.45s var(--ease); }
/* estimate badge + fine print */
.price-est { position: absolute; top: 16px; right: 16px; font-family: var(--ff-display); font-weight: 700; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-soft); background: rgba(46,125,247,0.14); border: 1px solid rgba(91,155,255,0.3); padding: 4px 9px; border-radius: var(--r-pill); }
.price-fine { margin: -12px 0 0; font-size: 0.8rem; color: var(--muted); }
.svc-opt { font-family: var(--ff-display); font-weight: 700; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-ink); background: var(--line); border-radius: var(--r-pill); padding: 3px 9px; margin-left: 10px; vertical-align: middle; }
.svc-row:hover .svc-opt { color: var(--muted); background: rgba(255,255,255,0.08); }
.price-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(120% 80% at 50% 0%, rgba(46,125,247,0.22) 0%, transparent 62%); opacity: 0; transition: opacity 0.62s var(--ease); }
.price-card:hover { transform: translateY(-10px) scale(1.022); border-color: var(--blue); box-shadow: 0 34px 70px -28px rgba(46,125,247,0.75); }
.price-card:hover::before { opacity: 1; }
.price-featured { border-color: rgba(46,125,247,0.45); background: var(--navy-800); }
.price-card.is-selected { border-color: var(--orange); background: var(--navy-800); box-shadow: 0 0 0 3px rgba(255,90,0,0.26), 0 34px 70px -28px rgba(255,90,0,0.6); transform: translateY(-10px) scale(1.022); }
.price-card.is-selected::before { opacity: 1; background: radial-gradient(120% 80% at 50% 0%, rgba(255,90,0,0.18) 0%, transparent 62%); }
/* tick sits in its own gutter so it never collides with the plan name */
.price-check { position: absolute; top: 18px; right: 18px; width: 26px; height: 26px; border-radius: 50%; background: var(--orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; opacity: 0; transform: scale(0.5); transition: opacity 0.4s var(--ease), transform 0.5s var(--ease); z-index: 3; }
.price-card.is-selected .price-check { opacity: 1; transform: scale(1); }
.price-card > * { position: relative; z-index: 1; }
.price-flag { position: absolute; top: -12px; left: 24px; background: var(--orange); color: #fff; font-family: var(--ff-display); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-pill); z-index: 2; }
.price-name { font-family: var(--ff-display); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; padding-right: 40px; min-height: 26px; display: flex; align-items: center; }
.price-amt { font-family: var(--ff-display); font-weight: 800; font-size: 2.3rem; color: #fff; margin: 0 0 14px; line-height: 1; }
.price-amt .cur { font-size: 1rem; color: var(--muted); margin-right: 4px; vertical-align: super; }
.price-amt .per { font-family: var(--ff-body); font-size: 0.84rem; font-weight: 400; color: var(--muted); margin-left: 6px; }
.price-amt-txt { color: var(--blue-soft); }
.price-desc { color: #A7B4C6; font-size: 0.94rem; margin: 0 0 22px; }
.price-card ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 11px; flex: 1; }
.price-card ul li { position: relative; padding-left: 24px; font-size: 0.9rem; color: #C8D2E0; }
.price-card ul li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 7px; height: 7px; border-radius: 2px; background: var(--blue); }
.price-btn { pointer-events: auto; }
.price-card .btn-outline { color: #fff; border-color: var(--navy-600); background: rgba(255,255,255,0.02); }
.price-card .btn-outline:hover { color: #fff; border-color: var(--blue); background: rgba(46,125,247,0.18); box-shadow: 0 6px 18px -8px rgba(46,125,247,0.55); }
.price-card.is-selected .price-btn { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 6px 18px -8px rgba(255,90,0,0.55); }

/* ============================================================
   BUILDER
   ============================================================ */
.builder { padding: clamp(56px, 8vh, 92px) 0 0; }
.wiz { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px; }
.wiz-steps { list-style: none; display: flex; gap: 10px; margin: 0 0 30px; padding: 0 0 22px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.wiz-steps li { display: flex; align-items: center; gap: 9px; font-family: var(--ff-display); font-weight: 600; font-size: 0.88rem; color: var(--muted-ink); padding-right: 18px; }
.wiz-steps li span { width: 26px; height: 26px; border-radius: 50%; background: #EDF1F6; color: var(--muted-ink); display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; transition: background 0.3s var(--ease), color 0.3s var(--ease); }
.wiz-steps li.is-on { color: var(--ink); }
.wiz-steps li.is-on span { background: var(--blue); color: #fff; }
.wiz-steps li.is-done span { background: var(--orange); color: #fff; }
.wiz-panel { display: none; }
.wiz-panel.is-on { display: block; animation: pageIn 0.34s var(--ease); }
.wiz-q { font-family: var(--ff-display); font-weight: 700; font-size: 1.25rem; margin: 0 0 6px; color: var(--ink); letter-spacing: -0.02em; }
.wiz-hint { margin: 0 0 18px; color: var(--muted-ink); font-size: 0.92rem; }
.wiz-fields { display: grid; gap: 26px; }
.wiz-label { display: block; font-family: var(--ff-display); font-weight: 600; font-size: 0.95rem; color: var(--ink); margin-bottom: 12px; }
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-family: var(--ff-display); font-weight: 600; font-size: 0.9rem; padding: 11px 18px; border-radius: var(--r-pill); border: 1.5px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), transform 0.36s var(--ease), box-shadow 0.4s var(--ease); }
.chip:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 22px -12px rgba(46,125,247,0.8); }
.chip.is-on { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: 0 8px 26px -10px rgba(46,125,247,0.8); }
.chip-unsure { border-style: dashed; color: var(--orange); border-color: rgba(255,90,0,0.5); }
.chip-unsure:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-tint); box-shadow: 0 8px 22px -12px rgba(255,90,0,0.7); }
.wiz-nav { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.wiz-result { display: grid; gap: 16px; }
.wiz-verdict { font-family: var(--ff-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; margin: 0; color: var(--ink); }
.wiz-price { font-family: var(--ff-display); font-weight: 800; font-size: 2.4rem; color: var(--blue); margin: 0; line-height: 1; }
.wiz-body { margin: 0; color: var(--muted-ink); max-width: 62ch; }
.wiz-list { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.wiz-list li { font-family: var(--ff-display); font-weight: 600; font-size: 0.82rem; background: var(--blue-tint); color: var(--blue); padding: 6px 13px; border-radius: var(--r-pill); }
.wiz-flag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }

/* ============================================================
   BOOK A CALL
   ============================================================ */
.book { margin: clamp(56px, 8vh, 92px) 0; }
.book-inner { position: relative; overflow: hidden; background: var(--navy-900); color: #fff; border-radius: var(--r-card); padding: clamp(38px, 5vw, 60px); }
.book-content { position: relative; z-index: 2; }
.book-copy { color: #A7B4C6; max-width: 68ch; margin: 0 0 14px; font-size: 1.02rem; }
.book-kicker { color: #fff; font-weight: 500; }
.book-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.book-note { font-size: 0.85rem; color: var(--muted); }

/* ============================================================
   CALENDLY MODAL — opens only on "Book a free call"
   ============================================================ */
.cal-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.cal-modal[hidden] { display: none; }
.cal-overlay { position: absolute; inset: 0; background: rgba(4, 9, 18, 0.72); backdrop-filter: blur(6px); animation: calFade 0.28s var(--ease); }
.cal-dialog {
  position: relative; width: 100%; max-width: 460px; max-height: 88vh; display: flex; flex-direction: column;
  background: var(--navy-800); border: 1px solid var(--navy-600); border-radius: var(--r-card); overflow: hidden;
  box-shadow: 0 50px 110px -40px rgba(0,0,0,0.95), 0 0 60px -30px rgba(46,125,247,0.5);
  animation: calPop 0.4s var(--ease);
}
@keyframes calFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes calPop { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .cal-overlay, .cal-dialog { animation: none; } }
.cal-bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--navy-700); background: rgba(255,255,255,0.03); }
.cal-title { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; }
.cal-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex: none; box-shadow: 0 0 0 4px rgba(255,90,0,0.15); }
.cal-close { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--navy-600); background: rgba(255,255,255,0.03); color: var(--muted); font-size: 0.9rem; cursor: pointer; transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease); }
.cal-close:hover { color: #fff; border-color: var(--orange); background: rgba(255,90,0,0.12); }
.cal-embed { flex: 1; min-height: 640px; background: #1a4875; position: relative; }
.cal-embed .calendly-inline-widget { min-width: 100%; height: 640px; }
.cal-fallback { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; height: 100%; min-height: 640px; padding: 32px; text-align: center; color: var(--muted); }
.cal-fallback p { margin: 0; font-size: 0.95rem; }
@media (max-width: 620px) { .cal-embed, .cal-embed .calendly-inline-widget, .cal-fallback { min-height: 560px; height: 560px; } }

/* ============================================================
   REVIEWS
   ============================================================ */
.rev-summary { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 20px 24px; margin-bottom: 22px; }
.g-logo.lg { width: 26px; height: 26px; }
.rev-score { font-family: var(--ff-display); font-weight: 800; font-size: 1.8rem; color: var(--ink); line-height: 1; }
.stars.lg { color: #FFC530; font-size: 1.15rem; letter-spacing: 2px; }
.rev-meta { color: var(--muted-ink); font-size: 0.9rem; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { margin: 0; background: var(--navy-900); color: #fff; border: 1px solid var(--navy-700); border-radius: var(--r-card); padding: 26px 24px; transition: transform 0.44s var(--ease), border-color 0.36s var(--ease), box-shadow 0.5s var(--ease); }
.review:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: 0 28px 56px -28px rgba(46,125,247,0.7); }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.review-top .stars { color: #FFC530; letter-spacing: 2px; font-size: 0.95rem; }
.g-logo.sm { width: 18px; height: 18px; }
.review blockquote { margin: 0 0 22px; font-size: 1rem; color: #E6E9EC; line-height: 1.55; }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; flex: none; display: inline-flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 800; font-size: 0.85rem; color: #fff; background: var(--a, var(--blue)); }
.review figcaption span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.review figcaption strong { font-family: var(--ff-display); font-weight: 600; font-size: 0.9rem; color: #fff; }
.review figcaption em { font-style: normal; font-size: 0.78rem; color: var(--muted); }
.rev-more { display: flex; justify-content: center; padding: 34px 0 clamp(56px, 8vh, 92px); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-inner { display: grid; grid-template-columns: 0.85fr 1.45fr; gap: 52px; align-items: start; padding-bottom: clamp(56px, 8vh, 92px); }
.faq-inner .section-head { margin-bottom: 0; padding-top: clamp(56px, 8vh, 92px); }
.faq-list { display: grid; gap: 10px; padding-top: clamp(56px, 8vh, 92px); }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 0 20px; transition: border-color 0.3s var(--ease), box-shadow 0.36s var(--ease); }
.faq-list details[open] { border-color: var(--blue); box-shadow: 0 14px 30px -22px rgba(46,125,247,0.7); }
.faq-list summary { list-style: none; cursor: pointer; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: var(--ff-display); font-weight: 600; font-size: 1rem; color: var(--ink); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary { color: var(--blue); }
.faq-mark { position: relative; width: 14px; height: 14px; flex: none; }
.faq-mark::before, .faq-mark::after { content: ""; position: absolute; background: var(--orange); border-radius: 2px; }
.faq-mark::before { top: 6px; left: 0; width: 14px; height: 2px; }
.faq-mark::after { top: 0; left: 6px; width: 2px; height: 14px; transition: transform 0.3s var(--ease); }
details[open] .faq-mark::after { transform: scaleY(0); }
.faq-list p { margin: 0; padding: 0 0 20px; color: var(--muted-ink); font-size: 0.95rem; max-width: 64ch; }

/* ============================================================
   PROJECTS
   ============================================================ */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding-bottom: clamp(56px, 8vh, 92px); }
.project-thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy-900); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; border: 1px solid var(--navy-700); border-radius: var(--r-card); transition: transform 0.44s var(--ease), border-color 0.36s var(--ease); }
.project:hover .project-thumb { transform: translateY(-6px); border-color: var(--blue); }
.project-thumb::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(46,125,247,0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(46,125,247,0.14) 1px, transparent 1px); background-size: 32px 32px; opacity: 0.6; }
.project-thumb span { position: relative; z-index: 1; font-family: var(--ff-display); font-weight: 800; font-size: 2.6rem; color: rgba(255,255,255,0.1); }
.project-thumb[data-tag]::before { content: attr(data-tag); position: absolute; z-index: 2; top: 12px; left: 12px; font-family: var(--ff-display); font-weight: 700; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-soft); background: rgba(7,14,26,0.85); border: 1px solid var(--navy-700); padding: 5px 10px; border-radius: var(--r-pill); }
.project h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; margin: 0 0 4px; color: var(--ink); letter-spacing: -0.02em; }
.project p { margin: 0; color: var(--muted-ink); font-size: 0.87rem; }

/* ============================================================
   ABOUT / CONTACT
   ============================================================ */
.about-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; padding-bottom: clamp(56px, 8vh, 92px); }
.trades { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.trades span { font-family: var(--ff-display); font-weight: 600; font-size: 0.8rem; padding: 8px 15px; border: 1px solid var(--line); border-radius: var(--r-pill); color: var(--muted-ink); transition: border-color 0.28s var(--ease), color 0.28s var(--ease), transform 0.3s var(--ease); }
.trades span:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.areas { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.areas li { background: var(--navy-900); padding: 18px 16px; border-radius: var(--r-price); font-family: var(--ff-display); font-weight: 600; font-size: 0.98rem; color: #fff; display: flex; align-items: center; gap: 10px; }
.areas li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-soft); flex: none; }
.areas-light { grid-template-columns: 1fr 1fr; margin-top: 22px; }

.contact-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: start; padding-bottom: clamp(56px, 8vh, 92px); }
.contact-rows { display: grid; gap: 16px; margin-bottom: 22px; }
.contact-row { display: flex; align-items: flex-start; gap: 13px; }
.contact-ico { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-tint); color: var(--blue); display: inline-flex; align-items: center; justify-content: center; flex: none; font-size: 0.95rem; }
.contact-k { display: block; font-family: var(--ff-display); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-ink); margin-bottom: 3px; }
.contact-v { color: var(--ink); font-size: 1rem; }
.contact-v a { color: var(--blue); font-weight: 500; border-bottom: 1px solid transparent; }
.contact-v a:hover { border-bottom-color: var(--blue); }
.contact-v .ph-note { color: var(--muted-ink); font-size: 0.8rem; }

.quote-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px; display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--ff-display); font-weight: 600; font-size: 0.82rem; color: var(--ink); }
.field input, .field textarea { font-family: var(--ff-body); font-size: 0.98rem; background: #FBFCFD; border: 1.5px solid var(--line); color: var(--ink); border-radius: var(--r-input); padding: 13px 15px; width: 100%; resize: vertical; transition: border-color 0.24s var(--ease), box-shadow 0.3s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: #9AA6B8; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,125,247,0.14); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #E5484D; }

.check { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check-box { width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--line); background: #fff; flex: none; margin-top: 2px; position: relative; transition: background 0.24s var(--ease), border-color 0.24s var(--ease); }
.check-box::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) scale(0); transition: transform 0.3s var(--ease); }
.check input:checked + .check-box { background: var(--blue); border-color: var(--blue); }
.check input:checked + .check-box::after { transform: rotate(45deg) scale(1); }
.check input:focus-visible + .check-box { outline: 2px solid var(--blue); outline-offset: 2px; }
.check-txt { font-size: 0.88rem; color: var(--muted-ink); }

.form-status { margin: 4px 0 0; font-size: 0.9rem; color: var(--muted-ink); min-height: 1.2em; }
.form-status.ok { color: #0F8A4F; }
.form-status.err { color: #E5484D; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-950); color: #fff; padding: 60px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 320px; align-items: flex-start; }
.footer-brand p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.footer-col h4 { font-family: var(--ff-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--muted); font-size: 0.9rem; transition: color 0.24s var(--ease); }
.footer-nav a:hover, .footer-nav a.is-active { color: var(--blue-soft); }
.footer-line { margin: 0 0 12px; color: var(--muted); font-size: 0.9rem; }
.footer-k { display: block; font-family: var(--ff-display); font-weight: 700; font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: #4A5A72; margin-bottom: 3px; }
.footer-line a { color: var(--blue-soft); }
.footer-line a:hover { color: var(--orange); }
.footer-meta { font-size: 0.78rem; color: #4A5A72; margin: 0; padding-top: 26px; border-top: 1px solid var(--navy-700); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { display: none; }
}
@media (max-width: 1100px) {
  .nav-links { gap: 22px; }
  .nav-links > a, .nav-item > a { font-size: 0.92rem; }
  .header-inner { gap: 18px; }
  .q-five { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 940px) {
  .review-grid, .project-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .sp-stats { grid-template-columns: 1fr 1fr; }
  .faq-inner, .about-inner, .contact-inner, .footer-top, .argue { grid-template-columns: 1fr; gap: 32px; }
  .faq-list { padding-top: 0; }
  .argue-body { border-left: 0; padding-left: 0; border-top: 3px solid var(--blue); padding-top: 24px; }
  .svc-row { grid-template-columns: 52px 1fr auto; }
  .svc-arrow { display: none; }
  .cred-list { justify-content: flex-start; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; height: 70px; }
  .nav-contact { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav:not([hidden]) { display: flex; }
}
@media (max-width: 620px) {
  .review-grid, .project-grid, .price-grid, .q-five { grid-template-columns: 1fr; }
  .areas, .areas-light, .field-row { grid-template-columns: 1fr; }
  .svc-tag { display: none; }
  .svc-row { grid-template-columns: 42px 1fr; padding: 22px 14px; }
  .wiz, .q-deep { padding: 22px; }
  .price-card:hover, .price-card.is-selected { transform: none; }
}
