@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Syne:wght@700;800&family=DM+Mono:wght@400;500&display=swap');

/* ── DESIGN SYSTEM & TOKENS ──────────────────────── */
:root {
  /* Color Palette - Premium Dark Indigo & Velvet Purple */
  --ink:          #05030a; /* Ultra-deep indigo-tinted black */
  --ink2:         #0b0816; /* Dark space purple body background */
  --ink3:         #120e25; /* Card & sidebar backdrops */
  --ink4:         #1a1535; /* Hover states & active highlight backdrops */
  
  --black:        #05030a;
  --dark:         #0b0816;
  --dark2:        #120e25;
  
  /* Borders */
  --border:       rgba(139, 92, 246, 0.08); /* Sophisticated violet border */
  --border2:      rgba(139, 92, 246, 0.16); /* Higher contrast border */
  
  /* Accent Colors */
  --neon-bright:  #8b5cf6; /* Electric Violet */
  --neon:         #6366f1; /* Cosmic Indigo */
  --neon2:        #ec4899; /* Radiant Rose / Magenta */
  --neon3:        #14b8a6; /* Aurora Teal / Emerald */
  --neon4:        #f59e0b; /* Solar Gold / Amber */
  
  --gold:         #f59e0b;
  --gold2:        #fbbf24;
  --gold3:        #fcd34d;
  --purple:       #a78bfa;
  --red:          #ef4444;
  
  /* Text Colors */
  --cream:        #f8fafc; /* High contrast clean white */
  --cream2:       #e2e8f0; /* Off-white body text */
  --text:         #cbd5e1; /* Main body content text */
  --muted:        #94a3b8; /* Secondary slate label text */
  --muted2:       #64748b; /* Muted dark slate */
  
  /* Cards & Blurs */
  --card:         rgba(255, 255, 255, 0.02);
  --card2:        rgba(255, 255, 255, 0.04);
  --glass:        rgba(11, 8, 22, 0.75);
  --radius:       8px;
  --r:            4px;
  
  /* Typography */
  --ff-display:   'Syne', sans-serif;
  --ff-body:      'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-mono:      'DM Mono', monospace;
  
  /* Glows & Shadows */
  --glow:         0 0 25px rgba(99, 102, 241, 0.25);
  --glow3:        0 0 25px rgba(20, 184, 166, 0.25);
  --shadow-lg:    0 24px 48px rgba(0,0,0,0.5);
  
  /* Transitions */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── GRAIN TEXTURE ───────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9997;
  pointer-events: none;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── CUSTOM CURSOR ───────────────────────────────── */
body { cursor: none !important; }
* { cursor: none !important; }
#cursor {
  position: fixed; top: -50px; left: -50px;
  width: 12px; height: 12px;
  background: var(--neon);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483647;
  box-shadow: 0 0 10px var(--neon), 0 0 20px rgba(99, 102, 241, 0.5);
  transition: background 0.15s, width 0.15s, height 0.15s;
}
#cursorRing {
  position: fixed; top: -50px; left: -50px;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(99, 102, 241, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483646;
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* ── HEADER NAVIGATION ───────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex; align-items: center;
  text-decoration: none; gap: 8px;
  font-family: var(--ff-display);
  font-size: 1.25rem; font-weight: 800;
  color: var(--cream); letter-spacing: -0.02em;
}
.logo span {
  background: linear-gradient(135deg, var(--neon-bright), var(--neon2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: var(--ff-mono);
  font-size: 0.72rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: '↓'; font-size: 0.6rem; transition: transform 0.2s; }
.nav-dropdown:hover > a::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%);
  background: var(--ink3);
  border: 1px solid var(--border2);
  padding: 10px; min-width: 260px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, top 0.25s;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; top: calc(100% + 8px); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; font-size: 0.8rem;
  color: var(--text); text-transform: none; letter-spacing: 0;
  border-left: 2px solid transparent; transition: all 0.2s;
  border-radius: 4px;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover {
  color: var(--neon-bright);
  border-left-color: var(--neon-bright);
  background: rgba(139, 92, 246, 0.05);
}
.dropdown-menu a span { font-size: 0.95rem; }

.nav-dropdown::before { content: ''; position: absolute; top: 100%; left: -20px; right: -20px; height: 20px; }

.nav-cta {
  padding: 10px 22px !important;
  background: linear-gradient(90deg, var(--neon-bright), var(--neon)) !important;
  color: var(--white) !important;
  font-family: var(--ff-display) !important;
  font-weight: 800 !important; font-size: 0.8rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-radius: var(--r) !important;
  box-shadow: var(--glow);
  transition: transform 0.25s, box-shadow 0.25s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(99, 102, 241, 0.45) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--cream2); transition: all 0.3s; }

/* ── TYPOGRAPHY ──────────────────────────────────── */
.section-tag {
  font-family: var(--ff-mono);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--neon3);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 6px; height: 6px; background: var(--neon3); border-radius: 50%; box-shadow: var(--glow3); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.section-title span {
  background: linear-gradient(90deg, var(--neon-bright), var(--neon2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-family: var(--ff-body);
  font-size: 1.05rem; font-weight: 300;
  color: var(--muted); line-height: 1.8;
  max-width: 600px;
}

/* ── HOME HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 6% 80px; position: relative; overflow: hidden;
}
.hero-bg-img { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.08; filter: saturate(0.4) brightness(0.4); }
.hero-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--black) 35%, rgba(5,3,10,0.85) 70%, rgba(5,3,10,0.6));
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1; opacity: 0.04;
  background-image: linear-gradient(rgba(139, 92, 246, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(139, 92, 246, 0.25) 1px, transparent 1px);
  background-size: 54px 54px;
}
.hero-glow {
  position: absolute; top: 20%; right: 10%; width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%); z-index: 0;
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.15); border-radius: 50px;
  font-family: var(--ff-mono); font-size: 0.62rem; color: var(--purple);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px;
}
.badge-dot { width: 6px; height: 6px; background: var(--neon3); border-radius: 50%; box-shadow: var(--glow3); }
.hero-h1 {
  font-family: var(--ff-display); font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 12px; text-transform: uppercase;
}
.hero-h1 em {
  font-style: normal; display: block;
  background: linear-gradient(90deg, var(--neon-bright) 0%, var(--neon) 40%, var(--neon2) 80%);
  background-size: 200% 100%; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradMove 6s linear infinite;
}
@keyframes gradMove { 0% { background-position: 0% } 100% { background-position: 200% } }
.hero-sub { font-size: 1.15rem; line-height: 1.85; color: var(--muted); max-width: 620px; margin: 24px 0 44px; font-weight: 300; }
.hero-sub strong { color: var(--cream2); font-weight: 600; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--border); margin-top: 12px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: 0.62rem;
  color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase;
}
.trust-dot { width: 5px; height: 5px; background: var(--neon3); border-radius: 50%; box-shadow: var(--glow3); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(90deg, var(--neon-bright), var(--neon));
  color: var(--white) !important; font-family: var(--ff-display);
  font-weight: 800; font-size: 0.88rem; text-transform: uppercase;
  letter-spacing: 0.05em; border-radius: var(--r); text-decoration: none;
  border: none; cursor: none; transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(99, 102, 241, 0.45);
  color: var(--white) !important;
}

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 36px; background: transparent;
  color: var(--white) !important; font-family: var(--ff-display);
  font-weight: 800; font-size: 0.88rem; text-transform: uppercase;
  letter-spacing: 0.05em; border-radius: var(--r); text-decoration: none;
  border: 1px solid var(--border2); cursor: none; transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: var(--neon-bright);
  color: var(--purple) !important;
  background: rgba(139, 92, 246, 0.03);
}

/* ── COUNTER ROW ─────────────────────────────────── */
.counter-section { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.counter-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.counter-box {
  padding: 36px 28px; text-align: center; border-right: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background var(--transition);
}
.counter-box:last-child { border-right: none; }
.counter-box:hover { background: rgba(139, 92, 246, 0.015); }
.counter-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-bright), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.counter-box:hover::before { opacity: 1; }
.c-num {
  font-family: var(--ff-display); font-size: 2.8rem; font-weight: 800;
  color: var(--neon-bright); line-height: 1; letter-spacing: -0.02em;
  text-shadow: var(--glow);
}
.c-label { font-size: 0.72rem; color: var(--muted); margin-top: 8px; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--ff-mono); }
.c-sub { font-size: 0.65rem; color: var(--muted2); margin-top: 4px; }

/* ── SERVICES SECTION ────────────────────────────── */
.services-section { background: var(--dark2); position: relative; }
.services-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-bright) 30%, var(--neon3) 70%, transparent);
  opacity: 0.2;
}
.services-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.svc-card { background: var(--card); padding: 40px 32px; position: relative; overflow: hidden; transition: background var(--transition); text-decoration: none; display: block; }
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--neon-bright), var(--neon2));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.svc-card::after {
  content: ''; position: absolute; bottom: -40px; right: -40px; width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06), transparent); opacity: 0; transition: opacity 0.4s;
}
.svc-card:hover { background: var(--card2); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover::after { opacity: 1; }
.svc-img { width: 100%; height: 140px; object-fit: cover; margin-bottom: 24px; filter: brightness(0.5) saturate(0.6); transition: filter 0.4s, transform 0.4s; border-radius: var(--r); }
.svc-card:hover .svc-img { filter: brightness(0.7) saturate(0.9); transform: scale(1.02); }
.svc-num { font-family: var(--ff-mono); font-size: 0.6rem; color: var(--neon-bright); letter-spacing: 0.1em; margin-bottom: 12px; opacity: 0.6; }
.svc-card h3 { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em; text-transform: uppercase; }
.svc-card p { font-size: 0.88rem; line-height: 1.75; color: var(--muted); font-weight: 300; margin-bottom: 20px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-mono); font-size: 0.65rem; color: var(--neon-bright); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: gap var(--transition); }
.svc-card:hover .svc-link { gap: 12px; }

/* ── WHY US SPLIT ────────────────────────────────── */
.why-section { background: var(--black); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--border); }
.why-img-side { position: relative; overflow: hidden; min-height: 520px; }
.why-img-side img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4) saturate(0.6); }
.why-img-side::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(5,3,10,0.5));
}
.why-img-badge { position: absolute; bottom: 28px; left: 28px; z-index: 2; background: rgba(5,3,10,0.85); border: 1px solid var(--border2); padding: 14px 22px; border-radius: var(--r); backdrop-filter: blur(8px); }
.why-img-badge .num { font-family: var(--ff-display); font-size: 2rem; font-weight: 800; color: var(--neon-bright); text-shadow: var(--glow); }
.why-img-badge .lbl { font-family: var(--ff-mono); font-size: 0.58rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.why-content-side { background: var(--card); padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.why-points { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.why-point { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.why-point:first-child { border-top: 1px solid var(--border); }
.why-icon { width: 38px; height: 38px; background: rgba(139, 92, 246, 0.06); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; border-radius: var(--r); }
.why-point h4 { font-family: var(--ff-display); font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 6px; text-transform: uppercase; }
.why-point p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── PROCESS ─────────────────────────────────────── */
.process-section { background: var(--dark2); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin-top: 56px; }
.proc-card { background: var(--card); padding: 40px 30px; position: relative; overflow: hidden; transition: background var(--transition); }
.proc-card:hover { background: var(--card2); }
.proc-num { font-family: var(--ff-display); font-size: 4.2rem; font-weight: 800; color: var(--neon-bright); opacity: 0.04; line-height: 1; margin-bottom: 12px; }
.proc-icon { width: 44px; height: 44px; background: rgba(139, 92, 246, 0.06); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 20px; border-radius: var(--r); }
.proc-card h3 { font-family: var(--ff-display); font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; text-transform: uppercase; }
.proc-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
.proc-step-num { position: absolute; top: 24px; right: 24px; font-family: var(--ff-mono); font-size: 0.62rem; color: var(--neon-bright); opacity: 0.5; letter-spacing: 0.1em; }

/* ── RESULTS ─────────────────────────────────────── */
.results-section { background: var(--black); }
.results-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1px; background: var(--border); margin-top: 56px; }
.res-card { background: var(--card); padding: 40px; position: relative; overflow: hidden; transition: background var(--transition); }
.res-card:hover { background: var(--card2); }
.res-card.featured { grid-row: 1/3; }
.res-img { width: 100%; height: 180px; object-fit: cover; margin-bottom: 24px; filter: brightness(0.5) saturate(0.7); border-radius: var(--r); }
.res-tag { display: inline-block; padding: 4px 12px; font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; border: 1px solid; border-radius: var(--r); }
.tag-neon { border-color: rgba(99, 102, 241, 0.25); color: var(--neon); background: rgba(99, 102, 241, 0.05); }
.tag-green { border-color: rgba(20, 184, 166, 0.25); color: var(--neon3); background: rgba(20, 184, 166, 0.05); }
.tag-red { border-color: rgba(236, 72, 153, 0.25); color: var(--neon2); background: rgba(236, 72, 153, 0.05); }
.tag-gold { border-color: rgba(245, 158, 11, 0.25); color: var(--gold); background: rgba(245, 158, 11, 0.05); }
.res-num { font-family: var(--ff-display); font-weight: 800; line-height: 1; margin-bottom: 12px; letter-spacing: -0.03em; }
.res-card.featured .res-num { font-size: 5rem; color: var(--neon-bright); text-shadow: var(--glow); }
.res-card:not(.featured) .res-num { font-size: 3.4rem; color: var(--neon-bright); }
.res-card h3 { font-family: var(--ff-display); font-size: 0.95rem; font-weight: 800; color: var(--white); margin-bottom: 8px; text-transform: uppercase; }
.res-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.res-bar { width: 100%; height: 3px; background: rgba(255,255,255,0.04); margin-top: 20px; overflow: hidden; border-radius: 10px; }
.res-fill { height: 100%; background: linear-gradient(90deg, var(--neon-bright), var(--neon2)); animation: barIn 2s ease both; transform-origin: left; }
@keyframes barIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ── TOOLS ───────────────────────────────────────── */
.tools-section { background: var(--dark2); }
.tools-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--border); margin-top: 52px; }
.tool-card { background: var(--card); padding: 28px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: background var(--transition); }
.tool-card:hover { background: var(--card2); }
.tool-card img { width: 44px; height: 44px; object-fit: contain; filter: grayscale(1) brightness(0.6) saturate(0.2); transition: filter var(--transition); }
.tool-card:hover img { filter: grayscale(0) brightness(1) saturate(1); }
.tool-card span { font-family: var(--ff-mono); font-size: 0.6rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }

/* ── PRICING ─────────────────────────────────────── */
.pricing-section { background: var(--black); }
.client-pills { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 32px 0 52px; }
.c-pill { padding: 8px 20px; font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid; border-radius: 50px; background: rgba(255,255,255,0.01); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); max-width: 1040px; margin: 0 auto; }
.p-card { background: var(--card); padding: 44px 36px; position: relative; transition: background var(--transition); }
.p-card:hover { background: var(--card2); }
.p-card.hot { background: rgba(139, 92, 246, 0.015); border: 1px solid rgba(139, 92, 246, 0.2); box-shadow: 0 0 50px rgba(139,92,246,0.04); margin: -1px; }
.p-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); padding: 5px 18px; background: var(--neon-bright); color: var(--white); font-family: var(--ff-display); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; border-radius: 0 0 var(--r) var(--r); }
.p-plan { font-family: var(--ff-mono); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.p-card.hot .p-plan { color: var(--neon-bright); }
.p-price { font-family: var(--ff-display); font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em; }
.p-price sup { font-size: 1.1rem; vertical-align: top; margin-top: 6px; color: var(--neon-bright); margin-right: 2px; }
.p-range { font-size: 0.95rem; color: var(--muted); font-weight: 500; margin-bottom: 6px; }
.p-ideal { font-family: var(--ff-mono); font-size: 0.6rem; color: var(--muted2); margin-bottom: 24px; letter-spacing: 0.05em; }
.p-card.hot .p-ideal { color: var(--neon-bright); opacity: 0.8; }
.p-divider { width: 100%; height: 1px; background: linear-gradient(90deg, var(--neon-bright), transparent); opacity: 0.15; margin-bottom: 24px; }
.p-features { list-style: none; margin-bottom: 36px; }
.p-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--muted); margin-bottom: 12px; line-height: 1.5; font-weight: 300; }
.p-check { color: var(--neon3); font-size: 0.95rem; flex-shrink: 0; }
.btn-plan { display: block; width: 100%; padding: 14px; text-align: center; font-family: var(--ff-display); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; cursor: none; transition: all var(--transition); border-radius: var(--r); }
.btn-plan.btn-outline { background: transparent; border: 1px solid var(--border2); color: var(--neon-bright); }
.btn-plan.btn-outline:hover { background: rgba(139, 92, 246, 0.05); border-color: var(--neon-bright); }
.btn-plan.btn-solid { background: linear-gradient(90deg, var(--neon-bright), var(--neon)); color: var(--white); box-shadow: var(--glow); }
.btn-plan.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(99, 102, 241, 0.45); }
.p-note { padding: 10px 14px; background: rgba(255,255,255,0.01); border: 1px solid var(--border); font-family: var(--ff-mono); font-size: 0.6rem; color: var(--muted2); margin-bottom: 24px; line-height: 1.6; border-radius: var(--r); }
.p-card.hot .p-note { background: rgba(139, 92, 246, 0.04); border-color: rgba(139, 92, 246, 0.15); color: var(--purple); }

/* ── TESTIMONIALS ────────────────────────────────── */
.testi-section { background: var(--dark2); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 56px; }
.testi-card { background: var(--card); padding: 40px; position: relative; overflow: hidden; transition: background var(--transition); }
.testi-card:hover { background: var(--card2); }
.testi-card::after { content: '"'; position: absolute; top: 12px; right: 24px; font-family: var(--ff-display); font-size: 8rem; color: rgba(139, 92, 246, 0.03); line-height: 1; font-weight: 800; }
.stars { color: var(--neon4); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-text { font-size: 0.95rem; line-height: 1.8; color: var(--text); font-weight: 300; margin-bottom: 26px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.tav { width: 42px; height: 42px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 800; font-size: 0.9rem; color: var(--white); flex-shrink: 0; }
.av1 { background: linear-gradient(135deg, var(--neon-bright), var(--neon)); }
.av2 { background: linear-gradient(135deg, var(--neon3), var(--neon)); }
.av3 { background: linear-gradient(135deg, var(--neon2), var(--neon4)); }
.tname { font-family: var(--ff-display); font-size: 0.88rem; font-weight: 800; color: var(--white); text-transform: uppercase; }
.trole { font-size: 0.75rem; color: var(--muted); }
.trating { font-family: var(--ff-mono); font-size: 0.58rem; color: var(--neon3); margin-left: auto; letter-spacing: 0.04em; }

/* ── CITIES SECTION ──────────────────────────────── */
.cities-section { background: var(--black); }
.cities-header-wrap { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 52px; }
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.city-card { background: var(--card); padding: 32px 26px; transition: background var(--transition); text-decoration: none; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.city-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--neon-bright), var(--neon2));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.city-card:hover { background: var(--card2); }
.city-card:hover::before { transform: scaleX(1); }
.city-img { width: 100%; height: 95px; object-fit: cover; filter: brightness(0.35) saturate(0.5); margin-bottom: 20px; transition: filter 0.4s; border-radius: var(--r); }
.city-card:hover .city-img { filter: brightness(0.55) saturate(0.8); }
.city-card h3 { font-family: var(--ff-display); font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; text-transform: uppercase; }
.city-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; font-weight: 300; flex: 1; }
.city-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-family: var(--ff-mono); font-size: 0.62rem; color: var(--neon-bright); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── FAQ SECTION ─────────────────────────────────── */
.faq-section { background: var(--dark2); }
.faq-grid { display: grid; grid-template-columns: 1fr 320px; gap: 52px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: transparent; border: none; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 14px; cursor: pointer; text-align: left; }
.faq-q-text { font-family: var(--ff-display); font-size: 0.95rem; font-weight: 800; color: var(--white); line-height: 1.4; text-transform: uppercase; letter-spacing: 0.01em; }
.faq-icon { color: var(--neon-bright); font-size: 0.95rem; flex-shrink: 0; font-family: var(--ff-mono); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-body p { padding: 0 0 20px; font-size: 0.88rem; color: var(--muted); line-height: 1.8; font-weight: 300; }
.faq-sidebar { position: sticky; top: 96px; }
.faq-sidebar-box { background: var(--card); border: 1px solid var(--border2); padding: 40px 32px; border-radius: var(--radius); }
.faq-sidebar-box::before { content: ''; display: block; width: 100%; height: 2px; background: linear-gradient(90deg, var(--neon-bright), var(--neon2)); margin-bottom: 24px; }

/* ── CTA SECTION ─────────────────────────────────── */
.cta-section { background: var(--black); padding: 110px 6%; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(99,102,241,0.06) 0%, transparent 70%); }
.cta-box { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; background: var(--card); border: 1px solid var(--border2); padding: 64px 56px; text-align: center; border-radius: var(--radius); backdrop-filter: blur(10px); }
.cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--neon-bright) 30%, var(--neon2) 70%, transparent); }
.cta-box h2 { font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 18px; line-height: 1.15; letter-spacing: -0.02em; }
.cta-box h2 span { color: var(--neon-bright); text-shadow: var(--glow); }
.cta-box p { color: var(--muted); font-size: 1.02rem; margin-bottom: 40px; line-height: 1.8; font-weight: 300; }
.cta-guarantee { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.g-item { display: flex; align-items: center; gap: 8px; font-family: var(--ff-mono); font-size: 0.62rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.g-icon { color: var(--neon3); }

/* ── RECENT BLOGS GRID (Home Preview) ────────────── */
#blog-preview { background: var(--dark); }
#blog-preview .featured-blog-card {
  background: var(--card); text-decoration: none; display: flex; flex-direction: column;
  transition: background 0.3s; position: relative; overflow: hidden; grid-row: 1/3;
  border-radius: var(--radius);
}
#blog-preview .featured-blog-card:hover { background: var(--card2); }

/* ── INNER PAGE HERO ─────────────────────────────── */
.page-hero {
  padding: 150px 6% 80px; position: relative; overflow: hidden; background: var(--dark);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(139,92,246,0.035), transparent);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero-badge { margin-bottom: 20px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-family: var(--ff-mono); font-size: 0.68rem;
  color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--neon-bright); }
.breadcrumb .sep { color: var(--neon2); opacity: 0.6; }

/* ── BLOG INDEX / LISTINGS ───────────────────────── */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 52px; }
.fbtn {
  padding: 8px 20px; background: transparent; border: 1px solid var(--border);
  font-family: var(--ff-display); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  cursor: pointer; transition: all 0.3s; border-radius: var(--r);
}
.fbtn.active, .fbtn:hover {
  border-color: var(--neon); color: var(--white);
  background: rgba(99, 102, 241, 0.08); box-shadow: var(--glow);
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.blog-featured {
  grid-column: 1/-1; display: grid; grid-template-columns: 1.2fr 1fr;
  background: var(--card); transition: background 0.3s; text-decoration: none;
  position: relative; overflow: hidden; border-radius: var(--radius);
}
.blog-featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--neon-bright), var(--neon2), var(--neon3));
  background-size: 300% 100%; animation: gradShift 6s linear infinite;
}
@keyframes gradShift { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.blog-featured:hover { background: var(--card2); }

.blog-thumb {
  height: 220px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden; background-size: cover; background-position: center;
}
.blog-featured .blog-thumb { height: 100%; min-height: 320px; font-size: 5rem; }
.t1 { background: radial-gradient(circle at 50% 50%, rgba(139,92,246,0.08), rgba(5,3,10,0.7)); }

.b-cat {
  position: absolute; top: 14px; left: 14px; padding: 5px 12px;
  font-family: var(--ff-display); font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid; border-radius: var(--r);
}
.cat-n { border-color: rgba(20, 184, 166, 0.3); color: var(--neon3); background: rgba(20, 184, 166, 0.07); }

.blog-body { padding: 32px; display: flex; flex-direction: column; }
.blog-featured .blog-body { padding: 48px; justify-content: center; }

.b-meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.08em; color: var(--muted);
}
.b-meta .mdot { width: 3px; height: 3px; background: var(--neon2); border-radius: 50%; }

.blog-card {
  background: var(--card); text-decoration: none; transition: background 0.3s;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  border-radius: var(--radius);
}
.blog-card:hover { background: var(--card2); }
.blog-card::before, .blog-featured::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-bright), transparent);
  transform: scaleX(0); transition: transform 0.4s;
}
.blog-card:hover::before, .blog-featured:hover::after { transform: scaleX(1); }

.blog-card h3, .blog-featured h3 {
  font-family: var(--ff-display); font-size: 1.05rem; font-weight: 800;
  color: var(--white); line-height: 1.35; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.blog-featured h3 { font-size: 1.4rem; }
.blog-card p, .blog-featured p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; flex: 1; font-weight: 300; }

.b-read {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-family: var(--ff-display); font-size: 0.68rem; font-weight: 800;
  color: var(--neon-bright); letter-spacing: 0.1em; text-transform: uppercase;
  transition: gap 0.3s, text-shadow 0.3s;
}
.blog-card:hover .b-read, .blog-featured:hover .b-read { gap: 12px; text-shadow: 0 0 10px rgba(139,92,246,0.5); }

.newsletter {
  background: var(--card); border: 1px solid var(--border2); padding: 56px 48px;
  text-align: center; margin-top: 72px; position: relative; overflow: hidden;
  border-radius: var(--radius);
}
.newsletter::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-bright), var(--neon2), transparent);
}
.newsletter h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 800; color: var(--white); text-transform: uppercase; margin-bottom: 12px; }
.newsletter p { color: var(--muted); font-size: 0.95rem; margin-bottom: 32px; line-height: 1.7; font-weight: 300; }
.nl-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; }
.nl-input {
  flex: 1; background: rgba(255,255,255,0.01); border: 1px solid var(--border2);
  padding: 14px 18px; color: var(--white); font-family: var(--ff-body);
  font-size: 0.9rem; outline: none; transition: border-color 0.3s; border-radius: var(--r);
}
.nl-input:focus { border-color: var(--neon-bright); }
.nl-btn {
  padding: 14px 28px; background: linear-gradient(90deg, var(--neon-bright), var(--neon));
  border: none; color: var(--white); font-family: var(--ff-display);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; transition: all 0.3s;
  white-space: nowrap; border-radius: var(--r); box-shadow: var(--glow);
}
.nl-btn:hover { transform: translateY(-1px); box-shadow: 0 0 35px rgba(99, 102, 241, 0.45); }

/* ── BLOG ARTICLE STYLES & GUTENBERG CONTENT ─────── */
.blog-hero { position: relative; overflow: hidden; padding: 160px 6% 72px; background: var(--dark); }
.blog-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(139,92,246,0.08), transparent 70%); }
.blog-hero-bg { position: absolute; inset: 0; z-index: 0; }
.blog-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.06; filter: saturate(0.4); }
.blog-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, var(--dark) 0%, rgba(11,8,22,0.5) 50%, var(--dark) 100%); }
.blog-hero-content { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.blog-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.68rem; color: var(--muted); margin-bottom: 24px; font-family: var(--ff-mono); flex-wrap: wrap; text-transform: uppercase; }
.blog-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.blog-breadcrumb a:hover { color: var(--neon-bright); }
.blog-breadcrumb span { color: var(--neon2); opacity: 0.7; }
.post-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.meta-badge { padding: 5px 14px; border: 1px solid; border-radius: var(--r); font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; }
.badge-red { border-color: rgba(236,72,153,0.3); color: var(--neon2); background: rgba(236,72,153,0.06); }
.badge-muted { border-color: var(--border2); color: var(--muted); background: transparent; }
.post-h1 { font-family: var(--ff-display); font-size: clamp(2rem, 4.2vw, 3.6rem); font-weight: 800; color: var(--white); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 24px; text-transform: uppercase; }
.post-intro { font-size: 1.15rem; line-height: 1.85; color: var(--muted); font-weight: 300; max-width: 780px; }

/* Article Layout Grid */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; max-width: 1200px; margin: 0 auto; padding: 72px 6%; }
.article-main { min-width: 0; }
.article-sidebar { position: sticky; top: 96px; align-self: start; display: flex; flex-direction: column; gap: 24px; }

/* Complete Gutenberg Content Styling */
.article-main h2 {
  font-family: var(--ff-display); font-size: 1.6rem; font-weight: 800;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.02em;
  margin: 52px 0 20px; padding-top: 48px; border-top: 1px solid var(--border);
  line-height: 1.25;
}
.article-main h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-main h3 {
  font-family: var(--ff-display); font-size: 1.15rem; font-weight: 800;
  color: var(--neon-bright); text-transform: uppercase; letter-spacing: 0.04em;
  margin: 36px 0 16px; line-height: 1.35;
}
.article-main p {
  font-size: 1.05rem; line-height: 1.85; color: var(--text);
  font-weight: 300; margin-bottom: 24px;
}
.article-main strong { color: var(--white); font-weight: 600; }
.article-main ul, .article-main ol { margin: 0 0 24px 24px; }
.article-main li { font-size: 1.02rem; line-height: 1.8; color: var(--text); font-weight: 300; margin-bottom: 10px; }

/* Callout blocks */
.callout { padding: 24px 30px; margin: 32px 0; border-radius: var(--radius); position: relative; overflow: hidden; }
.callout::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.callout-warn, .callout-danger { background: rgba(245, 158, 11, 0.04); border: 1px solid rgba(245, 158, 11, 0.15); }
.callout-warn::before, .callout-danger::before { background: var(--neon4); }
.callout-alert { background: rgba(236, 72, 153, 0.04); border: 1px solid rgba(236, 72, 153, 0.15); }
.callout-alert::before { background: var(--neon2); }
.callout-tip, .callout-info { background: rgba(99, 102, 241, 0.04); border: 1px solid rgba(99, 102, 241, 0.15); }
.callout-tip::before, .callout-info::before { background: var(--neon); }
.callout-success { background: rgba(20, 184, 166, 0.04); border: 1px solid rgba(20, 184, 166, 0.15); }
.callout-success::before { background: var(--neon3); }
.callout-label { font-family: var(--ff-mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; font-weight: 500; }
.callout-warn .callout-label, .callout-danger .callout-label { color: var(--neon4); }
.callout-alert .callout-label { color: var(--neon2); }
.callout-tip .callout-label, .callout-info .callout-label { color: var(--neon); }
.callout-success .callout-label { color: var(--neon3); }
.callout p { font-size: 0.95rem; color: var(--text); margin: 0; line-height: 1.75; }

/* Stat Blocks inside Article */
.stat-blocks, .stat-row-article { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin: 36px 0; border-radius: var(--radius); overflow: hidden; }
.stat-b, .stat-block-a { background: var(--card); padding: 24px; text-align: center; }
.stat-b .num, .stat-block-a .n { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 800; line-height: 1; color: var(--neon-bright); }
.stat-b .lbl, .stat-block-a .l { font-family: var(--ff-mono); font-size: 0.6rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; }

/* Steps / Structured guides in posts */
.step-list { display: flex; flex-direction: column; gap: 0; margin: 36px 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.step-item { display: flex; gap: 24px; padding: 28px; border-bottom: 1px solid var(--border); background: var(--card); }
.step-item:last-child { border-bottom: none; }
.step-n { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 800; color: var(--neon-bright); line-height: 1; opacity: 0.15; }
.step-content h4 { font-family: var(--ff-display); font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; text-transform: uppercase; }
.step-content p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* Gutenberg Tables */
.wp-block-table, .data-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 0.88rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border2); }
.wp-block-table th, .data-table th { background: rgba(139, 92, 246, 0.04); color: var(--neon-bright); font-family: var(--ff-mono); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 18px; text-align: left; border-bottom: 2px solid var(--border2); }
.wp-block-table td, .data-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); color: var(--text); font-weight: 300; line-height: 1.65; background: var(--card); }
.wp-block-table tr:last-child td, .data-table tr:last-child td { border-bottom: none; }

/* Gutenberg Images */
.wp-block-image { margin: 36px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border2); }
.wp-block-image img { width: 100%; height: auto; display: block; filter: brightness(0.85); }
.wp-block-image figcaption { padding: 12px; background: var(--ink3); font-size: 0.78rem; color: var(--muted); text-align: center; font-family: var(--ff-mono); }

/* Sidebar widgets */
.sidebar-toc, .sidebar-cta, .sidebar-share { background: var(--card); border: 1px solid var(--border); padding: 26px; border-radius: var(--radius); }
.sidebar-toc h4, .sidebar-cta h4, .sidebar-share h4 { font-family: var(--ff-display); font-size: 0.75rem; font-weight: 800; color: var(--neon-bright); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.toc-list { list-style: none; }
.toc-list li { margin-bottom: 10px; }
.toc-list a { font-size: 0.8rem; color: var(--muted); text-decoration: none; display: flex; gap: 8px; align-items: flex-start; line-height: 1.45; transition: color 0.3s; }
.toc-list a:hover { color: var(--neon-bright); }

/* Author Box */
.author-box { background: var(--card); border: 1px solid var(--border); padding: 32px; display: flex; gap: 24px; margin-top: 56px; border-radius: var(--radius); }
.author-av { width: 56px; height: 56px; background: linear-gradient(135deg, var(--neon-bright), var(--neon)); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 800; color: var(--white); font-size: 1.15rem; flex-shrink: 0; border-radius: var(--radius); }
.author-name { font-family: var(--ff-display); font-size: 0.95rem; font-weight: 800; color: var(--white); letter-spacing: 0.02em; text-transform: uppercase; }
.author-role { font-family: var(--ff-mono); font-size: 0.62rem; color: var(--neon-bright); margin: 4px 0 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.author-bio { font-size: 0.88rem; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ── SINGLE SERVICE PAGES ────────────────────────── */
.svc-hero-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; min-height: 520px; background: var(--dark); border-bottom: 1px solid var(--border); }
.svc-hero-content { padding: 150px 60px 80px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.svc-hero-content::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 0% 50%, rgba(139,92,246,0.06), transparent 70%); }
.svc-hero-img { position: relative; overflow: hidden; background-size: cover; background-position: center; }
.svc-hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--dark) 0%, rgba(11,8,22,0.3) 40%, transparent); }
.svc-h1 { font-family: var(--ff-display); font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 800; color: var(--white); line-height: 1.08; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 20px; position: relative; z-index: 1; }
.svc-h1 span { background: linear-gradient(90deg, var(--neon-bright), var(--neon2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.svc-sub { font-size: 1.05rem; line-height: 1.85; color: var(--muted); max-width: 540px; margin-bottom: 40px; font-weight: 300; position: relative; z-index: 1; }
.article-content { padding: 72px 6%; max-width: 1000px; margin: 0 auto; color: var(--text); }
.article-content h2 { font-family: var(--ff-display); font-size: 1.8rem; color: var(--white); margin-top: 48px; margin-bottom: 20px; text-transform: uppercase; border-top: 1px solid var(--border); padding-top: 48px; }
.article-content h2:first-child { border: none; padding-top: 0; margin-top: 0; }
.article-content h3 { font-family: var(--ff-display); font-size: 1.2rem; color: var(--neon-bright); margin-top: 32px; margin-bottom: 16px; text-transform: uppercase; }
.article-content p { font-size: 1.02rem; line-height: 1.85; font-weight: 300; margin-bottom: 24px; }
.article-content ul, .article-content ol { margin-bottom: 24px; padding-left: 24px; }
.article-content li { margin-bottom: 10px; font-size: 1rem; font-weight: 300; }

/* Service feature grids */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.feat-card { background: var(--card); border: 1px solid var(--border); padding: 32px 28px; border-radius: var(--radius); transition: all 0.3s; }
.feat-card:hover { border-color: rgba(139,92,246,0.2); background: var(--card2); transform: translateY(-2px); }
.feat-icon { font-size: 1.6rem; margin-bottom: 18px; display: block; }
.feat-card h3 { font-family: var(--ff-display); font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; text-transform: uppercase; }
.feat-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

.why-card { display: flex; gap: 16px; background: var(--card); border: 1px solid var(--border); padding: 28px; border-radius: var(--radius); }
.why-card h4 { font-family: var(--ff-display); font-size: 0.95rem; font-weight: 800; color: var(--white); margin-bottom: 6px; text-transform: uppercase; }
.why-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

.process-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.ps-step { background: var(--card); border: 1px solid var(--border); padding: 28px; border-radius: var(--radius); }
.ps-num { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 800; color: var(--neon-bright); opacity: 0.2; line-height: 1; margin-bottom: 12px; }
.ps-step h4 { font-family: var(--ff-display); font-size: 0.92rem; font-weight: 800; color: var(--white); margin-bottom: 8px; text-transform: uppercase; }
.ps-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

.res-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.rs-box { background: var(--card); border: 1px solid var(--border); padding: 32px 24px; border-radius: var(--radius); text-align: center; }
.rs-box .rs-num { font-family: var(--ff-display); font-size: 2.6rem; font-weight: 800; color: var(--neon-bright); line-height: 1; margin-bottom: 10px; }
.rs-box h4 { font-family: var(--ff-display); font-size: 0.88rem; font-weight: 800; color: var(--white); margin-bottom: 8px; text-transform: uppercase; }
.rs-box p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

.cta-bar { background: var(--card); border: 1px solid var(--border2); padding: 36px; border-radius: var(--radius); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-bar h3 { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 800; color: var(--white); text-transform: uppercase; }

/* ── FOOTER ──────────────────────────────────────── */
footer { background: var(--ink2); border-top: 1px solid var(--border); padding: 72px 6% 36px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-wrap p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; font-weight: 300; margin-top: 16px; max-width: 320px; }
.footer-col h5 { font-family: var(--ff-mono); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neon-bright); margin-bottom: 22px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--muted); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--border); }
.footer-bottom p { font-family: var(--ff-mono); font-size: 0.65rem; color: var(--muted2); letter-spacing: 0.04em; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: all 0.25s; }
.social-link:hover { border-color: var(--neon-bright); color: var(--neon-bright); background: rgba(139,92,246,0.03); }

/* ── FLOATING BUTTONS (WhatsApp & Chat) ───────────── */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3); transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-btn:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,0.45); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
.wa-tooltip {
  position: absolute; right: 62px; top: 50%; transform: translateY(-50%);
  background: var(--ink3); border: 1px solid var(--border2); color: var(--cream2);
  font-family: var(--ff-mono); font-size: 0.65rem; padding: 6px 12px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.25s; border-radius: var(--r);
}
.whatsapp-btn:hover .wa-tooltip { opacity: 1; }

.livechat-btn {
  position: fixed; bottom: 92px; right: 28px; z-index: 500;
  width: 52px; height: 52px; background: var(--neon-bright); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer; border: none;
  box-shadow: 0 8px 24px rgba(139,92,246,0.3); transition: transform 0.25s, box-shadow 0.25s;
}
.livechat-btn:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 12px 32px rgba(139,92,246,0.45); }
.livechat-btn svg { width: 22px; height: 22px; fill: var(--white); }
.chat-badge { position: absolute; top: -1px; right: -1px; width: 12px; height: 12px; background: var(--red); border-radius: 50%; border: 2px solid var(--black); }

.chat-window {
  position: fixed; bottom: 156px; right: 28px; z-index: 500;
  width: 320px; background: var(--ink3); border: 1px solid var(--border2);
  box-shadow: var(--shadow-lg); display: none; flex-direction: column; border-radius: var(--radius); overflow: hidden;
}
.chat-window.open { display: flex; animation: chatSlide 0.3s var(--ease-out); }
@keyframes chatSlide { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.chat-header { background: linear-gradient(90deg, var(--neon-bright), var(--neon)); padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 34px; height: 34px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.chat-header-info h4 { font-family: var(--ff-display); font-size: 0.88rem; font-weight: 800; color: var(--white); text-transform: uppercase; }
.chat-header-info p { font-family: var(--ff-mono); font-size: 0.6rem; color: rgba(255,255,255,0.7); }
.chat-online { width: 6px; height: 6px; background: #2ECC71; border-radius: 50%; margin-left: auto; box-shadow: 0 0 10px #2ECC71; }
.chat-close { background: none; border: none; color: var(--white); opacity: 0.7; font-size: 1.25rem; cursor: pointer; margin-left: 8px; }
.chat-messages { padding: 18px; flex: 1; min-height: 160px; display: flex; flex-direction: column; gap: 12px; overflow-y: auto; }
.chat-msg { max-width: 85%; padding: 10px 14px; font-size: 0.84rem; line-height: 1.5; border-radius: var(--r); }
.chat-msg.bot { background: var(--ink4); border: 1px solid var(--border); color: var(--cream2); align-self: flex-start; }
.chat-msg.user { background: linear-gradient(90deg, var(--neon-bright), var(--neon)); color: var(--white); align-self: flex-end; }
.chat-input-row { display: flex; gap: 10px; padding: 14px; border-top: 1px solid var(--border); background: var(--ink2); }
.chat-input { flex: 1; background: var(--ink4); border: 1px solid var(--border2); padding: 10px 14px; color: var(--white); font-family: var(--ff-body); font-size: 0.84rem; outline: none; transition: border-color 0.2s; border-radius: var(--r); }
.chat-input:focus { border-color: var(--neon-bright); }
.chat-send { width: 36px; height: 36px; background: var(--neon-bright); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; flex-shrink: 0; border-radius: var(--r); }
.chat-send:hover { background: var(--neon); }
.chat-send svg { width: 16px; height: 16px; fill: var(--white); }

/* ── ANIMATIONS ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.js-ready .reveal { opacity: 0; }
.js-ready .reveal.visible { opacity: 1; }

/* ── REVENUE GAIN / CTA BAR FOR PAGES ────────────── */
.cta-bar { margin: 44px 0; }

/* ── FORMS ───────────────────────────────────────── */
.fgroup { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.fgroup label { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neon3); font-weight: 500; }
.fgroup input, .fgroup select, .fgroup textarea {
  background: var(--ink3); border: 1px solid var(--border2);
  padding: 14px 18px; color: var(--white);
  font-family: var(--ff-body); font-size: 0.92rem; font-weight: 300;
  outline: none; transition: border-color 0.25s; width: 100%; border-radius: var(--r);
}
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--neon-bright); }
.fgroup input::placeholder, .fgroup textarea::placeholder { color: var(--muted2); }
.fgroup select { appearance: none; cursor: pointer; }
.fgroup textarea { resize: vertical; min-height: 120px; }

/* ── RESPONSIVE MEDIA QUERIES ────────────────────── */
@media (max-width: 1140px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .res-card.featured { grid-row: auto; grid-column: 1/-1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  nav { padding: 0 5%; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--glass); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0; padding: 16px 0; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 12px 6%; width: 100%; display: block; }
  
  .dropdown-menu {
    position: static; opacity: 1; pointer-events: all;
    transform: none; box-shadow: none; border: none;
    background: transparent; padding: 0 0 0 24px;
    min-width: 100%;
  }
  
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-side { min-height: 380px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-sidebar { position: static; }
  .svc-hero-wrap { grid-template-columns: 1fr; }
  .svc-hero-img { display: none; }
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  .counter-row { grid-template-columns: repeat(2, 1fr); }
  .counter-box { border-bottom: 1px solid var(--border); }
  .counter-box:nth-child(2) { border-right: none; }
  .counter-box:nth-child(3) { border-bottom: none; }
  .counter-box:last-child { border-bottom: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .why-card { flex-direction: column; gap: 12px; }
  .process-strip { grid-template-columns: 1fr; }
  .res-strip { grid-template-columns: 1fr; }
  .cta-bar { flex-direction: column; text-align: center; gap: 20px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-box { padding: 44px 28px; }
  .client-pills { flex-direction: column; align-items: center; }
  .nl-form { flex-direction: column; }
  .nl-btn { width: 100%; }
}
