/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0A0F1E;
  --bg2: #0D1428;
  --bg3: #111830;
  --white: #F0F4FF;
  --muted: #7A88AA;
  --accent: #00D4FF;
  --accent2: #0066FF;
  --accent-dim: rgba(0,212,255,0.12);
  --border: rgba(255,255,255,0.07);
  --radius: 14px;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 68px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--white); font-family: var(--font-body); line-height: 1.65; overflow-x: hidden; }
::selection { background: var(--accent); color: #000; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.label { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; line-height: 1.12; }
h2 { font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem,2.5vw,1.6rem); font-weight: 700; }
p { color: rgba(240,244,255,0.75); font-size: 1rem; max-width: 60ch; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem,5vw,3rem); }
.section { padding: clamp(5rem,10vw,9rem) 0; }
.section--dark { background: var(--bg2); }
.section--darker { background: var(--bg3); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.75rem; }
.section-head { margin-bottom: 4rem; }
.section-head .label { margin-bottom: 0.8rem; display: block; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: 1.05rem; }

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0; transform: scale(0.97) translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: none; }
/* stagger delays */
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s}
.d4{transition-delay:.32s} .d5{transition-delay:.4s}  .d6{transition-delay:.48s}
.d7{transition-delay:.56s}

/* ── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal,.reveal-scale,.reveal-left { opacity:1; transform:none; transition:none; }
  .mesh-blob,.btn-primary::after,.scroll-arrow { animation:none !important; }
  .hero-label,.hero-headline,.hero-subline,.hero-claim,.hero-sub,.hero-tagline,.hero-scroll-hint { opacity:1 !important; animation:none !important; }
  .hero-headline span::after { transform: scaleX(1) !important; animation: none !important; }
}

/* ── NAV ───────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(10,15,30,0.7);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
#nav.scrolled { border-bottom-color: var(--border); background: rgba(10,15,30,0.94); }
#nav .inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
#nav .container { max-width: 1340px; }
/* progress bar */
#nav-progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  width: 0%; transition: width 0.1s linear; pointer-events: none;
}
/* nav links */
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  font-size: 0.83rem; font-weight: 500;
  color: rgba(240,244,255,0.65);
  position: relative; padding-bottom: 2px;
  transition: color 0.25s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 1px; width: 0; background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  display: inline-flex !important; align-items: center; gap: 0.35rem;
  background: var(--accent) !important; color: #000 !important;
  padding: 0.5rem 0.85rem !important; border: 1px solid transparent; border-radius: 8px;
  font-weight: 700 !important; font-size: 0.76rem !important;
  letter-spacing: 0.03em; text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); color: #000 !important; }
/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; z-index: 210; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
/* mobile overlay - structured two-tier nav */
#mobile-overlay {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(8,12,24,0.98);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
  gap: 1.4rem;
  padding: calc(var(--nav-h) + 1.5rem) clamp(1.5rem, 7vw, 2.75rem) calc(env(safe-area-inset-bottom) + 2rem);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
#mobile-overlay.open { opacity: 1; pointer-events: all; }
#mobile-overlay .mob-group { display: flex; flex-direction: column; }
#mobile-overlay .mob-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(240,244,255,0.35); margin-bottom: 0.45rem; pointer-events: none;
}
#mobile-overlay .mob-link {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; line-height: 1.3;
  color: rgba(240,244,255,0.9); padding: 0.7rem 0; display: block; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
#mobile-overlay .mob-group .mob-link:last-child { border-bottom: none; }
#mobile-overlay .mob-link:hover { color: var(--accent); }
#mobile-overlay .mob-sub {
  display: block; font-size: 0.74rem; font-weight: 500; line-height: 1.3;
  color: rgba(240,244,255,0.45); margin-top: 0.15rem;
}
#mobile-overlay .mob-free-link { color: var(--accent); font-weight: 700; }
#mobile-overlay .mob-cta {
  background: var(--accent); color: #000 !important;
  padding: 1rem 1.5rem; border-radius: 12px; text-align: center;
  font-family: var(--font-head); font-size: 1rem; font-weight: 800;
  border-bottom: none; margin-top: 0.25rem; line-height: 1.3;
}
#mobile-overlay .mob-cta:hover { color: #000 !important; filter: brightness(1.05); }
#mobile-overlay .mob-divider {
  width: 100%; height: 1px; background: var(--border);
  opacity: 0; transition: opacity 0.4s var(--ease) 0.28s;
}
#mobile-overlay.open .mob-divider { opacity: 1; }
/* entrance stagger */
#mobile-overlay .mob-link, #mobile-overlay .mob-label {
  transform: translateY(16px); opacity: 0;
}
#mobile-overlay.open .mob-link, #mobile-overlay.open .mob-label { transform: none; opacity: 1; }
#mobile-overlay.open .mob-group:nth-child(1) .mob-label,
#mobile-overlay.open .mob-group:nth-child(1) .mob-link { transition-delay: .04s; }
#mobile-overlay.open .mob-group:nth-child(2) .mob-label,
#mobile-overlay.open .mob-group:nth-child(2) .mob-link { transition-delay: .1s; }
#mobile-overlay.open .mob-group:nth-child(4) .mob-link { transition-delay: .16s; }
#sticky-cta.overlay-open { display: none !important; }
@media (prefers-reduced-motion: reduce) {
  #mobile-overlay .mob-link, #mobile-overlay .mob-label { transform: none; opacity: 1; transition: color 0.2s; }
}

/* ── LOGO ──────────────────────────────────────────────────── */
.logo-wrap { display: flex; align-items: center; transition: opacity 0.2s; }
.logo-wrap:hover { opacity: 0.85; }
.clario-logo { display: block; overflow: visible; }
.clario-gem { transform-origin: 162px 24px; animation: gemFloat 4.5s ease-in-out infinite; filter: drop-shadow(0 0 12px rgba(0,212,255,0.35)); }
@keyframes gemFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-2px) rotate(-2deg); }
}
.logo-wrap:hover .clario-gem { animation-duration: 1.8s; filter: drop-shadow(0 0 18px rgba(0,212,255,0.55)); }

/* ── NAV CTA SECONDARY ─────────────────────────────────────── */
.nav-cta-secondary {
  background: transparent !important; color: var(--accent) !important;
  border: 1px solid rgba(0,212,255,0.35);
  padding: 0.45rem 0.95rem !important;
  font-weight: 600 !important;
}
.nav-cta-secondary::after { display: none !important; }
.nav-cta-secondary:hover { background: rgba(0,212,255,0.08) !important; border-color: rgba(0,212,255,0.6); color: var(--accent) !important; transform: translateY(-1px); }
@media (max-width: 1100px) { .nav-cta-secondary { display: none !important; } }

/* ── NAV DROPDOWN ──────────────────────────────────────────── */
.nav-dropdown { position: relative; display: inline-block; }
/* invisible hover bridge so the menu doesn't close when crossing the gap */
.nav-dropdown::before {
  content: ''; position: absolute;
  top: 100%; left: -8px; right: -8px; height: 1rem;
  pointer-events: none;
}
.nav-dropdown:hover::before,
.nav-dropdown:focus-within::before,
.nav-dropdown.open::before { pointer-events: auto; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: transparent !important; color: var(--accent) !important;
  border: 1px solid rgba(0,212,255,0.4) !important;
  padding: 0.5rem 1rem !important; border-radius: 8px;
  font-weight: 700 !important; font-size: 0.8rem !important;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s !important;
}
.nav-dropdown-trigger::after { display: none !important; }
.nav-dropdown-trigger .chev {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform 0.25s var(--ease);
  margin-top: -3px;
}
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown.open .nav-dropdown-trigger {
  background: rgba(0,212,255,0.1) !important; border-color: rgba(0,212,255,0.7) !important;
}
.nav-dropdown:hover .nav-dropdown-trigger .chev,
.nav-dropdown:focus-within .nav-dropdown-trigger .chev,
.nav-dropdown.open .nav-dropdown-trigger .chev { transform: rotate(225deg); margin-top: 3px; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 0.65rem); right: 0;
  background: rgba(13,20,40,0.98); backdrop-filter: blur(18px);
  border: 1px solid rgba(0,212,255,0.28); border-radius: 14px;
  min-width: 320px; padding: 0.5rem;
  display: flex; flex-direction: column; gap: 0.2rem;
  opacity: 0; transform: translateY(-8px) scale(0.97); pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  z-index: 250;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -8px; right: 24px;
  width: 14px; height: 14px; background: rgba(13,20,40,0.98);
  border-top: 1px solid rgba(0,212,255,0.28); border-left: 1px solid rgba(0,212,255,0.28);
  transform: rotate(45deg);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { opacity: 1; transform: none; pointer-events: auto; }
.nav-dropdown-menu a {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 0.85rem 1rem; padding-right: 2.4rem;
  border-radius: 10px;
  font-size: 0.92rem; font-weight: 600; color: var(--white);
  letter-spacing: 0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  position: relative;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover { background: rgba(0,212,255,0.1); transform: translateX(2px); }
.nav-dropdown-menu .menu-sub { font-size: 0.74rem; font-weight: 400; color: rgba(240,244,255,0.6); }
.nav-dropdown-menu .menu-arr { position: absolute; right: 0.95rem; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1rem; opacity: 0; transition: opacity 0.2s, transform 0.25s var(--ease); }
.nav-dropdown-menu a:hover .menu-arr { opacity: 1; transform: translateY(-50%) translateX(3px); }
@media (max-width: 1100px) { .nav-dropdown { display: none; } }

/* ── NAV MEGA-MENU (Services / Work) ───────────────────────── */
.nav-mega { position: relative; }
.nav-mega-trigger {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(240,244,255,0.65);
  letter-spacing: 0.02em;
  cursor: pointer;
  position: relative; padding: 0.4rem 0;
  transition: color 0.2s;
}
.nav-mega-trigger::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 1px; width: 0; background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-mega:hover .nav-mega-trigger,
.nav-mega:focus-within .nav-mega-trigger { color: var(--white); }
.nav-mega:hover .nav-mega-trigger::after,
.nav-mega:focus-within .nav-mega-trigger::after { width: 100%; }
.nav-mega-trigger .chev {
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform 0.2s, margin 0.2s;
  margin-top: -3px;
}
.nav-mega:hover .nav-mega-trigger .chev,
.nav-mega:focus-within .nav-mega-trigger .chev { transform: rotate(225deg); margin-top: 3px; }

.nav-mega-menu {
  position: absolute; top: calc(100% + 0.65rem); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(13,20,40,0.98); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 12px;
  min-width: 380px; padding: 0.6rem;
  display: flex; flex-direction: column; gap: 0.2rem;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,255,0.04);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 250;
}
.nav-mega-menu::before {
  content: ''; position: absolute; top: -7px; left: 50%; margin-left: -7px;
  width: 14px; height: 14px; background: rgba(13,20,40,0.98);
  border-left: 1px solid rgba(0,212,255,0.25); border-top: 1px solid rgba(0,212,255,0.25);
  transform: rotate(45deg);
}
.nav-mega:hover .nav-mega-menu,
.nav-mega:focus-within .nav-mega-menu { opacity: 1; transform: translateX(-50%); pointer-events: auto; }

.nav-mega-item {
  display: grid !important; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: start;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-mega-item::after { display: none !important; }
.nav-mega-item:hover { background: rgba(0,212,255,0.08); transform: translateX(2px); }
.nav-mega-item .nmi-icon {
  flex-shrink: 0; width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.25);
  border-radius: 8px; color: var(--accent); font-size: 0.95rem;
}
.nav-mega-item .nmi-body { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.nav-mega-item .nmi-body strong {
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 700;
  color: var(--white); line-height: 1.2;
}
.nav-mega-item .nmi-body span {
  font-size: 0.74rem; color: rgba(240,244,255,0.62); line-height: 1.45;
}
.nav-mega-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.3rem 0.85rem 0.55rem; margin-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mega-head .nmh-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(240,244,255,0.42);
}
.nav-mega-head .nmh-hint {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap;
  color: var(--accent); display: inline-flex; align-items: center; gap: 0.3rem;
}
.nav-mega-head .nmh-hint::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px rgba(0,212,255,0.8);
}
.nmi-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-top: 0.4rem; }
.nmi-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1.3;
  color: var(--accent); background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.22); border-radius: 100px;
  padding: 0.12rem 0.5rem; white-space: nowrap;
}
.nmi-tag.is-muted {
  color: rgba(240,244,255,0.6); background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.09);
}
.nav-mega.nav-mega-wide .nav-mega-menu { min-width: 412px; }
@media (max-width: 1100px) { .nav-mega { display: none; } }

/* skip-to-content link (a11y) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--accent); color: #000; padding: 0.75rem 1.25rem;
  font-weight: 700; font-size: 0.85rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ── FAQ ───────────────────────────────────────────────────── */
#faq { padding: clamp(5rem,10vw,9rem) 0; background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.faq-item:hover { border-color: rgba(0,212,255,0.2); }
.faq-item[open] { border-color: rgba(0,212,255,0.35); background: linear-gradient(180deg, var(--bg3), rgba(0,212,255,0.04)); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-head); font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 700; color: var(--white);
  cursor: pointer; list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span:first-child { line-height: 1.35; }
.faq-item:hover summary { color: var(--accent); }
.faq-toggle {
  position: relative; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.06);
  transition: transform 0.3s var(--ease), background 0.2s;
}
.faq-toggle::before, .faq-toggle::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 9px; height: 1.5px; background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-toggle { background: var(--accent); transform: rotate(135deg); }
.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after { background: #000; }
.faq-answer { padding: 0 1.4rem 1.25rem; }
.faq-answer p { font-size: 0.95rem; color: rgba(240,244,255,0.78); line-height: 1.7; max-width: none; }
.faq-answer p strong { color: var(--white); font-weight: 700; }
.faq-cta {
  max-width: 820px; margin: 2.5rem auto 0;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(0,102,255,0.03));
  border: 1px solid rgba(0,212,255,0.22);
  border-radius: var(--radius);
}
.faq-cta p {
  font-family: var(--font-head); font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700; color: var(--white); margin: 0 0 1rem;
}
.faq-cta .sctb-ctas { justify-content: center; }

/* ── FOOTER SOCIALS ────────────────────────────────────────── */
.footer-socials {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
}
.footer-socials-label {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-right: 0.25rem;
}
.footer-social-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  color: rgba(240,244,255,0.85); font-size: 0.8rem; font-weight: 600;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, color 0.25s;
}
.footer-social-btn:hover {
  background: rgba(0,212,255,0.14);
  border-color: rgba(0,212,255,0.45);
  color: var(--accent);
  transform: translateY(-1px);
}
.footer-social-btn svg { flex-shrink: 0; }
@media (max-width: 700px) {
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-socials { width: 100%; justify-content: flex-start; }
}

/* ── FILE UPLOAD (modal forms) ─────────────────────────────── */
.modal-form .file-drop {
  border: 1.5px dashed rgba(0,212,255,0.3); border-radius: 10px;
  padding: 1.1rem 1.25rem; cursor: pointer;
  background: rgba(0,212,255,0.04);
  display: flex; align-items: center; gap: 0.85rem;
  transition: border-color 0.2s, background 0.2s;
}
.modal-form .file-drop:hover { border-color: rgba(0,212,255,0.55); background: rgba(0,212,255,0.07); }
.modal-form .file-drop.dragover { border-color: var(--accent); background: rgba(0,212,255,0.14); border-style: solid; }
.modal-form .file-drop input { display: none; }
.modal-form .file-drop-icon {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%;
  background: rgba(0,212,255,0.15); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.modal-form .file-drop-text { flex: 1; min-width: 0; }
.modal-form .file-drop-text .ttl { display: block; font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 0.15rem; }
.modal-form .file-drop-text .sub { font-size: 0.74rem; color: rgba(240,244,255,0.6); line-height: 1.4; }
.modal-form .file-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.modal-form .file-list:empty { display: none; }
.modal-form .file-pill { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.35rem 0.7rem; background: var(--accent-dim); border: 1px solid rgba(0,212,255,0.25); border-radius: 100px; font-size: 0.75rem; color: var(--white); max-width: 220px; }
.modal-form .file-pill span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.modal-form .file-pill button { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1rem; line-height: 1; padding: 0; transition: color 0.2s; flex-shrink: 0; }
.modal-form .file-pill button:hover { color: #FF6B6B; }

/* ── MODAL FORM SYSTEM ─────────────────────────────────────── */
#form-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
#form-modal.open { display: flex; }
.form-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,9,24,0.78); backdrop-filter: blur(14px);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
#form-modal.open .form-modal-backdrop { opacity: 1; }
.form-modal-card {
  position: relative; z-index: 1;
  background: var(--bg2); border: 1px solid rgba(0,212,255,0.25);
  border-radius: 18px;
  width: min(720px, 100%); max-height: 90vh;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,0.65);
  overflow: hidden;
  opacity: 0; transform: translateY(20px) scale(0.97);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), width 0.3s var(--ease);
}
#form-modal.modal-wide .form-modal-card { width: min(900px, 100%); }
#form-modal.open .form-modal-card { opacity: 1; transform: none; }
.form-modal-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--accent), var(--accent2));
  background-size: 200% 100%;
  animation: gradientSlide 6s linear infinite;
}
@keyframes gradientSlide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.form-modal-content { padding: clamp(1.75rem, 3vw, 2.5rem); overflow-y: auto; }
.form-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10,15,30,0.9); border: 1px solid var(--border); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.15rem; line-height: 1;
  transition: transform 0.25s, border-color 0.2s, color 0.2s;
}
.form-modal-close:hover { border-color: var(--accent); color: var(--accent); transform: rotate(90deg); }
.form-modal-content .label { display: block; margin-bottom: 0.6rem; }
.form-modal-content h3 { font-size: clamp(1.4rem, 2.6vw, 1.95rem); font-weight: 800; line-height: 1.2; margin-bottom: 0.5rem; }
.form-modal-content .modal-lede { font-size: 0.95rem; color: rgba(240,244,255,0.74); line-height: 1.6; max-width: none; margin-bottom: 1.5rem; }
.form-modal-content .modal-stat-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.form-modal-content .modal-stat { padding: 0.6rem 0.9rem; background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); border-radius: 100px; font-size: 0.78rem; color: rgba(240,244,255,0.85); display: inline-flex; align-items: center; gap: 0.5rem; }
.form-modal-content .modal-stat strong { color: var(--accent); font-weight: 700; }
.modal-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.modal-form .full { grid-column: 1 / -1; }
.modal-form label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.78rem; font-weight: 500; color: rgba(240,244,255,0.72); }
.modal-form label .req { color: var(--accent); }
.modal-form input, .modal-form select, .modal-form textarea {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 8px;
  padding: 0.7rem 0.9rem; color: var(--white); font-family: var(--font-body); font-size: 0.88rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none;
}
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus { border-color: rgba(0,212,255,0.5); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); }
.modal-form textarea { min-height: 90px; resize: vertical; }
.modal-form select option { background: var(--bg3); }
.modal-form .submit-row { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.modal-form .submit-row .small { font-size: 0.75rem; color: var(--muted); }
.modal-form .btn { padding: 0.85rem 1.4rem; }
.modal-success { display: none; padding: 2rem; text-align: center; }
.modal-success.visible { display: block; animation: heroUp 0.5s var(--ease); }
.modal-success .checkmark { font-size: 3rem; color: var(--accent); }
@media (max-width: 600px) { .modal-form { grid-template-columns: 1fr; } }
/* social links block (wireframe form) */
.modal-form .social-block { grid-column: 1 / -1; border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.1rem 1.15rem; background: rgba(0,212,255,0.03); }
.modal-form .social-block-head { display: block; font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: 0.2rem; }
.modal-form .social-block-sub { display: block; font-size: 0.72rem; color: rgba(240,244,255,0.6); line-height: 1.45; margin-bottom: 0.85rem; }
.modal-form .social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.modal-form .social-field { position: relative; display: flex; flex-direction: column; gap: 0; }
.modal-form .social-field .social-ico { position: absolute; left: 0.8rem; top: 50%; transform: translateY(-50%); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; color: var(--accent); pointer-events: none; }
.modal-form .social-field input { padding-left: 3.4rem; }
@media (max-width: 600px) { .modal-form .social-grid { grid-template-columns: 1fr; } }

/* ── FORM CONSENT CHECKBOX ─────────────────────────────────── */
.form-consent {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.8rem; color: rgba(240,244,255,0.72); line-height: 1.5;
  cursor: pointer; margin: 0;
}
.form-consent input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 0.1rem;
  border: 1.5px solid rgba(0,212,255,0.4); border-radius: 5px;
  background: var(--bg3); cursor: pointer; position: relative;
  transition: background 0.18s, border-color 0.18s;
}
.form-consent input[type="checkbox"]:checked { background: var(--accent); border-color: var(--accent); }
.form-consent input[type="checkbox"]:checked::after {
  content: ''; position: absolute; left: 5px; top: 1px;
  width: 5px; height: 10px; border: solid #000; border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-consent input[type="checkbox"]:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.form-consent a { color: var(--accent); border-bottom: 1px solid rgba(0,212,255,0.3); }
.form-consent a:hover { color: var(--white); }
.modal-form .form-consent { grid-column: 1 / -1; }

/* ── ANIMATED ROADMAP (cta-seo) ─────────────────────────────── */
.audit-roadmap { display: grid; gap: 1rem; max-width: 540px; margin-bottom: 2rem; }
.roadmap-step {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  padding: 1rem 1.25rem; background: var(--bg3); border: 1px solid var(--border); border-radius: 12px;
  position: relative;
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), border-color 0.3s, transform 0.3s;
}
.roadmap-step.visible { opacity: 1; transform: translateX(0); }
.roadmap-step:hover { border-color: rgba(0,212,255,0.3); transform: translateX(4px) !important; }
.roadmap-step:not(:last-child)::after {
  content: ''; position: absolute; left: 28px; bottom: -12px; width: 1px; height: 12px;
  background: linear-gradient(180deg, rgba(0,212,255,0.5), transparent);
}
.roadmap-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 800; color: #000;
  flex-shrink: 0;
}
.roadmap-text { font-size: 0.92rem; line-height: 1.5; color: rgba(240,244,255,0.85); }
.roadmap-text strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--white); margin-bottom: 0.2rem; }
.roadmap-text .meta { display: inline-block; font-size: 0.72rem; color: var(--accent); font-weight: 600; letter-spacing: 0.05em; margin-left: 0.5rem; padding: 0.15rem 0.5rem; background: var(--accent-dim); border-radius: 100px; }

/* ── CALENDAR EMBED ────────────────────────────────────────── */
#calendar-section { padding: clamp(4rem,8vw,7rem) 0; background: var(--bg2); border-top: 1px solid var(--border); }
.calendar-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem,4vw,4rem); align-items: start; }
.calendar-left h2 { margin-bottom: 1rem; }
.calendar-left p { font-size: 1rem; line-height: 1.7; color: rgba(240,244,255,0.78); margin-bottom: 1.25rem; max-width: 38ch; }
.calendar-perks { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.5rem; }
.calendar-perks li { font-size: 0.9rem; color: rgba(240,244,255,0.82); padding-left: 1.6rem; position: relative; line-height: 1.5; }
.calendar-perks li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; border-radius: 50%; background: rgba(0,212,255,0.15);
  color: var(--accent); font-weight: 700; font-size: 0.72rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.calendar-embed-wrap {
  background: #fff; border: 1px solid rgba(0,212,255,0.2); border-radius: var(--radius);
  overflow: hidden; min-height: 720px; position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.calendar-embed-wrap iframe { display: block; width: 100%; height: 720px; border: 0; background: #fff; }
@media (max-width: 980px) {
  .calendar-inner { grid-template-columns: 1fr; gap: 2.25rem; }
  .calendar-left p { max-width: none; }
  .calendar-embed-wrap { min-height: 0; }
  .calendar-embed-wrap iframe { height: 78vh; min-height: 620px; max-height: 880px; }
}
.calendar-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; gap: 1rem; pointer-events: none; }
.calendar-fallback .pre { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.calendar-fallback h4 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; }
.calendar-fallback p { font-size: 0.88rem; color: rgba(240,244,255,0.7); max-width: 36ch; }
.calendar-fallback .btn { pointer-events: auto; }

/* ── COOKIE CONSENT: calendar opt-out fallback ─────────────── */
.calendar-consent-gate, .calendar-optout {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: clamp(1.5rem, 4vw, 2.5rem);
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.06), transparent 70%), var(--bg3);
}
.calendar-consent-gate .ccg-ico, .calendar-optout .ccg-ico {
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,212,255,0.12); color: var(--accent); border: 1px solid rgba(0,212,255,0.25);
}
.calendar-consent-gate h4, .calendar-optout h4 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.6rem; }
.calendar-consent-gate p, .calendar-optout p { font-size: 0.9rem; color: rgba(240,244,255,0.72); max-width: 38ch; margin-bottom: 1.4rem; line-height: 1.6; }
.calendar-consent-gate .btn, .calendar-optout .btn { margin-bottom: 0.9rem; }
.calendar-consent-gate .ccg-note { font-size: 0.74rem; color: var(--muted); max-width: 34ch; line-height: 1.5; }
.calendar-consent-gate .ccg-note a { color: var(--accent); }

/* ── COOKIE CONSENT: banner ────────────────────────────────── */
#cookie-banner {
  position: fixed; z-index: 300; left: 50%; bottom: clamp(1rem, 3vw, 1.75rem);
  transform: translateX(-50%) translateY(140%);
  width: min(680px, calc(100vw - 2rem));
  background: rgba(13,20,40,0.97);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(0,212,255,0.22); border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  padding: 1.25rem 1.4rem;
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  opacity: 0;
}
#cookie-banner.show { transform: translateX(-50%) translateY(0); opacity: 1; }
#cookie-banner .cb-text { flex: 1 1 280px; min-width: 0; }
#cookie-banner .cb-text strong { display: block; font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
#cookie-banner .cb-text p { font-size: 0.82rem; color: rgba(240,244,255,0.72); line-height: 1.55; margin: 0; max-width: none; }
#cookie-banner .cb-text a { color: var(--accent); border-bottom: 1px solid rgba(0,212,255,0.3); }
#cookie-banner .cb-actions { display: flex; gap: 0.6rem; flex-shrink: 0; flex-wrap: wrap; }
#cookie-banner button {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  padding: 0.6rem 1.1rem; border-radius: 9px; cursor: pointer; border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
#cookie-banner .cb-accept { background: var(--accent); color: #000; }
#cookie-banner .cb-accept:hover { background: #28e0ff; }
#cookie-banner .cb-reject { background: transparent; color: rgba(240,244,255,0.8); border-color: var(--border); }
#cookie-banner .cb-reject:hover { border-color: rgba(255,255,255,0.25); color: var(--white); }
@media (max-width: 540px) {
  #cookie-banner { flex-direction: column; align-items: stretch; }
  #cookie-banner .cb-actions { justify-content: stretch; }
  #cookie-banner .cb-actions button { flex: 1; }
}

/* ── EXTRA ANIMATIONS ──────────────────────────────────────── */
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.section-head h2 { background: linear-gradient(120deg, var(--white) 0%, var(--white) 50%, rgba(0,212,255,0.85) 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.trust-bar-stat .num { animation: countUp 0.8s var(--ease); }
@keyframes countUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.cs-stat { transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; }
.cs-stat:hover { transform: translateY(-3px); border-color: rgba(0,212,255,0.3); box-shadow: 0 12px 30px rgba(0,212,255,0.1); }
.partner-tag { transition: transform 0.25s, background 0.25s, border-color 0.25s; }
.partner-tag:hover { transform: translateY(-2px); background: rgba(0,212,255,0.1); border-color: rgba(0,212,255,0.25); }
.cred-item { transition: transform 0.3s, border-color 0.3s; }
.cred-item:hover { transform: translateX(4px); border-color: rgba(0,212,255,0.2); }
.cs-tl-item { transition: background 0.3s; }
.cs-tl-item:hover { background: rgba(0,212,255,0.04); }
.step-num { transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.step-item:hover .step-num { transform: scale(1.1) rotate(8deg); box-shadow: 0 8px 20px rgba(0,212,255,0.3); }
.btn-primary { background: linear-gradient(135deg, var(--accent) 0%, #5DE5FF 50%, var(--accent) 100%); background-size: 200% 100%; transition: background-position 0.4s var(--ease), transform 0.25s var(--ease), filter 0.2s, box-shadow 0.2s; }
.btn-primary:hover { background-position: 100% 0; box-shadow: 0 8px 24px rgba(0,212,255,0.35); }
.pill { transition: background 0.3s, color 0.3s, transform 0.25s; }
.pill:hover { background: rgba(0,212,255,0.25); transform: translateY(-1px); }

/* ── NOISE ─────────────────────────────────────────────────── */

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: visible; padding-top: var(--nav-h);
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,102,255,0.18) 0%, transparent 65%),
              radial-gradient(ellipse 60% 50% at 20% 70%, rgba(0,212,255,0.12) 0%, transparent 60%),
              var(--bg);
}
.mesh-blob { position: absolute; border-radius: 50%; filter: blur(80px); animation: blobFloat 10s ease-in-out infinite; }
.mesh-blob.b1 { width: 500px; height: 500px; background: rgba(0,212,255,0.07); top: -10%; right: -5%; animation-delay: 0s; }
.mesh-blob.b2 { width: 400px; height: 400px; background: rgba(0,102,255,0.09); bottom: 0; left: -10%; animation-delay: -4s; }
.mesh-blob.b3 { width: 300px; height: 300px; background: rgba(0,212,255,0.05); top: 40%; left: 30%; animation-delay: -7s; }
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(20px,-20px) scale(1.05); }
  66%  { transform: translate(-15px,15px) scale(0.97); }
}
#hero .content { position: relative; z-index: 1; }
/* hero stagger, fires on load */
.hero-label    { opacity:0; animation: heroUp 0.6s 0.10s var(--ease) forwards; }
.hero-headline { opacity:0; animation: heroUp 0.7s 0.25s var(--ease) forwards; }
.hero-subline  { opacity:0; animation: heroUp 0.7s 0.40s var(--ease) forwards; margin-top: 1rem; font-family: var(--font-head); font-size: clamp(1.05rem, 2vw, 1.4rem); font-weight: 600; color: rgba(240,244,255,0.92); letter-spacing: -0.01em; line-height: 1.35; max-width: 26ch; }
.hero-claim    { opacity:0; animation: heroUpScale 0.7s 0.55s var(--ease) forwards; margin-top: 1.75rem; }
.hero-sub      { opacity:0; animation: heroUp 0.6s 0.95s var(--ease) forwards; margin-top: 2.5rem; }
.hero-tagline  { opacity:0; animation: heroUp 0.6s 1.05s var(--ease) forwards; }
.hero-ctas     { opacity:1; margin: 0; }
@keyframes heroUp { from {opacity:0;transform:translateY(30px);} to {opacity:1;transform:none;} }
@keyframes heroUpScale { from {opacity:0;transform:translateY(20px) scale(0.95);} to {opacity:1;transform:none;} }
.hero-headline span { color: var(--accent); display: inline-block; position: relative; }
.hero-headline span::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -0.12em; height: 0.16em;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.35; border-radius: 4px; transform: scaleX(0); transform-origin: left;
  animation: heroUnderline 0.9s 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes heroUnderline { to { transform: scaleX(1); } }
.hero-sub { font-size: clamp(0.95rem,1.7vw,1.05rem); color: rgba(240,244,255,0.65); max-width: 52ch; line-height: 1.7; }
.hero-tagline { font-family: var(--font-head); font-size: clamp(0.9rem,1.4vw,1.05rem); color: rgba(240,244,255,0.55); margin-top: 0.6rem; line-height: 1.5; }
.hero-tagline em { color: var(--accent); font-style: italic; font-weight: 600; }

/* CLAIM FREE callout block */
.hero-claim {
  display: flex; flex-direction: column; gap: 0.85rem;
  padding: 1.25rem 1.25rem 1.35rem;
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(0,102,255,0.03));
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 14px;
  position: relative; overflow: hidden;
  max-width: 540px;
}
.hero-claim::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  box-shadow: 0 0 12px rgba(0,212,255,0.4);
}
.hero-claim::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 100% 0%, rgba(0,212,255,0.15), transparent 60%);
}
.hero-claim-label {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 0.55rem; align-self: flex-start;
  padding: 0.35rem 0.8rem 0.35rem 0.7rem;
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.35);
  border-radius: 100px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.hero-claim-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,212,255,0.2), 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
.hero-claim .hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  position: relative; z-index: 1;
}
.hero-claim .btn { box-shadow: 0 8px 24px rgba(0,212,255,0.18); }
.hero-claim .btn-primary { box-shadow: 0 8px 28px rgba(0,212,255,0.35); }
.hero-claim-reassure {
  position: relative; z-index: 1;
  font-size: 0.84rem; color: rgba(240,244,255,0.72);
  line-height: 1.55; max-width: 52ch; margin: 0;
}
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 1; opacity:0; animation: heroUp 1s 1.5s ease forwards;
}
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg); animation: arrowBounce 1.5s ease infinite; }
@keyframes arrowBounce { 0%,100%{transform:rotate(45deg) translateY(0);} 50%{transform:rotate(45deg) translateY(6px);} }

/* ── BUTTONS ───────────────────────────────────────────────── */
.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.4em;
  padding: 0.85rem 1.75rem; border-radius: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none;
  transition: transform 0.25s var(--ease), opacity 0.2s, filter 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.08); }
/* shimmer */
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 3.5s 1.8s ease infinite;
}
@keyframes shimmer { 0%{transform:translateX(-100%);} 55%,100%{transform:translateX(200%);} }
/* pulse on loop for CTA section buttons */
.btn-pulse { animation: btnPulse 3s 2s ease-in-out infinite; }
@keyframes btnPulse {
  0%,100%  { box-shadow: 0 0 0 0 rgba(0,212,255,0); }
  50%      { box-shadow: 0 0 0 10px rgba(0,212,255,0.15); }
}
/* ripple */
.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0); animation: rippleAnim 0.55s linear;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px) scale(1.02); }

/* ── SERVICE CARDS ─────────────────────────────────────────── */
.service-intro-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.service-intro-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity:0; transition:opacity 0.3s;
}
.service-intro-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.service-intro-card:hover::before { opacity:1; }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-intro-card h3 { margin-bottom: 0.75rem; }
.service-intro-card p { font-size: 0.95rem; max-width: none; }
.service-card-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.5rem; padding: 0.7rem 1rem 0.7rem 1.1rem;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--accent); font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em;
  border-radius: 10px; cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, gap 0.25s;
  text-align: left; line-height: 1.3;
}
.service-card-btn:hover { background: rgba(0,212,255,0.14); border-color: rgba(0,212,255,0.5); transform: translateY(-1px); gap: 0.9rem; }
.service-card-btn .scb-arrow { transition: transform 0.25s; font-weight: 700; }
.service-card-btn:hover .scb-arrow { transform: translateX(2px); }

/* shared CTA band under "Two disciplines" */
.services-cta-band {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,102,255,0.04));
  border: 1px solid rgba(0,212,255,0.28);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.services-cta-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  background-size: 200% 100%;
  animation: gradientSlide 6s linear infinite;
}
.sctb-label {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.4rem 0.9rem;
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.35);
  border-radius: 100px;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.sctb-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,212,255,0.2), 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
.sctb-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.sctb-ctas .btn { box-shadow: 0 8px 24px rgba(0,212,255,0.18); }
.sctb-reassure { font-size: 0.86rem; color: rgba(240,244,255,0.7); line-height: 1.55; max-width: 56ch; margin: 0; }

/* SEO section top CTA */
.seo-section-cta {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(0,212,255,0.06) 100%);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--radius);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.25rem, 3vw, 2rem); align-items: center;
  position: relative; overflow: hidden;
}
.seo-section-cta::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 60%; height: 80%; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.18), transparent 60%);
  pointer-events: none;
}
.sscta-left { position: relative; z-index: 1; }
.sscta-left h3 { font-family: var(--font-head); font-size: clamp(1.1rem, 1.9vw, 1.5rem); font-weight: 700; line-height: 1.2; margin: 0.6rem 0 0.7rem; }
.sscta-left p { font-size: 0.92rem; color: rgba(240,244,255,0.72); line-height: 1.6; max-width: 60ch; margin: 0; }
.sscta-right { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 0.6rem; align-items: stretch; }
.sscta-right .btn { white-space: nowrap; text-align: center; justify-content: center; }
.btn-sm { padding: 0.6rem 1rem !important; font-size: 0.82rem !important; }

@media (max-width: 780px) {
  .seo-section-cta { grid-template-columns: 1fr; }
  .sscta-right { align-items: flex-start; }
  .sscta-right .btn { width: 100%; }
}

/* ── SEO PROCESS MODAL ─────────────────────────────────────── */
#seo-process-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: flex-start; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  overflow-y: auto;
}
#seo-process-modal.open { display: flex; animation: spmFade 0.3s var(--ease); }
@keyframes spmFade { from { opacity: 0; } to { opacity: 1; } }
.seo-process-backdrop {
  position: fixed; inset: 0; z-index: 0;
  background: rgba(5,8,18,0.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.seo-process-card {
  position: relative; z-index: 1;
  width: min(1080px, 100%);
  background: linear-gradient(165deg, var(--bg2) 0%, var(--bg) 100%);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 18px;
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,212,255,0.06);
  margin-bottom: 3rem;
  animation: spmRise 0.45s var(--ease);
  isolation: isolate;
}
.seo-process-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--accent), var(--accent2));
  background-size: 200% 100%;
  animation: gradientSlide 6s linear infinite;
  border-radius: 18px 18px 0 0;
}
@keyframes spmRise { from { transform: translateY(20px) scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }

.spm-header { padding-right: 3rem; margin-bottom: 2rem; }
.spm-header h3 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.15;
  margin: 0.5rem 0 0.75rem; letter-spacing: -0.01em;
}
.spm-lede {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem); color: rgba(240,244,255,0.78);
  line-height: 1.6; max-width: 70ch;
}
.spm-lede strong { color: var(--white); }

.spm-phase { margin-bottom: 2rem; }
.spm-phase-label {
  display: inline-block;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
}

.spm-modules {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.65rem;
}

.spm-mod {
  display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; align-items: start;
  padding: 0.85rem 1rem;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.spm-mod:hover {
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.04);
  transform: translateY(-1px);
}
.spm-mod-tag {
  flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.78rem;
  letter-spacing: -0.01em;
}
.tag-s { background: rgba(167,139,250,0.14); color: #C7B7FF; border: 1px solid rgba(167,139,250,0.3); }
.tag-m { background: rgba(0,212,255,0.1); color: var(--accent); border: 1px solid rgba(0,212,255,0.25); }
.tag-ex { background: linear-gradient(135deg, #00D4FF, #0066FF); color: #fff; border: 1px solid rgba(0,212,255,0.4); box-shadow: 0 4px 14px rgba(0,212,255,0.25); }

.spm-mod-body { min-width: 0; }
.spm-mod-body strong {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 0.92rem; color: var(--white); line-height: 1.25; margin-bottom: 0.2rem;
}
.spm-mod-body span {
  display: block; font-size: 0.78rem; color: rgba(240,244,255,0.65);
  line-height: 1.45;
}

.spm-mod--ex {
  border-color: rgba(0,212,255,0.35);
  background: linear-gradient(95deg, rgba(0,212,255,0.08), rgba(0,102,255,0.04));
}
.spm-mod--ex .spm-mod-body strong { color: var(--accent); font-size: 1rem; }

/* Surface-audit (free) vs plan-unlocked flags */
.spm-mod { position: relative; }
.spm-mod-body strong { padding-right: 3.4rem; }
.spm-flag {
  position: absolute; top: 0.7rem; right: 0.7rem;
  font-family: var(--font-body); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; line-height: 1;
  padding: 0.22rem 0.45rem; border-radius: 5px; white-space: nowrap;
}
.spm-flag--free { color: #00E58A; background: rgba(0,229,138,0.1); border: 1px solid rgba(0,229,138,0.32); }
.spm-flag--plan { color: rgba(240,244,255,0.45); background: rgba(240,244,255,0.04); border: 1px solid rgba(240,244,255,0.12); }
.spm-mod--free { border-color: rgba(0,229,138,0.26); }
.spm-mod--free:hover { border-color: rgba(0,229,138,0.5); background: rgba(0,229,138,0.04); }
.spm-mod--free .spm-mod-tag { background: rgba(0,229,138,0.12); color: #00E58A; border-color: rgba(0,229,138,0.32); }

.spm-legend {
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center;
  margin: 1.25rem 0 0.25rem; padding: 0.85rem 1.1rem;
  background: var(--bg3); border: 1px solid var(--border); border-radius: 10px;
}
.spm-legend-item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(240,244,255,0.72); }
.spm-legend-dot { width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0; }
.spm-legend-dot.is-free { background: #00E58A; box-shadow: 0 0 0 3px rgba(0,229,138,0.18); }
.spm-legend-dot.is-plan { background: rgba(240,244,255,0.3); box-shadow: 0 0 0 3px rgba(240,244,255,0.06); }
.spm-legend-item strong { color: var(--white); font-weight: 700; }

.spm-footer {
  margin-top: 0.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.spm-footnote {
  font-size: 0.9rem; color: rgba(240,244,255,0.78); line-height: 1.55;
  display: flex; gap: 0.65rem; align-items: flex-start;
  padding: 1rem 1.2rem;
  background: rgba(0,212,255,0.05);
  border: 1px dashed rgba(0,212,255,0.25);
  border-radius: 10px;
  margin-bottom: 1.5rem;
}
.spm-footnote strong { color: var(--accent); font-weight: 700; }
.spm-footnote-icon {
  flex-shrink: 0; color: var(--accent); font-size: 1.1rem; line-height: 1.3;
}
.spm-cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.seo-process-card .form-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10,15,30,0.9); border: 1px solid var(--border); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.15rem; line-height: 1;
  transition: transform 0.25s, border-color 0.2s, color 0.2s;
}
.seo-process-card .form-modal-close:hover { border-color: var(--accent); color: var(--accent); transform: rotate(90deg); }

body.process-locked { overflow: hidden; }

@media (max-width: 600px) {
  .spm-modules { grid-template-columns: 1fr; }
  .spm-header { padding-right: 2.5rem; }
}
.pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.pill { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.03em; padding: 0.3rem 0.8rem; border-radius: 100px; background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(0,212,255,0.2); }

/* ── COMPARISON TABLE ──────────────────────────────────────── */
.compare-wrap { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.compare-table th { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; padding: 1rem 1.5rem; text-align: left; letter-spacing: 0.03em; }
.compare-table th:first-child { color: var(--muted); }
.compare-table th.col-clario { color: var(--accent); }
.compare-table td { padding: 0.9rem 1.5rem; font-size: 0.9rem; border-top: 1px solid var(--border); vertical-align: middle; }
.compare-table td:first-child { color: var(--muted); font-weight: 500; }
.compare-table td.col-typical { color: rgba(240,244,255,0.5); }
.compare-table td.col-clario { color: var(--accent); font-weight: 600; }
/* row reveal */
.compare-table tbody tr { opacity: 0; transform: translateY(10px); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease); }
.compare-table tbody tr.visible { opacity: 1; transform: none; }
/* accent flash on clario cells */
@keyframes cellFlash { 0%{background:rgba(0,212,255,0.18);} 100%{background:transparent;} }
.col-clario.flash { animation: cellFlash 0.7s ease forwards; }

/* ── PRICING CARDS ─────────────────────────────────────────── */
.pricing-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  height: 100%;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
}
.pricing-card:hover { border-color: rgba(0,212,255,0.35); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,212,255,0.08); }
.pricing-card.featured { border-color: rgba(0,212,255,0.4); background: linear-gradient(135deg, #0d1428 0%, #0a1535 100%); padding-top: 2.5rem; }
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 0 0 8px 8px;
}
.pricing-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; }
.pricing-price { font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 800; }
.pricing-price span { font-size: 0.85rem; font-weight: 400; color: var(--muted); }
.pricing-time { font-size: 0.8rem; color: var(--muted); }
.pricing-desc { font-size: 0.88rem; color: rgba(240,244,255,0.6); max-width: none; line-height: 1.55; }
.pricing-divider { border: none; border-top: 1px solid var(--border); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-features li { font-size: 0.85rem; color: rgba(240,244,255,0.72); padding-left: 1.25rem; position: relative; }
.pricing-features li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 600; }

/* ── SEO CARDS ─────────────────────────────────────────────── */
.seo-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; height: 100%; display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.3s; position: relative; }
.seo-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.seo-card.featured { border-color: rgba(0,212,255,0.45); background: linear-gradient(135deg, #0d1428 0%, #0a1535 100%); padding-top: 3rem; }
.seo-card.featured::after {
  content: 'Most Popular'; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.32rem 0.9rem; border-radius: 0 0 9px 9px;
}
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 100px;
}
.seo-price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; margin: 0.75rem 0 0.25rem; }
.seo-price span { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
/* ── SEO 2-card layout + guarantee + pull quote ──────────────── */
.seo-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; align-items: stretch; max-width: 940px; margin: 0 auto; }
@media (max-width: 760px) { .seo-grid-2 { grid-template-columns: 1fr; } }
.seo-min { font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-top: 0.3rem; }
.seo-desc { font-size: 0.95rem; color: rgba(240,244,255,0.8); line-height: 1.55; margin: 0.9rem 0 0; }
.seo-card-cta { margin-top: auto; padding-top: 1.5rem; }
.seo-card-cta .btn { width: 100%; text-align: center; justify-content: center; }
.seo-under-note { max-width: 760px; margin: 1.5rem auto 0; text-align: center; font-size: 0.92rem; color: rgba(240,244,255,0.65); line-height: 1.6; }
.seo-under-note b { color: var(--white); font-weight: 700; }
.guarantee {
  max-width: 1200px; width: 100%; margin: clamp(2.5rem, 5vw, 3.75rem) auto 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.14), rgba(0,102,255,0.07));
  border: 1.5px solid rgba(0,212,255,0.4); border-radius: 22px;
  padding: clamp(2.25rem, 5vw, 3.5rem);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.75rem, 4vw, 3rem); align-items: center;
  box-shadow: 0 0 60px rgba(0,212,255,0.08);
}
.guarantee-badge {
  width: 168px; height: 168px; border-radius: 50%; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: radial-gradient(circle at 32% 26%, rgba(0,212,255,0.32), rgba(0,212,255,0.05));
  border: 2px solid rgba(0,212,255,0.6);
  box-shadow: inset 0 0 28px rgba(0,212,255,0.15), 0 0 40px rgba(0,212,255,0.14);
}
.guarantee-badge .g-num { font-family: var(--font-head); font-weight: 800; font-size: 3.4rem; color: var(--accent); line-height: 1; }
.guarantee-badge .g-lbl { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(240,244,255,0.72); margin-top: 0.4rem; }
.guarantee h3 { font-family: var(--font-head); font-size: clamp(1.9rem, 3.8vw, 2.6rem); font-weight: 800; line-height: 1.1; margin-bottom: 0.8rem; }
.guarantee p { font-size: 1.12rem; color: rgba(240,244,255,0.85); line-height: 1.6; max-width: 62ch; }
.guarantee p b { color: var(--white); font-weight: 700; }
@media (max-width: 640px) { .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; } .guarantee p { max-width: none; } }
.seo-pullquote { max-width: 840px; margin: clamp(2.5rem, 5vw, 3.75rem) auto 0; text-align: center; }
.seo-pullquote blockquote { font-family: var(--font-head); font-size: clamp(1.25rem, 2.6vw, 1.7rem); font-weight: 400; font-style: italic; line-height: 1.5; color: var(--white); border: 0; padding: 0; margin: 0; }
.seo-pullquote .spq-attr { margin-top: 1.15rem; font-size: 0.85rem; color: rgba(240,244,255,0.6); }
.seo-pullquote .spq-attr b { color: var(--white); font-weight: 700; }
.seo-pullquote .spq-link { display: inline-block; margin-top: 0.9rem; color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.ai-callout { background: linear-gradient(135deg, rgba(0,102,255,0.1), rgba(0,212,255,0.08)); border: 1px solid rgba(0,212,255,0.2); border-radius: var(--radius); padding: 2rem; margin-top: 3rem; }
.ai-callout .label { margin-bottom: 0.75rem; display: block; }
.ai-callout p { max-width: none; font-size: 0.95rem; color: rgba(240,244,255,0.8); line-height: 1.7; }

/* ── AUDIT WHY ─────────────────────────────────────────────── */
.audit-why { margin-top: 2.5rem; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem clamp(1.5rem, 3vw, 2.5rem); display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.audit-why .audit-why-head .label { display: block; margin-bottom: 0.6rem; }
.audit-why h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; line-height: 1.2; margin-bottom: 0.75rem; }
.audit-why .audit-why-head p { font-size: 0.9rem; color: rgba(240,244,255,0.7); line-height: 1.65; max-width: none; }
.audit-why ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem 1.5rem; }
.audit-why li { font-size: 0.88rem; color: rgba(240,244,255,0.82); padding-left: 1.5rem; position: relative; line-height: 1.55; }
.audit-why li::before { content: '→'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.audit-why li strong { color: var(--white); font-weight: 600; display: block; margin-bottom: 0.1rem; font-size: 0.92rem; }
@media (max-width: 800px) { .audit-why { grid-template-columns: 1fr; } .audit-why ul { grid-template-columns: 1fr; } }

/* ── SCOPE CALLOUT (multi-location / e-com / national) ─────── */
.scope-callout {
  margin-top: 2.5rem; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(0,102,255,0.22) 0%, rgba(0,212,255,0.14) 60%, rgba(0,102,255,0.18) 100%);
  border: 1px solid rgba(0,212,255,0.45);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.25rem);
  display: grid; grid-template-columns: 1.5fr auto; gap: clamp(1.5rem, 3vw, 3rem); align-items: center;
  box-shadow: 0 30px 80px -30px rgba(0,212,255,0.35);
}
.scope-callout::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 40% 90% at 100% 50%, rgba(0,212,255,0.28), transparent 70%);
}
.scope-callout::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
  opacity: 0.7;
}
.scope-callout > * { position: relative; z-index: 1; }
.scope-callout .label { color: #FFE066; letter-spacing: 0.18em; }
.scope-callout h3 { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.12; font-weight: 800; margin: 0.6rem 0 0.9rem; }
.scope-callout h3 span { color: var(--accent); }
.scope-callout p { font-size: clamp(0.95rem, 1.4vw, 1.05rem); color: rgba(240,244,255,0.86); max-width: 56ch; line-height: 1.6; margin: 0; }
.scope-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; min-width: 240px; }
.scope-cta .btn { width: 100%; justify-content: center; font-size: 0.92rem; padding: 1rem 1.4rem; }
.scope-cta .scope-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: rgba(240,244,255,0.7); letter-spacing: 0.04em; }
.scope-cta .scope-meta::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #00FF96; box-shadow: 0 0 0 3px rgba(0,255,150,0.18); animation: pulse 2s infinite; }
@media (max-width: 800px) { .scope-callout { grid-template-columns: 1fr; } .scope-cta { width: 100%; } }

/* ── PORTFOLIO ─────────────────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.portfolio-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 4/3; cursor: pointer;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s;
}
.portfolio-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.portfolio-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', monospace; font-size: 0.68rem;
  color: rgba(255,255,255,0.07); padding: 1.5rem; text-align: center; line-height: 2;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 8px);
  transform: scale(1); transition: transform 0.5s var(--ease);
}
.portfolio-card:hover .portfolio-bg { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.97) 0%, rgba(10,15,30,0.4) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; transition: background 0.35s;
}
.portfolio-card:hover .portfolio-overlay { background: linear-gradient(to top, rgba(10,15,30,0.99) 0%, rgba(10,15,30,0.85) 100%); }
.portfolio-hover-desc { font-size: 0.8rem; color: rgba(240,244,255,0.6); max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease), margin 0.3s; }
.portfolio-card:hover .portfolio-hover-desc { max-height: 60px; margin-top: 0.4rem; }
.portfolio-pkg { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: var(--accent-dim); padding: 0.2rem 0.6rem; border-radius: 4px; display: inline-block; margin-bottom: 0.5rem; }
.portfolio-name { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; }
.portfolio-url { font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; }

/* ── PF CARD (simplified portfolio card) ───────────────────── */
.pf-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s;
}
.pf-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.pf-card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, rgba(0,212,255,0.04), rgba(0,102,255,0.04));
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.pf-card-media image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.pf-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  flex: 1;
}
.pf-card-body .portfolio-pkg { align-self: flex-start; }
.pf-card-name {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.2rem; color: var(--white);
  margin: 0.15rem 0 0; line-height: 1.25;
}
.pf-card-url {
  font-size: 0.78rem; color: rgba(240,244,255,0.5);
  letter-spacing: 0.01em;
}
.pf-card-desc {
  font-size: 0.88rem; color: rgba(240,244,255,0.68);
  line-height: 1.55; margin: 0.4rem 0 0; max-width: none;
  flex: 1;
}
.pf-card-btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  margin-top: 1rem;
  padding: 0.75rem 1.05rem;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 10px;
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.005em;
  color: var(--white); text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.pf-card-btn span {
  color: var(--accent);
  transition: transform 0.25s var(--ease);
  margin-left: 0.5rem;
}
.pf-card-btn:hover {
  background: rgba(0,212,255,0.18);
  border-color: rgba(0,212,255,0.55);
}
.pf-card-btn:hover span { transform: translateX(4px); }
/* ── end pf-card ───────────────────────────────────────────── */

/* ── PORTFOLIO EXPAND / MODAL ──────────────────────────────── */
.portfolio-card { cursor: pointer; }
.portfolio-expand-hint {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(10,15,30,0.72); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(240,244,255,0.9); padding: 0.32rem 0.7rem; border-radius: 100px;
  backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.portfolio-card:hover .portfolio-expand-hint { opacity: 1; }
.portfolio-expand-hint::before { content: '⤢'; font-size: 0.85rem; line-height: 1; }
.portfolio-detail { display: none; }

#portfolio-backdrop {
  position: fixed; inset: 0; background: rgba(5,9,24,0.82); backdrop-filter: blur(12px);
  z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
}
#portfolio-backdrop.open { opacity: 1; pointer-events: auto; }
body.portfolio-locked { overflow: hidden; }

.portfolio-card.expanded {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(1100px, 94vw); max-height: 90vh; z-index: 999;
  display: flex; flex-direction: column;
  border-color: rgba(0,212,255,0.4); box-shadow: 0 40px 100px rgba(0,0,0,0.65);
  cursor: default; overflow: hidden;
  animation: portfolioOpen 0.4s var(--ease);
}
@keyframes portfolioOpen {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.94); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.portfolio-card.expanded .portfolio-bg,
.portfolio-card.expanded .portfolio-overlay,
.portfolio-card.expanded .portfolio-expand-hint { display: none; }
.portfolio-card.expanded .portfolio-detail {
  display: grid; gap: clamp(1.25rem, 2vw, 1.75rem);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  overflow-y: auto; overscroll-behavior: contain;
  background: var(--bg3);
}

.portfolio-detail-head { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; align-items: flex-end; justify-content: space-between; padding-right: 3rem; }
.portfolio-detail-head .col-l { display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-start; }
.portfolio-detail-head h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; line-height: 1.15; }
.portfolio-detail-url { font-size: 0.85rem; color: var(--muted); font-family: var(--font-body); letter-spacing: 0.02em; }
.portfolio-detail-url a { color: var(--accent); }

.portfolio-detail-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.25rem, 2vw, 2rem); align-items: start; }
@media (max-width: 800px) { .portfolio-detail-body { grid-template-columns: 1fr; } }
.portfolio-detail-images { display: grid; gap: 0.75rem; grid-template-columns: 1fr 1fr; }
.portfolio-detail-images image-slot { width: 100%; display: block; }
.portfolio-detail-images image-slot:first-child { grid-column: 1 / -1; aspect-ratio: 16/10; }
.portfolio-detail-images image-slot:not(:first-child) { aspect-ratio: 4/3; }

.portfolio-detail-text h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-family: var(--font-body); margin-bottom: 0.6rem; }
.portfolio-detail-text p { font-size: 0.94rem; color: rgba(240,244,255,0.78); line-height: 1.7; max-width: none; margin-bottom: 1.25rem; }
.portfolio-detail-text ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.25rem; }
.portfolio-detail-text li { font-size: 0.88rem; color: rgba(240,244,255,0.82); padding-left: 1.25rem; position: relative; line-height: 1.55; }
.portfolio-detail-text li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.portfolio-detail-cta { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--accent); border-bottom: 1px solid rgba(0,212,255,0.3); padding-bottom: 0.2rem; transition: border-color 0.2s; align-self: flex-start; }
.portfolio-detail-cta:hover { border-color: var(--accent); }

.portfolio-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10,15,30,0.9); border: 1px solid var(--border); color: var(--white);
  display: none; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.2rem; line-height: 1; transition: transform 0.25s, border-color 0.2s, color 0.2s;
}
.portfolio-card.expanded .portfolio-close { display: inline-flex; }
.portfolio-close:hover { border-color: var(--accent); color: var(--accent); transform: rotate(90deg); }

/* ── SEO WORK CARDS ────────────────────────────────────────── */
.seo-work-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 0.75rem; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; }
.seo-work-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); border-color: rgba(0,212,255,0.2); }
.status-badge { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 100px; }
.badge-active { background: rgba(0,255,150,0.1); color: #00FF96; border: 1px solid rgba(0,255,150,0.25); }
.badge-delivered { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(0,212,255,0.25); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.seo-work-sector { font-size: 0.8rem; color: var(--muted); }
.seo-work-plan { font-size: 0.85rem; color: rgba(240,244,255,0.7); font-weight: 500; }

/* ── CASE STUDY ────────────────────────────────────────────── */
#case-study-full { padding: clamp(5rem,10vw,9rem) 0; }
.cs-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 1.5rem; margin-bottom: 4rem; }
.cs-stat { text-align: center; padding: 2rem 1rem; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); min-width: 0; overflow: hidden; }
.cs-stat .num { font-family: var(--font-head); font-size: clamp(1.6rem, 2.4vw, 2.4rem); font-weight: 800; color: var(--accent); display: block; line-height: 1; margin-bottom: 0.4rem; letter-spacing: -0.02em; white-space: nowrap; }
.cs-stat .lbl { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
.cs-timeline { display: flex; margin-bottom: 4rem; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cs-tl-item { flex: 1; padding: 1.5rem; border-right: 1px solid var(--border); text-align: center; }
.cs-tl-item:last-child { border-right: none; }
.cs-tl-item .label { display: block; margin-bottom: 0.4rem; }
.cs-tl-item .val { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; }
.cs-tl-item .delta { font-size: 0.75rem; color: #00FF96; margin-top: 0.2rem; }
#bar-chart { margin-top: 1.5rem; }
.chart-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 2rem; }
.bars-wrap { display: flex; align-items: flex-end; gap: 0.75rem; height: 240px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; height: 100%; justify-content: flex-end; }
.bar-inner { width: 100%; border-radius: 6px 6px 0 0; transform-origin: bottom; transform: scaleY(0); transition: transform 0.9s var(--ease); }
.bar-inner.animated { transform: scaleY(1); }
.bar-label { font-size: 0.68rem; color: var(--muted); text-align: center; }
.bar-val { font-size: 0.75rem; font-weight: 700; color: var(--accent); margin-bottom: 0.3rem; }

/* ── CASE STUDY V2 ─────────────────────────────────────────── */
.cs2 .cs2-head { margin-bottom: 2.5rem; }
.cs2 .cs2-title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
  color: var(--white);
}
.cs2 .cs2-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cs2 .cs2-sub {
  font-size: 1.05rem; line-height: 1.6;
  color: rgba(240,244,255,0.72);
  max-width: 62ch;
}

.cs2-timeline {
  display: inline-flex; align-items: center; gap: 0.85rem;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.22);
  border-radius: 100px;
  padding: 0.65rem 1.1rem 0.65rem 0.85rem;
  margin-bottom: 3rem;
}
.cs2-tl-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #00FF96; box-shadow: 0 0 0 4px rgba(0,255,150,0.18);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.cs2-tl-text { display: flex; flex-direction: column; line-height: 1.3; }
.cs2-tl-text strong { font-family: var(--font-head); font-size: 0.92rem; color: var(--white); font-weight: 700; }
.cs2-tl-text span { font-size: 0.78rem; color: rgba(240,244,255,0.55); margin-top: 0.1rem; }

.cs2-kpis {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  margin-bottom: 2.5rem;
}
.cs2-kpi {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.4rem 1.2rem; text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.cs2-kpi:hover {
  border-color: rgba(0,212,255,0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,212,255,0.08);
}
.cs2-kpi-lbl {
  display: block;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.85rem;
}
.cs2-kpi-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.6rem;
}
.cs2-kpi:nth-child(1) .cs2-kpi-num { color: var(--accent); }
.cs2-kpi:nth-child(3) .cs2-kpi-num { color: #FFB020; }
.cs2-kpi:nth-child(4) .cs2-kpi-num { color: #00FF96; }
.cs2-kpi:nth-child(5) .cs2-kpi-num { color: var(--accent); }
.cs2-prefix, .cs2-suffix { font-size: 0.6em; color: inherit; opacity: 0.7; font-weight: 700; }
.cs2-kpi-delta {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; font-weight: 600;
  padding: 0.25rem 0.65rem; border-radius: 100px;
  background: rgba(0,255,150,0.1); color: #00FF96;
  border: 1px solid rgba(0,255,150,0.18);
}

.cs2-enq {
  display: grid; grid-template-columns: auto 1fr;
  align-items: center; gap: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(0,255,150,0.08), rgba(0,212,255,0.06));
  border: 1px solid rgba(0,255,150,0.22);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 3rem;
}
.cs2-enq-num-wrap { text-align: center; }
.cs2-enq-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.95; letter-spacing: -0.03em;
  color: #00FF96;
  font-variant-numeric: tabular-nums;
}
.cs2-enq-pct { font-size: 0.6em; opacity: 0.85; }
.cs2-enq-unit {
  font-size: 0.85rem; font-weight: 600;
  color: rgba(0,255,150,0.85); letter-spacing: 0.02em;
  margin-top: 0.4rem;
}
.cs2-enq-body h3 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.3; color: var(--white);
  margin-bottom: 0.8rem;
}
.cs2-enq-body p {
  font-size: 0.95rem; line-height: 1.65;
  color: rgba(240,244,255,0.72); max-width: none;
  margin-bottom: 0.7rem;
}
.cs2-enq-body p strong { color: var(--white); }
.cs2-enq-tag {
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.9rem !important; color: var(--white) !important;
  margin-top: 0.4rem; margin-bottom: 0 !important;
}
.cs2-enq-tag span { color: var(--accent); }

.cs2-chart-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 18px; padding: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 3rem;
}
.cs2-chart-head { margin-bottom: 1.4rem; }
.cs2-chart-title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.1rem; color: var(--white);
  margin-bottom: 0.35rem;
}
.cs2-chart-sub { font-size: 0.85rem; color: rgba(240,244,255,0.6); max-width: 60ch; }
.cs2-chart { width: 100%; }
.cs2-chart .cs2-svg { width: 100%; height: auto; overflow: visible; }
.cs2-grid { stroke: rgba(255,255,255,0.05); stroke-width: 1; }
.cs2-axis { font-family: var(--font-body); font-size: 10px; fill: rgba(240,244,255,0.5); }
.cs2-line { fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.cs2-line-c { stroke: var(--accent); }
.cs2-line-p { stroke: #FFB020; }
.cs2-line-e { stroke: #00FF96; }
.cs2-dot { r: 3; stroke-width: 1.5; }
.cs2-dot-c { fill: var(--accent); stroke: var(--accent); }
.cs2-dot-p { fill: #FFB020; stroke: #FFB020; }
.cs2-ann-line { stroke: rgba(255,255,255,0.22); stroke-width: 1; stroke-dasharray: 4 4; }
.cs2-ann-box { fill: rgba(0,212,255,0.18); stroke: rgba(0,212,255,0.4); stroke-width: 1; }
.cs2-ann-text { font-family: var(--font-body); font-size: 10px; fill: var(--accent); font-weight: 600; }
.cs2-chart-legend {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  margin-top: 1rem;
  font-size: 0.78rem; color: rgba(240,244,255,0.6);
}
.cs2-leg { display: inline-flex; align-items: center; gap: 0.5rem; }
.cs2-leg i { width: 14px; height: 4px; border-radius: 2px; display: inline-block; }
.cs2-leg small { color: rgba(240,244,255,0.4); margin-left: 0.25rem; }

.cs2-section-head {
  display: flex; align-items: center; gap: 1rem;
  margin: 0 0 1.25rem;
}
.cs2-section-head > span:first-child {
  font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(240,244,255,0.55);
  white-space: nowrap;
}
.cs2-rule { flex: 1; height: 1px; background: var(--border); }

.cs2-bars { margin-bottom: 3rem; }
.cs2-bar { margin-bottom: 1.1rem; }
.cs2-bar:last-child { margin-bottom: 0; }
.cs2-bar-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.45rem; gap: 1rem;
}
.cs2-bar-name { font-size: 0.9rem; font-weight: 500; color: var(--white); }
.cs2-bar-name small { color: rgba(240,244,255,0.4); font-size: 0.78rem; font-weight: 400; }
.cs2-bar-vals {
  font-size: 0.82rem; color: rgba(240,244,255,0.55);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.cs2-bar-vals em { font-style: normal; color: rgba(240,244,255,0.5); }
.cs2-bar-vals strong { color: var(--accent); font-weight: 700; }
.cs2-bar-track {
  position: relative;
  height: 9px; background: rgba(255,255,255,0.04);
  border-radius: 6px; overflow: hidden;
}
.cs2-bar-prev, .cs2-bar-curr {
  position: absolute; top: 0; left: 0; height: 100%;
  border-radius: 6px;
  width: 0;
}
.cs2-bar-prev {
  background: rgba(255,255,255,0.1);
  transition: width 1.3s cubic-bezier(.16,1,.3,1);
}
.cs2-bar-curr {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  box-shadow: 0 0 12px rgba(0,212,255,0.4);
  transition: width 1.5s cubic-bezier(.16,1,.3,1) 0.1s;
}
.cs2-bar-curr.is-green {
  background: linear-gradient(90deg, #1a6b3a, #00FF96);
  box-shadow: 0 0 12px rgba(0,255,150,0.35);
}

.cs2-insights {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-bottom: 3rem;
}
.cs2-insight {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem 1.6rem;
  transition: border-color 0.3s, transform 0.3s;
}
.cs2-insight:hover { border-color: rgba(0,212,255,0.25); transform: translateY(-2px); }
.cs2-ins-lbl {
  display: block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(240,244,255,0.5);
  margin-bottom: 0.65rem;
}
.cs2-ins-metric {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.55rem; line-height: 1.1;
  color: var(--white); letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.cs2-ins-metric span { color: var(--accent); }
.cs2-insight p {
  font-size: 0.92rem; color: rgba(240,244,255,0.7);
  line-height: 1.6; max-width: none; margin: 0;
}
.cs2-insight p strong { color: var(--white); }

.cs2-queries {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.5rem 1.4rem;
  margin-bottom: 0;
}
.cs2-queries ul { list-style: none; padding: 0; margin: 0; }
.cs2-queries li {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 1rem; align-items: center;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border);
}
.cs2-queries li:last-child { border-bottom: none; }
.cs2-q-kw { font-size: 0.93rem; color: var(--white); font-weight: 500; }
.cs2-q-pos {
  font-family: var(--font-head); font-size: 0.76rem; font-weight: 700;
  padding: 0.25rem 0.7rem; border-radius: 100px;
  background: rgba(0,212,255,0.12); color: var(--accent);
  white-space: nowrap;
}
.cs2-q-badge {
  font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.65rem; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em;
  white-space: nowrap;
}
.cs2-q-badge.up { background: rgba(0,255,150,0.12); color: #00FF96; }
.cs2-q-badge.new { background: rgba(255,176,32,0.14); color: #FFB020; }

@media (max-width: 900px) {
  .cs2-kpis { grid-template-columns: repeat(2, 1fr); }
  .cs2-enq { grid-template-columns: 1fr; text-align: center; }
  .cs2-insights { grid-template-columns: 1fr; }
  .cs2-queries li { grid-template-columns: 1fr auto; gap: 0.6rem; }
  .cs2-q-badge { grid-column: 2; }
  .cs2-bar-meta { flex-wrap: wrap; }
  .cs2-bar-vals { font-size: 0.78rem; }
}
@media (max-width: 540px) {
  .cs2-kpis { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .cs2-kpi { padding: 1.1rem 0.85rem; }
}
/* ── end case study v2 ─────────────────────────────────────── */
.cs-rankings { margin-top: 3rem; }
.rank-item { display: flex; align-items: center; gap: 1.25rem; padding: 1.1rem 1.5rem; background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 0.75rem; transition: border-color 0.3s, transform 0.3s; }
.rank-item:hover { border-color: rgba(0,212,255,0.2); transform: translateX(4px); }
.rank-badge { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--accent); min-width: 2.5rem; text-align: center; }
.rank-text { font-size: 0.9rem; color: rgba(240,244,255,0.8); }
.roi-band { background: linear-gradient(135deg, rgba(0,102,255,0.12), rgba(0,212,255,0.1)); border: 1px solid rgba(0,212,255,0.25); border-radius: var(--radius); padding: 2.5rem; margin-top: 3rem; display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 1.5rem; }
.roi-item .lbl { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.3rem; }
.roi-item .val { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--accent); }

/* ── TESTIMONIAL ───────────────────────────────────────────── */
#testimonial { padding: clamp(5rem,10vw,9rem) 0; background: var(--bg2); }
.testimonial-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.quote-mark {
  font-family: Georgia, serif; font-size: 10rem; color: var(--accent);
  opacity: 0; line-height: 0.6; display: block; margin-bottom: 1rem;
  transform: scale(0.6);
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}
.quote-mark.visible { opacity: 0.2; transform: scale(1); }
blockquote { font-family: var(--font-head); font-size: clamp(1.05rem,2vw,1.35rem); font-weight: 400; font-style: italic; color: var(--white); line-height: 1.65; border-left: 3px solid var(--accent); padding-left: 2rem; }
.testimonial-attr { margin-top: 2rem; display: flex; align-items: center; gap: 1.1rem; }
.testimonial-attr image-slot { width: 72px; height: 72px; flex-shrink: 0; }
.testimonial-attr .attr-info { display: flex; flex-direction: column; }
.attr-name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.attr-title { font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; }
.credentials-grid { display: flex; flex-direction: column; gap: 1rem; }
.cred-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.25rem; background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; }
.cred-icon { font-size: 1.25rem; flex-shrink: 0; }
.cred-text { font-size: 0.85rem; color: rgba(240,244,255,0.75); line-height: 1.5; }

/* ── ABOUT / FOUNDER ───────────────────────────────── */
#about { padding: clamp(5rem,10vw,9rem) 0; background: var(--bg); border-top: 1px solid var(--border); }
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.about-portrait { position: relative; }
.about-portrait image-slot { width: 100%; aspect-ratio: 4/5; display: block; }
.about-logo-card {
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #FFFFFF 0%, #F0F4FF 100%);
  border: 1px solid rgba(0,212,255,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.08);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  gap: 1.5rem; overflow: hidden;
}
.about-logo-card::before {
  content: ''; position: absolute; top: -40%; right: -30%;
  width: 80%; height: 80%; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.18), transparent 60%);
  pointer-events: none;
}
.about-logo-img {
  position: relative; z-index: 1;
  width: 78%; max-width: 360px; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.08));
}
.about-logo-tag {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 0.95rem;
  background: rgba(10,15,30,0.06);
  border: 1px solid rgba(10,15,30,0.08);
  border-radius: 100px;
  font-family: var(--font-body); font-size: 0.78rem;
  color: rgba(10,15,30,0.7);
  letter-spacing: 0.01em;
}
.about-logo-tag strong { color: #0A0F1E; font-weight: 700; }
.about-logo-tag-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #00FF96;
  box-shadow: 0 0 0 3px rgba(0,255,150,0.18); animation: pulse 2s infinite;
}
/* Photo variant of the about card, photo fills, status pill floats bottom-left */
.about-photo-card { padding: 0; background: #0A0F1E; align-items: stretch; justify-content: stretch; }
.about-photo-card::before { display: none; }
.about-photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; width: 100%; align-items: end; }
.about-photo-card--billy { max-width: 87%; margin: 0 auto; }
.about-portrait-slot {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; border-radius: var(--radius); overflow: hidden;
}
.about-photo-card .about-logo-tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(255,255,255,0.92);
  border-color: rgba(10,15,30,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.about-portrait::after {
  content: ''; position: absolute; inset: -16px -16px auto auto;
  width: 60%; height: 60%; border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--radius); z-index: -1;
  background: linear-gradient(135deg, rgba(0,212,255,0.08), transparent);
}
.about-text .label { margin-bottom: 0.75rem; display: block; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { font-size: 1.02rem; color: rgba(240,244,255,0.84); line-height: 1.75; max-width: 56ch; margin-bottom: 1.1rem; }
.about-text p strong { color: var(--white); font-weight: 600; }
.about-text .lede { font-size: 1.15rem; color: var(--white); font-family: var(--font-head); font-weight: 600; line-height: 1.4; margin-bottom: 1.5rem; max-width: 26ch; }
.about-text .lede span { color: var(--accent); }

.partner-box {
  margin-top: 2rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: linear-gradient(135deg, rgba(0,102,255,0.07), rgba(0,212,255,0.04));
  border: 1px solid rgba(0,212,255,0.18); border-radius: var(--radius);
  position: relative;
}
.partner-box .label { color: var(--accent); margin-bottom: 0.75rem; display: block; }
.partner-box h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.65rem; }
.partner-box p { font-size: 0.92rem; color: rgba(240,244,255,0.78); line-height: 1.65; max-width: none; }
.partner-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1rem; }
.partner-tag { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(240,244,255,0.72); padding: 0.3rem 0.7rem; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 100px; }

@media (max-width: 800px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-portrait image-slot { aspect-ratio: 3/4; max-width: 360px; }
  .about-logo-card { aspect-ratio: 3/4; max-width: 360px; margin: 0 auto; }
  .about-photo-duo { grid-template-columns: 1fr; gap: 1rem; max-width: 360px; margin: 0 auto; }
}

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.steps-grid::before { content:''; position:absolute; top:3rem; left:calc(50%/3 + 16.67%); right:calc(50%/3 + 16.67%); height:1px; background:linear-gradient(90deg,var(--accent2),var(--accent)); opacity:0.35; }
.step-item { text-align: center; padding: 2.5rem 2rem; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--accent2), var(--accent)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: #000; margin: 0 auto 1.5rem; }
.step-item h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.step-item p { font-size: 0.9rem; max-width: 26ch; margin: 0 auto; }

/* ── CTA SECTIONS ──────────────────────────────────────────── */
#cta-wireframe {
  padding: clamp(4rem,8vw,7rem) 0; background: var(--bg3); position: relative; overflow: hidden;
}
#cta-wireframe::before {
  content:''; position:absolute; right:-10%; top:50%; transform:translateY(-50%);
  width:500px; height:500px; background:radial-gradient(circle,rgba(0,102,255,0.12) 0%,transparent 70%);
  animation: blobFloat 12s ease-in-out infinite;
}
.cta-wf-inner { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.cta-device { width:300px; height:200px; background:var(--bg2); border:1px solid rgba(255,255,255,0.1); border-radius:12px; display:flex; flex-direction:column; overflow:hidden; flex-shrink:0; }
.cta-device-bar { height:32px; background:rgba(255,255,255,0.05); display:flex; align-items:center; padding:0 1rem; gap:0.4rem; }
.cta-device-dot { width:8px; height:8px; border-radius:50%; }
.cta-device-content { flex:1; padding:1rem; display:flex; flex-direction:column; gap:0.5rem; }
.wf-block { background:rgba(255,255,255,0.06); border-radius:4px; }
#cta-seo { padding: clamp(4rem,8vw,7rem) 0; background: linear-gradient(135deg,#0A0F1E 0%,#050918 100%); position:relative; overflow:hidden; }
.chart-decoration { position:absolute; right:5%; top:50%; transform:translateY(-50%); width:320px; opacity:0.15; pointer-events:none; }

/* ── CONTACT ───────────────────────────────────────────────── */
#contact { padding: clamp(5rem,10vw,9rem) 0; background: var(--bg2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 500; color: rgba(240,244,255,0.7); letter-spacing: 0.02em; }
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 0.85rem 1rem;
  color: var(--white); font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: rgba(0,212,255,0.5); box-shadow: 0 0 0 3px rgba(0,212,255,0.08); }
.form-field select option { background: var(--bg3); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--muted); }
#form-body { transition: opacity 0.4s, transform 0.4s var(--ease); }
#form-body.fading { opacity: 0; transform: translateY(10px); }
.form-success { display: none; padding: 2rem 2.5rem; background: rgba(0,255,150,0.07); border: 1px solid rgba(0,255,150,0.2); border-radius: var(--radius); color: #00FF96; font-size: 1rem; margin-top: 1rem; opacity:0; transition: opacity 0.4s; }
.form-success.visible { opacity: 1; display: block; }
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ── FOOTER ────────────────────────────────────────────────── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 3rem 0 2rem; }
.footer-inner { display: flex; flex-direction: column; gap: 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-links a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; position: relative; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--muted); max-width: none; }
.retainer-band { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 2rem; margin-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.retainer-band .lbl { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.3rem; }
.retainer-band .val { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; }
.retainer-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.retainer-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.retainer-card .lbl { font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.retainer-card .val { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; }
.retainer-card p { font-size: 0.85rem; color: rgba(240,244,255,0.72); line-height: 1.55; margin-top: 0.3rem; }
@media (max-width: 900px) { .retainer-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .retainer-grid-4 { grid-template-columns: 1fr; } }

/* ── TWEAKS PANEL ──────────────────────────────────────────── */
#tweaks-panel { position:fixed; bottom:1.5rem; right:1.5rem; z-index:999; background:var(--bg2); border:1px solid rgba(0,212,255,0.3); border-radius:14px; padding:1.5rem; width:260px; box-shadow:0 20px 60px rgba(0,0,0,0.5); display:none; }
#tweaks-panel h4 { font-family:var(--font-head); font-size:0.9rem; margin-bottom:1.25rem; color:var(--accent); }
.tweak-row { display:flex; flex-direction:column; gap:0.4rem; margin-bottom:1rem; }
.tweak-row label { font-size:0.75rem; color:var(--muted); }
.tweak-row input[type=color] { width:100%; height:32px; border:none; border-radius:6px; cursor:pointer; background:none; }
.tweak-row select { background:var(--bg3); border:1px solid var(--border); color:var(--white); padding:0.4rem 0.7rem; border-radius:6px; font-size:0.82rem; }
.tweak-row input[type=range] { width:100%; accent-color:var(--accent); }

/* ── EXPANDABLE / SHARED MODAL CHROME ──────────────────────── */
.seo-work-card { position: relative; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.seo-work-card .portfolio-expand-hint,
.seo-work-card .portfolio-close,
.seo-work-card .portfolio-detail { display: none !important; }
.seo-work-card.expanded {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(1100px, 94vw); max-height: 90vh; z-index: 999;
  display: flex; flex-direction: column;
  border-color: rgba(0,212,255,0.4); box-shadow: 0 40px 100px rgba(0,0,0,0.65);
  cursor: default; overflow: hidden;
  background: var(--bg3);
  animation: portfolioOpen 0.4s var(--ease);
}
.seo-work-card.expanded > :not(.portfolio-detail):not(.portfolio-close) { display: none; }
.seo-work-card.expanded .portfolio-close { display: inline-flex; }
.seo-work-card.expanded .portfolio-detail {
  display: grid; gap: clamp(1.25rem, 2vw, 1.75rem);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  overflow-y: auto; overscroll-behavior: contain;
  background: var(--bg3);
}

/* ── HERO TWO-COL + TRUST LINE ─────────────────────────────── */
#hero .content { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(2rem,4vw,5rem); align-items: center; }
.hero-visual { position: relative; opacity: 0; animation: heroUpScale 0.9s 0.5s var(--ease) forwards; }
.hero-visual image-slot { width: 100%; aspect-ratio: 4/5; display: block; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.hero-visual::before {
  content: ''; position: absolute; inset: -24px -24px auto auto;
  width: 55%; height: 60%; border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--radius); z-index: -1;
  background: linear-gradient(135deg, rgba(0,212,255,0.05), transparent);
}

/* hero animation card */
.hero-anim {
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(0,212,255,0.05) 0%, rgba(13,20,40,0.95) 60%, rgba(10,15,30,0.95) 100%);
  border: 1px solid rgba(0,212,255,0.2);
  padding: clamp(1rem, 2.2vw, 1.6rem);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
  display: grid; grid-template-rows: auto auto 1fr auto; gap: clamp(0.7rem, 1.4vw, 1rem);
  isolation: isolate;
}
.ha-bg-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5; z-index: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 25%, transparent 75%);
          mask-image: radial-gradient(ellipse at 60% 40%, black 25%, transparent 75%);
}
.ha-head {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.ha-head-label { color: var(--white); font-weight: 600; }
.ha-head-meta { margin-left: auto; }
.ha-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #00FF96;
  box-shadow: 0 0 10px #00FF96; animation: haPulse 2s ease-in-out infinite;
}
@keyframes haPulse { 0%,100% { opacity:1; transform:scale(1);} 50% { opacity:0.45; transform:scale(0.7);} }

.ha-counter-row { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 0.75rem; }
.ha-counter-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
  color: var(--accent); line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.ha-counter-lbl { font-size: 0.72rem; color: rgba(240,244,255,0.6); margin-top: 0.35rem; letter-spacing: 0.02em; }
.ha-trend {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.32rem 0.65rem; border-radius: 100px;
  background: rgba(0,255,150,0.1); border: 1px solid rgba(0,255,150,0.28);
  color: #00FF96; font-size: 0.72rem; font-weight: 700; line-height: 1;
  opacity: 0; animation: haFade 0.5s 3.4s ease forwards;
}
.ha-trend-arrow { font-size: 0.9rem; line-height: 1; }

.ha-chart { position: relative; z-index: 1; min-height: 0; display: flex; flex-direction: column; }
.ha-chart svg { width: 100%; flex: 1; min-height: 70px; display: block; overflow: visible; }
.ha-x-axis { display: flex; justify-content: space-between; font-size: 0.6rem; color: var(--muted); margin-top: 6px; letter-spacing: 0.1em; }
.ha-chart-line {
  stroke-dasharray: 700; stroke-dashoffset: 700;
  animation: haDraw 3s 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  filter: drop-shadow(0 0 6px rgba(0,212,255,0.5));
}
.ha-chart-area { opacity: 0; animation: haFade 0.8s 2.8s ease forwards; }
.ha-chart-dot { opacity: 0; animation: haFade 0.4s 3.2s ease forwards, haDotPulse 2s 3.6s ease-in-out infinite; transform-origin: 300px 10px; }
@keyframes haDraw { to { stroke-dashoffset: 0; } }
@keyframes haFade { to { opacity: 1; } }
@keyframes haDotPulse { 0%,100% { r: 4; opacity: 1; } 50% { r: 7; opacity: 0.6; } }

.ha-bars { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.ha-bar-head { display: flex; justify-content: space-between; font-size: 0.7rem; margin-bottom: 0.3rem; }
.ha-bar-lbl { color: rgba(240,244,255,0.7); }
.ha-bar-val { color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.ha-bar-track { height: 5px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.ha-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border-radius: 100px;
  animation: haBarGrow 1.8s 1.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes haBarGrow { to { width: var(--w); } }

.hero-anim::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(115deg, transparent 30%, rgba(0,212,255,0.07) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: haSweep 8s 3s ease-in-out infinite;
}
@keyframes haSweep { 0% { transform: translateX(-100%); } 55% { transform: translateX(100%); } 100% { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) {
  .ha-chart-line, .ha-chart-area, .ha-chart-dot, .ha-bar-fill, .ha-trend, .hero-anim::after, .ha-dot { animation: none !important; opacity: 1 !important; stroke-dashoffset: 0 !important; }
  .ha-bar-fill { width: var(--w) !important; }
}

/* ── REAL RESULTS hero card ──────────────────────────────── */
.ha-results {
  aspect-ratio: auto;
  grid-template-rows: auto auto auto auto;
  padding: clamp(1.2rem, 2vw, 1.7rem);
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
}
.ha-rr-stamp {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 0.5rem;
  align-self: start; justify-self: start;
  padding: 0.4rem 0.85rem 0.4rem 0.7rem;
  border: 1px solid rgba(0,212,255,0.45);
  background: rgba(0,212,255,0.08);
  border-radius: 100px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
}
.ha-rr-stamp-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00FF96; box-shadow: 0 0 0 3px rgba(0,255,150,0.2);
  animation: haPulse 1.6s infinite;
}
.ha-rr-badges {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  gap: 0.65rem;
}
.ha-rr-badge {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0,212,255,0.28);
  background: rgba(0,212,255,0.06);
  border-radius: 14px;
}
.ha-rr-badge-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--accent);
  text-shadow: 0 0 24px rgba(0,212,255,0.3);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.ha-rr-badge-txt {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--white); letter-spacing: -0.01em;
  line-height: 1.3;
}
.ha-rr-badge-txt span {
  display: block;
  font-family: inherit; font-weight: 400;
  font-size: 0.74rem; color: rgba(240,244,255,0.5);
  letter-spacing: 0.01em;
  margin-top: 0.2rem;
}
.ha-rr-link {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 10px;
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.005em;
  color: var(--white); text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.ha-rr-link:hover {
  background: rgba(0,212,255,0.16);
  border-color: rgba(0,212,255,0.55);
  transform: translateY(-1px);
}
.ha-rr-link .ha-rr-arrow {
  display: inline-block; color: var(--accent);
  transition: transform 0.25s var(--ease);
}
.ha-rr-link:hover .ha-rr-arrow { transform: translateX(4px); }

@media (max-width: 1100px) {
  .ha-rr-hero-num { font-size: clamp(2.7rem, 5vw, 3.6rem); }
  .ha-rr-stamp { font-size: 0.74rem; letter-spacing: 0.16em; }
}
.hero-trust {
  margin-top: 1.25rem;
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  opacity: 0; animation: heroUp 0.7s 1.05s var(--ease) forwards;
}
.hero-trust-item { font-size: 0.84rem; color: rgba(240,244,255,0.78); display: inline-flex; align-items: center; gap: 0.55rem; line-height: 1.3; }
.hero-trust-item strong { color: var(--white); font-weight: 700; }
.hero-trust-item + .hero-trust-item::before { content: ''; width: 1px; height: 14px; background: rgba(255,255,255,0.12); margin-right: 0.4rem; }
.hero-trust .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #00FF96; box-shadow: 0 0 0 4px rgba(0,255,150,0.18); animation: pulse 2s infinite; flex-shrink: 0; }

/* prominent exclusivity callout */
.hero-exclusive {
  margin-top: 2.25rem;
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(95deg, rgba(0,212,255,0.08), rgba(0,102,255,0.04));
  border: 1px solid rgba(0,212,255,0.3);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  opacity: 0; animation: heroUp 0.7s 0.85s var(--ease) forwards;
  position: relative; overflow: hidden;
  max-width: 56ch;
}
.hero-exclusive::before {
  content:''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 100% 50%, rgba(0,212,255,0.12), transparent 60%);
}
.hero-exclusive-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0,212,255,0.18), 0 0 14px var(--accent);
  animation: pulse 2.4s infinite; flex-shrink: 0;
}
.hero-exclusive-text {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  letter-spacing: -0.005em;
  line-height: 1.25;
  color: rgba(240,244,255,0.95);
  position: relative; z-index: 1;
}
.hero-exclusive-text strong { color: var(--accent); font-weight: 800; }
.hero-exclusive-sub {
  display: block; margin-top: 0.3rem;
  font-family: var(--font-body); font-weight: 400;
  font-size: 0.82rem; color: rgba(240,244,255,0.65);
  letter-spacing: 0;
}
@media (max-width: 900px) {
  #hero .content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-trust-item + .hero-trust-item::before { display: none; }
}

/* ── INLINE CTA BAND (mid-section conversion prompts) ─────── */
.cta-band {
  margin-top: 3rem; padding: clamp(1.5rem,2.5vw,2rem);
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,102,255,0.05));
  border: 1px solid rgba(0,212,255,0.2); border-radius: var(--radius);
  display: grid; grid-template-columns: 1fr auto; gap: clamp(1.25rem,3vw,2rem); align-items: center;
}
.cta-band-text { font-family: var(--font-head); font-size: clamp(1.05rem,1.6vw,1.3rem); font-weight: 700; line-height: 1.3; max-width: 42ch; }
.cta-band-text span { color: var(--accent); }
.cta-band-sub { display: block; font-family: var(--font-body); font-size: 0.85rem; font-weight: 400; color: rgba(240,244,255,0.7); margin-top: 0.4rem; max-width: 56ch; }
.cta-band .btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 700px) { .cta-band { grid-template-columns: 1fr; } .cta-band .btn { width: 100%; justify-content: center; } }

/* ── STICKY MOBILE CTA ─────────────────────────────────────── */
#sticky-cta {
  position: fixed; left: 0.9rem; right: 0.9rem; bottom: 0.9rem; z-index: 150;
  display: none;
  background: rgba(10,15,30,0.96); backdrop-filter: blur(18px);
  border: 1px solid rgba(0,212,255,0.28); border-radius: 14px;
  padding: 0.7rem 0.85rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  align-items: center; gap: 0.6rem;
  opacity: 0; transform: translateY(80px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
#sticky-cta.visible { opacity: 1; transform: none; }
#sticky-cta .stkc-text { flex: 1; min-width: 0; font-size: 0.78rem; line-height: 1.3; color: rgba(240,244,255,0.85); }
#sticky-cta .stkc-text strong { display: block; font-family: var(--font-head); font-size: 0.92rem; color: var(--white); margin-bottom: 0.05rem; }
#sticky-cta .stkc-btn { background: var(--accent); color: #000; font-weight: 700; font-size: 0.78rem; padding: 0.65rem 0.9rem; border-radius: 10px; white-space: nowrap; }
@media (max-width: 900px) { #sticky-cta { display: flex; } body { padding-bottom: 5rem; } }

/* ── NAV CTA SECONDARY (call/email) ────────────────────────── */
.nav-secondary { font-size: 0.82rem; color: rgba(240,244,255,0.65); display: inline-flex; align-items: center; gap: 0.35rem; transition: color 0.2s; }
.nav-secondary:hover { color: var(--white); }
.nav-secondary::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #00FF96; box-shadow: 0 0 0 3px rgba(0,255,150,0.18); animation: pulse 2s infinite; }

/* ── IMAGE-SLOT host styling (titles visible as background) ─ */
image-slot { color: rgba(240,244,255,0.55); background: rgba(0,0,0,0.18); }
image-slot::part(empty) {
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 14px);
}
image-slot::part(ring) { border-color: rgba(255,255,255,0.12) !important; }

/* ── TRUST BAR (between hero and services) ─────────────────── */
#trust-bar { padding: 2rem 0; background: var(--bg2); border-bottom: 1px solid var(--border); }
.trust-bar-inner { display: grid; grid-template-columns: auto repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
.trust-bar-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); line-height: 1.4; max-width: 18ch; }
.trust-bar-stat { display: flex; flex-direction: column; gap: 0.15rem; padding-left: clamp(1rem,2vw,2rem); border-left: 1px solid var(--border); }
.trust-bar-stat .num { font-family: var(--font-head); font-size: clamp(1.4rem,2.2vw,1.85rem); font-weight: 800; color: var(--accent); line-height: 1; }
.trust-bar-stat .lbl { font-size: 0.72rem; color: rgba(240,244,255,0.7); letter-spacing: 0.02em; }
@media (max-width: 900px) {
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .trust-bar-label { grid-column: 1 / -1; }
}

/* ── MOBILE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .grid-3 { grid-template-columns: 1fr 1fr; align-items: stretch; }
}
@media (max-width: 768px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .testimonial-inner { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
  .cta-wf-inner { grid-template-columns: 1fr; }
  .cta-device { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cs-timeline { flex-direction: column; }
  .cs-tl-item { border-right: none; border-bottom: 1px solid var(--border); }
  .cs-tl-item:last-child { border-bottom: none; }
  .footer-top { flex-direction: column; }
  .retainer-band { flex-direction: column; }
  blockquote { font-size: 1rem; padding-left: 1.25rem; }
  #tweaks-panel { width: calc(100vw - 3rem); }
  .bars-wrap { gap: 0.4rem; }
  .bar-label { font-size: 0.6rem; }
  .roi-band { grid-template-columns: 1fr 1fr; }
}

/* ── NOISE ─────────────────────────────────────────────────── */
body::before {
  content:''; position:fixed; inset:0; z-index:500; pointer-events:none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ── SOCIAL PROOF credential + CASE STUDY PREVIEW ──────────── */
.attr-cred { font-size: 0.72rem; color: rgba(240,244,255,0.55); margin-top: 0.35rem; line-height: 1.45; max-width: 40ch; }
.cs-preview-card {
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(0,212,255,0.05) 100%);
  border: 1px solid rgba(0,212,255,0.22); border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid; gap: clamp(1.5rem, 3vw, 2.25rem);
}
.cs-preview-head h2 { margin: 0.6rem 0 0.6rem; }
.cs-preview-head p { font-size: 1rem; }
.cs-preview-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cs-preview-stat { background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem 1.25rem; text-align: center; transition: border-color 0.3s, transform 0.3s; }
.cs-preview-stat:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-3px); }
.csp-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 3.2vw, 2.6rem); color: var(--accent); line-height: 1; letter-spacing: -0.02em; margin-bottom: 0.5rem; font-variant-numeric: tabular-nums; }
.csp-lbl { font-size: 0.8rem; color: rgba(240,244,255,0.65); line-height: 1.4; }
.csp-cta { justify-self: start; }
@media (max-width: 700px) { .cs-preview-stats { grid-template-columns: 1fr; } .csp-cta { justify-self: stretch; text-align: center; justify-content: center; } }

/* ── REAL RESULTS / GSC PROOF BAND ─────────────────────────── */
#gsc-proof { padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--bg2); position: relative; }
.gsc-head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.gsc-head .label { justify-content: center; }
.gsc-head h2 { margin: 0.6rem 0 0.75rem; }
.gsc-head p { font-size: 1rem; color: rgba(240,244,255,0.7); }
.gsc-window {
  max-width: 1080px; margin: 0 auto;
  background: #0b1020; border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7);
}
.gsc-chrome {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.gsc-dots { display: flex; gap: 0.4rem; }
.gsc-dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.16); display: block; }
.gsc-chrome-title {
  font-size: 0.82rem; font-weight: 600; color: rgba(240,244,255,0.65);
  display: flex; align-items: center; gap: 0.45rem; margin-left: 0.4rem;
}
.gsc-verified {
  margin-left: auto; display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap;
  color: var(--accent); background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.22); padding: 0.28rem 0.7rem; border-radius: 100px;
}
.gsc-verified::before { content: '✓'; font-size: 0.82rem; }
.gsc-body { padding: clamp(1.1rem, 2.5vw, 1.75rem); display: flex; flex-direction: column; gap: 1.5rem; }
.gsc-panel-cap {
  display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  font-size: 0.78rem; font-weight: 600; color: rgba(240,244,255,0.55);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.85rem;
}
.gsc-panel-cap b { color: var(--white); font-weight: 700; white-space: nowrap; }
.gsc-panel-cap .gsc-cap-tag {
  margin-left: auto; text-transform: none; letter-spacing: 0; font-weight: 600;
  color: rgba(240,244,255,0.45); font-size: 0.74rem;
}
.gsc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.gsc-card {
  border-radius: 12px; padding: 1.15rem 1.2rem 1.25rem; color: #fff;
  position: relative; overflow: hidden; min-height: 168px;
  display: flex; flex-direction: column;
}
.gsc-clicks { background: #2f6df0; }
.gsc-impr   { background: #6b3fd4; }
.gsc-ctr    { background: #0a917e; }
.gsc-pos    { background: #ef6c19; }
.gsc-metric { display: flex; align-items: center; gap: 0.5rem; font-size: 0.86rem; font-weight: 600; margin-bottom: 1rem; }
.gsc-metric .gsc-cb {
  width: 16px; height: 16px; border-radius: 3px; background: rgba(255,255,255,0.95);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: inherit; font-size: 0.7rem; font-weight: 800;
}
.gsc-clicks .gsc-cb { color: #2f6df0; } .gsc-impr .gsc-cb { color: #6b3fd4; }
.gsc-ctr .gsc-cb { color: #0a917e; } .gsc-pos .gsc-cb { color: #ef6c19; }
.gsc-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.gsc-now-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.gsc-prev-num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; opacity: 0.92; }
.gsc-mark { font-size: 1.1rem; font-weight: 700; opacity: 0.9; letter-spacing: 0.05em; }
.gsc-sub { font-size: 0.74rem; color: rgba(255,255,255,0.82); margin-top: 0.28rem; }
.gsc-spacer { flex: 1; min-height: 0.7rem; }
.gsc-foot { margin-top: 1.75rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.gsc-foot p { font-size: 1rem; color: rgba(240,244,255,0.75); font-weight: 600; margin: 0; }
@media (max-width: 760px) {
  .gsc-grid { grid-template-columns: 1fr 1fr; }
  .gsc-verified span { display: none; }
}
@media (max-width: 460px) {
  .gsc-grid { grid-template-columns: 1fr; }
  .gsc-card { min-height: 0; }
}

/* ── SECTION DIVIDER ───────────────────────────────────────── */
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(0,212,255,0.15), transparent); margin: 0; }

/* ── AUDIT-WHY ACCORDION ───────────────────────────────────── */
.audit-why-acc-list { display: flex; flex-direction: column; gap: 0.5rem; }
.audit-why-acc { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: border-color 0.25s; }
.audit-why-acc[open] { border-color: rgba(0,212,255,0.3); }
.audit-why-acc summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem; font-size: 0.9rem; font-weight: 600; color: var(--white); line-height: 1.35; }
.audit-why-acc summary::-webkit-details-marker { display: none; }
.audit-why-acc summary::before { content: '+'; flex-shrink: 0; color: var(--accent); font-weight: 700; font-size: 1.15rem; line-height: 1; width: 1rem; text-align: center; }
.audit-why-acc[open] summary::before { content: '−'; }
.audit-why-acc .acc-body { padding: 0 1rem 0.95rem 2.75rem; font-size: 0.86rem; color: rgba(240,244,255,0.72); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   CRO + AESTHETIC OVERHAUL ADDITIONS
   ══════════════════════════════════════════════════════════════ */

/* 1.1 - Noise / grain overlay across the whole dark surface */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* 1.2 - Serif (Fraunces) for testimonial quotes + hero tagline emphasis only */
.seo-pullquote blockquote,
#testimonial blockquote { font-family: 'Fraunces', Georgia, serif; }
.hero-tagline em { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 400; }

/* 1.3 - Hero headline hierarchy: differentiator earns dominance */
.hero-headline { color: var(--white); font-weight: 700; font-size: clamp(2.6rem, 5vw, 4.2rem); }
.hero-headline span { color: var(--accent); font-weight: 800; font-size: clamp(3.2rem, 6.5vw, 5.4rem); text-shadow: 0 0 40px rgba(0,212,255,0.25); }

/* 1.4 - Teal discipline: calm the decorative blobs */
.mesh-blob.b1 { background: rgba(0,212,255,0.04); }
.mesh-blob.b2 { background: rgba(0,102,255,0.04); }
.mesh-blob.b3 { background: rgba(0,212,255,0.035); }

/* 1.5 - Guarantee badge as a physical stamp */
.guarantee-badge {
  width: 90px; height: 90px; border-radius: 50%; transform: rotate(6deg);
  border: 2px solid var(--accent);
  background: radial-gradient(circle at 50% 42%, #16223f 0%, #0A0F1E 72%);
  box-shadow: 0 0 0 4px #0A0F1E, 0 0 0 5px rgba(0,212,255,0.4), 0 0 20px rgba(0,212,255,0.2);
}
.guarantee-badge .g-num { font-size: 2.2rem; }
.guarantee-badge .g-lbl { font-size: 0.6rem; }

/* 1.6 - Section rhythm: more air + a subtle shelf, no mechanical dividers */
.section { padding: clamp(6rem, 11vw, 10rem) 0; }
.section--dark, .section--darker { border-top: 1px solid rgba(255,255,255,0.05); }
.section-divider { display: none; }

/* 2.1 - Recommended badge + entry-tier label on pricing cards */
.seo-card { position: relative; }
.seo-card.featured::after { display: none; }
.pricing-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: var(--accent); color: #000; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; padding: 0.3rem 0.7rem; border-radius: 100px;
}
.seo-entry-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; }

/* 3.5 - Exclusivity urgency CTA line */
.hero-exclusive-cta { display: inline-block; margin-top: 0.65rem; font-size: 0.78rem; color: var(--accent); font-weight: 600; text-decoration: none; letter-spacing: 0.01em; transition: opacity 0.2s; position: relative; z-index: 1; }
.hero-exclusive-cta:hover { opacity: 0.8; }

/* 2.6 - Hero trust pills */
.hero-trust-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.trust-pill { font-size: 0.72rem; color: rgba(240,244,255,0.55); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 0.25rem 0.7rem; background: rgba(255,255,255,0.03); }

/* 2.7 - Second testimonial: data-driven stat card */
.testimonial-stat-card { background: #111827; border: 1px solid rgba(0,212,255,0.15); border-radius: 16px; padding: 2rem; max-width: 480px; margin-top: 2rem; }
.tsc-stat { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: #00D4FF; line-height: 1; }
.tsc-label { font-size: 1rem; font-weight: 600; color: #F0F4FF; margin-top: 0.4rem; }
.tsc-sub, .tsc-attr { font-size: 0.8rem; color: rgba(240,244,255,0.5); margin-top: 0.3rem; }
.tsc-link { font-size: 0.82rem; color: #00D4FF; font-weight: 600; display: inline-block; margin-top: 0.8rem; }

/* 2.8 - Bottom conversion hierarchy */
.contact-alt-lede { font-size: 0.92rem; color: rgba(240,244,255,0.55); margin: -0.5rem 0 1.6rem; max-width: 60ch; line-height: 1.6; }
.calendar-bridge { font-size: 1rem; color: rgba(240,244,255,0.5); text-align: center; margin-bottom: 2rem; }

/* 2.10 / 3.x - Form reassurance + optional-field marker */
.form-reassure { font-size: 0.78rem; color: rgba(240,244,255,0.45); margin-top: 0.5rem; margin-bottom: 0.5rem; }
.modal-form .form-reassure { grid-column: 1 / -1; }
.opt { font-size: 0.78rem; font-weight: 400; color: var(--muted); margin-left: 0.3rem; }

/* 4.1 - Modal two-path tab switcher + callback radio group */
.modal-tab-switcher { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.tab-btn { flex: 1; padding: 0.6rem 1rem; border-radius: 100px; font-size: 0.85rem; font-weight: 600; cursor: pointer; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: rgba(240,244,255,0.6); transition: all 0.2s; font-family: var(--font-body); }
.tab-btn.active { background: var(--accent); color: #000; border-color: var(--accent); font-weight: 700; }
.radio-group { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.4rem; }
.radio-opt { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: rgba(240,244,255,0.75); cursor: pointer; padding: 0.4rem 0.9rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; background: rgba(255,255,255,0.03); transition: all 0.2s; }
.radio-opt:hover { border-color: rgba(0,212,255,0.4); }
.radio-opt:has(input:checked) { border-color: var(--accent); background: rgba(0,212,255,0.08); color: var(--white); }
.radio-opt input[type="radio"] { display: none; }

/* Collapsible optional fields on the wireframe brief form */
.optional-details { border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; background: rgba(255,255,255,0.025); overflow: hidden; }
.optional-details > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; font-size: 0.88rem; font-weight: 600; color: rgba(240,244,255,0.85); user-select: none; }
.optional-details > summary::-webkit-details-marker { display: none; }
.optional-details > summary .opt-hint { font-size: 0.78rem; font-weight: 400; color: var(--muted); }
.optional-details > summary .opt-chev { margin-left: auto; width: 8px; height: 8px; border-right: 2px solid rgba(240,244,255,0.5); border-bottom: 2px solid rgba(240,244,255,0.5); transform: rotate(45deg); transition: transform 0.2s; }
.optional-details[open] > summary .opt-chev { transform: rotate(-135deg); }
.optional-details[open] > summary { border-bottom: 1px solid rgba(255,255,255,0.08); }
.optional-details-body { display: grid; gap: 1rem; padding: 1rem; }

/* 3.8 - Live results: annotated SERP screenshot proof */
.live-results-head { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.live-results-lede { font-size: 1rem; color: var(--muted); margin-top: 0.75rem; line-height: 1.6; }
.live-results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.live-result-card { background: #111827; border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.live-result-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.lrc-label { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 1rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.lrc-query { font-size: 0.88rem; font-weight: 600; color: #F0F4FF; font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; }
.lrc-badge { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #000; background: var(--accent); padding: 0.25rem 0.65rem; border-radius: 100px; white-space: nowrap; }
.lrc-img-wrap { width: 100%; overflow: hidden; }
.lrc-img-wrap img { width: 100%; height: auto; display: block; }
.lrc-attr { font-size: 0.75rem; color: rgba(240,244,255,0.4); padding: 0.75rem 1.25rem; margin: 0; }
.live-results-footer { text-align: center; font-size: 0.95rem; color: rgba(240,244,255,0.6); margin-top: 2.5rem; }
.inline-cta { color: var(--accent); font-weight: 600; text-decoration: none; }
.inline-cta:hover { text-decoration: underline; }

/* 2.9 - Scroll-depth sticky CTA bar */
.scroll-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: #0D1428; border-top: 1px solid rgba(0,212,255,0.25);
  padding: 0.85rem clamp(1rem,4vw,2rem);
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.35s var(--ease);
}
.scroll-cta-bar.visible { transform: translateY(0); }
.scroll-cta-bar[hidden] { display: none; }
.scb-copy { font-size: 0.88rem; color: rgba(240,244,255,0.75); margin: 0; flex: 1; min-width: 180px; }
.scb-btn { flex-shrink: 0; font-size: 0.8rem; padding: 0.55rem 1.1rem; }
.scb-btns { display: flex; gap: 0.6rem; flex-shrink: 0; flex-wrap: wrap; }
.scb-close { background: none; border: none; color: rgba(240,244,255,0.4); font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 0.25rem; transition: color 0.2s; }
.scb-close:hover { color: #fff; }

/* ══════════════════════════════════════════════════════════════
   ADDENDUM - multipage rebuild additions (v2)
   ══════════════════════════════════════════════════════════════ */

/* Hero: SEO-targeted H1 kept small/subtle, big visual line separated out */
.hero-h1-seo {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
  line-height: 1.5;
  max-width: 46ch;
}
.hero-headline-visual {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 800;
  line-height: 1.14;
  margin: 0 0 1rem;
}
.hero-headline-visual .rotate-word {
  color: var(--accent);
  display: inline-block;
  letter-spacing: 0.01em;
}

/* AI platform badge row */
.ai-badges { display:flex; flex-wrap:wrap; gap:0.6rem; margin: 1.5rem 0; }
.ai-badge {
  display:inline-flex; align-items:center; gap:0.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem; border-radius: 999px;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: 0.85rem; font-weight: 600; color: var(--white);
}
.ai-badge img { width:18px; height:18px; flex:none; border-radius:50%; }
.ai-badge-dot { width:6px; height:6px; border-radius:50%; background:var(--accent); flex:none; }
.ai-badges-label { font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); width:100%; margin-bottom:0.3rem; }

/* Breadcrumb */
.breadcrumb-nav { padding: calc(var(--nav-h) + 1.25rem) 0 0; }
.breadcrumb-nav .container { font-size:0.82rem; color:var(--muted); }
.breadcrumb-nav a { color: var(--muted); }
.breadcrumb-nav a:hover { color: var(--accent); }

/* Team page */
.team-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items:start; }
.team-card:not(.team-card--lead) { max-width: 88%; margin: 0 auto; }
.team-card { background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius); padding:2rem; display:flex; flex-direction:column; gap:1.1rem; }
.team-card image-slot { width:100%; height:auto; aspect-ratio:3/4; display:block; flex-shrink:0; }
.team-card--lead { border-color: var(--accent-dim); }
.team-role { color:var(--accent); font-size:0.82rem; font-weight:600; letter-spacing:0.04em; }
.team-contact a { color:var(--accent); font-weight:600; }
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr; } }

/* Page hero (used on standalone pages that aren't the homepage) */
.page-hero { padding: 1.5rem 0 clamp(2rem,5vw,3rem); }
.page-hero .lede { color: rgba(240,244,255,0.75); font-size: 1.05rem; max-width: 62ch; margin-top:0.75rem; }

/* ══════════════════════════════════════════════════════════════
   ADDENDUM 2 - clickable 90-day guarantee (SEO + AI Search only)
   ══════════════════════════════════════════════════════════════ */
.guarantee-chip {
  display:inline-flex; align-items:center; gap:0.7rem;
  padding: 0.55rem 1.15rem 0.55rem 0.55rem; border-radius: 100px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.35);
  cursor: pointer; font-family: var(--font-body); text-align:left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.guarantee-chip:hover { border-color: var(--accent); transform: translateY(-1px); }
.guarantee-chip-icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #001820; font-weight: 800;
  display: flex; align-items:center; justify-content:center; font-size: 0.78rem;
  font-family: var(--font-head);
}
.guarantee-chip-text { display:flex; flex-direction:column; line-height:1.3; }
.guarantee-chip-text strong { font-size: 0.86rem; color: var(--white); font-weight:700; }
.guarantee-chip-text span { font-size: 0.72rem; color: var(--muted); }

.guarantee-more-link {
  display:inline-block; margin-top:0.85rem; background:none; border:none; padding:0;
  color: var(--accent); font-weight:700; font-size:0.92rem; cursor:pointer; font-family:var(--font-body);
}
.guarantee-more-link:hover { text-decoration: underline; }

#guarantee-modal { position: fixed; inset: 0; z-index: 1000; display:none; align-items:center; justify-content:center; padding: clamp(1rem,4vw,3rem); }
#guarantee-modal.open { display:flex; animation: spmFade 0.3s var(--ease); }
.guarantee-modal-card { max-width: min(640px, 100%); }
.guarantee-modal-body ul { margin-top: 0.5rem; }
.guarantee-modal-body li strong { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   ADDENDUM 3 - "live search" typing animation on result cards
   ══════════════════════════════════════════════════════════════ */
.lrc-search-bar {
  display:flex; align-items:center; gap:0.6rem;
  background: var(--bg3); border: 1px solid var(--border); border-radius: 100px;
  padding: 0.65rem 1.1rem; margin-bottom: 1rem; max-width: 340px;
}
.lrc-search-icon { flex:none; font-size:0.95rem; opacity:0.6; }
.lrc-search-typed { font-family: var(--font-body); font-size: 0.92rem; color: var(--white); white-space:nowrap; overflow:hidden; }
.lrc-search-cursor { display:inline-block; width:2px; height:1rem; background: var(--accent); margin-left:1px; animation: lrcBlink 0.9s step-end infinite; }
@keyframes lrcBlink { 50% { opacity: 0; } }
.live-result-card .lrc-img-wrap { opacity: 0; transform: translateY(14px) scale(0.98); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.live-result-card .lrc-img-wrap.revealed { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   ADDENDUM 4 - supporting testimonials grid
   ══════════════════════════════════════════════════════════════ */
.quotes-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1.1rem; margin-top:2.5rem; }
.qcard { margin:0; background:linear-gradient(180deg,var(--bg2),var(--bg3)); border:1px solid var(--border); border-left:2px solid var(--accent); border-radius:14px; padding:1.5rem 1.6rem; }
.qcard p { font-size:1rem; line-height:1.55; color:var(--white); margin:0 0 0.85rem; }
.qcard cite { font-style:normal; font-weight:700; font-size:0.88rem; color:var(--white); display:flex; flex-direction:column; gap:2px; }
.qcard cite span { font-weight:500; font-size:0.8rem; color:var(--accent); }
@media (max-width:820px) { .quotes-grid { grid-template-columns:1fr; } }

/* ══════════════════════════════════════════════════════════════
   ADDENDUM 5 - nav hide-on-scroll, marquee ticker
   ══════════════════════════════════════════════════════════════ */
#nav { transition: transform 0.35s ease, background 0.3s, border-color 0.3s; }
#nav.nav-hide { transform: translateY(-102%); }

.marquee { border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:rgba(13,24,48,0.35); overflow:hidden; padding:14px 0; }
.mtrack { display:flex; gap:34px; white-space:nowrap; width:max-content; animation:mqScroll 26s linear infinite; font-size:13px; letter-spacing:0.14em; text-transform:uppercase; color:var(--muted); font-weight:600; }
.mtrack span { display:inline-flex; align-items:center; gap:34px; }
.mtrack .sep { color:var(--accent); }
@keyframes mqScroll { to { transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce) { .mtrack { animation:none; } }

/* ══════════════════════════════════════════════════════════════
   ADDENDUM 6 - full-width AI logo trust band (replaces text chips)
   ══════════════════════════════════════════════════════════════ */
.aiband { position:relative; overflow:hidden; width:100%; border-top:1px solid var(--border); border-bottom:1px solid var(--border); background:rgba(13,24,48,0.32); }
.aibanner { display:flex; align-items:center; justify-content:center; gap:20px 22px; flex-wrap:wrap; padding:16px 26px; }
.aibanner .aibk { font-size:12px; letter-spacing:0.13em; text-transform:uppercase; color:var(--accent); font-weight:700; }
.aibanner .ailead { font-size:13px; color:var(--muted); }
.aidiv { width:1px; height:18px; background:var(--border); }
.aibrands { display:flex; align-items:center; gap:30px; flex-wrap:wrap; justify-content:center; }
.aibrand img { height:23px; width:auto; display:block; opacity:0.92; filter: drop-shadow(0 0 6px rgba(0,212,255,0.18)); }
.aibrand.cc img { height:32px; }
@media (max-width:760px) { .aidiv { display:none; } .aibanner { gap:14px 18px; padding:14px 18px; } .aibrands { gap:22px; } }

/* ══════════════════════════════════════════════════════════════
   ADDENDUM 7 - why-website 3-card grid, process steps, module grid
   ══════════════════════════════════════════════════════════════ */
.whyweb-card { background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius); padding:1.75rem; }
.whyweb-card .ic { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; background:rgba(0,212,255,0.08); border:1px solid var(--border); color:var(--accent); font-size:1.3rem; margin-bottom:1rem; }
.whyweb-card h3 { font-size:1.15rem; margin-bottom:0.5rem; }
.whyweb-card p { color:rgba(240,244,255,0.72); font-size:0.95rem; }

.process-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:1.75rem; counter-reset:s; margin-top:2rem; }
.process-step { border-top:2px solid var(--border); padding-top:1.25rem; }
.process-step .no { font-size:0.85rem; color:var(--accent); letter-spacing:0.1em; font-weight:700; }
.process-step h3 { font-size:1.2rem; margin:0.6rem 0 0.5rem; }
.process-step p { color:rgba(240,244,255,0.72); font-size:0.92rem; }
@media (max-width:820px) { .process-steps { grid-template-columns:1fr; } }

.module-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:0.6rem; margin-top:1.5rem; }
.module-chip { border:1px solid var(--border); border-radius:12px; padding:0.7rem 0.85rem; background:var(--bg3); font-size:0.85rem; font-weight:600; transition:border-color 0.2s,background 0.2s; }
.module-chip:hover { border-color:var(--accent); background:rgba(0,212,255,0.06); }
.module-chip .m { display:block; font-size:0.7rem; color:var(--accent); margin-bottom:0.2rem; font-weight:700; letter-spacing:0.04em; }
.module-chip.free { border-color:rgba(0,212,255,0.4); }

/* ══════════════════════════════════════════════════════════════
   ADDENDUM 8 - whole portfolio card clickable (stretched-link pattern)
   ══════════════════════════════════════════════════════════════ */
.pf-card { position: relative; }
.pf-card-btn { position: relative; z-index: 2; }
.pf-card-btn::after { content: ""; position: absolute; inset: 0; z-index: 1; }

/* ══════════════════════════════════════════════════════════════
   ADDENDUM 9 - nav switches to hamburger earlier (1080px), since
   9 nav items (incl. Team) no longer fit cleanly above that width
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1220px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
}

/* ══════════════════════════════════════════════════════════════
   ADDENDUM 10 - About page: small Billy mention next to his paragraph
   ══════════════════════════════════════════════════════════════ */
.about-team-note {
  display: flex; align-items: center; gap: 1.25rem;
  margin-top: 0.5rem; padding: 1.25rem;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
}
.about-team-note image-slot { width: 64px; height: 64px; flex-shrink: 0; border-radius: 14px; overflow: hidden; }
.about-team-note p { font-size: 0.92rem; color: rgba(240,244,255,0.8); line-height: 1.6; margin: 0; }
@media (max-width: 560px) { .about-team-note { flex-direction: column; align-items: flex-start; } }

/* ══════════════════════════════════════════════════════════════
   ADDENDUM 11 - Contact page: small founder avatar above the calendar CTA
   ══════════════════════════════════════════════════════════════ */
.calendar-avatar-row {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.calendar-avatar-row image-slot {
  width: 48px; height: 48px; aspect-ratio: 1/1;
  border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 1.5px solid rgba(0,212,255,0.4);
}
.calendar-avatar-row span {
  font-size: 0.88rem; color: rgba(240,244,255,0.8); font-weight: 500;
}
.calendar-avatar-row span strong { color: var(--white); font-weight: 700; }

/* ══════════════════════════════════════════════════════════════
   ADDENDUM 12 - Book a Call modal: Pick a Time & Date calendar tab
   ══════════════════════════════════════════════════════════════ */
.modal-calendar-embed { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.modal-calendar-embed iframe { display: block; }
