/* =============================================
   StormCloud AI — Global Styles
   Brand: Dark navy + Electric blue #4D9EFF
   ============================================= */

:root {
  --navy:        #0A0E1A;
  --navy-mid:    #0F1525;
  --navy-card:   #121829;
  --navy-border: #243049;
  --blue:        #4D9EFF;
  --blue-dim:    #2D6ECC;
  --blue-glow:   rgba(77, 158, 255, 0.14);
  --blue-bright: #7DB8FF;
  --cyan:        #2D6ECC;
  --pink:        #F5A623;
  --green:       #22C55E;
  --white:       #F0EEFF;
  --grey:        #8B85B0;
  --grey-light:  #BAB5D8;
  --gradient:    linear-gradient(135deg, #4D9EFF 0%, #2D6ECC 100%);
  --gradient-btn: linear-gradient(135deg, #2D6ECC 0%, #2D6ECC 100%);
  /* Type system — engineered / mission-control */
  --font-display: 'Clash Display', 'Segoe UI', system-ui, sans-serif;
  --font:         'General Sans', 'Segoe UI', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --radius:      10px;
  --transition:  0.25s ease;
  --grid-line:   rgba(77, 158, 255, 0.06);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.9rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; }
h3 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--grey); }
.highlight {
  background: linear-gradient(90deg, #4D9EFF 0%, #2D6ECC 40%, #7DB8FF 70%, #4D9EFF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: highlightFlow 5s linear infinite;
}
@keyframes highlightFlow {
  0%   { background-position: 0%   center; }
  100% { background-position: 200% center; }
}
.highlight-green { color: var(--green); }

/* ── Layout ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.section-label::before {
  content: '//';
  display: inline-block;
  color: var(--blue);
  opacity: 0.7;
  font-weight: 700;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-header p { max-width: 560px; margin: 18px auto 0; font-size: 1.1rem; line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 4px 24px rgba(77,158,255,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #2D6ECC 0%, #1F4E8C 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(77,158,255,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--navy-border);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  padding-left: 0;
}
.btn-ghost:hover { gap: 12px; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--navy-border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
/* Logo — matches the 06-seo platform mark */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1A2744 0%, #253655 100%);
  border: 1px solid #2E4770;
  box-shadow: 0 0 12px rgba(77,158,255,0.15);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.logo:hover .logo-icon {
  border-color: var(--blue);
  box-shadow: 0 0 18px rgba(77,158,255,0.32);
}
.logo-bolt {
  width: 21px; height: 21px;
  fill: var(--blue);
}
.logo-word { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--white);
}
.logo-cloud { color: var(--blue); }
.logo-tag {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--grey);
  transition: color var(--transition);
}
.nav-links a:not(.nav-cta):not(.nav-signin)::before {
  content: '/';
  color: var(--blue);
  opacity: 0.45;
  margin-right: 5px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { margin-left: 8px; border: 1px solid rgba(77,158,255,0.5) !important; border-radius: 6px !important; padding: 6px 14px !important; background: transparent !important; color: var(--blue) !important; font-weight: 600 !important; box-shadow: none !important; transition: background 0.2s, border-color 0.2s !important; }
.nav-cta:hover { background: rgba(77,158,255,0.15) !important; border-color: var(--blue) !important; color: var(--white) !important; transform: none !important; }
.nav-signin { border: 1px solid rgba(77,158,255,0.4); border-radius: 6px; padding: 6px 14px !important; color: var(--blue) !important; font-weight: 600 !important; transition: background 0.2s, border-color 0.2s; }
.nav-signin:hover { background: rgba(77,158,255,0.12); border-color: var(--blue); color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 35%, rgba(77,158,255,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(245,166,35,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(36,48,73,0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,48,73,0.7) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(77,158,255,0.025) 0px,
    rgba(77,158,255,0.025) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--navy-border);
  background: rgba(15, 24, 41, 0.8);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--grey-light);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

/* Command-line scan readout — the "engineered" signature */
.hero-cli {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--grey-light);
  background: rgba(8, 12, 22, 0.6);
  border: 1px solid var(--navy-border);
  border-left: 2px solid var(--blue);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 32px;
  max-width: 480px;
  backdrop-filter: blur(6px);
}
.hero-cli .cli-line { display: block; white-space: nowrap; overflow: hidden; }
.hero-cli .cli-prompt { color: var(--blue); margin-right: 8px; }
.hero-cli .cli-ok { color: var(--green); }
.hero-cli .cli-dim { color: var(--grey); }
.hero-cli .cli-cursor {
  display: inline-block;
  width: 8px; height: 1.05em;
  background: var(--blue);
  vertical-align: -2px;
  margin-left: 2px;
  animation: cli-blink 1.1s steps(1) infinite;
}
@keyframes cli-blink { 50% { opacity: 0; } }
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 { margin-bottom: 28px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #7DB8FF 0%, #2D6ECC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.2rem;
  max-width: 580px;
  margin-bottom: 44px;
  color: var(--grey-light);
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 20px;
}
.hero-proof .stars { color: #FFC107; letter-spacing: 1px; }

/* ── Ticker / Marquee ── */
.ticker {
  padding: 20px 0;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  overflow: hidden;
  background: var(--navy-mid);
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--grey-light);
}
.ticker-item .t-icon { font-size: 0.95rem; }
.ticker-item strong { color: var(--white); font-weight: 700; }
.ticker-sep {
  color: var(--blue);
  opacity: 0.4;
  font-size: 1rem;
  align-self: center;
}

/* ── Results Strip ── */
.results-strip {
  padding: 80px 0;
  background: var(--navy-mid);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.result-item {
  padding: 40px 32px;
  text-align: center;
  background: var(--navy-card);
  position: relative;
}
.result-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--navy-border);
}
.result-num {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.result-num span { color: var(--blue); }
.result-label { font-size: 0.875rem; color: var(--grey); margin-top: 8px; }

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.svc-card {
  background: var(--navy-card);
  padding: 40px 36px;
  position: relative;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4D9EFF, #2D6ECC, transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.svc-card:hover { border-color: rgba(77,158,255,0.2); }
.svc-card:hover::before { opacity: 1; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.3); }
.svc-icon {
  font-size: 2rem;
  margin-bottom: 24px;
  display: block;
}
.svc-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.1rem; }
.svc-card p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.svc-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.svc-card:hover .svc-link { gap: 10px; }

/* ── Featured / Lead Service ── */
.svc-card.featured {
  background: linear-gradient(135deg, rgba(77,158,255,0.1) 0%, var(--navy-card) 60%);
  border: 1px solid rgba(77,158,255,0.25);
  grid-column: span 1;
}
.svc-card.featured::before { opacity: 1; }
.featured-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(77,158,255,0.15);
  border: 1px solid rgba(77,158,255,0.35);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ── Process ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-border), var(--navy-border), var(--navy-border), transparent);
}
.process-step { padding: 0 24px; text-align: center; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900;
  color: var(--blue);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.process-step h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 32px;
  transition: var(--transition);
}
.testi-card:hover { border-color: rgba(77,158,255,0.3); transform: translateY(-4px); }
.testi-stars { color: #FFC107; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-quote { font-size: 0.95rem; color: var(--grey-light); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2D6ECC, #2D6ECC);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-size: 0.875rem; font-weight: 700; color: var(--white); }
.testi-role { font-size: 0.78rem; color: var(--grey); }

/* ── Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-card {
  padding: 36px;
  border-radius: 12px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.why-card:hover { border-color: rgba(77,158,255,0.25); }
.why-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--blue-glow);
  border: 1px solid rgba(77,158,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-card h3 { color: var(--white); margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; line-height: 1.65; }

/* ── CTA Banner ── */
.cta-section { padding: 0 0 100px; }
.cta-box {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,158,255,0.12) 0%, rgba(77,158,255,0.06) 50%, transparent 70%);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,158,255,0.5), rgba(77,158,255,0.5), transparent);
}
.cta-box h2 { margin-bottom: 18px; }
.cta-box p { max-width: 500px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 0.8rem; color: var(--grey); }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--navy-border);
  padding: 72px 0 36px;
  background: var(--navy-mid);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { font-size: 0.875rem; margin-top: 16px; max-width: 260px; line-height: 1.75; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--grey);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--navy-border);
  font-size: 0.82rem;
  color: var(--grey);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 160px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(77,158,255,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero p { font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── Services Detail Page ── */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--navy-border);
}
.svc-detail:last-of-type { border-bottom: none; }

/* Swap columns for alternating rows using grid order */
.svc-detail.reverse .svc-left  { order: 2; }
.svc-detail.reverse .svc-right { order: 1; }

/* ── Left text panel ── */
.svc-left { display: flex; flex-direction: column; gap: 0; }

.svc-type-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(77,158,255,0.10);
  border: 1px solid rgba(77,158,255,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
  width: fit-content;
}

.svc-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.svc-price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0 24px;
  padding: 18px 0;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.svc-price-amount {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-bright), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
}

.svc-price-note {
  font-size: 0.875rem;
  color: var(--grey);
  font-weight: 500;
}

.svc-desc {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.svc-desc p {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.75;
  margin: 0;
}

.svc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Right feature list panel ── */
.svc-right {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 36px;
  position: sticky;
  top: 100px;
}

.svc-right h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--navy-border);
}

.svc-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.svc-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.svc-feature-item:last-child { border-bottom: none; }

.svc-feature-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(77,158,255,0.10);
  border: 1px solid rgba(77,158,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.svc-feature-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.svc-feature-text span {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.5;
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}
.compare-table th {
  text-align: left;
  padding: 16px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--navy-border);
}
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td {
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--grey-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table .yes { color: var(--green); font-size: 1rem; }
.compare-table .no  { color: var(--grey); opacity: 0.3; font-size: 1rem; }
.compare-table .val { color: var(--white); font-weight: 600; font-size: 0.875rem; }
.compare-table .col-head { display: block; color: var(--white); font-weight: 700; font-size: 0.9rem; text-transform: none; letter-spacing: 0; }
.compare-table .col-price { display: block; color: var(--blue-bright); font-size: 0.78rem; font-weight: 500; margin-top: 3px; }

@media (max-width: 900px) {
  .svc-detail { grid-template-columns: 1fr; gap: 36px; }
  .svc-detail.reverse .svc-left  { order: 1; }
  .svc-detail.reverse .svc-right { order: 2; }
  .svc-right { position: static; }
  .compare-table { display: block; overflow-x: auto; }
}

/* ── About Page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-box {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}
.about-box .big-icon { font-size: 4rem; margin-bottom: 16px; }
.about-box h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 64px; }
.value-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 28px;
  transition: var(--transition);
}
.value-card:hover { border-color: rgba(77,158,255,0.22); }
.value-card .v-icon { font-size: 1.5rem; margin-bottom: 12px; }
.value-card h4 { color: var(--white); margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 40px; line-height: 1.75; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail .cd-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-glow);
  border: 1px solid rgba(77,158,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail h4 { color: var(--white); font-size: 0.875rem; margin-bottom: 4px; }
.contact-detail p { font-size: 0.875rem; margin: 0; }
.form-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77,158,255,0.12);
}
.form-group select option { background: var(--navy-mid); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey); opacity: 0.5; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; border-radius: 8px; }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--navy-card);
  border: 1px solid rgba(77,158,255,0.45);
  border-radius: 12px;
  padding: 16px 24px;
  color: var(--white);
  font-size: 0.875rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 999;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── Global Aurora Background ── */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform, opacity;
}
.aurora-orb-1 {
  width: 80vw;
  height: 65vh;
  top: -15%;
  left: 20%;
  background: radial-gradient(ellipse at center, rgba(77,158,255,0.32) 0%, transparent 70%);
  animation: orbDrift1 18s ease-in-out infinite alternate;
}
.aurora-orb-2 {
  width: 55vw;
  height: 75vh;
  bottom: -20%;
  left: -15%;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.22) 0%, transparent 70%);
  animation: orbDrift2 22s ease-in-out infinite alternate;
}
.aurora-orb-3 {
  width: 65vw;
  height: 60vh;
  top: 15%;
  right: -20%;
  background: radial-gradient(ellipse at center, rgba(77,158,255,0.22) 0%, transparent 70%);
  animation: orbDrift3 20s ease-in-out infinite alternate;
}
.aurora-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36,48,73,0.60) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,48,73,0.60) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 140% 140% at 50% 40%, black 0%, transparent 75%);
  animation: gridPulse 12s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
  0%   { transform: translate(0,   0)    scale(1);    opacity: 0.75; }
  25%  { transform: translate(-7%, 12%)  scale(1.10); opacity: 1;    }
  50%  { transform: translate(10%, -5%)  scale(0.95); opacity: 0.85; }
  75%  { transform: translate(-4%, 8%)   scale(1.08); opacity: 0.92; }
  100% { transform: translate(6%,  -10%) scale(1.04); opacity: 0.80; }
}
@keyframes orbDrift2 {
  0%   { transform: translate(0,    0)    scale(1);    opacity: 0.65; }
  25%  { transform: translate(14%, -16%) scale(1.15);  opacity: 1;    }
  50%  { transform: translate(-8%,  10%) scale(0.90);  opacity: 0.78; }
  75%  { transform: translate(12%, -8%)  scale(1.10);  opacity: 0.90; }
  100% { transform: translate(-5%,  15%) scale(1.05);  opacity: 0.72; }
}
@keyframes orbDrift3 {
  0%   { transform: translate(0,    0)    scale(1);    opacity: 0.60; }
  25%  { transform: translate(-12%, 10%) scale(1.12);  opacity: 0.95; }
  50%  { transform: translate(8%,  -14%) scale(1.18);  opacity: 1;    }
  75%  { transform: translate(-8%,  16%) scale(0.94);  opacity: 0.82; }
  100% { transform: translate(14%, -5%)  scale(1.06);  opacity: 0.70; }
}
@keyframes gridPulse {
  0%   { opacity: 0.40; }
  100% { opacity: 0.80; }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-grid  { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .why-grid      { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid  { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .cta-box       { padding: 48px 28px; }
  .hero-sub      { font-size: 1.05rem; }
}

/* Mobile nav */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  justify-content: center;
  align-items: center;
  gap: 44px;
  z-index: 99;
}
.nav-links.open a { font-size: 1.4rem; color: var(--white); }
.close-nav {
  position: fixed;
  top: 22px; right: 24px;
  z-index: 100;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--grey);
  display: none;
}
.close-nav.show { display: block; }

/* ══════════════════════════════════════════
   VISUAL / PHOTO SECTIONS
   ══════════════════════════════════════════ */

/* ── Hero split layout ── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 90px);
  padding: 40px 0;
}
.hero-visual-panel {
  position: relative;
  height: 580px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--navy-border);
}

/* Photo slot — swap var(--hero-photo) for a real image URL */
.hero-visual-panel .photo-layer {
  position: absolute; inset: 0;
  background:
    var(--hero-photo, none),
    linear-gradient(160deg, #0d0820 0%, #080714 100%);
  background-size: cover;
  background-position: center top;
  filter: brightness(0.55) saturate(1.1);
}
.hero-visual-panel .photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(7, 12, 24, 0.5) 70%,
    rgba(7, 12, 24, 0.95) 100%
  );
}
/* Scan-line techy effect */
.hero-visual-panel .scan-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(77,158,255,0.04) 3px,
    rgba(77,158,255,0.04) 4px
  );
  pointer-events: none;
}
/* Corner accents */
.hero-visual-panel::before,
.hero-visual-panel::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  z-index: 2;
}
.hero-visual-panel::before {
  top: 14px; left: 14px;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  border-radius: 3px 0 0 0;
}
.hero-visual-panel::after {
  bottom: 14px; right: 14px;
  border-bottom: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  border-radius: 0 0 3px 0;
}

/* Floating stat chips on photo */
.photo-chip {
  position: absolute;
  z-index: 3;
  background: rgba(7, 12, 24, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(77,158,255,0.28);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
/* chip positions use .chip-tr/.chip-bl/.chip-br (see jazz-up additions at end of file) */
.chip-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--blue-glow);
  border: 1px solid rgba(77,158,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.chip-val {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}
.chip-lbl { font-size: 0.72rem; color: var(--grey); margin-top: 3px; }

/* Live pulse dot on chip */
.chip-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.chip-live .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

/* ── Full-bleed photo banner ── */
.photo-banner {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
}
.photo-banner .photo-layer {
  position: absolute; inset: 0;
  background:
    var(--banner-photo, none),
    linear-gradient(120deg, #071628 0%, #040c1c 100%);
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(1.2);
}
.photo-banner .photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7,12,24,0.85) 0%,
    rgba(7,12,24,0.4) 50%,
    rgba(7,12,24,0.75) 100%
  );
}
.photo-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.photo-banner-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.photo-banner h2 { margin-bottom: 16px; }
.photo-banner p { font-size: 1rem; line-height: 1.75; margin-bottom: 28px; }
.banner-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.banner-stat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(7,12,24,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(77,158,255,0.18);
  border-radius: 12px;
}
.banner-stat-row .bs-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.banner-stat-row .bs-val {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.banner-stat-row .bs-lbl {
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 3px;
}

/* ── Photo grid section ── */
.photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.photo-grid-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--navy-border);
  background: var(--navy-card);
}
.photo-grid-item.tall { grid-row: span 2; }
.photo-grid-item .photo-layer {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(1.1);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.photo-grid-item:hover .photo-layer {
  transform: scale(1.04);
  filter: brightness(0.65) saturate(1.2);
}
.photo-grid-item .photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,12,24,0.9) 0%, transparent 55%);
}
.photo-grid-label {
  position: absolute;
  bottom: 20px; left: 20px;
  z-index: 2;
}
.photo-grid-label span {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(77,158,255,0.18);
  border: 1px solid rgba(77,158,255,0.35);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.photo-grid-label h4 { color: var(--white); font-size: 1rem; }

/* Datacenter circuit overlay on empty photo slots */
.photo-circuit {
  position: absolute; inset: 0;
  overflow: hidden;
}
.photo-circuit svg {
  width: 100%; height: 100%;
  opacity: 0.12;
}

/* ── Responsive visual sections ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual-panel { height: 420px; }
  .photo-banner-content .container { grid-template-columns: 1fr; gap: 40px; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-grid-item.tall { grid-row: auto; }
}
@media (max-width: 700px) {
  .hero-visual-panel { height: 320px; }
  .photo-banner { height: auto; padding: 60px 0; }
  .photo-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   JAZZ UP — Enhanced Visual Layer
   ══════════════════════════════════════════ */

/* ── Animated background orbs ── */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(77,158,255,0.16) 0%, transparent 70%);
  top: -160px; right: -100px;
  animation: orb-drift-a 20s ease-in-out infinite;
}
.orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  bottom: 60px; left: -90px;
  animation: orb-drift-b 26s ease-in-out infinite;
}
.orb-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(106,180,255,0.1) 0%, transparent 70%);
  top: 42%; left: 28%;
  animation: orb-drift-c 16s ease-in-out infinite;
}
@keyframes orb-drift-a {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(30px,-18px) scale(1.06); }
  66%     { transform: translate(-22px,14px) scale(0.96); }
}
@keyframes orb-drift-b {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(20px,25px) scale(1.08); }
  70%     { transform: translate(-15px,-12px) scale(0.94); }
}
@keyframes orb-drift-c {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(18px,-22px) scale(1.12); }
}

/* ── SEO Dashboard (replaces hero photo panel) ── */
.seo-dash {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 10px;
  z-index: 4;
  background: linear-gradient(155deg, rgba(10,16,30,0.98) 0%, rgba(6,11,22,0.99) 100%);
}

/* URL bar */
.dash-urlbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  background: rgba(24,37,64,0.75);
  border: 1px solid rgba(24,37,64,1);
  border-radius: 7px;
  flex-shrink: 0;
}
.dash-url {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey-light);
  font-family: 'JetBrains Mono','Courier New',monospace;
}
.dash-urlpip {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.dash-scanstatus {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.dash-spin { display: inline-block; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Score + issues */
.dash-mid {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 0;
}
.gauge-wrap {
  position: relative;
  width: 96px; height: 96px;
  flex-shrink: 0;
}
.gauge-svg {
  width: 96px; height: 96px;
  transform: rotate(-90deg);
}
.gauge-bg {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 7;
}
.gauge-fill {
  fill: none;
  stroke: url(#gaugeGrad);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 251;
  stroke-dashoffset: 251;
  filter: drop-shadow(0 0 6px rgba(77,158,255,0.55));
}
.gauge-fill.run { animation: gauge-in 2.2s ease forwards 0.6s; }
@keyframes gauge-in { to { stroke-dashoffset: 65; } }
.gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gauge-num {
  font-family: var(--font-mono);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.gauge-lbl {
  font-size: 0.56rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* Issue pills */
.dash-issues {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.dash-iss {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--grey-light);
  padding: 6px 9px;
  background: rgba(7,12,24,0.5);
  border-radius: 6px;
  border: 1px solid rgba(24,37,64,0.6);
}
.iss-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dash-iss.crit .iss-dot { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,0.5); }
.dash-iss.warn .iss-dot { background: #f59e0b; box-shadow: 0 0 6px rgba(245,158,11,0.5); }
.dash-iss.opp  .iss-dot { background: var(--green); box-shadow: 0 0 6px rgba(34,197,94,0.4); }
.iss-count { margin-left: auto; font-weight: 800; color: var(--white); font-size: 0.82rem; }

/* Live checks */
.dash-checks {
  padding: 10px 12px;
  background: rgba(7,12,24,0.65);
  border: 1px solid rgba(24,37,64,0.8);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.chk {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-family: 'JetBrains Mono','Courier New',monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.4s;
}
.chk.done    { color: var(--green); }
.chk.active  { color: var(--blue); }
.chk.pending { color: rgba(122,141,175,0.3); }
.chk-i { flex-shrink: 0; width: 13px; text-align: center; }

/* Ranking chart */
.dash-rank {
  padding: 10px 12px;
  background: rgba(7,12,24,0.65);
  border: 1px solid rgba(24,37,64,0.8);
  border-radius: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.rank-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.rank-kw { font-size: 0.65rem; color: var(--grey); font-family: 'JetBrains Mono','Courier New',monospace; }
.rank-pill {
  background: rgba(34,197,94,0.12);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 2px 7px;
  border-radius: 100px;
  font-size: 0.62rem;
  font-weight: 700;
}
.rank-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  flex: 1;
  min-height: 36px;
}
.rbar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, var(--blue-dim), rgba(77,158,255,0.75));
  animation: rbar-in 0.5s ease forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}
.rbar.peak {
  background: linear-gradient(to top, #0d8a55, var(--green));
  box-shadow: 0 0 10px rgba(34,197,94,0.4);
}
@keyframes rbar-in { to { transform: scaleY(1); } }

/* Chip position classes */
.photo-chip.chip-tr { top: 22px; right: 22px; }
.photo-chip.chip-bl { bottom: 72px; left: 22px; }
.photo-chip.chip-br { bottom: 22px; right: 22px; }
/* Override old nth-child rules */
.photo-chip:nth-child(1),
.photo-chip:nth-child(2),
.photo-chip:nth-child(3) { top: auto; right: auto; bottom: auto; left: auto; }
/* Chips above dashboard */
.hero-visual-panel .photo-chip { z-index: 6; }

/* ── Stat panels (replacing photo-grid items) ── */
.stat-panel {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--navy-border);
  background: var(--navy-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.stat-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-panel.tall { grid-row: span 2; }
.stat-panel:hover {
  border-color: rgba(77,158,255,0.28);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(77,158,255,0.10);
  transform: translateY(-3px);
}
.stat-panel:hover::before { opacity: 1; }
.stat-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(77,158,255,0.12);
  border: 1px solid rgba(77,158,255,0.22);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
}
.stat-big {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-sub { font-size: 0.78rem; color: var(--grey); margin-top: 5px; line-height: 1.4; }
.stat-delta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.15);
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 10px;
  width: fit-content;
}
.stat-bars-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  margin-top: 18px;
  gap: 4px;
  min-height: 70px;
}
.sbar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--blue-dim), rgba(77,158,255,0.60));
  animation: sbar-in 0.7s ease forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}
.sbar.g {
  background: linear-gradient(to top, #0d8a55, var(--green));
  box-shadow: 0 0 10px rgba(34,197,94,0.3);
}
@keyframes sbar-in { to { transform: scaleY(1); } }

/* Sparkline */
.sparkline-svg { width: 100%; margin-top: 16px; flex: 1; }

/* ── Banner enhanced bg (no photo needed) ── */
.banner-bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 100% at 15% 50%, rgba(77,158,255,0.18) 0%, rgba(77,158,255,0.08) 70%, transparent 90%),
    radial-gradient(ellipse 45% 80% at 85% 50%, rgba(34,197,94,0.07) 0%, transparent 55%),
    linear-gradient(120deg, #050c1a 0%, #020709 100%);
}
.banner-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(24,37,64,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,37,64,0.4) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 20%, transparent 100%);
}

/* ── Service card icon as icon-box ── */
.svc-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(77,158,255,0.10);
  border: 1px solid rgba(77,158,255,0.16);
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.svc-card:hover .svc-icon {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 0 24px rgba(77,158,255,0.22);
  background: rgba(77,158,255,0.16);
}
.svc-card:hover {
  box-shadow: 0 24px 56px rgba(0,0,0,0.35), 0 0 0 1px rgba(77,158,255,0.18),
              inset 0 0 40px rgba(77,158,255,0.04);
}

/* ── Process step hover glow ── */
.step-num { transition: box-shadow 0.3s, background 0.3s, border-color 0.3s; }
.process-step:hover .step-num {
  background: rgba(77,158,255,0.12);
  border-color: var(--blue);
  box-shadow: 0 0 28px rgba(77,158,255,0.28), 0 0 0 4px rgba(77,158,255,0.08);
}

/* ── Why card hover gradient ── */
.why-card {
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.why-card:hover {
  background: linear-gradient(135deg, rgba(77,158,255,0.08) 0%, var(--navy-card) 100%);
  border-color: rgba(77,158,255,0.28);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
.why-icon { transition: transform 0.3s, box-shadow 0.3s; }
.why-card:hover .why-icon {
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(77,158,255,0.28);
}

/* ── Results strip hover ── */
.result-item { transition: background 0.3s; }
.result-item:hover { background: rgba(77,158,255,0.06); }
.result-num { transition: color 0.3s; }
.result-item:hover .result-num { color: var(--blue-bright); }

/* ── CTA enhanced ── */
.cta-box {
  background: linear-gradient(135deg, rgba(77,158,255,0.08) 0%, var(--navy-card) 45%, rgba(34,197,94,0.04) 100%);
  border-color: rgba(77,158,255,0.20);
}
.cta-box::before {
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(77,158,255,0.14) 0%, transparent 70%);
}

/* ── Shimmer on blue text ── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.highlight {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-bright) 35%, #c0e0ff 50%, var(--blue-bright) 65%, var(--blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

/* ── Chip entry animation ── */
.photo-chip {
  animation: chip-in 0.6s ease forwards;
  opacity: 0;
}
.photo-chip.chip-tr { animation-delay: 1.2s; }
.photo-chip.chip-bl { animation-delay: 1.5s; }
.photo-chip.chip-br { animation-delay: 1.8s; }
@keyframes chip-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Stat panel responsive ── */
@media (max-width: 700px) {
  .stat-panel.tall { grid-row: auto; }
}

/* ── AI Plan feature cards ── */
.ai-feat-table { width: 100%; border-collapse: separate; border-spacing: 20px 0; margin: 48px 0; }
.ai-feat-cell {
  width: 33%; border-radius: 16px; padding: 40px 28px;
  text-align: center; vertical-align: top;
  border-top: 3px solid var(--blue);
  background: linear-gradient(160deg, #1a1040 0%, #0d0d1f 100%);
}
.ai-feat-cell--cyan  { border-top-color: var(--cyan);  background: linear-gradient(160deg, #0d1a2a 0%, #0d0d1f 100%); }
.ai-feat-cell--green { border-top-color: var(--green); background: linear-gradient(160deg, #0d1a14 0%, #0d0d1f 100%); }

.ai-feat-emoji  { font-size: 2.8rem; display: block; margin-bottom: 18px; line-height: 1; }
.ai-feat-label  { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 10px; }
.ai-feat-label--cyan  { color: var(--cyan); }
.ai-feat-label--green { color: var(--green); }
.ai-feat-title  { font-size: 1.1rem; font-weight: 800; color: var(--white); display: block; margin-bottom: 12px; }
.ai-feat-sub    { font-size: 0.82rem; color: var(--grey-light); line-height: 1.75; }

/* ── AI Plan mockup (inline-safe classes) ── */
.ai-plan-mock { max-width: 640px; margin: 0 auto 56px; background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.ai-plan-mock-head { background: linear-gradient(135deg, rgba(77,158,255,0.2), rgba(77,158,255,0.08)); border-bottom: 1px solid var(--navy-border); padding: 20px 24px; }
.ai-plan-mock-title { font-size: 0.85rem; font-weight: 800; color: var(--white); }
.ai-plan-mock-sub   { font-size: 0.72rem; color: var(--grey); margin-top: 4px; }
.ai-plan-mock-body  { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.ai-plan-phase { border-radius: 8px; padding: 14px 16px; }
.ai-plan-phase--30 { background: rgba(34,197,94,0.06);  border-left: 3px solid var(--green); }
.ai-plan-phase--60 { background: rgba(77,158,255,0.06);  border-left: 3px solid var(--blue); }
.ai-plan-phase--90 { background: rgba(245,166,35,0.06);  border-left: 3px solid var(--pink); }
.ai-plan-phase-lbl { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 10px; }
.ai-plan-phase--30 .ai-plan-phase-lbl { color: var(--green); }
.ai-plan-phase--60 .ai-plan-phase-lbl { color: var(--blue-bright); }
.ai-plan-phase--90 .ai-plan-phase-lbl { color: var(--pink); }
.ai-plan-action { font-size: 0.78rem; color: var(--grey-light); margin-bottom: 6px; padding-left: 12px; display: block; }
.ai-plan-action::before { content: '→ '; font-weight: 800; opacity: 0.6; }
.ai-plan-badge { font-size: 0.6rem; font-weight: 700; padding: 2px 7px; border-radius: 100px; margin-left: 6px; display: inline-block; }
.ai-plan-badge--high { background: rgba(239,68,68,0.15); color: #f87171; }
.ai-plan-badge--med  { background: rgba(245,158,11,0.15); color: #fbbf24; }
.ai-plan-badge--low  { background: rgba(34,197,94,0.15); color: #34d399; }

@media (max-width: 860px) {
  .ai-feat-table, .ai-feat-table tbody, .ai-feat-table tr { display: block; }
  .ai-feat-cell { display: block; width: 100%; margin-bottom: 16px; box-sizing: border-box; }
}

/* ── services.html page styles (moved from <style> block) ── */
.scan-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; margin-top: 56px; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--navy-border); border: 1px solid var(--navy-border); border-radius: 20px; overflow: hidden; margin-bottom: 44px; }
.feat-card { background: var(--navy-card); padding: 44px 24px 38px; text-align: center; transition: background 0.25s; }
.feat-card:hover { background: rgba(77,158,255,0.04); }
.feat-icon { font-size: 42px; display: block; margin-bottom: 18px; }
.feat-count { font-size: 3.4rem; font-weight: 900; letter-spacing: -0.05em; line-height: 1; background: linear-gradient(135deg, #4D9EFF, #2D6ECC); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; margin-bottom: 0; }
.feat-count::after { content: ' checks'; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; -webkit-text-fill-color: var(--grey); display: block; margin-top: 4px; margin-bottom: 14px; }
.feat-count-free { font-size: 1.6rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1; background: linear-gradient(135deg, #4D9EFF, #2D6ECC); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; margin-bottom: 10px; }
.feat-name { font-size: 0.92rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.feat-sub { font-size: 0.76rem; color: var(--grey); }
.mchips { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }
.mchip { font-size: 0.58rem; font-weight: 600; padding: 3px 8px; border-radius: 100px; background: rgba(255,255,255,0.05); border: 1px solid var(--navy-border); color: var(--grey-light); white-space: nowrap; }
.mchip-hl { color: var(--blue-bright); border-color: rgba(77,158,255,0.3); background: rgba(77,158,255,0.08); }
.scan-mock-panel { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 22px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.mock-urlbar { background: var(--navy-mid); border-bottom: 1px solid var(--navy-border); padding: 12px 20px; display: flex; align-items: center; gap: 12px; }
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; opacity: 0.7; display: block; }
.mock-url { flex: 1; background: rgba(255,255,255,0.05); border-radius: 6px; padding: 5px 12px; font-size: 0.72rem; color: var(--grey); font-family: monospace; }
.mock-status { font-size: 0.7rem; color: var(--green); font-weight: 700; flex-shrink: 0; }
.mock-score-row { display: grid; grid-template-columns: auto 1fr; padding: 24px; gap: 0; }
.mock-gauge-wrap { text-align: center; padding-right: 24px; border-right: 1px solid var(--navy-border); }
.mock-gauge-wrap svg { width: 130px; display: block; margin: 0 auto; }
.mock-gauge-label { font-size: 0.64rem; color: var(--green); font-weight: 700; margin-top: 6px; }
.mock-issues { padding-left: 24px; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.mock-issue { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; border-radius: 10px; font-size: 0.75rem; font-weight: 600; }
.mock-issue--crit { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.20); color: #f87171; }
.mock-issue--warn { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.20); color: #fbbf24; }
.mock-issue--opp  { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.20); color: #34d399; }
.mock-issue strong { font-size: 1.15rem; font-weight: 900; }
.mock-checks { border-top: 1px solid var(--navy-border); padding: 16px 24px; display: flex; flex-direction: column; gap: 9px; }
.mock-check { display: flex; align-items: center; gap: 10px; font-size: 0.75rem; }
.mock-chk-icon { width: 20px; height: 20px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; flex-shrink: 0; }
.pass-icon { background: rgba(34,197,94,0.12); color: #22C55E; }
.fail-icon { background: rgba(239,68,68,0.12); color: #f87171; }
.warn-icon { background: rgba(245,158,11,0.12); color: #fbbf24; }
.mc-pass { color: var(--grey-light); }
.mc-fail { color: #f87171; }
.mc-warn { color: #fbbf24; }
.score-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 56px; }
.score-deductions { display: flex; flex-direction: column; gap: 14px; }
.deduct-row { padding: 24px 20px; border-radius: 16px; text-align: center; }
.dr-num { font-size: 3rem; font-weight: 900; line-height: 1; letter-spacing: -0.04em; margin-bottom: 6px; }
.dr-label { font-size: 0.82rem; font-weight: 700; margin-bottom: 12px; }
.dr-chips { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }
.dr-chip { font-size: 0.6rem; font-weight: 600; padding: 3px 9px; border-radius: 100px; white-space: nowrap; }
.score-bands-title { font-size: 0.75rem; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; text-align: center; }
.score-bands { display: flex; flex-direction: column; gap: 10px; }
.band-row { padding: 16px 20px; border-radius: 12px; text-align: center; }
.band-range { font-size: 1.4rem; font-weight: 900; margin-bottom: 2px; }
.band-name { font-size: 0.8rem; font-weight: 700; margin-bottom: 8px; }
.band-bar { height: 7px; border-radius: 4px; margin: 0 auto; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.plan-card { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; gap: 18px; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.plan-card.plan-featured { border-color: var(--blue); background: linear-gradient(150deg, rgba(77,158,255,0.08) 0%, var(--navy-card) 65%); }
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff; font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.plan-name { font-size: 1.1rem; font-weight: 800; color: var(--white); text-align: center; }
.plan-price { font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1; text-align: center; }
.plan-price span { font-size: 0.9rem; font-weight: 500; color: var(--grey); }
.plan-note { font-size: 0.72rem; color: var(--grey); margin-top: 6px; text-align: center; }
.plan-desc { font-size: 0.82rem; color: var(--grey-light); line-height: 1.65; flex: 1; text-align: center; }
.plan-chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
.plan-chip { font-size: 0.68rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; background: rgba(255,255,255,0.05); border: 1px solid var(--navy-border); color: var(--grey-light); }
.plan-featured .plan-chip { background: rgba(77,158,255,0.08); border-color: rgba(77,158,255,0.25); color: var(--blue-bright); }
.plan-cta { display: block; text-align: center; padding: 14px; border-radius: 12px; font-size: 0.88rem; font-weight: 700; text-decoration: none; transition: all 0.25s; }
.plan-cta-solid { background: var(--gradient-btn); color: #fff; box-shadow: 0 4px 20px rgba(77,158,255,0.3); }
.plan-cta-solid:hover { opacity: 0.9; transform: translateY(-1px); }
.plan-cta-ghost { background: transparent; border: 1px solid var(--navy-border); color: var(--grey-light); }
.plan-cta-ghost:hover { border-color: var(--blue); color: var(--blue); }
.plan-faq { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 28px; border: 1px solid var(--navy-border); border-radius: 16px; overflow: hidden; }
.plan-faq-item { padding: 22px 24px; background: var(--navy-card); }
.plan-faq-item:not(:last-child) { border-right: 1px solid var(--navy-border); }
.plan-faq-q { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 6px; text-align: center; }
.plan-faq-a { font-size: 0.78rem; color: var(--grey-light); line-height: 1.6; text-align: center; }

/* ── index.html page styles (moved from <style> block) ── */
.process-strip { display: grid; grid-template-columns: 1fr 48px 1fr 48px 1fr; gap: 0; margin-top: 48px; align-items: center; }
.ps-step { padding: 52px 32px 48px; text-align: center; border-top: 2px solid transparent; }
.ps-step--1 { border-top-color: rgba(34,197,94,0.5); }
.ps-step--2 { border-top-color: rgba(77,158,255,0.5); }
.ps-step--3 { border-top-color: rgba(245,166,35,0.5); }
.ps-lbl { font-size: 0.62rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.14em; display: block; margin-bottom: 20px; }
.ps-step--1 .ps-lbl { color: var(--green); }
.ps-step--2 .ps-lbl { color: var(--blue-bright); }
.ps-step--3 .ps-lbl { color: var(--pink); }
.ps-icon { font-size: 48px; display: block; margin-bottom: 20px; }
.ps-title { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.ps-sub { font-size: 0.82rem; color: var(--grey-light); line-height: 1.7; }
.ps-arrow { display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--blue); opacity: 0.35; }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.prod-card { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(0,0,0,0.45); }
.prod-card.prod-featured { border-color: rgba(77,158,255,0.5); }
.prod-featured-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, #4D9EFF, #2D6ECC); color: #fff; font-size: 0.58rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; padding: 4px 16px; border-radius: 0 0 10px 10px; white-space: nowrap; }
.prod-mock { border-bottom: 1px solid var(--navy-border); background: var(--navy-mid); }
.prod-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; text-align: center; }
.prod-name { font-size: 1rem; font-weight: 800; color: var(--white); }
.prod-price { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -0.03em; }
.prod-per { font-size: 0.8rem; font-weight: 500; color: var(--grey); }
.prod-tagline { font-size: 0.85rem; color: var(--grey-light); line-height: 1.7; flex: 1; }
.prod-cta-primary { display: block; text-align: center; padding: 13px; border-radius: 11px; font-size: 0.88rem; font-weight: 700; background: var(--gradient-btn); color: #fff; text-decoration: none; transition: opacity 0.2s, transform 0.2s; box-shadow: 0 4px 20px rgba(77,158,255,0.3); }
.prod-cta-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.prod-cta-ghost { display: block; text-align: center; padding: 13px; border-radius: 11px; font-size: 0.88rem; font-weight: 700; background: transparent; color: #fff; border: 1px solid var(--navy-border); text-decoration: none; transition: all 0.2s; }
.prod-cta-ghost:hover { border-color: var(--blue); color: var(--blue); }
.mock-url-bar { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-bottom: 1px solid var(--navy-border); background: rgba(0,0,0,0.15); }
.mock-dots-sm { display: flex; gap: 5px; }
.mock-dots-sm span { width: 8px; height: 8px; border-radius: 50%; display: block; opacity: 0.6; }
.mock-domain { flex: 1; background: rgba(255,255,255,0.05); border-radius: 5px; padding: 4px 10px; font-size: 0.65rem; color: var(--grey); font-family: monospace; }
.score-bar-wrap { display: flex; align-items: flex-end; gap: 7px; height: 54px; }
.sbar { border-radius: 4px 4px 0 0; flex: 1; }
.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 56px; }
.proof-cell { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 16px; padding: 24px 20px; text-align: center; }
.proof-num { font-size: 2.2rem; font-weight: 900; line-height: 1; letter-spacing: -0.03em; background: linear-gradient(135deg, #4D9EFF, #2D6ECC); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.proof-label { font-size: 0.7rem; font-weight: 600; color: var(--grey); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 6px; }

@media (max-width: 960px) {
  .prod-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .process-strip { grid-template-columns: 1fr; gap: 12px; }
  .ps-arrow { transform: rotate(90deg); }
  .proof-strip { grid-template-columns: repeat(2,1fr); }
  .scan-split { grid-template-columns: 1fr; }
  .scan-mock-panel { max-width: 500px; margin: 0 auto; }
  .score-visual { grid-template-columns: 1fr; gap: 40px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .plan-faq { grid-template-columns: 1fr; }
  .plan-faq-item:not(:last-child) { border-right: none; border-bottom: 1px solid var(--navy-border); }
}
@media (max-width: 640px) {
  .proof-strip { grid-template-columns: repeat(2,1fr); }
}

/* ── Product card mock internals ── */
/* Free card: scan score mock */
.pmock-body       { padding: 20px; display: flex; align-items: center; gap: 16px; }
.pmock-gauge      { text-align: center; flex-shrink: 0; }
.pmock-issues     { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.pmock-issue-row  { display: flex; justify-content: space-between; align-items: center; padding: 6px 10px; border-radius: 8px; }
.pmock-issue-row--crit { background: rgba(239,68,68,0.08);   border: 1px solid rgba(239,68,68,0.18); }
.pmock-issue-row--warn { background: rgba(245,158,11,0.08);  border: 1px solid rgba(245,158,11,0.18); }
.pmock-issue-row--opp  { background: rgba(34,197,94,0.08);  border: 1px solid rgba(34,197,94,0.18); }
.pmock-lbl   { font-size: 0.68rem; font-weight: 600; }
.pmock-num   { font-size: 0.9rem; font-weight: 800; }
.pmock-issue-row--crit .pmock-lbl, .pmock-issue-row--crit .pmock-num { color: #f87171; }
.pmock-issue-row--warn .pmock-lbl, .pmock-issue-row--warn .pmock-num { color: #fbbf24; }
.pmock-issue-row--opp  .pmock-lbl, .pmock-issue-row--opp  .pmock-num { color: #34d399; }

/* Starter card: score trend bars */
.pmock-trend   { padding: 16px 20px 4px; }
.pmock-months  { display: flex; justify-content: space-between; padding: 6px 2px 12px; font-size: 0.62rem; color: var(--grey); }
.pmock-month-val        { display: block; font-weight: 700; color: var(--white); }
.pmock-month-val--hi    { color: var(--blue-bright); }
.pmock-upline  { font-size: 0.68rem; color: var(--green); font-weight: 700; padding-bottom: 14px; }
.pmock-bar     { border-radius: 4px 4px 0 0; flex: 1; }
.pmock-bar--1  { height: 48%; background: rgba(77,158,255,0.35); }
.pmock-bar--2  { height: 62%; background: rgba(77,158,255,0.45); }
.pmock-bar--3  { height: 74%; background: rgba(77,158,255,0.60); }
.pmock-bar--4  { height: 88%; background: linear-gradient(180deg,#4D9EFF,#2D6ECC); }

/* Agency card: client dashboard mock */
.pmock-clients     { padding: 16px 20px; display: flex; flex-direction: column; gap: 7px; }
.pmock-client-row  { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--navy-border); border-radius: 9px; }
.pmock-client-name { font-size: 0.7rem; color: var(--grey-light); }
.pmock-score-pill  { font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.pmock-score-pill--good { color: #34d399; background: rgba(34,197,94,0.1); }
.pmock-score-pill--mid  { color: #fbbf24; background: rgba(245,158,11,0.1); }
.pmock-score-pill--poor { color: #f87171; background: rgba(239,68,68,0.1); }

/* ── Icon wrapper tiles (replaces emojis site-wide) ── */
.icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  flex-shrink: 0;
}
.icon-wrap svg { width: 26px; height: 26px; stroke-width: 1.75; fill: none; }
.icon-wrap--blue   { background: rgba(77,158,255,0.12); border: 1px solid rgba(77,158,255,0.25); }
.icon-wrap--blue   svg { stroke: #7DB8FF; }
.icon-wrap--cyan   { background: rgba(77,158,255,0.10);  border: 1px solid rgba(77,158,255,0.22); }
.icon-wrap--cyan   svg { stroke: var(--cyan); }
.icon-wrap--green  { background: rgba(34,197,94,0.10); border: 1px solid rgba(34,197,94,0.22); }
.icon-wrap--green  svg { stroke: var(--green); }
.icon-wrap--pink   { background: rgba(245,166,35,0.10); border: 1px solid rgba(245,166,35,0.22); }
.icon-wrap--pink   svg { stroke: var(--pink); }
.icon-wrap--amber  { background: rgba(245,158,11,0.10); border: 1px solid rgba(245,158,11,0.22); }
.icon-wrap--amber  svg { stroke: #FBBF24; }
/* Large variant for about page */
.icon-wrap--lg { width: 72px; height: 72px; border-radius: 18px; margin-bottom: 20px; }
.icon-wrap--lg svg { width: 36px; height: 36px; }

/* ── About page stat grid ── */
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-stat-box  { background: var(--navy-mid); border-radius: 10px; padding: 20px; border: 1px solid var(--navy-border); }
.about-stat-num  { font-size: 1.8rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-stat-lbl  { font-size: 0.8rem; color: var(--grey); margin-top: 4px; }

/* ── Reveals grid ── */
.reveals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reveals-card  { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 16px; padding: 32px 28px; transition: border-color 0.25s, transform 0.25s; }
.reveals-card:hover { border-color: rgba(77,158,255,0.35); transform: translateY(-4px); }
.reveals-icon  { font-size: 2rem; display: block; margin-bottom: 16px; }
.reveals-title { font-size: 0.95rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.reveals-sub   { font-size: 0.82rem; color: var(--grey-light); line-height: 1.7; }
.reveals-cta   { text-align: center; margin-top: 52px; }
.reveals-cta p { font-size: 0.8rem; color: var(--grey); margin-top: 12px; }

/* ── Agency vs StormCloud comparison ── */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.vs-col  { border-radius: 20px; padding: 36px 32px; }
.vs-col--agency { background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.15); }
.vs-col--sc     { background: rgba(34,197,94,0.04); border: 1px solid rgba(34,197,94,0.15); }
.vs-col-head  { margin-bottom: 28px; }
.vs-col-label { display: block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 8px; }
.vs-col--agency .vs-col-label { color: #f87171; }
.vs-col--sc     .vs-col-label { color: var(--green); }
.vs-col-price { display: block; font-size: 1.7rem; font-weight: 900; color: var(--white); letter-spacing: -0.03em; }
.vs-list  { display: flex; flex-direction: column; gap: 14px; list-style: none; }
.vs-item  { font-size: 0.875rem; color: var(--grey-light); line-height: 1.5; padding-left: 26px; position: relative; }
.vs-item::before   { position: absolute; left: 0; font-weight: 900; font-size: 0.9rem; }
.vs-item--bad::before  { content: '✕'; color: #f87171; }
.vs-item--good::before { content: '✓'; color: var(--green); }

/* ── FAQ grid ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-item { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 16px; padding: 28px; }
.faq-q    { font-size: 0.95rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.faq-a    { font-size: 0.85rem; color: var(--grey-light); line-height: 1.75; }

/* ── Consultancy enterprise card ── */
.plan-enterprise {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: center;
  margin-top: 20px;
  border-color: rgba(34,197,94,0.3) !important;
  background: linear-gradient(135deg, rgba(34,197,94,0.06) 0%, var(--navy-card) 55%) !important;
}
.plan-enterprise-left  { display: flex; flex-direction: column; gap: 14px; }
.plan-enterprise-right { display: flex; flex-direction: column; gap: 24px; }
.plan-enterprise .plan-badge { background: var(--green); position: static; transform: none; display: inline-block; width: fit-content; }
.plan-enterprise .plan-price { text-align: left; }
.plan-enterprise .plan-name  { text-align: left; }
.plan-enterprise .plan-note  { text-align: left; }
.plan-enterprise .plan-desc  { text-align: left; }
.plan-enterprise .plan-chips { justify-content: flex-start; }
.plan-enterprise .plan-chip  { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.2); color: #6ee7b7; }
.plan-enterprise .plan-cta   { align-self: flex-start; padding: 14px 28px; }
.plan-value-callout { background: rgba(34,197,94,0.05); border: 1px solid rgba(34,197,94,0.15); border-radius: 12px; padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; }
.pvc-row { display: flex; align-items: baseline; gap: 10px; font-size: 0.82rem; }
.pvc-label { color: var(--grey); font-weight: 700; min-width: 90px; flex-shrink: 0; }
.pvc-val   { color: var(--grey-light); line-height: 1.5; }
.pvc-val strong { color: var(--green); }
@media (max-width: 960px) {
  .plan-enterprise { grid-template-columns: 1fr; gap: 32px; }
  .plan-enterprise .plan-cta { align-self: stretch; text-align: center; }
}

/* ── Personas grid (services) ── */
.personas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.persona-card  { background: var(--navy-card); border: 1px solid var(--navy-border); border-radius: 20px; padding: 36px 28px; display: flex; flex-direction: column; gap: 0; }
.persona-icon  { font-size: 2.4rem; display: block; margin-bottom: 20px; }
.persona-card h4 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.persona-card p  { font-size: 0.85rem; color: var(--grey); line-height: 1.75; font-style: italic; flex: 1; margin-bottom: 20px; }
.persona-result  { font-size: 0.78rem; font-weight: 700; color: var(--green); background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); border-radius: 8px; padding: 10px 14px; line-height: 1.5; }

/* ── Responsive for new sections ── */
@media (max-width: 960px) {
  .reveals-grid  { grid-template-columns: repeat(2, 1fr); }
  .vs-grid       { grid-template-columns: 1fr; }
  .faq-grid      { grid-template-columns: 1fr; }
  .personas-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .reveals-grid  { grid-template-columns: 1fr; }
}

/* ── Pricing page ── */
.plans-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.plan-card--agency { border-color: rgba(77,158,255,0.3); background: linear-gradient(150deg, rgba(77,158,255,0.06) 0%, var(--navy-card) 65%); }
.plan-card--agency .plan-chip { background: rgba(77,158,255,0.08); border-color: rgba(77,158,255,0.2); color: #67e8f9; }
.plan-card--agency .plan-cta-solid { background: linear-gradient(135deg,#2D6ECC,#3B82F6); box-shadow: 0 4px 20px rgba(77,158,255,0.3); }
.plan-card--consultancy { border-color: rgba(34,197,94,0.3); background: linear-gradient(150deg, rgba(34,197,94,0.06) 0%, var(--navy-card) 65%); }
.plan-card--consultancy .plan-chip { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.2); color: #6ee7b7; }
.plan-card--consultancy .plan-cta-solid { background: linear-gradient(135deg,#22D3A0,#2D6ECC); box-shadow: 0 4px 20px rgba(34,197,94,0.3); }

/* Pricing comparison table */
.pricing-compare-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 16px;
  border: 1px solid var(--navy-border);
}
.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.pricing-compare-table thead th {
  padding: 20px 14px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--grey);
  background: var(--navy-card);
  border-bottom: 1px solid var(--navy-border);
}
.pricing-compare-table thead .col-featured {
  background: rgba(77,158,255,0.06);
  color: var(--blue-bright);
}
.pricing-compare-table thead .col-plan-name {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}
.pricing-compare-table thead .col-plan-price {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 2px;
}
.pricing-compare-table thead .col-plan-price span {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--grey);
}
.pricing-compare-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.015); }
.pricing-compare-table tbody td {
  padding: 13px 14px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--grey-light);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-compare-table tbody td.col-featured { background: rgba(77,158,255,0.03); }
.pricing-compare-table tbody td.feature-label {
  text-align: left;
  color: var(--grey-light);
  font-weight: 500;
  padding-left: 20px;
}
.pricing-compare-table tbody tr.section-row td {
  background: rgba(255,255,255,0.025);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey);
  padding: 10px 14px 10px 20px;
  text-align: left;
  border-bottom: 1px solid var(--navy-border);
}
.ct-check { color: var(--green); font-weight: 800; font-size: 1rem; }
.ct-cross { color: rgba(255,255,255,0.12); font-size: 1rem; }
.ct-note  { font-size: 0.72rem; color: var(--grey); display: block; margin-top: 1px; }

/* Agency maths section */
.pricing-maths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.pricing-maths-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}
.pricing-maths-plan {
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey);
  margin-bottom: 14px;
}
.pricing-maths-rate {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.pricing-maths-rate span { font-size: 0.85rem; font-weight: 400; -webkit-text-fill-color: var(--grey); }
.pricing-maths-sub {
  font-size: 0.78rem;
  color: var(--grey-light);
  margin-top: 10px;
  line-height: 1.65;
}

/* Pricing teaser strip (used on index.html) */
.pricing-teaser-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 680px;
  margin: 0 auto 40px;
}
.pricing-teaser-pill {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}
.pricing-teaser-pill--featured {
  border-color: var(--blue);
  background: linear-gradient(150deg, rgba(77,158,255,0.08) 0%, var(--navy-card) 65%);
}
.ptp-price { font-size: 1.6rem; font-weight: 900; color: var(--white); line-height: 1; }
.ptp-name  { font-size: 0.75rem; font-weight: 700; color: var(--grey-light); margin-top: 4px; }
.ptp-desc  { font-size: 0.7rem; color: var(--grey); margin-top: 4px; }
.pricing-teaser-pill--featured .ptp-price { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

@media (max-width: 960px) {
  .plans-grid-2 { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-maths-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .pricing-maths-grid { grid-template-columns: 1fr; }
  .pricing-teaser-strip { grid-template-columns: 1fr; max-width: 320px; }
}
