/* O'Keefe Consulting v2 - okeefeconsulting.co
   Cinematic premium. Dark locked. Single accent: emerald #25d366.
   Radius rule: cards 16px, interactive pills. Display: Space Grotesk. Body: Outfit. */

:root {
  --bg: #0a0c08;
  --bg-raised: #10130c;
  --bg-panel: #151a10;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f3f5ef;
  --text-dim: #9aa392;
  --accent: #25d366;
  --accent-2: #a3e635;
  --grad: linear-gradient(100deg, #25d366, #a3e635);
  --accent-ink: #06281b;
  --radius: 16px;
  --nav-h: 72px;
  --wa: #25d366;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, .display { font-family: 'Space Grotesk', 'Outfit', sans-serif; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* ---------- Nav + mega ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: var(--nav-h); display: flex; align-items: center; transition: background 0.3s ease, border-color 0.3s ease; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(10, 12, 8, 0.78); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom-color: var(--line); }
.nav-inner { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em; white-space: nowrap; }
.logo em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links a, .nav-links button { display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; font-size: 0.95rem; color: var(--text-dim); background: none; border: 0; font-family: 'Outfit', sans-serif; cursor: pointer; border-radius: 999px; transition: color 0.2s ease, background 0.2s ease; }
.nav-links a:hover, .nav-links button:hover, .nav-links a:focus-visible, .nav-links button:focus-visible { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-links a[aria-current="page"] { color: var(--text); }
.caret { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.2s ease; }
.has-mega.open .caret { transform: rotate(225deg) translateY(-1px); }
.mega { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px); width: min(760px, calc(100vw - 48px)); background: var(--bg-panel); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s; box-shadow: 0 24px 60px rgba(0,0,0,0.55); }
.has-mega.open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega a { display: block; padding: 14px; border-radius: 10px; }
.mega a:hover { background: rgba(255,255,255,0.05); }
.mega strong { display: block; color: var(--text); font-weight: 600; font-size: 0.95rem; }
.mega span { display: block; color: var(--text-dim); font-size: 0.85rem; margin-top: 2px; line-height: 1.4; }
.nav-cta { white-space: nowrap; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }
.mobile-menu { display: none; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 49; background: var(--bg); padding: 24px; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 16px 8px; font-size: 1.3rem; font-weight: 600; border-bottom: 1px solid var(--line); font-family: 'Space Grotesk', sans-serif; }
.mobile-menu .sub { font-size: 1rem; font-weight: 400; color: var(--text-dim); padding-left: 24px; font-family: 'Outfit', sans-serif; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 1rem; border: 1px solid transparent; cursor: pointer; font-family: 'Outfit', sans-serif; transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease; white-space: nowrap; will-change: transform; }
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: #4ce387; }
.btn-ghost { border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 18px 38px; font-size: 1.1rem; }

/* ---------- Hero (WebGL) ---------- */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; overflow: hidden; }
#gl { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,12,8,0.25) 0%, transparent 35%, rgba(10,12,8,0.9) 92%); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: var(--nav-h); }
.hero h1 { font-size: clamp(2.5rem, 5.8vw, 4.7rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.0; max-width: 23ch; }
.hero h1 .acc { color: var(--accent); }
.hero h1 .ch { display: inline-block; transform: translateY(110%); opacity: 0; }
.hero h1 .wd { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; }
.hero p { margin-top: 26px; font-size: 1.2rem; color: var(--text-dim); max-width: 42ch; opacity: 0; }
.hero-ctas { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; }
.no-motion .hero h1 .ch { transform: none; opacity: 1; }
.no-motion .hero p, .no-motion .hero-ctas { opacity: 1; }

/* ---------- Stats band ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 44px 28px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat .num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.stat .num .acc { color: var(--accent); }
.stat p { color: var(--text-dim); margin-top: 10px; font-size: 0.98rem; }

/* ---------- Manifesto (scroll-lit text) ---------- */
.manifesto { padding: 140px 0; }
.manifesto-text { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 4.4vw, 3.4rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.22; max-width: 26ch; }
.manifesto-text .w { color: rgba(242, 245, 241, 0.16); transition: color 0.35s ease; }
.manifesto-text .w.lit { color: var(--text); }
.manifesto-text .w.lit.hl { color: var(--accent); }

/* ---------- Horizontal work gallery ---------- */
.work-wrap { position: relative; overflow: hidden; }
.work-head { padding: 110px 0 40px; }
.work-track { display: flex; align-items: stretch; gap: 28px; padding: 0 28px 110px; width: max-content; }
.wcard { position: relative; width: min(66vw, 860px); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-raised); flex-shrink: 0; }
.wcard img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; transform: scale(1.08); will-change: transform; }
.wcard-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; background: linear-gradient(180deg, transparent, rgba(10,12,8,0.92)); display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
.wcard-info h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.wcard-info p { color: var(--text-dim); font-size: 0.95rem; margin-top: 4px; }
.wcard-info .metric { font-family: 'Space Grotesk', sans-serif; color: var(--accent); font-weight: 700; font-size: 1.3rem; white-space: nowrap; }
.no-motion .work-track { width: auto; flex-wrap: wrap; }
.no-motion .wcard { width: 100%; }
.no-motion .wcard img { transform: none; }

/* ---------- Service stack (pinned cards) ---------- */
.stack-sec { position: relative; }
.stack-head { padding: 110px 0 60px; }
.scard { position: sticky; top: calc(var(--nav-h) + 20px); margin: 0 auto 26px; max-width: 1100px; border-radius: var(--radius); border: 1px solid var(--line-strong); background: var(--bg-panel); overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr; min-height: 380px; will-change: transform; }
.scard-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.scard-body .idx { font-family: 'Space Grotesk', sans-serif; color: var(--accent); font-weight: 700; font-size: 1rem; }
.scard-body h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; }
.scard-body p { color: var(--text-dim); max-width: 44ch; }
.scard-body .mini { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.scard-body .mini li { padding-left: 24px; position: relative; color: var(--text-dim); font-size: 0.95rem; }
.scard-body .mini li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.scard-media { position: relative; overflow: hidden; }
.scard-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stack-space { height: 60px; }

/* ---------- Quote ---------- */
.quote-sec { padding: 140px 0; }
.quote { max-width: 900px; }
.quote blockquote { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.6rem, 3.6vw, 2.6rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.3; }
.quote blockquote .acc { color: var(--accent); }
.quote figcaption { margin-top: 26px; color: var(--text-dim); font-size: 1.05rem; }
.quote figcaption strong { color: var(--text); font-weight: 600; }

/* ---------- Sections / headers ---------- */
section { position: relative; }
.pad { padding: 120px 0; }
.sec-head { margin-bottom: 60px; }
.sec-head h2, .work-head h2, .stack-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; max-width: 20ch; }
.sec-head p { margin-top: 16px; color: var(--text-dim); max-width: 56ch; font-size: 1.08rem; }
.eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: slide 30s linear infinite; }
.marquee-track span { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--text-dim); white-space: nowrap; display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .d { color: var(--accent); font-size: 0.7rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Page head (subpages) ---------- */
.page-head { padding: calc(var(--nav-h) + 110px) 0 80px; }
.page-head h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; max-width: 15ch; }
.page-head h1 .acc { color: var(--accent); }
.page-head p { margin-top: 20px; color: var(--text-dim); font-size: 1.15rem; max-width: 50ch; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: 80px 0; border-top: 1px solid var(--line); }
.split-media { border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; }
.split-media img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transform: scale(1.12); will-change: transform; }
.no-motion .split-media img { transform: none; }
.split h3 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 700; letter-spacing: -0.02em; }
.split p { margin-top: 14px; color: var(--text-dim); max-width: 48ch; }
.split .mini { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.split .mini li { padding-left: 26px; position: relative; color: var(--text-dim); }
.split .mini li::before { content: ""; position: absolute; left: 0; top: 8px; width: 14px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.full-band { padding: 100px 0; border-top: 1px solid var(--line); background: linear-gradient(160deg, rgba(37,211,102,0.08), transparent 55%); }

/* ---------- Pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tier { border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 30px; background: var(--bg-raised); display: flex; flex-direction: column; gap: 18px; transition: border-color 0.25s ease, transform 0.25s ease; }
.tier:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.tier.featured { border-color: var(--accent); background: linear-gradient(165deg, rgba(37,211,102,0.11), var(--bg-raised) 55%); }
.tier h3 { font-size: 1.15rem; font-weight: 600; }
.tier .price { font-family: 'Space Grotesk', sans-serif; font-size: 2.6rem; font-weight: 700; letter-spacing: -0.03em; }
.tier .price small { font-size: 1rem; font-weight: 400; color: var(--text-dim); font-family: 'Outfit', sans-serif; }
.tier ul { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier li { padding-left: 26px; position: relative; color: var(--text-dim); font-size: 0.95rem; }
.tier li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.tier .btn { width: 100%; }
.alacarte { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ala { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-raised); padding: 22px; display: flex; flex-direction: column; gap: 6px; transition: border-color 0.25s ease, transform 0.25s ease; }
.ala:hover { border-color: var(--accent); transform: translateY(-3px); }
.ala span { color: var(--text-dim); font-size: 0.92rem; }
.ala strong { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.ala strong small { font-size: 0.85rem; font-weight: 400; color: var(--text-dim); font-family: 'Outfit', sans-serif; }
.pay-note { margin-top: 44px; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: var(--bg-raised); max-width: 740px; }
.pay-note h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pay-note p { color: var(--text-dim); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { padding: 24px 0; font-weight: 600; font-size: 1.08rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: 'Space Grotesk', sans-serif; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; font-weight: 400; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 24px; color: var(--text-dim); max-width: 62ch; }

/* ---------- Blog ---------- */
.featured-post { display: grid; grid-template-columns: 7fr 5fr; gap: 44px; align-items: center; margin-bottom: 80px; }
.featured-post .split-media img { aspect-ratio: 16/10; }
.featured-post h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; }
.featured-post p { margin-top: 14px; color: var(--text-dim); }
.post-meta { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 12px; display: block; }
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-raised); transition: border-color 0.25s ease, transform 0.25s ease; display: flex; flex-direction: column; }
.post:hover { border-color: var(--accent); transform: translateY(-5px); }
.post img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post h3 { font-size: 1.12rem; font-weight: 600; line-height: 1.3; }
.post p { color: var(--text-dim); font-size: 0.93rem; flex: 1; }
.read { color: var(--accent); font-weight: 600; font-size: 0.92rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 6fr 5fr; gap: 70px; align-items: start; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.field label { font-weight: 600; font-size: 0.98rem; }
.field .hint { font-size: 0.85rem; color: var(--text-dim); }
.field input, .field textarea { background: var(--bg-raised); border: 1px solid var(--line-strong); border-radius: 12px; padding: 15px 18px; color: var(--text); font-family: 'Outfit', sans-serif; font-size: 1rem; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37,211,102,0.22); }
.field textarea { min-height: 150px; resize: vertical; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-raised); padding: 30px; margin-bottom: 20px; }
.contact-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.contact-card p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 18px; }
.contact-card .btn { width: 100%; }
.btn-wa { background: var(--wa); color: #06281b; }
.btn-wa:hover { background: #3fe07c; }

/* ---------- CTA finale ---------- */
.cta-final { padding: 150px 0 130px; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.cta-final h2 { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 700; letter-spacing: -0.04em; line-height: 0.98; max-width: 14ch; }
.cta-final h2 .acc { color: var(--accent); }
.cta-final p { margin-top: 22px; color: var(--text-dim); font-size: 1.15rem; max-width: 44ch; }
.cta-final .hero-ctas { margin-top: 40px; opacity: 1; }
.cta-glow { position: absolute; right: -10%; bottom: -30%; width: 60vw; height: 60vw; max-width: 800px; max-height: 800px; background: radial-gradient(circle, rgba(37,211,102,0.12), transparent 60%); pointer-events: none; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 70px 0 44px; }
.foot { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }
.foot h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 16px; font-weight: 600; }
.foot li { margin-bottom: 10px; }
.foot a { color: var(--text-dim); font-size: 0.95rem; transition: color 0.2s ease; }
.foot a:hover { color: var(--accent); }
.foot .logo { margin-bottom: 12px; display: block; }
.foot .tag { color: var(--text-dim); font-size: 0.95rem; max-width: 30ch; }
.legal { margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-dim); font-size: 0.88rem; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 58px; height: 58px; border-radius: 999px; background: var(--wa); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(37,211,102,0.35); border: 2px solid rgba(255,255,255,0.25); transition: transform 0.2s ease; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #06281b; }

/* ---------- Reveals ---------- */
.reveal { opacity: 0; transform: translateY(40px); }
.no-motion .reveal { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  #gl { display: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .foot { grid-template-columns: 1fr 1fr; }
  .scard { grid-template-columns: 1fr; min-height: 0; }
  .scard-media { min-height: 220px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .pad { padding: 80px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
  .split, .contact-grid, .featured-post { grid-template-columns: 1fr; gap: 30px; }
  .tiers, .posts { grid-template-columns: 1fr; }
  .alacarte { grid-template-columns: 1fr 1fr; }
  .wcard { width: 84vw; }
  .manifesto { padding: 90px 0; }
  .quote-sec { padding: 90px 0; }
  .scard-body { padding: 30px; }
}
@media (max-width: 560px) { .alacarte { grid-template-columns: 1fr; } }

/* ---------- Logo mark ---------- */
.logo { display: inline-flex; align-items: center; gap: 9px; }
.logo-mark { flex-shrink: 0; }

/* ---------- Problem section ---------- */
.problem-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 60px; align-items: start; }
.problem-grid h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; }
.big-p { font-size: 1.15rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; max-width: 58ch; }
.big-p:last-child { margin-bottom: 0; }

/* ---------- Founder ---------- */
.founder-card { display: grid; grid-template-columns: 150px 1fr; gap: 44px; align-items: start; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--bg-panel); padding: 44px; }
.founder-photo { border-radius: var(--radius); border: 1px solid var(--line-strong); width: 150px; height: 150px; object-fit: cover; }
.founder-card h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.founder-card p { color: var(--text-dim); max-width: 60ch; margin-bottom: 10px; }
.founder-sig { font-size: 0.95rem; }
.founder-sig strong { color: var(--text); }

/* ---------- SEO block ---------- */
.seo-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.seo-cols p { color: var(--text-dim); line-height: 1.75; }
.seo-cols a { color: var(--accent); }
.seo-cols a:hover { text-decoration: underline; }

/* ---------- Industries grid ---------- */
.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ind { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-raised); padding: 24px; transition: border-color 0.25s ease, transform 0.25s ease; }
.ind:hover { border-color: var(--accent); transform: translateY(-3px); }
.ind strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.08rem; font-weight: 600; }
.ind span { display: block; color: var(--text-dim); font-size: 0.9rem; margin-top: 4px; }

/* ---------- Blog post pages ---------- */
.post-head { padding-bottom: 40px; }
.post-head h1 { max-width: 22ch; }
.post-head .post-meta a { color: var(--accent); }
.post-lede { margin-top: 18px; color: var(--text-dim); font-size: 1.2rem; max-width: 56ch; }
.post-content { max-width: 780px; padding-bottom: 100px; }
.post-content > article, article .post-content { max-width: 780px; }
.post-content p { color: var(--text-dim); line-height: 1.8; margin-bottom: 22px; font-size: 1.05rem; }
.post-content p strong { color: var(--text); }
.post-content h2 { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.02em; margin: 40px 0 16px; }
.post-content a { color: var(--accent); }
.post-content a:hover { text-decoration: underline; }
.post-cta { border: 1px solid var(--accent); border-radius: var(--radius); background: linear-gradient(165deg, rgba(37,211,102,0.1), var(--bg-raised) 55%); padding: 34px; margin: 50px 0; }
.post-cta h3 { font-size: 1.3rem; margin-bottom: 8px; }
.post-cta p { margin-bottom: 18px; }
.related { margin-top: 60px; }
.related h3 { font-size: 1.4rem; margin-bottom: 24px; }
.related .posts { grid-template-columns: repeat(3, 1fr); }
.related .post img { display: none; }

/* ---------- Contact person card ---------- */
.contact-person { display: flex; gap: 18px; align-items: center; }
.contact-person .avatar { border-radius: 999px; width: 64px; height: 64px; object-fit: cover; border: 2px solid var(--accent); flex-shrink: 0; }
.contact-person h3 { margin-bottom: 4px; }

@media (max-width: 860px) {
  .problem-grid, .seo-cols { grid-template-columns: 1fr; gap: 24px; }
  .founder-card { grid-template-columns: 1fr; padding: 28px; gap: 20px; }
  .industries, .related .posts { grid-template-columns: 1fr; }
}

/* ---------- Resources filter pills ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.pill { border: 1px solid var(--line-strong); background: none; color: var(--text-dim); font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600; padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
.pill:hover { color: var(--text); border-color: var(--accent); }
.pill.active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.post.hidden { display: none; }


/* ---------- Two-tone accent system: green -> lime ---------- */
.hero h1 .acc, .page-head h1 .acc, .cta-final h2 .acc, .quote blockquote .acc, .stat .num .acc {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* char-split spans inherit the clip per word */
.hero h1 .acc .ch { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.manifesto-text .w.lit.hl { color: var(--accent-2); }
.eyebrow { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.read { color: var(--accent-2); }
.scard-body .idx { color: var(--accent-2); }

/* ---------- Button glow ---------- */
.btn-primary {
  background: var(--grad);
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.3), 0 0 44px rgba(163, 230, 53, 0.12), 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn-primary:hover {
  background: var(--grad);
  filter: brightness(1.08);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.45), 0 0 60px rgba(163, 230, 53, 0.22), 0 4px 18px rgba(0, 0, 0, 0.3);
}
.btn-ghost:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  box-shadow: 0 0 18px rgba(163, 230, 53, 0.18);
}
.btn-wa { box-shadow: 0 0 22px rgba(37, 211, 102, 0.3); }
.pill.active { background: var(--grad); border-color: transparent; }
.tier.featured { box-shadow: 0 0 34px rgba(37, 211, 102, 0.12); }
.cta-glow { background: radial-gradient(circle, rgba(37,211,102,0.13), rgba(163,230,53,0.07) 40%, transparent 62%); }
.wa-float { box-shadow: 0 0 26px rgba(37, 211, 102, 0.45), 0 8px 30px rgba(37,211,102,0.3); }
@media (prefers-reduced-motion: reduce) { .btn-primary, .btn-primary:hover { transition: none; } }

/* ---------- 12-service mega + service grid ---------- */
.mega-3 { width: min(1020px, calc(100vw - 48px)); grid-template-columns: 1fr 1fr 1fr; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc { border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius); background: var(--bg-panel); padding: 28px; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.svc:hover { transform: translateY(-4px); border-left-color: var(--accent-2); box-shadow: 0 0 24px rgba(37, 211, 102, 0.1); }
.svc-idx { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.svc h3 { font-size: 1.2rem; font-weight: 700; margin: 10px 0 8px; }
.svc p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.65; }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: 1fr 1fr; } .mega-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Typographic portfolio tiles ---------- */
.wcard-type { display: flex; align-items: center; justify-content: center; aspect-ratio: 16/10; text-decoration: none; background: radial-gradient(ellipse 80% 70% at 50% 45%, rgba(37, 211, 102, 0.07), var(--bg-raised) 70%); position: relative; }
.type-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; animation: tile-float 7s ease-in-out infinite; transition: transform 0.4s var(--ease); }
.wcard-type:nth-child(2) .type-wrap { animation-delay: -2s; }
.wcard-type:nth-child(3) .type-wrap { animation-delay: -4s; }
.wcard-type:nth-child(4) .type-wrap { animation-delay: -1s; }
.wcard-type:nth-child(5) .type-wrap { animation-delay: -3s; }
.type-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  background: linear-gradient(100deg, #25d366, #a3e635, #25d366);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: tile-shimmer 5s linear infinite;
}
.type-tld { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--text-dim); font-size: clamp(1.1rem, 2vw, 1.6rem); letter-spacing: 0.14em; margin-top: 8px; transition: color 0.3s ease, letter-spacing 0.4s var(--ease); }
.wcard-type .go { position: absolute; top: 20px; right: 22px; z-index: 3; font-weight: 600; font-size: 0.9rem; color: var(--accent-2); border: 1px solid var(--line-strong); border-radius: 999px; padding: 8px 16px; opacity: 0; transform: translateY(-6px); transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease; background: rgba(10, 12, 8, 0.6); backdrop-filter: blur(6px); }
.wcard-type:hover { border-color: var(--accent); box-shadow: 0 0 34px rgba(37, 211, 102, 0.18), 0 0 60px rgba(163, 230, 53, 0.08); }
.wcard-type:hover .type-wrap { transform: scale(1.06); }
.wcard-type:hover .type-tld { color: var(--accent-2); letter-spacing: 0.22em; }
.wcard-type:hover .go { opacity: 1; transform: translateY(0); border-color: var(--accent-2); }
.wcard-type .wcard-info { pointer-events: none; }
@keyframes tile-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-0.6deg); }
}
@keyframes tile-shimmer { to { background-position: 220% 0; } }
@media (prefers-reduced-motion: reduce) {
  .type-wrap, .type-name { animation: none; }
  .wcard-type .go { opacity: 1; transform: none; }
}

/* ---------- Premium logo lockup ---------- */
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-line1 { font-size: 1.18rem; letter-spacing: -0.03em; }
.logo-line2 { font-family: 'Outfit', sans-serif; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.42em; text-transform: uppercase; color: var(--text-dim); margin-top: 3px; }

/* ================= Service card motion graphics ================= */
.anim { position: relative; overflow: hidden; background: radial-gradient(ellipse 90% 80% at 50% 40%, rgba(37,211,102,0.06), var(--bg) 75%); display: flex; align-items: center; justify-content: center; min-height: 300px; }
.anim .lb { height: 8px; border-radius: 4px; background: rgba(37,211,102,0.35); margin: 8px 0; }
.anim .lb.w80{width:80%}.anim .lb.w70{width:70%}.anim .lb.w65{width:65%}.anim .lb.w60{width:60%}.anim .lb.w55{width:55%}.anim .lb.w50{width:50%}.anim .lb.w45{width:45%}.anim .lb.w40{width:40%}
.anim .lb.tall { height: 14px; background: rgba(163,230,53,0.5); }

/* 1. Laptop opens, screen glows */
.anim-web { perspective: 900px; }
.lap { position: relative; width: 200px; animation: lap-sway 9s ease-in-out infinite; transform-style: preserve-3d; }
.lap-base { width: 200px; height: 12px; border-radius: 3px 3px 8px 8px; background: linear-gradient(180deg, #1c241c, #10130c); border: 1.5px solid rgba(163,230,53,0.5); }
.lap-lid { width: 200px; height: 126px; border-radius: 8px 8px 3px 3px; border: 1.5px solid #25d366; background: #0c0f0a; transform-origin: bottom center; animation: lap-open 7s cubic-bezier(0.6,0,0.3,1) infinite; position: relative; overflow: hidden; }
.lap-glow { position: absolute; inset: 7px; border-radius: 4px; background: linear-gradient(135deg, rgba(37,211,102,0.85), rgba(163,230,53,0.75)); opacity: 0; animation: lap-glow 7s ease infinite; }
@keyframes lap-open { 0%,8% { transform: rotateX(-88deg); } 32%,78% { transform: rotateX(0deg); } 96%,100% { transform: rotateX(-88deg); } }
@keyframes lap-glow { 0%,30% { opacity: 0; } 42%,74% { opacity: 1; box-shadow: 0 0 46px rgba(163,230,53,0.6); } 88%,100% { opacity: 0; } }
@keyframes lap-sway { 0%,100% { transform: rotateY(-14deg) rotateX(8deg); } 50% { transform: rotateY(14deg) rotateX(4deg); } }

/* 2. Landing page scrolling */
.browser { width: 210px; height: 260px; border: 1.5px solid rgba(37,211,102,0.7); border-radius: 12px; background: #0b0e09; overflow: hidden; box-shadow: 0 0 34px rgba(37,211,102,0.12); }
.chrome { display: flex; gap: 5px; padding: 9px 10px; border-bottom: 1px solid rgba(37,211,102,0.3); }
.chrome i { width: 7px; height: 7px; border-radius: 50%; background: rgba(163,230,53,0.6); }
.lp-view { height: calc(100% - 26px); overflow: hidden; }
.lp-page { padding: 14px; animation: lp-scroll 9s cubic-bezier(0.6,0,0.4,1) infinite; }
@keyframes lp-scroll { 0%,12% { transform: translateY(0); } 42%,55% { transform: translateY(-46%); } 88%,100% { transform: translateY(0); } }
.lp-cta { width: 74px; height: 20px; border-radius: 999px; background: var(--grad); margin: 12px 0; animation: cta-pulse 2.4s ease infinite; }
@keyframes cta-pulse { 0%,100% { box-shadow: 0 0 8px rgba(37,211,102,0.4); } 50% { box-shadow: 0 0 22px rgba(163,230,53,0.7); } }
.lp-row { display: flex; gap: 8px; margin: 12px 0; }
.lc { flex: 1; height: 44px; border: 1px solid rgba(37,211,102,0.5); border-radius: 6px; background: rgba(37,211,102,0.08); }
.lb.img-b { width: 100%; height: 52px; border-radius: 6px; background: rgba(163,230,53,0.16); border: 1px solid rgba(163,230,53,0.4); }

/* 3. Ads: rising graph + clicking cursors */
.anim-ads .graph { width: 86%; height: 72%; }
.anim-ads .grid { stroke: rgba(37,211,102,0.14); stroke-width: 1; }
.gline { fill: none; stroke: url(#g) #25d366; stroke: #25d366; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 420; animation: gdraw 6s ease-in-out infinite; filter: drop-shadow(0 0 6px rgba(37,211,102,0.5)); }
@keyframes gdraw { 0% { stroke-dashoffset: 420; } 45%,80% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -420; } }
.gdot { fill: #a3e635; opacity: 0; }
.gdot.d1 { animation: gdot 6s ease infinite; animation-delay: 0.2s; }
.gdot.d2 { animation: gdot 6s ease infinite; animation-delay: 1s; }
@keyframes gdot { 0%,28% { opacity: 0; r: 3; } 38%,70% { opacity: 1; } 80%,100% { opacity: 0; } }
.cursor { position: absolute; width: 18px; height: 18px; background: #a3e635; clip-path: polygon(0 0, 100% 42%, 55% 55%, 42% 100%); filter: drop-shadow(0 0 8px rgba(163,230,53,0.7)); }
.cursor::after { content: ""; position: absolute; left: -12px; top: -12px; width: 40px; height: 40px; border: 2px solid #a3e635; border-radius: 50%; opacity: 0; transform: scale(0.3); }
.cursor.c1 { animation: cur1 6s ease-in-out infinite; }
.cursor.c2 { width: 13px; height: 13px; background: #25d366; animation: cur2 7.5s ease-in-out infinite; }
.cursor.c1::after { animation: click 6s ease infinite; }
.cursor.c2::after { animation: click 7.5s ease infinite; animation-delay: 1.8s; }
@keyframes cur1 { 0% { left: 18%; top: 68%; } 35% { left: 50%; top: 46%; } 36% { transform: scale(0.85); } 40% { transform: scale(1); } 70% { left: 78%; top: 22%; } 71% { transform: scale(0.85); } 75% { transform: scale(1); } 100% { left: 18%; top: 68%; } }
@keyframes cur2 { 0% { left: 70%; top: 70%; } 45% { left: 30%; top: 30%; } 100% { left: 70%; top: 70%; } }
@keyframes click { 0%,34% { opacity: 0; transform: scale(0.3); } 40% { opacity: 0.9; transform: scale(0.5); } 52% { opacity: 0; transform: scale(1.2); } 100% { opacity: 0; } }

/* 4. E-commerce: outline store, buy now, rising total, purchase pops */
.anim-ecom .store { width: 200px; height: 150px; }
.so { fill: none; stroke: #25d366; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 5px rgba(37,211,102,0.35)); }
.so.awn { stroke: #a3e635; }
.so.win { animation: win-glow 4s ease infinite; }
@keyframes win-glow { 0%,100% { fill: rgba(163,230,53,0); } 50% { fill: rgba(163,230,53,0.18); } }
.buy { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--grad); color: var(--accent-ink); font-weight: 700; font-size: 0.85rem; padding: 9px 22px; border-radius: 999px; animation: buy-pulse 2.2s ease infinite; }
@keyframes buy-pulse { 0%,100% { transform: translateX(-50%) scale(1); box-shadow: 0 0 12px rgba(37,211,102,0.4); } 50% { transform: translateX(-50%) scale(1.07); box-shadow: 0 0 28px rgba(163,230,53,0.7); } }
.amount { position: absolute; top: 18px; right: 22px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.7rem; height: 2rem; }
.amount span { position: absolute; right: 0; opacity: 0; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; animation: amt 9s infinite; }
.amount span:nth-child(1){animation-delay:0s}.amount span:nth-child(2){animation-delay:1.5s}.amount span:nth-child(3){animation-delay:3s}.amount span:nth-child(4){animation-delay:4.5s}.amount span:nth-child(5){animation-delay:6s}.amount span:nth-child(6){animation-delay:7.5s}
@keyframes amt { 0% { opacity: 0; transform: translateY(8px); } 3%,14% { opacity: 1; transform: translateY(0); } 17%,100% { opacity: 0; transform: translateY(-8px); } }
.pop { position: absolute; display: flex; align-items: center; gap: 7px; background: #10150e; border: 1px solid var(--accent); border-radius: 999px 999px 999px 4px; padding: 7px 14px; font-size: 0.78rem; font-weight: 600; color: var(--text); opacity: 0; }
.pop b { width: 13px; height: 8px; border-left: 2.5px solid var(--accent-2); border-bottom: 2.5px solid var(--accent-2); transform: rotate(-45deg) translateY(-2px); }
.pop.p1 { left: 16px; top: 40px; animation: pop-in 9s ease infinite; }
.pop.p2 { left: 26px; top: 96px; animation: pop-in 9s ease infinite; animation-delay: 4.5s; }
@keyframes pop-in { 0% { opacity: 0; transform: scale(0.6) translateY(10px); } 4%,26% { opacity: 1; transform: scale(1) translateY(0); } 34%,100% { opacity: 0; transform: scale(0.9) translateY(-14px); } }

/* 5. Content & social: reel card + rising hearts */
.anim-social .phone { width: 150px; border: 1.5px solid rgba(37,211,102,0.7); border-radius: 18px; padding: 12px; background: #0b0e09; box-shadow: 0 0 30px rgba(37,211,102,0.12); }
.reel-img { height: 120px; border-radius: 10px; background: linear-gradient(140deg, rgba(37,211,102,0.5), rgba(163,230,53,0.25) 60%, rgba(37,211,102,0.12)); background-size: 200% 200%; animation: reel-sheen 5s ease infinite; margin-bottom: 10px; position: relative; }
.reel-img::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); border-left: 16px solid rgba(10,12,8,0.85); border-top: 10px solid transparent; border-bottom: 10px solid transparent; }
@keyframes reel-sheen { 0%,100% { background-position: 0% 0%; } 50% { background-position: 100% 100%; } }
.heart { position: absolute; width: 24px; height: 24px; opacity: 0; }
.heart path { fill: #25d366; }
.heart.h2 path { fill: #a3e635; }
.heart.h1 { right: 26%; bottom: 14%; animation: heart-rise 4.5s ease-in infinite; }
.heart.h2 { right: 20%; bottom: 14%; width: 17px; animation: heart-rise 4.5s ease-in infinite 1.4s; }
.heart.h3 { right: 30%; bottom: 14%; width: 14px; animation: heart-rise 4.5s ease-in infinite 2.8s; }
@keyframes heart-rise { 0% { opacity: 0; transform: translateY(0) scale(0.5); } 12% { opacity: 1; transform: translateY(-16px) scale(1.1); } 75% { opacity: 0.9; } 100% { opacity: 0; transform: translateY(-150px) scale(0.8) rotate(12deg); } }

/* 6. SEO: search + rank climb */
.anim-seo { flex-direction: column; gap: 18px; }
.sbar { display: flex; align-items: center; gap: 10px; width: 70%; border: 1.5px solid var(--accent); border-radius: 999px; padding: 10px 16px; background: #0b0e09; box-shadow: 0 0 22px rgba(37,211,102,0.15); }
.mag { width: 12px; height: 12px; border: 2px solid #a3e635; border-radius: 50%; position: relative; flex-shrink: 0; }
.mag::after { content: ""; position: absolute; width: 6px; height: 2px; background: #a3e635; transform: rotate(45deg); right: -5px; bottom: -2px; }
.type-line { height: 8px; border-radius: 4px; background: rgba(37,211,102,0.5); animation: typing 5s steps(24) infinite; }
@keyframes typing { 0%,8% { width: 0; } 45%,88% { width: 70%; } 96%,100% { width: 0; } }
.caret { width: 2px; height: 14px; background: #a3e635; animation: blink 0.9s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.serp { width: 70%; display: flex; flex-direction: column; gap: 10px; }
.srow { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line-strong); border-radius: 10px; padding: 10px 14px; background: var(--bg-raised); }
.srow .lb { margin: 0; }
.rno { width: 8px; height: 8px; border-radius: 50%; background: var(--text-dim); flex-shrink: 0; }
.srow.you { border-color: var(--accent-2); order: 3; animation: rank-climb 6s ease-in-out infinite; box-shadow: 0 0 18px rgba(163,230,53,0.12); }
.srow.you .rno { background: var(--grad); }
.srow.you .lb { background: rgba(163,230,53,0.6); }
@keyframes rank-climb { 0%,20% { transform: translateY(0); } 45%,85% { transform: translateY(-108px); } 100% { transform: translateY(0); } }
.srow:not(.you) { animation: rank-shift 6s ease-in-out infinite; }
@keyframes rank-shift { 0%,20% { transform: translateY(0); } 45%,85% { transform: translateY(54px); } 100% { transform: translateY(0); } }
.rankup { position: absolute; right: 14%; top: 30%; width: 14px; height: 14px; border-top: 3px solid #a3e635; border-right: 3px solid #a3e635; transform: rotate(-45deg); animation: arrow-float 2s ease infinite; }
@keyframes arrow-float { 0%,100% { transform: rotate(-45deg) translate(0,0); opacity: 1; } 50% { transform: rotate(-45deg) translate(6px,-6px); opacity: 0.5; } }

/* 7. Brand: stars fill + review pop */
.anim-brand { flex-direction: column; gap: 22px; }
.stars { display: flex; gap: 10px; }
.st { width: 34px; height: 34px; }
.st path { fill: none; stroke: rgba(37,211,102,0.6); stroke-width: 1.5; }
.st.s1 path { animation: star-fill 6s ease infinite 0.0s; }
.st.s2 path { animation: star-fill 6s ease infinite 0.35s; }
.st.s3 path { animation: star-fill 6s ease infinite 0.7s; }
.st.s4 path { animation: star-fill 6s ease infinite 1.05s; }
.st.s5 path { animation: star-fill 6s ease infinite 1.4s; }
@keyframes star-fill { 0%,8% { fill: rgba(163,230,53,0); } 20%,80% { fill: #a3e635; stroke: #a3e635; filter: drop-shadow(0 0 6px rgba(163,230,53,0.6)); } 94%,100% { fill: rgba(163,230,53,0); } }
.rev-bubble { width: 180px; border: 1px solid var(--accent); border-radius: 14px 14px 14px 4px; background: #0e130c; padding: 14px 16px; opacity: 0; animation: rev-pop 6s ease infinite 1.9s; }
@keyframes rev-pop { 0% { opacity: 0; transform: translateY(12px) scale(0.85); } 6%,62% { opacity: 1; transform: translateY(0) scale(1); } 74%,100% { opacity: 0; transform: translateY(-8px) scale(0.95); } }

/* 8. Care: shield pulse + uptime ticks */
.anim-care { flex-direction: column; gap: 24px; }
.shield { width: 84px; height: 84px; position: relative; z-index: 2; }
.shield path:first-child { fill: rgba(37,211,102,0.1); stroke: #25d366; stroke-width: 1.5; }
.shield .chk { fill: none; stroke: #a3e635; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 14; animation: chk-draw 4s ease infinite; }
@keyframes chk-draw { 0%,12% { stroke-dashoffset: 14; } 35%,80% { stroke-dashoffset: 0; } 95%,100% { stroke-dashoffset: 14; } }
.ring { position: absolute; top: 50%; left: 50%; width: 100px; height: 100px; margin: -62px 0 0 -50px; border: 1.5px solid rgba(37,211,102,0.5); border-radius: 50%; animation: ring-pulse 3s ease-out infinite; }
.ring.r2 { animation-delay: 1.5s; }
@keyframes ring-pulse { 0% { transform: scale(0.7); opacity: 0.9; } 100% { transform: scale(1.9); opacity: 0; } }
.uptime { display: flex; gap: 10px; z-index: 2; }
.uptime i { width: 26px; height: 8px; border-radius: 4px; background: rgba(37,211,102,0.2); }
.uptime .u1 { animation: tick 5s steps(1) infinite 0s; }
.uptime .u2 { animation: tick 5s steps(1) infinite 0.5s; }
.uptime .u3 { animation: tick 5s steps(1) infinite 1s; }
.uptime .u4 { animation: tick 5s steps(1) infinite 1.5s; }
.uptime .u5 { animation: tick 5s steps(1) infinite 2s; }
@keyframes tick { 0% { background: rgba(37,211,102,0.2); } 10%,85% { background: #a3e635; box-shadow: 0 0 10px rgba(163,230,53,0.5); } 100% { background: rgba(37,211,102,0.2); } }

@media (prefers-reduced-motion: reduce) {
  .anim *, .anim *::after, .anim *::before { animation: none !important; }
  .lap-lid { transform: rotateX(0); } .lap-glow { opacity: 1; }
  .amount span:first-child, .pop.p1, .rev-bubble { opacity: 1; }
  .type-line { width: 70%; }
}
@media (max-width: 1024px) { .anim { min-height: 240px; } }

/* ---------- Nav call button + Autopilot card ---------- */
.nav-call { padding: 10px 18px; font-size: 0.92rem; gap: 7px; }
@media (max-width: 1180px) { .nav-call { display: none; } }
.autopilot { margin-top: 26px; border: 1px solid var(--accent); border-radius: var(--radius); background: linear-gradient(160deg, rgba(37,211,102,0.1), var(--bg-raised) 55%); padding: 40px; display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: center; box-shadow: 0 0 40px rgba(37,211,102,0.1); }
.autopilot h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.autopilot p { color: var(--text-dim); max-width: 56ch; }
.autopilot .mini { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.autopilot .mini li { padding-left: 26px; position: relative; color: var(--text-dim); font-size: 0.95rem; }
.autopilot .mini li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--accent-2); border-bottom: 2px solid var(--accent-2); transform: rotate(-45deg); }
.autopilot-price { text-align: center; display: flex; flex-direction: column; gap: 18px; align-items: center; }
.autopilot-price .price { font-family: 'Space Grotesk', sans-serif; font-size: 3.2rem; font-weight: 700; letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.autopilot-price .price small { font-size: 1.1rem; color: var(--text-dim); -webkit-text-fill-color: var(--text-dim); font-family: 'Outfit', sans-serif; font-weight: 400; }
@media (max-width: 860px) { .autopilot { grid-template-columns: 1fr; padding: 28px; } }
