/* =========================================================
   CVN Managed Services — Components, Animations, Directions
   ========================================================= */

/* ============== ANIMATED BACKGROUND ============== */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: var(--z-bg);
  overflow: hidden;
  pointer-events: none;
}
.bg-field .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}
:root[data-mode="light"] .bg-field .blob { opacity: 0.42; mix-blend-mode: multiply; }
.bg-field .b1 {
  width: 48vw; height: 48vw; left: -8vw; top: -10vw;
  background: radial-gradient(circle at 30% 30%, rgb(var(--glow) / 0.9), transparent 65%);
  animation: drift1 26s var(--ease-in-out) infinite;
}
.bg-field .b2 {
  width: 42vw; height: 42vw; right: -6vw; top: 8vw;
  background: radial-gradient(circle at 50% 50%, rgb(var(--glow-2) / 0.85), transparent 65%);
  animation: drift2 32s var(--ease-in-out) infinite;
}
.bg-field .b3 {
  width: 40vw; height: 40vw; left: 22vw; bottom: -14vw;
  background: radial-gradient(circle at 50% 50%, rgb(var(--glow) / 0.7), transparent 65%);
  animation: drift3 38s var(--ease-in-out) infinite;
}
.bg-field .grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgb(var(--glow) / 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--glow) / 0.5) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 0%, transparent 75%);
  opacity: 0;
}
@keyframes drift1 { 50% { transform: translate(8vw, 10vw) scale(1.18); } }
@keyframes drift2 { 50% { transform: translate(-10vw, 6vw) scale(0.9); } }
@keyframes drift3 { 50% { transform: translate(6vw, -8vw) scale(1.12); } }

/* Direction overrides for background */
:root[data-direction="circuit"] .bg-field .blob { opacity: 0.22; }
:root[data-direction="circuit"] .bg-field .grid-lines { opacity: 1; }
:root[data-direction="momentum"] .bg-field .blob { filter: blur(50px); opacity: 0.7; }
:root[data-mode="light"][data-direction="momentum"] .bg-field .blob { opacity: 0.5; }

@media (prefers-reduced-motion: reduce) {
  .bg-field .blob { animation: none; }
}

#constellation {
  position: fixed; inset: 0; z-index: var(--z-bg);
  pointer-events: none; opacity: 0.6;
}
:root[data-mode="light"] #constellation { opacity: 0.4; }

/* ============== BUTTONS ============== */
.btn {
  --pad-y: 0.92em;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: var(--pad-y) 1.5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary {
  background: linear-gradient(120deg, var(--accent-2), var(--accent) 70%);
  color: var(--on-accent);
  box-shadow: 0 10px 30px -8px rgb(var(--glow) / 0.6), inset 0 1px 0 rgb(255 255 255 / 0.25);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -10px rgb(var(--glow) / 0.75); }
.btn-primary:hover::after { opacity: 1; }
.btn-ghost {
  background: var(--surface-glass);
  border: 1px solid var(--border-strong);
  color: var(--ink);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--accent-deep); }
:root[data-mode="dark"] .btn-ghost:hover { color: var(--accent-2); }
.btn-lg { font-size: 1.04rem; padding: 1.05em 1.8em; }
.btn-block { width: 100%; }

/* shimmer */
.btn-primary::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgb(255 255 255 / 0.45), transparent);
  transform: skewX(-20deg); transition: left 0.7s var(--ease);
}
.btn-primary:hover::before { left: 160%; }

/* ============== NAV (full-width, two rows) ============== */
.nav-shell {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  display: flex; flex-direction: column;
}

/* Top utility bar — matches the main nav surface */
.topbar {
  background: var(--surface-glass);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.8rem;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 44px; }
.topbar-contact { display: flex; align-items: center; gap: 20px; min-width: 0; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-soft); font-weight: 500; white-space: nowrap; transition: color 0.2s; }
.topbar-contact a:hover { color: var(--accent-deep); }
:root[data-mode="dark"] .topbar-contact a:hover { color: var(--accent-2); }
.topbar-contact svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--accent-deep); opacity: 0.9; }
:root[data-mode="dark"] .topbar-contact svg { color: var(--accent-2); }
.topbar-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.tb-ticket { color: var(--accent-deep); font-weight: 600; border: 1px solid var(--border-strong); padding: 4px 13px; border-radius: 999px; transition: background 0.2s, border-color 0.2s, transform 0.2s; white-space: nowrap; }
:root[data-mode="dark"] .tb-ticket { color: var(--accent-2); }
.tb-ticket:hover { background: rgb(var(--glow) / 0.12); border-color: var(--accent); transform: translateY(-1px); }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a { width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center; background: rgb(var(--glow) / 0.12); color: var(--accent-deep); transition: background 0.25s, transform 0.25s, color 0.25s; }
:root[data-mode="dark"] .topbar-social a { color: var(--ink); }
.topbar-social a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.topbar-social svg { width: 13px; height: 13px; }

/* Main bar */
.mainbar {
  background: var(--surface-glass);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.mainbar-inner { display: flex; align-items: center; gap: 18px; min-height: 70px; }
.nav-shell.scrolled .mainbar { box-shadow: 0 12px 36px -18px rgb(var(--shadow-color) / 0.45); }

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-logo {
  height: 38px; width: auto; display: block;
  transition: filter 0.4s var(--ease), transform 0.3s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.03); }
/* Dark mode: render the colored logo as crisp white so the dark-blue type stays legible */
:root[data-mode="dark"] .brand-logo { filter: brightness(0) invert(1); }
.footer-brand .brand-logo { height: 44px; }
@media (max-width: 600px) {
  .brand-logo { height: 32px; }
  .nav-cta .btn-primary { display: none; }
}

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: 999px;
  font-weight: 600; font-size: 0.9rem; color: var(--ink-soft);
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover, .nav-item:hover .nav-link, .nav-link.active { color: var(--ink); background: rgb(var(--glow) / 0.10); }
.nav-link .chev { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.nav-item:hover .nav-link .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 300px; padding: 10px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -20px rgb(var(--shadow-color) / 0.5);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.dropdown.wide { min-width: 520px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.drop-link { display: flex; gap: 12px; align-items: flex-start; padding: 11px 13px; border-radius: 12px; transition: background 0.2s; }
.drop-link:hover { background: var(--surface-2); }
.drop-ic {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center;
  font-size: 1.05rem; background: rgb(var(--glow) / 0.12); color: var(--accent-deep);
}
:root[data-mode="dark"] .drop-ic { color: var(--accent-2); }
.drop-tx b { display: block; font-family: var(--font-display); font-size: 0.92rem; }
.drop-tx span { font-size: 0.78rem; color: var(--ink-muted); }
.drop-tx .soon { font-size: 0.56rem; font-family: var(--font-mono); letter-spacing: 0.1em; color: var(--accent); border: 1px solid currentColor; padding: 1px 5px; border-radius: 5px; margin-left: 6px; vertical-align: middle; }

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); padding: 8px 10px; border-radius: 999px; white-space: nowrap; }
.nav-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; position: relative;
  display: grid; place-items: center;
  background: rgb(var(--glow) / 0.12); color: var(--ink-soft);
  border: 1px solid var(--border);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.theme-toggle:hover { transform: translateY(-2px); color: var(--accent-deep); background: rgb(var(--glow) / 0.2); }
:root[data-mode="dark"] .theme-toggle:hover { color: var(--accent-2); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .tt-sun, .theme-toggle .tt-moon { display: grid; place-items: center; transition: opacity 0.3s var(--ease), transform 0.4s var(--ease); }
.theme-toggle .tt-moon { position: absolute; }
/* show moon in light mode (click to go dark), sun in dark mode (click to go light) */
.theme-toggle[data-mode="light"] .tt-sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }
.theme-toggle[data-mode="light"] .tt-moon { opacity: 1; transform: rotate(0) scale(1); }
.theme-toggle[data-mode="dark"] .tt-sun { opacity: 1; transform: rotate(0) scale(1); }
.theme-toggle[data-mode="dark"] .tt-moon { opacity: 0; transform: rotate(90deg) scale(0.5); }
.nav-phone:hover { color: var(--accent-deep); }
.nav-toggle, .menu-btn { display: none; }

/* Mobile nav */
.mobile-panel {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: var(--bg);
  padding: 88px clamp(20px, 6vw, 40px) 40px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-panel.open { transform: translateY(0); }
.mobile-panel a { display: block; padding: 14px 4px; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; border-bottom: 1px solid var(--border); }
.mobile-panel .mob-group-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-deep); margin-top: 22px; }
.mobile-close { position: fixed; top: 22px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; z-index: 1; }

@media (max-width: 1100px) { .topbar-contact a.tb-hide-lg, a.tb-hide-lg { display: none; } }
@media (max-width: 860px) { .topbar-contact a.tb-hide-md, a.tb-hide-md { display: none; } }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn {
    display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
    background: rgb(var(--glow) / 0.1);
  }
  .nav-cta { margin-left: auto; gap: 6px; }
  .menu-btn span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; }
  .menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
  .menu-btn span::before { top: -6px; } .menu-btn span::after { top: 6px; }
}
@media (max-width: 620px) {
  .topbar-contact a.tb-hide-sm, a.tb-hide-sm { display: none; }
  .topbar-contact { gap: 14px; }
  .topbar { font-size: 0.74rem; }
}

/* ============== HERO ============== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: clamp(150px, 16vh, 200px); padding-bottom: clamp(48px, 7vw, 96px); }
.hero > .container { width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  background: var(--surface-glass); border: 1px solid var(--border); backdrop-filter: blur(12px);
  font-size: 0.82rem; font-weight: 600; color: var(--ink-soft);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #16c98d; box-shadow: 0 0 0 0 rgb(22 201 141 / 0.6); animation: pulse-dot 2.2s infinite; }
@keyframes pulse-dot { 70% { box-shadow: 0 0 0 8px rgb(22 201 141 / 0); } 100% { box-shadow: 0 0 0 0 rgb(22 201 141 / 0); } }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin: 22px 0; }
.hero .lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 44px; }
.hstat { padding: 16px 14px; border-radius: var(--radius); background: var(--surface-glass); border: 1px solid var(--border); backdrop-filter: blur(10px); }
.hstat b { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.9rem); display: block; letter-spacing: -0.03em; }
.hstat b .text-grad { display: inline; }
.hstat span { font-size: 0.72rem; color: var(--ink-muted); font-weight: 500; }

/* hero visual */
.scroll-cue {
  position: absolute; left: 50%; bottom: clamp(16px, 3vh, 30px); transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--ink-muted); z-index: 4;
  transition: color 0.3s var(--ease), opacity 0.4s var(--ease);
}
.scroll-cue:hover { color: var(--accent-deep); }
:root[data-mode="dark"] .scroll-cue:hover { color: var(--accent-2); }
.scroll-cue-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; }
.scroll-cue-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  background: var(--surface-glass); backdrop-filter: blur(10px);
  animation: cue-bounce 1.8s var(--ease-in-out) infinite;
}
.scroll-cue-arrow svg { width: 16px; height: 16px; }
@keyframes cue-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue-arrow { animation: none; } }
@media (max-width: 1000px) { .scroll-cue { display: none; } }

.hero-visual { position: relative; aspect-ratio: 1 / 1; }
.hv-card { position: absolute; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 30px 70px -24px rgb(var(--shadow-color) / 0.55); }
.hv-card img { width: 100%; height: 100%; object-fit: cover; }
.hv-main { inset: 6% 8% 18% 10%; z-index: 2; animation: float-a 7s var(--ease-in-out) infinite; }
.hv-1 { width: 42%; aspect-ratio: 4/3; right: -2%; top: 4%; z-index: 3; animation: float-b 6s var(--ease-in-out) infinite; }
.hv-2 { width: 38%; aspect-ratio: 1/1; left: -3%; bottom: 6%; z-index: 3; animation: float-c 8s var(--ease-in-out) infinite; }
@keyframes float-a { 50% { transform: translateY(-14px); } }
@keyframes float-b { 50% { transform: translateY(16px) translateX(-8px); } }
@keyframes float-c { 50% { transform: translateY(-12px) translateX(6px); } }
.hv-pill {
  position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 600;
  background: var(--surface); border: 1px solid var(--border); box-shadow: 0 14px 34px -12px rgb(var(--shadow-color) / 0.5);
}
.hv-pill.p1 { top: 2%; left: 4%; animation: float-c 6.5s var(--ease-in-out) infinite; }
.hv-pill.p2 { bottom: 2%; right: 6%; animation: float-b 7.5s var(--ease-in-out) infinite; }
.hv-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #16c98d; }
@media (prefers-reduced-motion: reduce) {
  .hv-card, .hv-pill { animation: none !important; }
}

/* ============== MARQUEE ============== */
.marquee { overflow: hidden; border-block: 1px solid var(--border); background: var(--surface-glass); backdrop-filter: blur(10px); padding: 18px 0; -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; gap: 48px; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink-soft); white-space: nowrap; }
.marquee-item svg { width: 20px; height: 20px; color: var(--accent); }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============== CARDS / FEATURES ============== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.feat {
  position: relative; padding: 30px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.feat::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s var(--ease);
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgb(var(--glow) / 0.12), transparent 60%);
}
.feat:hover { transform: translateY(-6px); border-color: rgb(var(--glow) / 0.45); box-shadow: 0 30px 60px -28px rgb(var(--glow) / 0.4); }
.feat:hover::before { opacity: 1; }
.feat-ic {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 20px;
  background: linear-gradient(135deg, rgb(var(--glow) / 0.16), rgb(var(--glow-2) / 0.1));
  border: 1px solid var(--border);
}
.feat h3 { font-size: 1.22rem; margin-bottom: 10px; }
.feat p { color: var(--ink-soft); font-size: 0.95rem; }

/* service cards with image */
.svc { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--border); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.svc:hover { transform: translateY(-6px); box-shadow: 0 34px 68px -30px rgb(var(--shadow-color) / 0.5); }
.svc-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.svc:hover .svc-img img { transform: scale(1.08); }
.svc-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgb(0 0 0 / 0.5)); }
.svc-ic { position: absolute; left: 18px; bottom: 18px; z-index: 2; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 1.3rem; background: var(--surface-glass); backdrop-filter: blur(12px); border: 1px solid rgb(255 255 255 / 0.25); }
.svc-body { padding: 24px; }
.svc-body h3 { font-size: 1.18rem; margin-bottom: 9px; }
.svc-body p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 16px; }
.svc-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--accent-deep); }
:root[data-mode="dark"] .svc-link { color: var(--accent-2); }
.svc-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.svc:hover .svc-link svg { transform: translateX(5px); }

/* ============== QUOTE BAND ============== */
.quote-band { position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 360px; display: grid; place-items: center; text-align: center; padding: 60px 30px; }
.quote-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quote-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgb(var(--glow) / 0.55), rgb(var(--glow-2) / 0.45)), rgb(0 0 0 / 0.45); }
.quote-band .q { position: relative; z-index: 2; max-width: 800px; }
.quote-band .q p { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 3vw, 2.3rem); color: #fff; line-height: 1.2; letter-spacing: -0.02em; }
.quote-band .q cite { display: block; margin-top: 20px; font-style: normal; color: rgb(255 255 255 / 0.85); font-weight: 500; }

/* ============== PRICING ============== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.price-card { position: relative; padding: 32px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgb(var(--shadow-color) / 0.4); }
.price-card.featured {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, var(--accent-2), var(--accent-deep)) border-box;
  box-shadow: 0 40px 90px -34px rgb(var(--glow) / 0.6);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
@media (max-width: 860px) { .price-card.featured { transform: none; } .price-card.featured:hover { transform: translateY(-6px); } }
.price-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 16px; border-radius: 999px; font-family: var(--font-mono); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: linear-gradient(120deg, var(--accent-2), var(--accent-deep)); white-space: nowrap; box-shadow: 0 10px 24px -8px rgb(var(--glow) / 0.7); }
.price-name { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); }
.price-amt { display: flex; align-items: baseline; gap: 4px; margin: 14px 0 4px; }
.price-amt .num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; letter-spacing: -0.04em; }
.price-amt .per { color: var(--ink-muted); font-size: 0.86rem; font-weight: 500; }
.price-card.featured .price-amt .num { background: linear-gradient(120deg, var(--accent-2), var(--accent-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-list { margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); }
.price-list .tick { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: rgb(var(--glow) / 0.16); color: var(--accent-deep); margin-top: 1px; }
:root[data-mode="dark"] .price-list .tick { color: var(--accent-2); }
.price-list .tick svg { width: 12px; height: 12px; }
.price-foot { font-size: 0.84rem; color: var(--ink-muted); margin-top: 16px; font-style: italic; }

/* ============== STAT STRIP ============== */
.statline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.statline .s { text-align: center; padding: 24px 12px; }
.statline .s b { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.04em; display: block; line-height: 1; }
.statline .s span { font-size: 0.82rem; color: var(--ink-muted); margin-top: 8px; display: block; }

/* ============== SPLIT / ABOUT ============== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split-media { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 5/6; box-shadow: 0 40px 90px -36px rgb(var(--shadow-color) / 0.6); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-badge { position: absolute; left: 20px; bottom: 20px; padding: 14px 18px; border-radius: var(--radius); background: var(--surface-glass); backdrop-filter: blur(14px); border: 1px solid rgb(255 255 255 / 0.25); }
.split-badge b { font-family: var(--font-display); font-size: 1.6rem; color: #fff; display: block; }
.split-badge span { font-size: 0.72rem; color: rgb(255 255 255 / 0.85); }
.check-list { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 30px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.check-list .tick { flex-shrink: 0; width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent-2), var(--accent-deep)); color: #fff; }
.check-list .tick svg { width: 14px; height: 14px; }

/* ============== REVIEWS ============== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { padding: 28px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); }
.review .stars { color: #f5a623; letter-spacing: 2px; font-size: 1rem; margin-bottom: 14px; }
.review p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 18px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--accent-2), var(--accent-deep)); }
.review .who b { font-size: 0.92rem; display: block; }
.review .who span { font-size: 0.78rem; color: var(--ink-muted); }

/* ============== GOOGLE REVIEWS WIDGET ============== */
.gr-summary { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding: 22px 28px; border-radius: var(--radius-lg); margin-bottom: 26px; }
.gr-summary-left { display: flex; align-items: center; gap: 16px; }
.gr-summary-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); }
.gr-summary-score { display: flex; align-items: center; gap: 10px; margin: 2px 0; }
.gr-summary-score b { font-family: var(--font-display); font-size: 2rem; line-height: 1; color: var(--ink); }
.gr-summary-count { font-size: 0.82rem; color: var(--ink-muted); }
.gr-write { flex-shrink: 0; }
.gr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gr-card { padding: 24px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); display: flex; flex-direction: column; gap: 12px; }
.gr-card:hover { transform: translateY(-5px); box-shadow: 0 26px 54px -28px rgb(var(--shadow-color) / 0.45); }
.gr-card-head { display: flex; align-items: center; gap: 12px; }
.gr-av { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #fff; object-fit: cover; }
.gr-card-meta { flex: 1; min-width: 0; }
.gr-card-meta b { display: block; font-size: 0.94rem; color: var(--ink); }
.gr-card-meta span { font-size: 0.78rem; color: var(--ink-muted); }
.gr-card-g { flex-shrink: 0; opacity: 0.9; }
.gr-card-text { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.6; margin: 0; }
.gr-foot { text-align: center; margin-top: 34px; }
@media (max-width: 860px) { .gr-grid { grid-template-columns: 1fr; } .gr-summary { flex-direction: column; align-items: flex-start; } }

/* ============== PROUDLY SERVING ============== */
.serving { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.serving-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; box-shadow: 0 30px 70px -30px rgb(var(--shadow-color) / 0.5); }
.serving-map iframe { width: 100%; height: 100%; border: 0; }
.serving-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.city-chip { display: flex; align-items: center; gap: 9px; padding: 13px 14px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); transition: transform 0.3s var(--ease), color 0.3s, border-color 0.3s, background 0.3s; }
.city-chip:hover { transform: translateY(-3px); color: var(--ink); border-color: rgb(var(--glow) / 0.45); background: var(--surface-2); }
.city-chip svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--accent-deep); }
:root[data-mode="dark"] .city-chip svg { color: var(--accent-2); }
.city-chip.more { justify-content: center; color: var(--accent-deep); border-style: dashed; }
:root[data-mode="dark"] .city-chip.more { color: var(--accent-2); }
@media (max-width: 920px) { .serving { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .serving-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============== CTA ============== */
.cta-panel { position: relative; border-radius: var(--radius-xl); overflow: hidden; padding: clamp(48px, 7vw, 90px); text-align: center; background: linear-gradient(135deg, var(--accent-deep), var(--accent)); }
.cta-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px circle at 20% 10%, rgb(255 255 255 / 0.18), transparent 60%), radial-gradient(600px circle at 90% 90%, rgb(0 0 0 / 0.25), transparent 60%); }
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); }
.cta-panel p { color: rgb(255 255 255 / 0.9); max-width: 560px; margin: 18px auto 32px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-panel .btn-ghost { background: rgb(255 255 255 / 0.14); border-color: rgb(255 255 255 / 0.3); color: #fff; }
.cta-panel .btn-ghost:hover { background: rgb(255 255 255 / 0.24); color: #fff; }
.cta-panel .btn-primary { background: #fff; color: var(--accent-ink); box-shadow: 0 14px 40px -10px rgb(0 0 0 / 0.4); }

/* ============== MAP ============== */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 21/9; box-shadow: 0 30px 70px -30px rgb(var(--shadow-color) / 0.4); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2); }

/* ============== FOOTER ============== */
.footer { position: relative; margin-top: 40px; border-top: 1px solid var(--border); background: var(--surface-glass); backdrop-filter: blur(10px); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-block: clamp(48px, 6vw, 72px); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--ink-soft); font-size: 0.92rem; max-width: 36ch; margin-bottom: 18px; }
.footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-contact a, .footer-contact span { display: inline-flex; gap: 10px; align-items: center; font-size: 0.88rem; color: var(--ink-soft); white-space: nowrap; }
.footer-contact svg { width: 17px; height: 17px; flex-shrink: 0; }
.footer-contact a:hover { color: var(--accent-deep); }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--ink-soft); transition: color 0.2s, padding-left 0.2s; }
.footer-col a:hover { color: var(--accent-deep); padding-left: 4px; }
:root[data-mode="dark"] .footer-col a:hover, :root[data-mode="dark"] .footer-contact a:hover { color: var(--accent-2); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; padding-block: 24px; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--ink-muted); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgb(var(--glow) / 0.1); transition: transform 0.3s var(--ease), background 0.3s; }
.footer-social a:hover { transform: translateY(-3px); background: var(--accent); color: #fff; }
.footer-social svg { width: 17px; height: 17px; }

/* ============== REVEAL ANIM ============== */
/* Hidden state armed only once JS confirms it runs (html.js-ready).
   If JS never runs or a transition stalls, content stays visible. */
html.js-ready [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.js-ready [data-reveal="left"] { transform: translateX(-40px); }
html.js-ready [data-reveal="right"] { transform: translateX(40px); }
html.js-ready [data-reveal="scale"] { transform: scale(0.92); }
html.js-ready [data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  html.js-ready [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============== PAGE HERO (inner) ============== */
.page-hero { padding-top: clamp(160px, 18vh, 220px); padding-bottom: clamp(40px, 6vw, 72px); text-align: center; position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin: 18px auto; max-width: 16ch; }
.page-hero .lead { margin-inline: auto; }
.breadcrumb { display: inline-flex; gap: 8px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--accent-deep); }

/* ============== FORMS ============== */
.form-card { padding: clamp(28px, 4vw, 44px); border-radius: var(--radius-xl); background: var(--surface); border: 1px solid var(--border); box-shadow: 0 30px 70px -34px rgb(var(--shadow-color) / 0.5); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.86rem; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--ink);
  font-family: inherit; font-size: 0.95rem; transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgb(var(--glow) / 0.14); }
.field textarea { resize: vertical; min-height: 130px; }
.field.error input, .field.error textarea { border-color: #e5484d; }
.field .err-msg { color: #e5484d; font-size: 0.78rem; margin-top: 6px; display: none; }
.field.error .err-msg { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success { padding: 18px; border-radius: 14px; background: rgb(22 201 141 / 0.12); border: 1px solid rgb(22 201 141 / 0.4); color: var(--ink); display: none; align-items: center; gap: 12px; margin-bottom: 18px; }
.form-success.show { display: flex; }
.form-error { padding: 14px 16px; border-radius: 12px; background: rgb(229 72 77 / 0.12); border: 1px solid rgb(229 72 77 / 0.4); color: var(--ink); font-size: 0.9rem; margin-bottom: 18px; display: none; }
.form-error.show { display: block; }

/* ============== FAQ ============== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.faq-q .pm { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: rgb(var(--glow) / 0.12); color: var(--accent-deep); transition: transform 0.4s var(--ease), background 0.3s; }
:root[data-mode="dark"] .faq-q .pm { color: var(--accent-2); }
.faq-item.open .faq-q .pm { transform: rotate(135deg); background: var(--accent); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a-inner { padding: 0 4px 24px; color: var(--ink-soft); max-width: 72ch; }

/* FAQ categories */
.faq-cat { margin-bottom: 40px; }
.faq-cat-head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; padding-bottom: 14px; }
.faq-cat-head .ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem; background: linear-gradient(135deg, rgb(var(--glow) / 0.16), rgb(var(--glow-2) / 0.1)); border: 1px solid var(--border); }
.faq-cat-head h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.faq-cat-head .count { margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--ink-muted); padding: 5px 11px; border-radius: 999px; border: 1px solid var(--border); }
.faq-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 44px; }
.faq-nav a { padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 0.86rem; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--border); transition: transform 0.25s var(--ease), color 0.25s, border-color 0.25s, background 0.25s; }
.faq-nav a:hover { transform: translateY(-2px); color: var(--accent-deep); border-color: rgb(var(--glow) / 0.45); }
:root[data-mode="dark"] .faq-nav a:hover { color: var(--accent-2); }

/* ============== PARTNERS / LOGOS ============== */
.logo-strip { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.logo-chip { padding: 16px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); font-family: var(--font-display); font-weight: 600; color: var(--ink-soft); transition: transform 0.3s var(--ease), color 0.3s; }
.logo-chip:hover { transform: translateY(-4px); color: var(--accent-deep); border-color: rgb(var(--glow) / 0.4); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1000px) {
  .hero { align-items: flex-start; min-height: 0; padding-top: clamp(116px, 18vh, 160px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin-inline: auto; width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .grid-3, .pricing-grid, .reviews-grid { grid-template-columns: 1fr; }
  .grid-2, .split, .form-row, .statline { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .statline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============== COMING SOON ============== */
.cs-hero { padding-top: clamp(150px, 18vh, 210px); padding-bottom: clamp(48px, 7vw, 90px); }
.cs-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.cs-badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 18px; border-radius: 999px; background: rgb(var(--glow) / 0.12); border: 1px solid rgb(var(--glow) / 0.4); color: var(--accent-deep); font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
:root[data-mode="dark"] .cs-badge { color: var(--accent-2); }
.cs-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgb(var(--glow) / 0.6); animation: pulse-dot 2s infinite; }
.cs-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin: 22px 0; }
.cs-hero .lead { margin-bottom: 28px; }
.cs-points { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 32px; }
.cs-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.cs-points .tick { flex-shrink: 0; width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent-2), var(--accent-deep)); color: #fff; }
.cs-points .tick svg { width: 13px; height: 13px; }

/* notify form */
.cs-notify { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; }
.cs-notify input { flex: 1; min-width: 200px; padding: 13px 16px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); color: var(--ink); font-family: inherit; font-size: 0.95rem; }
.cs-notify input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgb(var(--glow) / 0.14); }
.cs-note { font-size: 0.82rem; color: var(--ink-muted); margin-top: 12px; }
.cs-note.ok { color: #16c98d; font-weight: 600; }

/* orbital graphic */
.cs-orbit { position: relative; aspect-ratio: 1/1; display: grid; place-items: center; }
.cs-orbit .ring { position: absolute; border-radius: 50%; border: 1px solid var(--border-strong); }
.cs-orbit .r1 { inset: 8%; }
.cs-orbit .r2 { inset: 20%; border-style: dashed; animation: spin-slow 26s linear infinite; }
.cs-orbit .r3 { inset: 32%; }
@media (prefers-reduced-motion: reduce) { .cs-orbit .r2 { animation: none; } }
.cs-orbit .pulse { position: absolute; inset: 8%; border-radius: 50%; border: 2px solid rgb(var(--glow) / 0.5); animation: cs-pulse 3s var(--ease-out) infinite; }
.cs-orbit .pulse.d { animation-delay: 1.5s; }
@keyframes cs-pulse { 0% { transform: scale(0.7); opacity: 0.8; } 100% { transform: scale(1.15); opacity: 0; } }
.cs-core { position: relative; width: 42%; aspect-ratio: 1/1; border-radius: 28px; display: grid; place-items: center; font-size: clamp(3rem, 7vw, 4.6rem); background: linear-gradient(135deg, var(--accent-2), var(--accent-deep)); box-shadow: 0 30px 70px -22px rgb(var(--glow) / 0.7), inset 0 2px 0 rgb(255 255 255 / 0.3); animation: float-a 6s var(--ease-in-out) infinite; }
@media (prefers-reduced-motion: reduce) { .cs-core { animation: none; } }
.cs-orbit .sat { position: absolute; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; font-size: 1.3rem; background: var(--surface); border: 1px solid var(--border); box-shadow: 0 12px 30px -12px rgb(var(--shadow-color) / 0.5); }
.cs-orbit .s1 { top: 4%; left: 50%; transform: translateX(-50%); animation: float-b 5s var(--ease-in-out) infinite; }
.cs-orbit .s2 { bottom: 10%; right: 6%; animation: float-c 6.5s var(--ease-in-out) infinite; }
.cs-orbit .s3 { bottom: 14%; left: 4%; animation: float-b 7s var(--ease-in-out) infinite; }
@media (max-width: 920px) { .cs-grid { grid-template-columns: 1fr; } .cs-orbit { max-width: 420px; margin-inline: auto; order: -1; } }

/* ============== DIRECTION: CIRCUIT ============== */
:root[data-direction="circuit"] {
  --radius: 10px; --radius-lg: 14px; --radius-xl: 18px;
}
:root[data-direction="circuit"] .feat,
:root[data-direction="circuit"] .svc,
:root[data-direction="circuit"] .price-card,
:root[data-direction="circuit"] .review { border-color: rgb(var(--glow) / 0.3); }
:root[data-direction="circuit"] .feat-ic { border-radius: 8px; }
:root[data-direction="circuit"] .btn { border-radius: 8px; }
:root[data-direction="circuit"] .nav, :root[data-direction="circuit"] .hero-badge, :root[data-direction="circuit"] .btn { border-radius: 8px; }
:root[data-direction="circuit"] .nav-link, :root[data-direction="circuit"] .hstat { border-radius: 8px; }

/* ============== DIRECTION: MOMENTUM ============== */
:root[data-direction="momentum"] .hero h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; letter-spacing: -0.045em; }
:root[data-direction="momentum"] .headline, :root[data-direction="momentum"] .section-head h2 { font-size: clamp(2.3rem, 5.5vw, 4rem); }
:root[data-direction="momentum"] .feat:hover,
:root[data-direction="momentum"] .svc:hover { transform: translateY(-10px); }
:root[data-direction="momentum"] .btn-primary { box-shadow: 0 14px 0 -2px var(--accent-ink), 0 20px 40px -12px rgb(var(--glow) / 0.6); }
:root[data-direction="momentum"] .btn-primary:hover { transform: translateY(-4px); box-shadow: 0 18px 0 -2px var(--accent-ink), 0 26px 50px -14px rgb(var(--glow) / 0.7); }
