/*
Theme Name: Agency Zero
Theme URI: https://agencyzero.ai
Author: Agency Zero Team
Description: AI-powered marketing agency — dark aesthetic, GSAP animations, glassmorphism.
Version: 3.0.0
License: GPL v2 or later
Text Domain: agencyzero
*/

/* ════════════════════════════════════════
   1. DESIGN TOKENS
   ════════════════════════════════════════ */

:root {
  /* Primary — Cyan */
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;

  /* Accent — Orange */
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;

  /* Neutral — Slate */
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  /* Semantic */
  --bg:          var(--slate-950);
  --bg-2:        var(--slate-900);
  --bg-3:        var(--slate-800);
  --bg-elevated: rgba(30, 41, 59, 0.6);
  --text-1:      var(--slate-50);
  --text-2:      var(--slate-300);
  --text-3:      var(--slate-400);
  --text-muted:  var(--slate-500);
  --border:      rgba(148,163,184,0.08);
  --border-hover:rgba(148,163,184,0.18);
  --border-focus:var(--cyan-500);

  /* Typography */
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', var(--font-sans);
  --font-mono:    'JetBrains Mono', monospace;

  /* Fluid type */
  --text-xs:  clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:  clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base:clamp(1rem, 0.925rem + 0.375vw, 1.125rem);
  --text-lg:  clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --text-xl:  clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.4rem + 2.375vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  --text-5xl: clamp(3rem, 1.8rem + 6vw, 5rem);
  --text-6xl: clamp(3.5rem, 2rem + 7.5vw, 6.5rem);

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem; --sp-8: 2rem; --sp-10: 2.5rem;
  --sp-12: 3rem; --sp-16: 4rem; --sp-20: 5rem; --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container: 1280px;
  --container-px: clamp(var(--sp-4), 4vw, var(--sp-8));
  --section-py: clamp(var(--sp-16), 8vw, var(--sp-32));

  /* Radius */
  --r-sm: 0.375rem; --r-md: 0.5rem; --r-lg: 0.75rem;
  --r-xl: 1rem; --r-2xl: 1.25rem; --r-3xl: 1.5rem; --r-full: 9999px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index */
  --z-base: 0; --z-sticky: 200; --z-fixed: 300; --z-drawer: 400; --z-modal: 500;
}

/* ════════════════════════════════════════
   2. RESET
   ════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-1);
  background: var(--bg);
  overflow-x: hidden;
}

ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--border-focus); outline-offset: 2px; }

::selection { background: var(--cyan-500); color: var(--slate-950); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-1);
}
p { color: var(--text-2); max-width: 65ch; }

/* ════════════════════════════════════════
   3. LAYOUT
   ════════════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  padding-block: var(--section-py);
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-16);
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: var(--sp-4);
  padding: var(--sp-1) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--cyan-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: var(--r-full);
}

.section__title { font-size: var(--text-4xl); margin-bottom: var(--sp-4); }
.section__description { font-size: var(--text-lg); color: var(--text-2); margin-inline: auto; }
.section__footer { text-align: center; margin-top: var(--sp-12); }

.skip-link {
  position: absolute; top: -100%; left: var(--sp-4);
  padding: var(--sp-3) var(--sp-4); background: var(--bg-2);
  border: 1px solid var(--border); border-radius: var(--r-md);
  z-index: 9999; transition: top 0.15s;
}
.skip-link:focus { top: var(--sp-4); }

/* ════════════════════════════════════════
   4. GRADIENT TEXT
   ════════════════════════════════════════ */

.gradient-text {
  background: linear-gradient(135deg, var(--cyan-400), var(--orange-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text--animate {
  background: linear-gradient(90deg, var(--cyan-400), var(--orange-400), var(--cyan-400));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════
   5. CURSOR GLOW
   ════════════════════════════════════════ */

.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 400px; height: 400px;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(6,182,212,0.07) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  will-change: transform;
}

@media (hover: none) { .cursor-glow { display: none; } }

/* ════════════════════════════════════════
   6. SCROLL PROGRESS
   ════════════════════════════════════════ */

.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 3px;
  z-index: calc(var(--z-fixed) + 1);
}

.scroll-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan-500), var(--orange-500));
  transform-origin: left;
  transform: scaleX(0);
}

/* ════════════════════════════════════════
   7. BUTTONS
   ════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: var(--r-xl);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background 0.2s var(--ease-out),
    border-color 0.2s,
    color 0.2s,
    transform 0.2s var(--ease-back),
    box-shadow 0.2s;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--cyan-500);
  border-color: var(--cyan-500);
  color: var(--slate-950);
  box-shadow: 0 4px 20px rgba(6,182,212,0.3);
}
.btn--primary:hover {
  background: var(--cyan-400);
  box-shadow: 0 8px 30px rgba(6,182,212,0.45);
}

.btn--glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--cyan-400), var(--orange-400));
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.3s;
}
.btn--glow:hover::before { opacity: 0.6; }

.btn--secondary {
  background: var(--bg-3);
  border-color: var(--border);
  color: var(--text-1);
}
.btn--secondary:hover { background: var(--slate-700); border-color: var(--border-hover); }

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text-2);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--border-hover);
  color: var(--text-1);
}

.btn--sm { padding: var(--sp-2) var(--sp-4); font-size: var(--text-xs); }
.btn--lg { padding: var(--sp-4) var(--sp-8); font-size: var(--text-base); }
.btn--xl { padding: var(--sp-5) var(--sp-10); font-size: var(--text-lg); border-radius: var(--r-2xl); }

.btn__icon { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn:hover .btn__icon--right { transform: translateX(3px); }
.btn__icon { transition: transform 0.2s; }

/* ════════════════════════════════════════
   8. HEADER & NAV
   ════════════════════════════════════════ */

.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-fixed);
  height: 72px;
  background: rgba(2,6,23,0.7);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s, background 0.3s, border-color 0.3s;
}
.header--scrolled {
  height: 60px;
  background: rgba(2,6,23,0.92);
  border-color: var(--border-hover);
}

.header__container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  padding-inline: var(--container-px);
  max-width: var(--container);
  margin-inline: auto;
}

.logo {
  display: flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 700;
  color: var(--text-1);
  transition: transform 0.2s;
}
.logo:hover { transform: scale(1.03); }

.logo__mark {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cyan-500), var(--orange-500));
  border-radius: var(--r-lg);
  box-shadow: 0 4px 12px rgba(6,182,212,0.3);
}
.logo__mark svg { width: 20px; height: 20px; color: var(--slate-950); }

.nav { display: none; }
@media (min-width: 768px) { .nav { display: flex; align-items: center; gap: var(--sp-8); } }

.nav__list { display: flex; align-items: center; gap: var(--sp-1); }

.nav__list li a,
.nav__link {
  position: relative;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm); font-weight: 500;
  color: var(--text-3);
  border-radius: var(--r-md);
  transition: color 0.2s, background 0.2s;
}

.nav__list li a::after,
.nav__link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan-500), var(--orange-500));
  border-radius: var(--r-full);
  transform: translateX(-50%);
  transition: width 0.3s var(--ease-out);
}

.nav__list li a:hover,
.nav__link:hover { color: var(--text-1); }

.nav__list li a:hover::after,
.nav__link:hover::after { width: 60%; }

/* Mobile toggle */
.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border); border-radius: var(--r-md);
  color: var(--text-1);
  z-index: var(--z-drawer);
  transition: background 0.2s, border-color 0.2s;
}
.menu-toggle:hover { background: var(--bg-3); border-color: var(--border-hover); }
@media (min-width: 768px) { .menu-toggle { display: none; } }

.menu-toggle__icon { position: relative; width: 24px; height: 18px; }
.menu-toggle__line {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: currentColor; border-radius: var(--r-full);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.menu-toggle__line:nth-child(1) { top: 0; }
.menu-toggle__line:nth-child(2) { top: 8px; }
.menu-toggle__line:nth-child(3) { bottom: 0; }

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: var(--z-drawer);
  visibility: hidden; opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.3s var(--ease-out);
}
.mobile-menu--open { visibility: visible; opacity: 1; transition-delay: 0s; }

.mobile-menu__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.3s;
}
.mobile-menu--open .mobile-menu__backdrop { opacity: 1; }

.mobile-menu__panel {
  position: absolute; top: 0; right: 0;
  width: min(100%, 380px);
  height: 100dvh;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex; flex-direction: column;
  padding: var(--sp-6);
}
.mobile-menu--open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__close {
  align-self: flex-end;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-md); color: var(--text-2);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu__close:hover { color: var(--text-1); background: var(--bg); }
.mobile-menu__close svg { width: 20px; height: 20px; }

.mobile-menu__nav { margin-top: var(--sp-8); }
.mobile-menu__list,
.mobile-menu__nav ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.mobile-menu__list li a,
.mobile-menu__nav ul li a {
  display: block; padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-lg); font-weight: 500;
  color: var(--text-2); border-radius: var(--r-lg);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu__list li a:hover,
.mobile-menu__nav ul li a:hover { color: var(--text-1); background: var(--bg-3); }

.mobile-menu__cta { margin-top: auto; width: 100%; justify-content: center; }

body.menu-open { overflow: hidden; position: fixed; width: 100%; }

/* ════════════════════════════════════════
   9. HERO
   ════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero__particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero__grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero__blob--cyan {
  width: 700px; height: 700px;
  background: var(--cyan-600);
  opacity: 0.25;
  top: -250px; right: -200px;
}
.hero__blob--orange {
  width: 500px; height: 500px;
  background: var(--orange-500);
  opacity: 0.15;
  bottom: -200px; left: -150px;
}
.hero__blob--purple {
  width: 400px; height: 400px;
  background: #7c3aed;
  opacity: 0.1;
  top: 40%; left: 30%;
}

.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--sp-8);
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--text-sm); font-weight: 500;
  color: var(--cyan-400);
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
}

.hero__eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--cyan-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--cyan-500);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-size: var(--text-6xl);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.04em;
}

.hero__title .line { display: block; }

.hero__description {
  font-size: var(--text-lg);
  color: var(--text-2);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-10);
  line-height: 1.7;
}

.hero__cta {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

/* Trust / Avatars */
.hero__trust { display: flex; justify-content: center; }

.hero__avatars {
  display: flex; align-items: center; gap: var(--sp-4);
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: 700;
  color: var(--slate-950);
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.avatar--1 { background: var(--cyan-400); }
.avatar--2 { background: var(--orange-400); }
.avatar--3 { background: #a78bfa; }
.avatar--4 { background: #34d399; }
.avatar--plus { background: var(--bg-3); color: var(--text-2); border-color: var(--border); }

.hero__trust-text {
  text-align: left;
}

.hero__stars {
  color: var(--orange-400);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.hero__trust-text p {
  font-size: var(--text-xs);
  color: var(--text-3);
}
.hero__trust-text strong { color: var(--text-1); }

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--cyan-500), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ════════════════════════════════════════
   10. MARQUEE
   ════════════════════════════════════════ */

.marquee {
  padding-block: var(--sp-12);
  border-block: 1px solid var(--border);
  overflow: hidden;
}

.marquee__label {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-8);
}

.marquee__track {
  display: flex; gap: var(--sp-16);
  animation: marquee 30s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__logo {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.35;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.marquee__logo:hover { opacity: 0.8; }

/* ════════════════════════════════════════
   11. CARDS (Services)
   ════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}

.card {
  position: relative;
  padding: var(--sp-8);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
}

/* Gradient border on hover */
.card--interactive::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(6,182,212,0.4), transparent 50%, rgba(249,115,22,0.4));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.card--interactive:hover::before,
.card--interactive:focus-within::before { opacity: 1; }

.card:focus-within {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
}

/* Icon wrap */
.card__icon-wrap {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(249,115,22,0.1));
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-6);
  color: var(--cyan-400);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.card:hover .card__icon-wrap {
  background: linear-gradient(135deg, rgba(6,182,212,0.25), rgba(249,115,22,0.15));
  border-color: rgba(6,182,212,0.3);
  transform: scale(1.08);
}

.card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.card__text {
  color: var(--text-2);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.card__link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); font-weight: 600;
  color: var(--cyan-400);
  transition: gap 0.3s var(--ease-out), color 0.2s;
}
.card:hover .card__link { gap: var(--sp-3); color: var(--cyan-300); }
.card__link span { transition: transform 0.3s; }
.card:hover .card__link span { transform: translateX(4px); }

/* ════════════════════════════════════════
   12. PROCESS
   ════════════════════════════════════════ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--sp-8);
}

.process-step {
  position: relative;
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
}

.process-step__number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 900;
  background: linear-gradient(180deg, rgba(6,182,212,0.3), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.process-step__line {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--cyan-500), var(--orange-500));
  border-radius: var(--r-full);
  margin: 0 auto var(--sp-6);
}

.process-step__title {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}

.process-step__text {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   13. STATS
   ════════════════════════════════════════ */

.section--results {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat {
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
  background: rgba(30,41,59,0.5);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s;
}
.stat:hover { border-color: rgba(6,182,212,0.2); transform: translateY(-4px); }

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan-400), var(--orange-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-2);
  line-height: 1.1;
}

.stat__label {
  font-size: var(--text-xs);
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════
   14. TESTIMONIAL
   ════════════════════════════════════════ */

.section--testimonial {
  padding-block: var(--section-py);
}

.testimonial-card {
  position: relative;
  max-width: 800px;
  margin-inline: auto;
  padding: var(--sp-12) var(--sp-10);
  background: linear-gradient(135deg, rgba(6,182,212,0.05), rgba(249,115,22,0.03));
  border: 1px solid var(--border);
  border-radius: var(--r-3xl);
  text-align: center;
}

.testimonial-card__quote {
  position: absolute; top: var(--sp-8); left: var(--sp-8);
  color: var(--cyan-500);
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--text-1);
  line-height: 1.5;
  margin-bottom: var(--sp-8);
  font-style: italic;
}

.testimonial-card__author {
  display: inline-flex; align-items: center; gap: var(--sp-4);
}

.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-500), var(--orange-500));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--text-sm);
  color: var(--slate-950);
}

.testimonial-card__name {
  display: block;
  font-weight: 600;
  color: var(--text-1);
}

.testimonial-card__role {
  font-size: var(--text-sm);
  color: var(--text-3);
}

/* ════════════════════════════════════════
   15. FEATURES / WHY US
   ════════════════════════════════════════ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
}

.feature-card {
  padding: var(--sp-8);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover,
.feature-card:focus-within {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.3);
}

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: var(--sp-4);
  filter: grayscale(0.2);
}

.feature-card__icon-wrap {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(249,115,22,0.1));
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-6);
  color: var(--cyan-400);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.feature-card:hover .feature-card__icon-wrap {
  background: linear-gradient(135deg, rgba(6,182,212,0.25), rgba(249,115,22,0.15));
  border-color: rgba(6,182,212,0.3);
  transform: scale(1.08);
}

.feature-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}

.feature-card__text {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   16. DIVIDER
   ════════════════════════════════════════ */

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
  margin-block: var(--sp-4);
}

/* ════════════════════════════════════════
   17. CTA
   ════════════════════════════════════════ */

.section--cta {
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta__content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.cta__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--sp-6);
}

.cta__description {
  font-size: var(--text-lg);
  color: var(--text-2);
  margin-inline: auto;
  margin-bottom: var(--sp-10);
  line-height: 1.7;
}

.cta__actions {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--sp-4);
}

.cta__note {
  margin-top: var(--sp-6);
  font-size: var(--text-sm);
  color: var(--text-3);
}

/* ════════════════════════════════════════
   18. FOOTER
   ════════════════════════════════════════ */

.footer {
  padding-block: var(--sp-16) var(--sp-8);
  border-top: 1px solid var(--border);
}

.footer__container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

.footer__brand { grid-column: span 1; }
@media (max-width: 768px) { .footer__brand { grid-column: span 2; } }

.logo--footer { font-size: var(--text-lg); margin-bottom: var(--sp-3); }
.logo--footer .logo__mark { width: 30px; height: 30px; }
.logo--footer .logo__mark svg { width: 16px; height: 16px; }

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--text-3);
}

.footer__links h4,
.footer__title {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: var(--sp-4);
  letter-spacing: 0;
}

.footer__links ul { display: flex; flex-direction: column; gap: var(--sp-3); }

.footer__links a {
  font-size: var(--text-sm);
  color: var(--text-3);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--cyan-400); }

.footer__bottom {
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-inline: auto;
}

/* ════════════════════════════════════════
   19. ANIMATIONS (initial states)
   ════════════════════════════════════════ */

/* GSAP handles initial states via JavaScript */

/* ════════════════════════════════════════
   20. REDUCED MOTION
   ════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], [data-stagger] > * { opacity: 1; transform: none; }
  .cursor-glow, .hero__particles { display: none; }
}

/* ════════════════════════════════════════
   21. WORDPRESS COMPAT
   ════════════════════════════════════════ */

.aligncenter { display: block; margin-inline: auto; }
.alignleft { float: left; margin-right: var(--sp-4); }
.alignright { float: right; margin-left: var(--sp-4); }

.wp-caption { max-width: 100%; margin-bottom: var(--sp-4); }
.wp-caption-text { font-size: var(--text-sm); color: var(--text-3); text-align: center; }

/* ════════════════════════════════════════
   22. INNER PAGE RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="order:2"], [style*="order:1"] {
    order: unset !important;
  }
}

/* ── Form Styles ─────────────────────── */
input::placeholder, textarea::placeholder {
  color: var(--text-muted);
}

select option {
  background: var(--bg-2);
  color: var(--text-1);
}

/* ── Service Tags ────────────────────── */
.service-tag {
  padding: var(--sp-2) var(--sp-4);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  color: var(--text-2);
  transition: border-color 0.2s;
}
.service-tag:hover {
  border-color: var(--border-hover);
}

/* ════════════════════════════════════════
   BLOG POST STYLES
   ════════════════════════════════════════ */

/* Reading Progress */
.reading-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 9999;
  background: rgba(255,255,255,0.05);
}
.reading-progress__bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--cyan-400), var(--orange-400));
  transition: width 0.1s linear;
}

/* Blog Hero */
.blog-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-block: var(--sp-32) var(--sp-16);
  overflow: hidden;
}
.blog-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.blog-hero__image {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.blog-hero__gradient {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, 
    rgba(6,182,212,0.15) 0%, 
    rgba(15,23,42,0.95) 40%, 
    rgba(249,115,22,0.1) 100%
  );
}
.blog-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(2,6,23,0.7) 40%, transparent 100%);
}
.blog-hero__content {
  position: relative; z-index: 1;
}

/* Breadcrumb */
.blog-breadcrumb {
  display: flex; align-items: center; gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  font-size: var(--text-xs);
  color: var(--text-3);
}
.blog-breadcrumb a { color: var(--text-3); transition: color 0.2s; }
.blog-breadcrumb a:hover { color: var(--cyan-400); }
.blog-breadcrumb__sep { opacity: 0.4; }

/* Category Badge */
.blog-category-badge {
  display: inline-block;
  padding: var(--sp-1) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--cyan-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--r-full);
}
.blog-category-badge--sm {
  padding: 2px var(--sp-3);
  font-size: 0.65rem;
}
.blog-hero__category { margin-bottom: var(--sp-5); }

/* Hero Title */
.blog-hero__title {
  font-size: var(--text-4xl);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 900px;
  margin-bottom: var(--sp-5);
}
.blog-hero__excerpt {
  font-size: var(--text-lg);
  color: var(--text-2);
  max-width: 700px;
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}

/* Blog Meta */
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.blog-meta__author {
  display: flex; align-items: center; gap: var(--sp-3);
}
.blog-meta__avatar img {
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  border: 2px solid rgba(6,182,212,0.2);
}
.blog-meta__author-name {
  font-weight: 600; color: var(--text-1);
  font-size: var(--text-sm);
  display: block;
}
.blog-meta__details {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-xs); color: var(--text-3);
}
.blog-meta__dot { opacity: 0.4; }

/* Share Buttons */
.blog-share--hero { }
.blog-share__btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
}
.blog-share__btn:hover {
  border-color: var(--cyan-500);
  color: var(--cyan-400);
  background: rgba(6,182,212,0.08);
}

/* Blog Layout */
.blog-layout {
  padding-block: var(--sp-16);
}
.blog-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-16);
  align-items: start;
}
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-sidebar { display: none; }
}

/* Table of Contents */
.blog-sidebar {
  position: sticky;
  top: calc(var(--sp-8) + 3px); /* account for progress bar */
}
.blog-toc {
  padding: var(--sp-6);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
.blog-toc__title {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: var(--sp-4);
}
.blog-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  counter-reset: toc;
}
.blog-toc__item { counter-increment: toc; }
.blog-toc__link {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-xs);
  color: var(--text-3);
  line-height: 1.4;
  border-radius: var(--r-md);
  border-left: 2px solid transparent;
  transition: all 0.2s;
}
.blog-toc__link:hover {
  color: var(--text-1);
  background: rgba(255,255,255,0.03);
}
.blog-toc__link--active {
  color: var(--cyan-400) !important;
  border-left-color: var(--cyan-400);
  background: rgba(6,182,212,0.05);
}
.blog-toc__item--sub .blog-toc__link {
  padding-left: var(--sp-6);
  font-size: 0.7rem;
}

/* Blog Content — Typography */
.blog-content {
  max-width: 720px;
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-2);
}
.blog-content h2 {
  font-size: var(--text-2xl);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-1);
  margin-top: var(--sp-16);
  margin-bottom: var(--sp-6);
  padding-top: var(--sp-4);
  letter-spacing: -0.02em;
  scroll-margin-top: var(--sp-8);
}
.blog-content h3 {
  font-size: var(--text-xl);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-1);
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
  scroll-margin-top: var(--sp-8);
}
.blog-content h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-1);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}
.blog-content p {
  margin-bottom: var(--sp-6);
  max-width: 100%;
}
.blog-content p + p { margin-top: 0; }

/* Links */
.blog-content a {
  color: var(--cyan-400);
  text-decoration: underline;
  text-decoration-color: rgba(6,182,212,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.blog-content a:hover {
  text-decoration-color: var(--cyan-400);
}

/* Lists */
.blog-content ul, .blog-content ol {
  margin-bottom: var(--sp-6);
  padding-left: var(--sp-6);
}
.blog-content ul { list-style: none; }
.blog-content ul li {
  position: relative;
  padding-left: var(--sp-5);
  margin-bottom: var(--sp-3);
}
.blog-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 6px; height: 6px;
  background: var(--cyan-400);
  border-radius: var(--r-full);
}
.blog-content ol {
  list-style: decimal;
  color: var(--cyan-400);
}
.blog-content ol li {
  margin-bottom: var(--sp-3);
  padding-left: var(--sp-2);
}
.blog-content ol li::marker {
  font-weight: 700;
  color: var(--cyan-400);
}
.blog-content li { color: var(--text-2); }

/* Images */
.blog-content img {
  width: 100%;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  margin-block: var(--sp-8);
}
.blog-content figure {
  margin-block: var(--sp-10);
}
.blog-content figcaption {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-3);
  margin-top: var(--sp-3);
  font-style: italic;
}

/* Blockquotes */
.blog-content blockquote {
  position: relative;
  margin: var(--sp-10) 0;
  padding: var(--sp-8);
  padding-left: var(--sp-8);
  background: var(--bg-2);
  border-left: 3px solid var(--cyan-400);
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
  font-size: var(--text-lg);
  color: var(--text-1);
  font-style: italic;
  line-height: 1.6;
}
.blog-content blockquote p {
  color: var(--text-1);
  margin-bottom: 0;
}
.blog-content blockquote cite {
  display: block;
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: 600;
  color: var(--cyan-400);
}

/* Code Blocks */
.blog-content code {
  padding: 2px var(--sp-2);
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.12);
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 0.88em;
  color: var(--cyan-300);
}
.blog-content pre {
  margin-block: var(--sp-8);
  padding: var(--sp-6);
  background: var(--slate-900);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow-x: auto;
}
.blog-content pre code {
  background: none; border: none; padding: 0;
  font-size: var(--text-sm);
  color: var(--text-2);
}

/* Horizontal Rule */
.blog-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--sp-16) 0;
}

/* Tables */
.blog-content table {
  width: 100%;
  margin-block: var(--sp-8);
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.blog-content th {
  text-align: left;
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-2);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--text-1);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-content td {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border);
  color: var(--text-2);
}
.blog-content tr:hover td {
  background: rgba(255,255,255,0.02);
}

/* Strong & Emphasis */
.blog-content strong { color: var(--text-1); font-weight: 600; }
.blog-content em { color: var(--text-2); font-style: italic; }

/* ── Custom Blog Components (for use in post content) ── */

/* Callout / Takeaway Box */
.blog-callout,
.blog-content .wp-block-group.is-style-callout {
  margin: var(--sp-10) 0;
  padding: var(--sp-6) var(--sp-8);
  background: rgba(6,182,212,0.06);
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: var(--r-xl);
}
.blog-callout--orange {
  background: rgba(249,115,22,0.06);
  border-color: rgba(249,115,22,0.15);
}
.blog-callout__title {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--cyan-400);
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-callout__title--orange { color: var(--orange-400); }
.blog-callout p { margin-bottom: var(--sp-2); }
.blog-callout p:last-child { margin-bottom: 0; }

/* Stat Highlight */
.blog-stat {
  display: inline-flex;
  padding: var(--sp-1) var(--sp-3);
  background: rgba(6,182,212,0.08);
  border-radius: var(--r-md);
  font-weight: 700;
  color: var(--cyan-400);
}

/* Key Point */
.blog-key-point {
  margin: var(--sp-8) 0;
  padding: var(--sp-5) var(--sp-6);
  background: linear-gradient(135deg, rgba(6,182,212,0.04), rgba(249,115,22,0.04));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-1);
  text-align: center;
  line-height: 1.5;
}

/* Blog Footer Section */
.blog-footer-section {
  padding-block: var(--sp-12);
  border-top: 1px solid var(--border);
}
.blog-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-6);
}
.blog-tags {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
}
.blog-tag {
  padding: var(--sp-1) var(--sp-3);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  color: var(--text-3);
  transition: all 0.2s;
}
.blog-tag:hover {
  border-color: var(--cyan-500);
  color: var(--cyan-400);
}
.blog-share-row {
  display: flex; align-items: center; gap: var(--sp-4);
}
.blog-share-row__label {
  font-size: var(--text-xs);
  color: var(--text-3);
  font-weight: 600;
}
.blog-share-row__buttons {
  display: flex; gap: var(--sp-2);
}

/* Author Card */
.blog-author-section {
  padding-block: var(--sp-12);
}
.blog-author-card {
  display: flex; align-items: center; gap: var(--sp-6);
  padding: var(--sp-8);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  max-width: 720px;
  margin-left: 296px; /* align with content column */
}
@media (max-width: 900px) {
  .blog-author-card { margin-left: 0; }
}
.blog-author-card__avatar img {
  width: 80px; height: 80px;
  border-radius: var(--r-full);
  border: 2px solid rgba(6,182,212,0.2);
}
.blog-author-card__label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-author-card__name {
  font-size: var(--text-xl);
  margin-block: var(--sp-1) var(--sp-2);
}
.blog-author-card__bio {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.6;
}

/* Related Posts */
.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
@media (max-width: 768px) {
  .blog-related__grid { grid-template-columns: 1fr; }
}
.blog-card { display: flex; flex-direction: column; text-decoration: none; }
.blog-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin: -1px -1px 0 -1px;
  border: 1px solid var(--border);
  border-bottom: none;
}
.blog-card__image--placeholder {
  background: var(--bg-3);
}
.blog-card__image-gradient {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(249,115,22,0.1));
}
.blog-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.blog-card:hover .blog-card__img { transform: scale(1.05); }
.blog-card__body { padding: var(--sp-6); flex: 1; }
.blog-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-block: var(--sp-3) var(--sp-3);
  line-height: 1.3;
}
.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}
.blog-card__meta {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ── First letter / Drop cap ── */
.blog-content > p:first-of-type::first-letter {
  float: left;
  font-size: 3.5em;
  line-height: 0.8;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--cyan-400);
  padding-right: var(--sp-3);
  padding-top: var(--sp-2);
}

/* ════════════════════════════════════════
   SERVICE FUNNEL PAGES
   ════════════════════════════════════════ */

.funnel-hero {
  padding: var(--sp-32) 0 var(--sp-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.funnel-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(6,182,212,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.funnel-hero__eyebrow {
  display: inline-block;
  margin-bottom: var(--sp-4);
  padding: var(--sp-1) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--cyan-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: var(--r-full);
}
.funnel-hero__title {
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--sp-6);
  color: var(--text-1);
}
.funnel-hero__desc {
  font-size: var(--text-lg);
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto var(--sp-10);
  line-height: 1.6;
}

/* Pain points grid */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}
.pain-card {
  padding: var(--sp-6);
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-radius: var(--r-xl);
}
.pain-card__icon {
  font-size: 1.5rem;
  margin-bottom: var(--sp-3);
}
.pain-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--text-1);
}
.pain-card__text {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.7;
}

/* Deliverables */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-4);
}
.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.deliverable-item__check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,182,212,0.15);
  border-radius: var(--r-full);
  color: var(--cyan-400);
  font-size: 0.75rem;
  font-weight: 700;
}
.deliverable-item__text {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.5;
}
.deliverable-item__text strong {
  color: var(--text-1);
  display: block;
  margin-bottom: 2px;
}

/* Human badge */
.human-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-8);
  background: linear-gradient(135deg, rgba(6,182,212,0.06), rgba(249,115,22,0.06));
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: var(--r-2xl);
  max-width: 800px;
  margin: 0 auto;
}
.human-badge__icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,182,212,0.15);
  border-radius: var(--r-xl);
  font-size: 1.75rem;
}
.human-badge__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--text-1);
}
.human-badge__text {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.7;
}

/* Pricing anchor */
.pricing-anchor {
  text-align: center;
  padding: var(--sp-10);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  max-width: 700px;
  margin: 0 auto;
}
.pricing-anchor__old {
  font-size: var(--text-2xl);
  color: var(--text-3);
  text-decoration: line-through;
  margin-bottom: var(--sp-3);
}
.pricing-anchor__new {
  font-size: var(--text-lg);
  color: var(--cyan-400);
  font-weight: 600;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--sp-6) 0;
}
.faq-item__q {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--sp-3);
  cursor: default;
}
.faq-item__a {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.7;
}

/* Final CTA */
.funnel-cta {
  text-align: center;
  padding: var(--sp-20) 0;
  position: relative;
}
.funnel-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(6,182,212,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.funnel-cta__title {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--sp-4);
  color: var(--text-1);
}
.funnel-cta__desc {
  font-size: var(--text-lg);
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto var(--sp-8);
}
.funnel-cta__note {
  margin-top: var(--sp-4);
  font-size: var(--text-xs);
  color: var(--text-3);
}
