/* =========================================================
   ZeroNovax — Design Tokens
   Palette:
     --ink        #0B0F19  base background, deep ink-green-black
     --surface    #101725  raised panels
     --surface-2  #151F32  cards, inputs
     --paper      #F7F9FC  primary text, soft paper white
     --muted      #9AA6B8  secondary text
     --gold       #2563EB  signal accent — editorial/authority
     --teal       #60A5FA  link accent — network/connection
   Type:
     Display — Fraunces (editorial serif, used with restraint)
     Body    — Inter (functional grotesque)
     Mono    — IBM Plex Mono (data, URLs, stats)
   ========================================================= */

:root {
  --ink: #0B0F19;
  --surface: #101725;
  --surface-2: #151F32;
  --paper: #F7F9FC;
  --muted: #9AA6B8;
  --gold: #2563EB;
  --gold-dim: #1D4ED8;
  --teal: #60A5FA;
  --line: rgba(243, 241, 234, 0.09);
  --line-strong: rgba(243, 241, 234, 0.16);

  --font-display: 'Fraunces', 'Iowan Old Style', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', monospace;

  --container: 1200px;
  --radius-sm: 3px;
  --radius-md: 6px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--paper);
}

section { padding: 108px 0; border-top: 1px solid var(--line); }
section:first-of-type { border-top: none; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); color: var(--paper); }
.section-head p { margin-top: 16px; font-size: 17px; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.4s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.18);
}
.btn-primary:hover {
  background: #3B82F6;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 8px 24px rgba(96, 165, 250, 0.12);
  background: rgba(96, 165, 250, 0.06);
}
.btn-block { width: 100%; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 25, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.logo > img {
  display: none;
}
.logo .brand-name {
  color: var(--paper);
}
.logo .brand-name > span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -31px;
  height: 2px;
  background: var(--gold);
}
.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px; height: 24px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0; height: 1.5px;
  background: var(--paper); transition: all 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle.open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 32px 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a.active::after { display: none; }
  .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
}

/* =========================================================
   Hero + Link Graph signature
   ========================================================= */
.hero {
  padding: 84px 0 60px;
  border-top: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  color: var(--paper);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  max-width: 480px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-note {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
}

.graph-wrap { position: relative; }
.graph-wrap svg { width: 100%; height: auto; }
.graph-node-label {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: var(--muted);
  letter-spacing: 0.04em;
}
.graph-path {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1;
}
.graph-pulse {
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 6 220;
  animation: pulse-travel 4.5s linear infinite;
  opacity: 0.9;
}
.graph-pulse.gold { stroke: var(--gold); }
.graph-pulse:nth-child(1) { animation-delay: 0s; }
.graph-pulse:nth-child(2) { animation-delay: -1.1s; }
.graph-pulse:nth-child(3) { animation-delay: -2.3s; }
.graph-pulse:nth-child(4) { animation-delay: -3.4s; }
@keyframes pulse-travel {
  0% { stroke-dashoffset: 226; }
  100% { stroke-dashoffset: 0; }
}
.graph-node { fill: var(--surface-2); stroke: var(--line-strong); stroke-width: 1; }
.graph-node.center { fill: var(--gold); stroke: none; }
.graph-node.active { stroke: var(--teal); }

/* =========================================================
   Stat strip
   ========================================================= */
.stat-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--paper);
  font-weight: 500;
}
.stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 760px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
}

/* =========================================================
   Service cards
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--ink);
  padding: 38px 32px;
  transition: background 0.3s ease;
  position: relative;
}
.service-card:hover { background: var(--surface); }
.service-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 21px;
  color: var(--paper);
  margin-bottom: 12px;
}
.service-card p { font-size: 14.5px; margin-bottom: 0; }
.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  position: absolute;
  top: 38px; right: 32px;
}
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Process
   ========================================================= */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step {
  border-top: 2px solid var(--gold);
  padding-top: 20px;
}
.process-step .num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--paper);
  opacity: 0.16;
  line-height: 1;
  margin-bottom: 4px;
}
.process-step h3 {
  font-size: 18.5px;
  color: var(--paper);
  margin: 14px 0 10px;
}
.process-step p { font-size: 14px; margin: 0; }
@media (max-width: 900px) {
  .process-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-list { grid-template-columns: 1fr; }
}

/* =========================================================
   Testimonials
   ========================================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--paper);
  font-style: italic;
  margin-bottom: 22px;
}
.testi-name { font-size: 14px; color: var(--paper); font-weight: 600; }
.testi-role { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
@media (max-width: 900px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Blog
   ========================================================= */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.post-card {
  background: var(--ink);
  padding: 32px;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover { background: var(--surface); }
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-meta .cat { color: var(--gold); }
.post-card h3 {
  font-size: 20px;
  color: var(--paper);
  margin-bottom: 10px;
  line-height: 1.22;
}
.post-card p { font-size: 14px; margin-bottom: 18px; flex-grow: 1; }
.post-link {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 44px;
  margin-bottom: 56px;
}
.post-featured .post-meta { margin-bottom: 22px; }
.post-featured h2 { font-size: clamp(24px, 3vw, 32px); color: var(--paper); margin-bottom: 16px; }
.post-featured p { font-size: 15.5px; }
.post-index {
  font-family: var(--font-mono);
  font-size: 42px;
  color: var(--line-strong);
  line-height: 1;
}
@media (max-width: 900px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-featured { grid-template-columns: 1fr; padding: 32px; }
}
@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Pricing
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--gold);
  background: var(--surface-2);
  position: relative;
}
.price-card.featured::before {
  content: 'Most booked';
  position: absolute;
  top: -13px; left: 30px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.price-tier { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal); font-family: var(--font-mono); }
.price-amount { font-family: var(--font-display); font-size: 44px; color: var(--paper); margin: 14px 0 4px; }
.price-amount span { font-family: var(--font-body); font-size: 14px; color: var(--muted); font-weight: 400; }
.price-desc { font-size: 14px; margin-bottom: 26px; }
.price-features { margin-bottom: 30px; flex-grow: 1; }
.price-features li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--paper);
  padding: 9px 0;
  border-top: 1px solid var(--line);
}
.price-features li:first-child { border-top: none; }
.price-features li::before {
  content: '';
  min-width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-note {
  margin-top: 40px;
  border: 1px dashed var(--line-strong);
  padding: 24px 28px;
  font-size: 14.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================================================
   About page bits
   ========================================================= */
.about-hero {
  padding-top: 84px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}
.value-list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 8px; }
.value-item .num { font-family: var(--font-mono); color: var(--gold); font-size: 12px; }
.value-item h4 { font-size: 17px; color: var(--paper); margin: 10px 0 8px; }
.value-item p { font-size: 14px; }
@media (max-width: 560px) { .value-list { grid-template-columns: 1fr; } }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  color: var(--paper);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

.contact-info-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-info-item:first-child { border-top: none; padding-top: 0; }
.contact-info-item .label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.contact-info-item .val { font-size: 16px; color: var(--paper); margin-top: 8px; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: var(--surface);
  text-align: left;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); max-width: 560px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent 0%, rgba(247, 249, 252, 0.02) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--paper);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer-col a:hover { color: var(--paper); }
.footer-brand p { max-width: 260px; font-size: 14px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Page hero (inner pages)
   ========================================================= */
.page-hero {
  padding: 84px 0 56px;
  border-top: none;
}
.page-hero h1 { font-size: clamp(34px, 4.6vw, 52px); color: var(--paper); }
.page-hero p { max-width: 560px; margin-top: 20px; font-size: 17px; }

@media (max-width: 760px) {
  section { padding: 72px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .graph-wrap { order: -1; max-width: 380px; margin: 0 auto 20px; }
  .stat-grid { text-align: left; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   ZeroNovax — Logo-aligned blue theme refinements
   ========================================================= */
:root {
  --accent-blue: #2563EB;
  --accent-blue-bright: #3B82F6;
  --accent-blue-soft: #60A5FA;
}
.btn-primary {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.18);
}
.btn-primary:hover {
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.28);
}
.graph-node.center {
  filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.28));
}

/* =========================================================
   Free SEO Audit section
   ========================================================= */
.audit-section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.audit-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.audit-form-wrap {
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: var(--radius-md);
}
.audit-form-wrap h3 {
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 8px;
}
.audit-form-wrap > p {
  font-size: 14.5px;
  margin-bottom: 24px;
}
.audit-input-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.audit-input-row input {
  flex: 1;
  min-width: 200px;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  color: var(--paper);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease;
}
.audit-input-row input:focus {
  outline: none;
  border-color: var(--teal);
}
.audit-input-row input::placeholder {
  color: var(--muted);
}
.audit-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.audit-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.audit-benefit .icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 13px;
}
.audit-benefit h4 {
  font-size: 15px;
  color: var(--paper);
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-weight: 600;
}
.audit-benefit p {
  font-size: 13px;
  margin: 0;
}
.audit-status {
  margin-top: 14px;
  font-size: 13px;
  color: var(--teal);
  font-family: var(--font-mono);
}
@media (max-width: 860px) {
  .audit-inner { grid-template-columns: 1fr; gap: 32px; }
  .audit-benefits { grid-template-columns: 1fr; }
}

/* =========================================================
   Enhanced service cards (more prominent)
   ========================================================= */
.service-grid {
  gap: 16px;
  background: transparent;
  border: none;
}
.service-card {
  padding: 40px 32px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: background 0.3s ease, transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: transparent;
  transition: background 0.3s ease;
}
.service-card:hover {
  background: var(--surface-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(37, 99, 235, 0.35);
  z-index: 1;
}
.service-card:hover::before {
  background: var(--gold);
}
.service-card a.service-link {
  display: block;
  color: inherit;
  height: 100%;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}
.service-card p {
  font-size: 15px;
  line-height: 1.55;
}
.service-tag {
  font-size: 11px;
  padding: 4px 10px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}
.service-num {
  top: 36px;
  right: 28px;
  font-size: 13px;
  color: var(--gold);
  opacity: 0.7;
}
.service-card .service-cta {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
  font-weight: 500;
  transition: opacity 0.2s ease, gap 0.2s ease, color 0.2s ease;
}
.service-card:hover .service-cta {
  opacity: 1;
  gap: 12px;
  color: var(--gold);
}
@media (max-width: 900px) {
  .service-grid {
    gap: 12px;
  }
}

/* =========================================================
   SEO Growth Chart (hero animation replacement)
   ========================================================= */
.growth-chart {
  width: 100%;
  height: auto;
}
.growth-chart .axis {
  stroke: var(--line-strong);
  stroke-width: 1;
  fill: none;
}
.growth-chart .grid-line {
  stroke: var(--line);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}
.growth-chart .bar {
  fill: var(--gold);
  opacity: 0.85;
  transform-origin: bottom;
  animation: bar-rise 1.4s var(--ease) both;
}
.growth-chart .bar:nth-child(1) { animation-delay: 0.1s; }
.growth-chart .bar:nth-child(2) { animation-delay: 0.25s; }
.growth-chart .bar:nth-child(3) { animation-delay: 0.4s; }
.growth-chart .bar:nth-child(4) { animation-delay: 0.55s; }
.growth-chart .bar:nth-child(5) { animation-delay: 0.7s; }
.growth-chart .bar:nth-child(6) { animation-delay: 0.85s; }
.growth-chart .line-path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: line-draw 2s var(--ease) 0.6s forwards;
}
.growth-chart .line-dot {
  fill: var(--teal);
  opacity: 0;
  animation: dot-fade 0.4s ease forwards;
}
.growth-chart .line-dot:nth-of-type(1) { animation-delay: 0.9s; }
.growth-chart .line-dot:nth-of-type(2) { animation-delay: 1.15s; }
.growth-chart .line-dot:nth-of-type(3) { animation-delay: 1.4s; }
.growth-chart .line-dot:nth-of-type(4) { animation-delay: 1.65s; }
.growth-chart .line-dot:nth-of-type(5) { animation-delay: 1.9s; }
.growth-chart .line-dot:nth-of-type(6) { animation-delay: 2.15s; }
.growth-chart .chart-label {
  font-family: var(--font-mono);
  font-size: 11px;
  fill: var(--muted);
}
.growth-chart .rank-label {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: var(--paper);
  opacity: 0;
  animation: dot-fade 0.4s ease forwards;
}
@keyframes bar-rise {
  from { transform: scaleY(0); opacity: 0.3; }
  to { transform: scaleY(1); opacity: 0.85; }
}
@keyframes line-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes dot-fade {
  to { opacity: 1; }
}

/* =========================================================
   Service detail pages
   ========================================================= */
.svc-overview {
  max-width: 720px;
}
.svc-overview p {
  font-size: 17px;
  line-height: 1.65;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px 24px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.benefit-card:hover {
  background: var(--surface-2);
  border-color: var(--line-strong);
}
.benefit-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 12px;
}
.benefit-card h3 {
  font-size: 18px;
  color: var(--paper);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 14px;
  margin: 0;
}
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
.feature-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.feature-item .check {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}
.feature-item h4 {
  font-size: 15.5px;
  color: var(--paper);
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-weight: 600;
}
.feature-item p {
  font-size: 13.5px;
  margin: 0;
}
@media (max-width: 700px) {
  .features-list { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list {
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 500;
}
.faq-item button:hover { color: var(--teal); }
.faq-item .faq-icon {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 15px;
  margin: 0;
  max-width: 640px;
}

/* Contact strip on service pages */
.svc-contact {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.svc-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) {
  .svc-contact-inner { grid-template-columns: 1fr; }
}

/* Service page process (reuse process-list) */
.process-list.svc-process {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .process-list.svc-process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-list.svc-process { grid-template-columns: 1fr; }
}

/* =========================================================
   Animated hover effects (site-wide)
   ========================================================= */

/* --- Nav links --- */
.nav-links a {
  transition: color 0.25s ease, transform 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--paper);
  transform: translateY(-1px);
}
.nav-links a.active::after {
  transition: transform 0.35s var(--ease), opacity 0.35s ease;
  transform-origin: center;
}
.nav-links a:not(.active):hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -31px;
  height: 2px;
  background: var(--teal);
  opacity: 0.5;
  transform: scaleX(0.6);
}

/* --- Logo (text only) --- */
.logo {
  transition: opacity 0.3s ease, transform 0.35s var(--ease);
}
.logo:hover {
  opacity: 0.92;
  transform: scale(1.02);
}
.logo:hover .brand-name > span {
  text-shadow: 0 0 16px rgba(37, 99, 235, 0.45);
}

/* --- Service cards (extra polish) --- */
.service-card {
  transition:
    background 0.35s ease,
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.35s ease;
}
.service-card::before {
  transition: background 0.35s ease, height 0.45s var(--ease), width 0.45s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(37, 99, 235, 0.2);
}
.service-card h3 {
  transition: color 0.3s ease;
}
.service-card:hover h3 {
  color: #fff;
}
.service-card .service-num {
  transition: opacity 0.3s ease, transform 0.4s var(--ease), color 0.3s ease;
}
.service-card:hover .service-num {
  opacity: 1;
  color: var(--gold);
  transform: translateX(-4px);
}
.service-card .service-cta {
  transition: opacity 0.3s ease, gap 0.35s var(--ease), color 0.3s ease, transform 0.35s var(--ease);
}
.service-card:hover .service-cta {
  transform: translateX(4px);
}

/* --- Process steps --- */
.process-step {
  transition: transform 0.4s var(--ease), border-color 0.3s ease;
  border-top-color: var(--gold);
}
.process-step:hover {
  transform: translateY(-4px);
}
.process-step .num {
  transition: letter-spacing 0.35s var(--ease), color 0.3s ease;
}
.process-step:hover .num {
  letter-spacing: 0.08em;
  color: var(--teal);
}
.process-step h3 {
  transition: color 0.3s ease;
}
.process-step:hover h3 {
  color: #fff;
}

/* --- Testimonial cards --- */
.testi-card {
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.35s ease,
    background 0.35s ease;
  border: 1px solid var(--line);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(37, 99, 235, 0.3);
  background: var(--surface-2);
}
.testi-quote {
  transition: color 0.3s ease;
}
.testi-card:hover .testi-quote {
  color: #fff;
}

/* --- Blog / post cards --- */
.post-card {
  transition:
    background 0.35s ease,
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.post-card:hover {
  background: var(--surface);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
.post-card h3 {
  transition: color 0.3s ease;
}
.post-card:hover h3 {
  color: #fff;
}
.post-link {
  transition: gap 0.35s var(--ease), color 0.3s ease, transform 0.35s var(--ease);
}
.post-card:hover .post-link {
  gap: 10px;
  color: var(--gold);
  transform: translateX(3px);
}
.post-featured {
  transition: border-color 0.35s ease, box-shadow 0.45s var(--ease), transform 0.4s var(--ease);
}
.post-featured:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}

/* --- Pricing cards --- */
.price-card {
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.35s ease,
    background 0.35s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  border-color: rgba(37, 99, 235, 0.4);
}
.price-card.featured:hover {
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--gold);
}
.price-amount {
  transition: transform 0.4s var(--ease), color 0.3s ease;
}
.price-card:hover .price-amount {
  transform: scale(1.04);
  color: #fff;
}
.price-features li {
  transition: padding-left 0.3s var(--ease), color 0.3s ease;
}
.price-card:hover .price-features li {
  padding-left: 4px;
}

/* --- Benefit cards (service pages) --- */
.benefit-card {
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.benefit-card:hover {
  background: var(--surface-2);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.benefit-card .num {
  transition: transform 0.35s var(--ease), letter-spacing 0.3s ease;
}
.benefit-card:hover .num {
  transform: translateX(3px);
  letter-spacing: 0.06em;
}
.benefit-card h3 {
  transition: color 0.3s ease;
}
.benefit-card:hover h3 {
  color: #fff;
}

/* --- Feature items --- */
.feature-item {
  transition: padding-left 0.35s var(--ease), border-color 0.3s ease;
}
.feature-item:hover {
  padding-left: 6px;
  border-bottom-color: var(--line-strong);
}
.feature-item .check {
  transition: transform 0.35s var(--ease), background 0.3s ease, box-shadow 0.35s ease;
}
.feature-item:hover .check {
  transform: scale(1.15);
  background: rgba(37, 99, 235, 0.28);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.25);
}

/* --- Audit benefits --- */
.audit-benefit {
  transition: transform 0.35s var(--ease);
}
.audit-benefit:hover {
  transform: translateX(4px);
}
.audit-benefit .icon {
  transition: transform 0.4s var(--ease), background 0.3s ease, box-shadow 0.35s ease;
}
.audit-benefit:hover .icon {
  transform: scale(1.1) rotate(-4deg);
  background: rgba(37, 99, 235, 0.22);
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.2);
}

/* --- FAQ --- */
.faq-item button {
  transition: color 0.3s ease, padding-left 0.35s var(--ease);
}
.faq-item button:hover {
  color: var(--teal);
  padding-left: 6px;
}
.faq-item .faq-icon {
  transition: transform 0.4s var(--ease), color 0.3s ease;
}
.faq-item button:hover .faq-icon {
  color: var(--teal);
}

/* --- Footer links --- */
.footer-col a {
  transition: color 0.25s ease, transform 0.3s var(--ease), padding-left 0.3s var(--ease);
  display: block;
}
.footer-col a:hover {
  color: var(--paper);
  transform: translateX(4px);
  padding-left: 2px;
}

/* --- Stat numbers --- */
.stat-num {
  transition: transform 0.4s var(--ease), color 0.3s ease;
  display: inline-block;
}
.stat-grid > div:hover .stat-num {
  transform: scale(1.06);
  color: var(--gold);
}

/* --- Contact info items --- */
.contact-info-item {
  transition: padding-left 0.35s var(--ease), border-color 0.3s ease;
}
.contact-info-item:hover {
  padding-left: 8px;
  border-top-color: var(--line-strong);
}
.contact-info-item .label {
  transition: color 0.3s ease;
}
.contact-info-item:hover .label {
  color: var(--teal);
}

/* --- Form fields --- */
.field input,
.field select,
.field textarea,
.audit-input-row input {
  transition: border-color 0.3s ease, box-shadow 0.35s var(--ease), background 0.3s ease;
}
.field input:hover,
.field select:hover,
.field textarea:hover,
.audit-input-row input:hover {
  border-color: rgba(96, 165, 250, 0.4);
}
.field input:focus,
.field select:focus,
.field textarea:focus,
.audit-input-row input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
}

/* --- CTA band --- */
.cta-band .btn-primary {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s ease;
}
.cta-band .btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
}

/* --- Value items (about / services split) --- */
.value-item {
  transition: transform 0.35s var(--ease);
}
.value-item:hover {
  transform: translateX(4px);
}
.value-item .num {
  transition: color 0.3s ease, transform 0.35s var(--ease);
}
.value-item:hover .num {
  color: var(--teal);
  transform: translateX(2px);
}
.value-item h4 {
  transition: color 0.3s ease;
}
.value-item:hover h4 {
  color: #fff;
}

/* =========================================================
   3D eye-catching animation effects
   ========================================================= */

/* Perspective containers */
.service-grid,
.pricing-grid,
.testi-grid,
.benefits-grid,
.post-grid,
.stat-grid,
.process-list {
  perspective: 1200px;
  perspective-origin: center center;
}

/* --- 3D Service cards --- */
.service-card {
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease),
    background 0.35s ease,
    border-color 0.35s ease;
}
.service-card:hover {
  transform: translateY(-10px) rotateX(6deg) rotateY(-4deg) scale(1.02);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(37, 99, 235, 0.3),
    0 0 40px rgba(37, 99, 235, 0.12);
}
.service-card:nth-child(3n+2):hover {
  transform: translateY(-10px) rotateX(6deg) rotateY(0deg) scale(1.02);
}
.service-card:nth-child(3n):hover {
  transform: translateY(-10px) rotateX(6deg) rotateY(4deg) scale(1.02);
}
.service-card .service-link,
.service-card h3,
.service-card p,
.service-card .service-cta,
.service-card .service-tag,
.service-card .service-num {
  transform: translateZ(24px);
}

/* Shine sweep on service cards */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 40%,
    rgba(96, 165, 250, 0.08) 50%,
    rgba(255, 255, 255, 0.04) 60%,
    transparent 100%
  );
  pointer-events: none;
  transition: none;
}
.service-card:hover::after {
  animation: shine-sweep 0.85s var(--ease) forwards;
}
@keyframes shine-sweep {
  from { left: -120%; }
  to { left: 140%; }
}

/* --- 3D Pricing cards --- */
.price-card {
  transform-style: preserve-3d;
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease),
    border-color 0.35s ease,
    background 0.35s ease;
}
.price-card:hover {
  transform: translateY(-12px) rotateX(5deg) scale(1.03);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(37, 99, 235, 0.35),
    0 0 48px rgba(37, 99, 235, 0.15);
}
.price-card.featured:hover {
  transform: translateY(-14px) rotateX(5deg) scale(1.04);
  box-shadow:
    0 36px 72px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--gold),
    0 0 56px rgba(37, 99, 235, 0.22);
}
.price-card .price-amount,
.price-card .price-tier,
.price-card .btn {
  transform: translateZ(20px);
}

/* --- 3D Testimonial cards --- */
.testi-card {
  transform-style: preserve-3d;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.35s ease,
    background 0.35s ease;
}
.testi-card:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-2deg) scale(1.02);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(37, 99, 235, 0.25);
}
.testi-card .testi-quote {
  transform: translateZ(16px);
}

/* --- 3D Benefit cards --- */
.benefit-card {
  transform-style: preserve-3d;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    background 0.35s ease,
    border-color 0.35s ease;
}
.benefit-card:hover {
  transform: translateY(-8px) rotateX(5deg) scale(1.02);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(37, 99, 235, 0.28);
}
.benefit-card .num,
.benefit-card h3 {
  transform: translateZ(18px);
}

/* --- 3D Blog cards --- */
.post-card {
  transform-style: preserve-3d;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    background 0.35s ease;
}
.post-card:hover {
  transform: translateY(-8px) rotateX(4deg) scale(1.015);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(37, 99, 235, 0.2);
}

/* --- 3D Buttons --- */
.btn {
  transform-style: preserve-3d;
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 14px 36px rgba(37, 99, 235, 0.4),
    0 0 24px rgba(37, 99, 235, 0.2);
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}
.btn-outline:hover {
  transform: translateY(-3px) scale(1.03);
}

/* --- Logo text hover glow --- */
.logo .brand-name > span {
  transition: text-shadow 0.4s ease, color 0.3s ease;
}

/* --- Floating ambient motion --- */
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.graph-wrap {
  animation: float-gentle 5s ease-in-out infinite;
  transform-style: preserve-3d;
}
.graph-wrap:hover {
  animation-play-state: paused;
}
.growth-chart {
  transition: transform 0.6s var(--ease), filter 0.4s ease;
  transform-style: preserve-3d;
}
.graph-wrap:hover .growth-chart {
  transform: rotateY(-8deg) rotateX(4deg) scale(1.03);
  filter: drop-shadow(0 12px 28px rgba(37, 99, 235, 0.25));
}

/* Priority / featured cards gentle float */
.service-card:has(.service-tag),
.price-card.featured {
  animation: float-gentle 6s ease-in-out infinite;
  animation-delay: 0.5s;
}
.service-card:has(.service-tag):hover,
.price-card.featured:hover {
  animation-play-state: paused;
}

/* --- Stats 3D pop --- */
.stat-grid > div {
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease);
}
.stat-grid > div:hover {
  transform: translateZ(20px) scale(1.05);
}
.stat-num {
  transition: transform 0.45s var(--ease), color 0.3s ease, text-shadow 0.4s ease;
}
.stat-grid > div:hover .stat-num {
  transform: scale(1.12) translateZ(12px);
  color: var(--gold);
  text-shadow: 0 0 24px rgba(37, 99, 235, 0.45);
}

/* --- Process steps 3D --- */
.process-step {
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease), border-color 0.3s ease;
}
.process-step:hover {
  transform: translateY(-6px) rotateX(4deg) translateZ(8px);
}
.process-step .num {
  transition: transform 0.4s var(--ease), color 0.3s ease, letter-spacing 0.3s ease, opacity 0.3s ease;
}
.process-step:hover .num {
  transform: translateZ(16px) scale(1.1);
  color: var(--teal);
  opacity: 0.4;
}

/* --- Audit form 3D --- */
.audit-form-wrap {
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.35s ease;
}
.audit-form-wrap:hover {
  transform: translateY(-6px) rotateX(3deg);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(37, 99, 235, 0.25);
}

/* --- CTA band pulse glow --- */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 99, 235, 0.22); }
  50% { box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4), 0 0 20px rgba(37, 99, 235, 0.15); }
}
.cta-band .btn-primary {
  animation: pulse-glow 2.8s ease-in-out infinite;
}
.cta-band .btn-primary:hover {
  animation-play-state: paused;
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 16px 40px rgba(37, 99, 235, 0.45),
    0 0 32px rgba(37, 99, 235, 0.25);
}

/* --- Feature check 3D spin --- */
.feature-item .check {
  transition: transform 0.5s var(--ease), background 0.3s ease, box-shadow 0.35s ease;
}
.feature-item:hover .check {
  transform: scale(1.2) rotateY(360deg);
  background: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.35);
}

/* --- Nav CTA micro 3D --- */
.nav-cta .btn-outline {
  transition: transform 0.4s var(--ease), border-color 0.3s ease, color 0.3s ease, box-shadow 0.4s var(--ease), background 0.3s ease;
}
.nav-cta .btn-outline:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px rgba(96, 165, 250, 0.18);
}

/* Mobile: lighter 3D (lift only, no heavy rotates) */
@media (max-width: 900px) {
  .service-card:hover,
  .service-card:nth-child(3n+2):hover,
  .service-card:nth-child(3n):hover {
    transform: translateY(-6px) scale(1.01);
  }
  .price-card:hover,
  .price-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
  }
  .testi-card:hover,
  .benefit-card:hover,
  .post-card:hover {
    transform: translateY(-5px) scale(1.01);
  }
  .graph-wrap:hover .growth-chart {
    transform: scale(1.02);
  }
}

/* Respect reduced motion — disable 3D & float */
@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .service-card:nth-child(3n+2):hover,
  .service-card:nth-child(3n):hover,
  .testi-card:hover,
  .post-card:hover,
  .price-card:hover,
  .price-card.featured:hover,
  .benefit-card:hover,
  .process-step:hover,
  .btn:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .logo:hover,
  .logo:hover > img,
  .stat-grid > div:hover,
  .stat-grid > div:hover .stat-num,
  .graph-wrap:hover .growth-chart,
  .audit-form-wrap:hover,
  .cta-band .btn-primary:hover {
    transform: none !important;
    animation: none !important;
  }
  .graph-wrap,
  .service-card:has(.service-tag),
  .price-card.featured,
  .cta-band .btn-primary {
    animation: none !important;
  }
  .service-card:hover::after {
    animation: none !important;
  }
}

/* =========================================================
   Touch devices: neutralize hover-triggered transforms
   Prevents cards/buttons from looking "stuck" mid-tilt/lift
   after a tap on phones & tablets (no real mouse hover there).
   Placed last so it wins the cascade over the effects above.
   ========================================================= */
@media (hover: none) {
  .service-card:hover,
  .service-card:nth-child(3n+2):hover,
  .service-card:nth-child(3n):hover,
  .price-card:hover,
  .price-card.featured:hover,
  .testi-card:hover,
  .benefit-card:hover,
  .post-card:hover,
  .process-step:hover,
  .value-item:hover,
  .contact-info-item:hover,
  .stat-grid > div:hover,
  .graph-wrap:hover .growth-chart,
  .audit-form-wrap:hover,
  .logo:hover,
  .btn:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .nav-cta .btn-outline:hover,
  .cta-band .btn-primary:hover,
  .post-featured:hover {
    transform: none;
  }
  .service-card:hover::after {
    left: -120%;
  }
}
