/* ==========================================================================
   EZ Web — SEO + GEO engine. Shared styles (index + other-services).
   ========================================================================== */
:root {
  --bg: #0b0c0f;
  --bg-2: #121419;
  --panel: #16181d;
  --line: rgba(255, 255, 255, 0.10);
  --ink: #fbfcfd;
  --muted: #c2c9d2;
  --lime: #a6ff2e;
  --lime-soft: #c8ff7a;
  --lime-deep: #74c400;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.85);
  --ease: cubic-bezier(.22,.7,.2,1);
  --wrap: min(1180px, 92vw);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", -apple-system, sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.65; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

h1, h2, h3, .display { font-family: "Bricolage Grotesque", "Inter", sans-serif; font-weight: 800; letter-spacing: -.025em; line-height: 1.02; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
.shot img { width: 100%; height: auto; }
.wrap { width: var(--wrap); margin-inline: auto; }
.lime { color: var(--lime); }
.mono { font-family: "JetBrains Mono", monospace; }

/* background atmosphere + grain */
.atmos { position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background: radial-gradient(130% 90% at 50% -15%, #15171c, var(--bg) 60%); }
.grain { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
/* large faint growth glyph artifacts (decorative) */
.bg-glyph { position: absolute; pointer-events: none; z-index: 0; color: rgba(166,255,53,.04); }

.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 100; background: var(--lime); }

/* ---------- Nav ---------- */
header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); background: rgba(11,12,15,.72); border-bottom: 1px solid rgba(255,255,255,.06); }
nav { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
.logo { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 1.5rem; letter-spacing: .01em; display: flex; align-items: center; gap: .12em; }
.logo b { color: var(--lime); } .logo span { color: #fff; }
.nav-links { display: flex; gap: 28px; align-items: center; font-size: .92rem; color: var(--muted); font-weight: 500; }
.nav-links a.lnk { position: relative; transition: color .2s; }
.nav-links a.lnk:hover { color: var(--ink); }
.nav-cta { display: inline-flex; }
@media (max-width: 820px) { .nav-links a.lnk { display: none; } }

/* ---------- Buttons (lime = primary CTA only) ---------- */
.btn { position: relative; display: inline-flex; align-items: center; gap: 10px; background: var(--lime); color: #0b0c0f; font-weight: 700;
  padding: 14px 24px; border-radius: 10px; font-family: "Inter", sans-serif; font-size: .95rem; line-height: 1;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  box-shadow: 0 10px 34px -12px rgba(166,255,53,.5); }
.btn:hover { background: var(--lime-soft); transform: translateY(-2px); box-shadow: 0 16px 44px -14px rgba(166,255,53,.7); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none; font-weight: 600; }
.btn.ghost:hover { border-color: rgba(255,255,255,.35); background: transparent; box-shadow: none; }
.btn.lg { padding: 17px 30px; font-size: 1.02rem; border-radius: 12px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-note { font-size: .82rem; color: var(--muted); margin-top: 14px; display: flex; align-items: center; gap: 8px; }
.cta-note svg { width: 15px; height: 15px; color: var(--lime); flex: none; }

/* ---------- Sections + shaped dividers ---------- */
main { position: relative; z-index: 1; }
section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.alt { background: var(--bg-2); }
.eyebrow { display: inline-flex; align-items: center; gap: 11px; font-family: "JetBrains Mono", monospace; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--lime); }
.sec-head { max-width: 760px; margin-bottom: 60px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 { font-size: clamp(2.4rem, 6.4vw, 4.6rem); margin: 18px 0 18px; }
.sec-head p { color: var(--muted); font-size: 1.08rem; max-width: 600px; }
.sec-head.center p { margin-inline: auto; }
/* organic curve divider */
.divider { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 2; pointer-events: none; }
.divider.top { top: -1px; } .divider.bottom { bottom: -1px; }
.divider svg { width: 100%; height: clamp(40px, 6vw, 90px); display: block; }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 8vw, 96px) 0 clamp(70px, 9vw, 120px); position: relative; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.04fr 1.16fr; gap: 40px; } }
.hero-copy { position: relative; z-index: 3; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); margin: 26px 0 0; }
.hero h1 .ln { display: block; }
.hero p.lead { color: var(--muted); font-size: clamp(1.08rem, 2.2vw, 1.32rem); max-width: 540px; margin: 26px 0 34px; }
/* full-width trust band below the hero grid */
.hero-trust-strip { margin-top: clamp(46px, 6vw, 84px); padding-top: 30px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; }
.hero-trust-strip .lbl { font-family: "JetBrains Mono", monospace; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); opacity: .8; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px; align-items: center; margin-top: 22px; }
.trust-logos a, .trust-logos span { font-weight: 600; font-size: 1rem; color: var(--muted); transition: color .25s; }
.trust-logos a:hover { color: var(--ink); }
/* logo images (used once real transparent logo files are supplied) */
.trust-logos img { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: .6; transition: opacity .25s; }
.trust-logos a:hover img { opacity: 1; }

/* hero visual: Google result + AI answer mockup */
.hero-visual { position: relative; min-height: 470px; z-index: 1; }
@media (max-width: 959px) {
  .hero-visual { min-height: 0; display: grid; gap: 18px; margin-top: 8px; }
}

/* ---------- Hero outcome visual (Google result + AI answer) ---------- */
.out-card { position: absolute; border-radius: 16px; box-shadow: 0 44px 90px -36px rgba(0,0,0,.95); }
/* Google result, light, real palette */
.out-card.serp { width: 80%; right: 0; top: 0; z-index: 3; background: #fff; border: 1px solid #e6e9ec; padding: 16px 18px 18px; color: #202124; }
.g-top { display: flex; align-items: center; gap: 13px; padding-bottom: 13px; border-bottom: 1px solid #edf0f2; margin-bottom: 15px; }
.g-logo { font-family: Arial, sans-serif; font-weight: 500; font-size: 1.04rem; letter-spacing: -.02em; flex: none; }
.g-search { flex: 1; display: flex; align-items: center; gap: 8px; border: 1px solid #dfe1e5; border-radius: 999px; padding: 7px 13px; color: #3c4043; font-size: .8rem; white-space: nowrap; overflow: hidden; box-shadow: 0 1px 5px rgba(32,33,36,.08); }
.g-search svg { width: 14px; height: 14px; flex: none; }
.g-crumb { display: flex; align-items: center; gap: 10px; font-size: .74rem; color: #4d5156; }
.g-crumb .fav { width: 24px; height: 24px; border-radius: 50%; background: #f1f3f4; color: #1a73e8; display: grid; place-items: center; font-size: .72rem; font-weight: 700; flex: none; border: 1px solid #e6e9ec; }
.g-name { color: #202124; font-weight: 500; line-height: 1.15; }
.g-url { color: #5f6368; }
.g-title { display: block; color: #1a0dab; font-family: Arial, sans-serif; font-size: 1.16rem; font-weight: 400; line-height: 1.3; margin: 8px 0 4px; }
.g-snip { color: #4d5156; font-size: .84rem; line-height: 1.5; }
.rank-chip { display: inline-flex; align-items: center; gap: 7px; margin-top: 13px; background: #e6f4ea; color: #137333; font-size: .7rem; font-weight: 600; padding: 4px 11px 4px 9px; border-radius: 999px; }
.rank-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #34a853; }
/* AI answer, dark + sleek */
.out-card.ai { width: 68%; left: 0; top: 60%; z-index: 4; overflow: hidden; padding: 18px 20px 20px;
  background: radial-gradient(130% 100% at 0% 0%, rgba(166,255,53,.09), transparent 46%), linear-gradient(180deg, #171a20, #101216);
  border: 1px solid rgba(255,255,255,.12); box-shadow: 0 44px 90px -34px rgba(0,0,0,.95), inset 0 1px 0 rgba(255,255,255,.05); }
.out-card.ai::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #a6ff2e, #38bdf8, #a78bfa, #a6ff2e); background-size: 200% 100%; animation: ez-shim 5s linear infinite; }
@keyframes ez-shim { to { background-position: 200% 0; } }
.ai-top { display: flex; align-items: center; gap: 9px; font-family: "JetBrains Mono", monospace; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 13px; }
.ai-ic { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: rgba(166,255,53,.16); color: var(--lime); box-shadow: 0 0 18px -4px rgba(166,255,53,.5); }
.ai-ic svg { width: 15px; height: 15px; }
.ai-a { font-size: .95rem; line-height: 1.62; color: #eef1f4; }
.ai-a b { color: #fff; }
.cite { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; background: rgba(10,11,14,.7); border: 1px solid var(--line); border-radius: 999px; padding: 5px 6px 5px 7px; font-size: .76rem; color: #cdd4dd; }
.cite .fav.sm { width: 17px; height: 17px; border-radius: 50%; background: #1a73e8; color: #fff; display: grid; place-items: center; font-size: .58rem; font-weight: 700; flex: none; }
.cite-dom { font-weight: 500; }
.cite-tag { font-family: "JetBrains Mono", monospace; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--lime); background: rgba(166,255,53,.14); border-radius: 999px; padding: 3px 8px; }
/* Expert reviewed: applied verification seal on the result */
.float-badge { position: absolute; z-index: 6; bottom: -15px; right: -12px; display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #c8ff7a, #a6ff2e); color: #0b0c0f; font-weight: 700; font-size: .78rem; padding: 8px 15px 8px 10px; border-radius: 999px;
  box-shadow: 0 12px 26px -12px rgba(166,255,53,.55), 0 0 0 4px var(--bg); transform: rotate(-2deg); }
.float-badge svg { width: 17px; height: 17px; flex: none; padding: 3px; box-sizing: border-box; background: #0b0c0f; color: var(--lime); border-radius: 50%; }
@media (max-width: 959px) {
  .out-card { position: static; width: 100% !important; margin-bottom: 24px; }
  .out-card.serp { position: relative; }
  .float-badge { bottom: -14px; right: 14px; }
}

/* ---------- Stakes ---------- */
.stakes h2 { font-size: clamp(2.2rem, 5.6vw, 4rem); max-width: 880px; }
.stakes .lead { color: var(--muted); font-size: 1.12rem; max-width: 640px; margin-top: 22px; }
.stakes .row { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 54px; }
@media (min-width: 760px) { .stakes .row { grid-template-columns: repeat(3, 1fr); } }
.stat-card { padding: 30px 26px; border: 1px solid var(--line); border-radius: 6px; background: var(--panel); position: relative; }
.stat-card .big { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.2rem); color: var(--lime); line-height: 1; }
.stat-card p { color: var(--muted); margin-top: 12px; font-size: .96rem; }

/* ---------- Benefits (asymmetric alternating) ---------- */
.benefit { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; padding: clamp(28px,5vw,52px) 0; border-top: 1px solid var(--line); }
.benefit:first-of-type { border-top: none; }
@media (min-width: 860px) {
  .benefit { grid-template-columns: 1fr 1fr; gap: 60px; }
  .benefit.flip .b-media { order: 2; }
}
.benefit .b-ix { font-family: "JetBrains Mono", monospace; color: var(--lime); font-size: .8rem; letter-spacing: .1em; }
.benefit h3 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 14px 0 14px; }
.benefit p { color: var(--muted); font-size: 1.05rem; max-width: 520px; }
.b-media { position: relative; border-radius: 10px; border: 1px solid var(--line); background: linear-gradient(160deg, #14171d, #0d0f13); aspect-ratio: 16/11; overflow: hidden; display: grid; place-items: center; padding: 22px; }
.b-media svg.mini { width: 100%; height: auto; }

/* ---------- How it works (pinned) ---------- */
.how-wrap { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 960px) { .how-wrap { grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; } }
.how-sticky { position: relative; }
@media (min-width: 960px) { .how-sticky { position: sticky; top: 120px; } }
.how-sticky .num { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(4rem, 9vw, 7rem); color: var(--lime); line-height: 1; }
.how-sticky h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 6px 0 14px; }
.how-sticky p { color: var(--muted); max-width: 440px; }
.how-steps { display: flex; flex-direction: column; gap: 16px; }
.how-step { padding: 24px 26px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); transition: border-color .3s, background .3s, transform .3s; }
.how-step .st-n { font-family: "JetBrains Mono", monospace; font-size: .74rem; color: var(--lime); letter-spacing: .1em; }
.how-step h4 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.3rem; margin: 8px 0 8px; }
.how-step p { color: var(--muted); font-size: .98rem; }
.how-step.active { border-color: rgba(166,255,53,.5); background: #181b15; }

/* ---------- Brand voice ---------- */
.voice-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 880px) { .voice-grid { grid-template-columns: 1.05fr .95fr; gap: 56px; } }
.voice-card { border: 1px solid var(--line); border-radius: 10px; background: var(--panel); padding: 26px; box-shadow: var(--shadow); }
.voice-line { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px dashed rgba(255,255,255,.08); color: var(--muted); font-size: .96rem; }
.voice-line:last-child { border-bottom: none; }
.voice-line .tick { width: 22px; height: 22px; border-radius: 50%; background: rgba(166,255,53,.14); color: var(--lime); display: grid; place-items: center; flex: none; }
.voice-line .tick svg { width: 13px; height: 13px; }

/* ---------- Proof ---------- */
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 64px; }
@media (min-width: 760px) { .metrics { grid-template-columns: repeat(4, 1fr); } }
.metric { text-align: center; padding: 26px 14px; border: 1px solid var(--line); border-radius: 6px; background: var(--panel); }
.metric .m-n { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--lime); line-height: 1; }
.metric .m-l { color: var(--muted); font-size: .88rem; margin-top: 10px; }
.work-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 60px; }
@media (min-width: 760px) { .work-row { grid-template-columns: repeat(3, 1fr); } }
.work-card { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #0a0b0e; }
.work-card img { width: 100%; height: auto; }
.work-card .cap { padding: 12px 16px; font-size: .86rem; color: var(--muted); }
.t-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .t-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card { padding: 28px 26px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.t-card .quote { font-size: 1.05rem; line-height: 1.6; }
.t-card .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.t-card .who .av { width: 40px; height: 40px; border-radius: 50%; background: rgba(166,255,53,.14); color: var(--lime); display: grid; place-items: center; font-weight: 700; flex: none; }
.t-card .who .nm { font-weight: 600; font-size: .92rem; }
.t-card .who .rl { color: var(--muted); font-size: .82rem; }

/* ---------- Founder ---------- */
.founder-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 860px) { .founder-grid { grid-template-columns: .8fr 1.2fr; gap: 60px; } }
.founder-photo { position: relative; max-width: 360px; }
@media (max-width: 859px) { .founder-photo { margin-inline: auto; } }
.founder-photo::before { content: ""; position: absolute; top: -18px; right: -18px; width: 64%; height: 64%; background: radial-gradient(circle at 70% 30%, rgba(166,255,53,.22), transparent 70%); filter: blur(34px); z-index: 0; pointer-events: none; }
.founder-photo img { position: relative; z-index: 1; width: 100%; border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.founder-copy h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin: 16px 0 18px; }
.founder-copy .lead { color: var(--muted); font-size: 1.14rem; margin-bottom: 16px; }
.founder-copy p { color: var(--muted); }
.founder-sign { margin-top: 26px; display: flex; flex-direction: column; gap: 3px; }
.fs-name { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 1.18rem; color: var(--ink); letter-spacing: -.01em; }
.fs-role { font-family: "JetBrains Mono", monospace; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---------- CTA band + form ---------- */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.cta-final p { color: var(--muted); max-width: 520px; margin: 18px auto 0; font-size: 1.08rem; }
.audit-form { max-width: 560px; margin: 40px auto 0; text-align: left; background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: "Inter", sans-serif; font-size: .92rem; font-weight: 600; letter-spacing: 0; text-transform: none; color: #e6e9ee; margin-bottom: 8px; }
.field input { width: 100%; background: #0a0b0e; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; padding: 14px 16px; color: var(--ink); font-family: inherit; font-size: 1rem; transition: border-color .2s, box-shadow .2s; }
.field input:focus { outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(166,255,53,.16); }
.audit-form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.hp { position: absolute; left: -9999px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 820px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.price-card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 30px 26px; position: relative; display: flex; flex-direction: column; }
.price-card.pop { border-color: rgba(166,255,53,.5); background: #151810; }
@media (min-width: 820px) { .price-card.pop { transform: translateY(-10px); } }
.price-card .badge { position: absolute; top: -11px; left: 26px; background: var(--lime); color: #0b0c0f; font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; }
.price-card .tier { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.15rem; }
.price-card .blurb { color: var(--muted); font-size: .9rem; margin: 7px 0 18px; }
.price-card .amt { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 2.7rem; line-height: 1; }
.price-card .amt small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.price-card ul { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 12px; }
.price-card li { display: flex; gap: 10px; font-size: .92rem; color: #d7dce2; }
.price-card li svg { width: 17px; height: 17px; color: var(--lime); flex: none; margin-top: 2px; stroke-width: 3; }
.price-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.price-card .btn.ghost { box-shadow: none; }
.price-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 24px; }

/* ---------- FAQ ---------- */
details { border: 1px solid var(--line); border-radius: 10px; padding: 4px 24px; margin-bottom: 12px; background: var(--panel); transition: border-color .25s, background .25s; }
details[open] { border-color: rgba(255,255,255,.16); background: var(--bg-2); }
summary { cursor: pointer; list-style: none; padding: 20px 0; font-weight: 600; font-size: 1.06rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-family: "Bricolage Grotesque", sans-serif; color: var(--lime); font-size: 1.5rem; transition: transform .3s var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
details .a { color: var(--muted); padding: 0 0 22px; }

/* ---------- Footer ---------- */
footer { padding: 56px 0 44px; border-top: 1px solid rgba(255,255,255,.06); }
.foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; color: var(--muted); font-size: .9rem; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a:hover { color: var(--ink); }

/* floating call button */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: var(--lime); color: #0b0c0f; display: grid; place-items: center; box-shadow: 0 8px 24px -10px rgba(0,0,0,.7); transition: transform .2s var(--ease); }
.wa-float:hover { transform: scale(1.08); }

/* ---------- Other services page ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
.svc-card { position: relative; padding: 34px 30px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); overflow: hidden; transition: transform .25s var(--ease), border-color .25s; }
.svc-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.2); }
.svc-card .num { position: absolute; top: 14px; right: 22px; font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 5rem; color: rgba(255,255,255,.05); line-height: 1; }
.svc-card h3 { position: relative; font-size: 1.5rem; margin-bottom: 12px; }
.svc-card p { position: relative; color: var(--muted); }

/* ---------- Comparison table (why we're different) ---------- */
.compare { border: 1px solid var(--line); border-radius: 12px; overflow-x: auto; }
.compare-inner { min-width: 640px; }
.compare-row { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; align-items: center; border-top: 1px solid var(--line); }
.compare-row:first-child { border-top: none; }
.compare-row.head { background: var(--panel); font-family: "JetBrains Mono", monospace; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.compare .c-label { padding: 17px 22px; color: var(--ink); font-weight: 600; font-size: .96rem; }
.compare-row.head .c-label { color: var(--muted); }
.compare .c-col { padding: 16px 12px; text-align: center; }
.compare .c-col.us { background: rgba(166,255,53,.07); }
.compare-row.head .c-col.us { color: var(--lime); font-weight: 700; }
.mark { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; }
.mark svg { width: 15px; height: 15px; }
.mark.yes { background: rgba(166,255,53,.16); color: var(--lime); }
.mark.no { background: rgba(255,255,255,.05); color: rgba(255,255,255,.32); }
.mark.mid { background: rgba(255,255,255,.07); color: var(--muted); font-family: "Bricolage Grotesque"; font-weight: 800; }

/* ---------- Reveal on scroll (CSS + IntersectionObserver; visible if no JS) ---------- */
html.has-js [data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.has-js [data-reveal].in { opacity: 1; transform: none; }
html.has-js [data-reveal-group] > * { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.has-js [data-reveal-group].in > * { opacity: 1; transform: none; }
html.has-js [data-reveal-group].in > *:nth-child(2) { transition-delay: .08s; }
html.has-js [data-reveal-group].in > *:nth-child(3) { transition-delay: .16s; }
html.has-js [data-reveal-group].in > *:nth-child(4) { transition-delay: .24s; }
html.has-js [data-reveal-group].in > *:nth-child(5) { transition-delay: .32s; }
html.has-js [data-reveal-group].in > *:nth-child(6) { transition-delay: .40s; }

/* ---------- Hero entrance (pure CSS, robust) ---------- */
@keyframes ez-fadeup { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-copy .eyebrow, .hero h1 .ln, .hero p.lead, .hero .cta-row, .hero .cta-note, .hero-trust { animation: ez-fadeup .85s var(--ease) both; }
.hero h1 .ln:nth-child(1) { animation-delay: .08s; }
.hero h1 .ln:nth-child(2) { animation-delay: .2s; }
.hero p.lead { animation-delay: .34s; }
.hero .cta-row { animation-delay: .46s; }
.hero .cta-note { animation-delay: .56s; }
.hero-trust { animation-delay: .66s; }
/* hero outcome cards: distinct, sleek entrances (rise + settle with a soft blur-in) */
.hero-visual .out-card.serp { animation: ez-serp-in .9s var(--ease) .28s both; }
.hero-visual .out-card.ai { animation: ez-ai-in .95s var(--ease) .5s both; }
.hero-visual .float-badge { animation: ez-stamp .6s var(--ease) 1.15s both; }
@keyframes ez-serp-in { from { opacity: 0; transform: translate(30px, -22px) scale(.96); filter: blur(7px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes ez-ai-in { from { opacity: 0; transform: translate(-24px, 30px) scale(.96); filter: blur(7px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes ez-stamp { 0% { opacity: 0; transform: rotate(9deg) scale(1.5); } 60% { opacity: 1; transform: rotate(-4deg) scale(.96); } 100% { opacity: 1; transform: rotate(-2deg) scale(1); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.has-js [data-reveal], html.has-js [data-reveal-group] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-copy .eyebrow, .hero h1 .ln, .hero p.lead, .hero .cta-row, .hero .cta-note, .hero-trust,
  .hero-visual .out-card, .hero-visual .float-badge { animation: none !important; filter: none !important; }
  .out-card.ai::before { animation: none !important; }
}
