/* ═══════════════════════════════════════════════════════════
   CODE PACE SOLUTIONS — Premium Agency CSS
   Version: 2.0 | Optimized for Conversion
═══════════════════════════════════════════════════════════ */

:root {
  --ink: #04050E;
  --surface: #0A0B18;
  --surface2: #101220;
  --electric: #2563EB;
  --electric-light: #3B82F6;
  --neon: #00D4FF;
  --neon-green: #00FFB2;
  --amber: #F59E0B;
  --rose: #F43F5E;
  --ghost: rgba(255,255,255,0.05);
  --ghostborder: rgba(255,255,255,0.08);
  --grad: linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #0EA5E9 100%);
  --grad-neon: linear-gradient(135deg, #00D4FF, #2563EB);
  --grad-warm: linear-gradient(135deg, #2563EB, #7C3AED);
  --muted: #6B7280;
  --text: #E2E8F0;
  --text-muted: #94A3B8;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-blue: 0 12px 40px rgba(37,99,235,0.35);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--electric); border-radius: 2px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--neon); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.05s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1.5px solid rgba(0,212,255,0.4);
  border-radius: 50%; pointer-events: none; z-index: 99998;
  transform: translate(-50%,-50%);
  transition: all 0.12s ease;
}

/* ═══════════════════════════
   NAVIGATION
═══════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(4,5,14,0.80);
  backdrop-filter: blur(28px) saturate(1.5);
  border-bottom: 1px solid var(--ghostborder);
  transition: all 0.3s;
}
nav.scrolled {
  background: rgba(4,5,14,0.97);
  box-shadow: 0 4px 40px rgba(37,99,235,0.12);
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 38px; width: auto; max-width: 140px; object-fit: contain; display: block; }
.logo-text {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 17px;
  color: #fff; letter-spacing: -0.5px;
}
.logo-text span { color: var(--neon); }

.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-muted); font-size: 13.5px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s; display: flex; align-items: center; gap: 4px;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: var(--ghost); }
.nav-links a.active { color: var(--neon); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(10,11,24,0.97); border: 1px solid var(--ghostborder);
  border-radius: 16px; padding: 8px; min-width: 210px;
  opacity: 0; pointer-events: none; transition: all 0.2s;
  backdrop-filter: blur(20px); box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.has-dropdown:hover .dropdown {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; color: var(--text-muted); border-radius: 10px; font-size: 13px;
  background: none;
}
.dropdown a:hover { background: var(--ghost); color: #fff; }
.dropdown-icon {
  width: 28px; height: 28px; background: var(--grad); border-radius: 7px;
  display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0;
}

.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-outline {
  padding: 9px 18px; border: 1.5px solid var(--ghostborder);
  color: var(--text-muted); border-radius: 10px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--electric); color: #fff; }
.btn-cta {
  padding: 10px 20px; background: var(--grad); color: #fff;
  border-radius: 10px; font-size: 13.5px; font-weight: 700; text-decoration: none;
  border: none; cursor: pointer; position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════
   PAGE SYSTEM
═══════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════ */
.ann-bar {
  background: linear-gradient(90deg, #1D4ED8, #0EA5E9);
  color: #fff; text-align: center; padding: 12px 20px;
  font-size: 13.5px; font-weight: 600; position: relative; z-index: 999;
  margin-top: 76px; letter-spacing: 0.1px;
}
.ann-bar a { color: var(--neon); text-decoration: none; font-weight: 800; }

/* ═══════════════════════════
   HERO SECTION
═══════════════════════════ */
#hero3d {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; opacity: 0.7;
}
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; padding: 120px 5% 100px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 70% 40%, rgba(37,99,235,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(0,212,255,0.06) 0%, transparent 60%);
  z-index: 1; pointer-events: none;
}
.hero-content {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 0.95fr; gap: 80px; align-items: center;
  position: relative; z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.2);
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; color: var(--neon);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px; height: 6px; background: var(--neon); border-radius: 50%;
  animation: breathe 2s infinite;
}
@keyframes breathe {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.3; transform:scale(0.6); }
}

.hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  color: #fff; margin-bottom: 24px; letter-spacing: -2px; line-height: 1.05;
}
.gradient-text {
  background: var(--grad-neon);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  color: var(--text-muted); font-size: 17px; line-height: 1.75;
  margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-hero {
  padding: 15px 32px; font-size: 15px; font-weight: 700; border-radius: 12px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s; position: relative; overflow: hidden; font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-hero-primary { background: var(--grad); color: #fff; }
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-blue); }
.btn-hero-secondary { background: var(--ghost); border: 1px solid var(--ghostborder); color: #fff; }
.btn-hero-secondary:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.hero-trust {
  display: flex; align-items: center; gap: 28px;
  padding-top: 36px; border-top: 1px solid var(--ghostborder);
  margin-bottom: 20px;
}
.trust-stat .num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 30px; font-weight: 800; color: #fff; }
.trust-stat .num span { color: var(--neon); }
.trust-stat .lbl { font-size: 11px; color: #4B5563; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.trust-div { width: 1px; height: 40px; background: var(--ghostborder); }

.trust-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.trust-badge {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  background: var(--ghost); border: 1px solid var(--ghostborder);
  padding: 5px 12px; border-radius: 100px;
}

/* ── HERO VISUAL CARD ── */
.hero-visual { position: relative; }
.float-badge {
  position: absolute; background: rgba(10,11,24,0.95); border: 1px solid var(--ghostborder);
  border-radius: 12px; padding: 10px 16px; font-size: 13px; font-weight: 700; color: #fff;
  backdrop-filter: blur(12px); animation: float 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5); z-index: 10;
}
.float-badge-1 { top: -20px; right: -16px; animation-delay: 0s; }
.float-badge-2 { bottom: 16px; left: -24px; animation-delay: 2.5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.dashboard-card {
  background: rgba(10,11,24,0.9); border: 1px solid var(--ghostborder);
  border-radius: 24px; padding: 28px; backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
}
.dashboard-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(37,99,235,0.25), transparent 70%);
}
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; color: #fff; font-weight: 700; }
.live-dot { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--neon-green); font-weight: 700; }
.live-dot::before { content: ''; width: 6px; height: 6px; background: var(--neon-green); border-radius: 50%; animation: breathe 1.5s infinite; }

.metrics-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.metric-box { background: var(--ghost); border: 1px solid var(--ghostborder); border-radius: 12px; padding: 14px; text-align: center; }
.metric-box .val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 800; }
.metric-box .val.green { color: var(--neon-green); }
.metric-box .val.purple { color: #818CF8; }
.metric-box .val.amber { color: var(--amber); }
.metric-box .lbl { font-size: 10px; color: #4B5563; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-top: 2px; }

.chart-area { height: 90px; margin-bottom: 18px; }
.chart-bars { display: flex; align-items: flex-end; gap: 5px; height: 100%; }
.chart-bar { flex: 1; border-radius: 4px 4px 0 0; }
.chart-bar.blue { background: linear-gradient(to top, #1D4ED8, #60A5FA); opacity: 0.7; }
.chart-bar.cyan { background: linear-gradient(to top, #0EA5E9, #67E8F9); opacity: 0.8; }

.activity-feed { display: flex; flex-direction: column; gap: 8px; }
.activity-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: var(--ghost); border-radius: 10px; border: 1px solid var(--ghostborder); }
.activity-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; flex-shrink: 0; }
.activity-info { flex: 1; }
.activity-name { font-size: 12px; font-weight: 700; color: #fff; }
.activity-detail { font-size: 10.5px; color: #4B5563; }
.activity-time { font-size: 10px; color: var(--neon); font-weight: 700; }

/* ═══════════════════════════
   LOGOS / TRUSTED BY
═══════════════════════════ */
.logos-section {
  padding: 40px 5%;
  border-top: 1px solid var(--ghostborder); border-bottom: 1px solid var(--ghostborder);
  background: rgba(255,255,255,0.015);
}
.logos-label { text-align: center; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #374151; margin-bottom: 24px; }
.logos-scroll { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.logo-pill {
  font-weight: 700; font-size: 13px; color: #374151;
  padding: 8px 20px; border: 1px solid #1F2937; border-radius: 100px;
  transition: all 0.2s; cursor: default;
}
.logo-pill:hover { color: var(--text-muted); border-color: var(--ghostborder); }

/* ═══════════════════════════
   SECTION COMMONS
═══════════════════════════ */
.section { padding: 100px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--neon); margin-bottom: 14px;
}
.section-tag::before { content: '//'; color: rgba(0,212,255,0.3); }
.section-title { font-size: clamp(30px, 4vw, 52px); color: #fff; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 600px; margin-bottom: 60px; }

/* ─ SCROLL REVEAL ─ */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════
   PAIN POINTS
═══════════════════════════ */
.pain-section { background: rgba(255,255,255,0.01); }
.pain-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.pain-card {
  background: var(--surface); border: 1px solid var(--ghostborder);
  border-radius: 16px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s;
}
.pain-card:hover { border-color: rgba(37,99,235,0.3); }
.solution-card { border-color: rgba(37,99,235,0.3) !important; background: rgba(37,99,235,0.06) !important; }
.pain-icon { font-size: 28px; }
.pain-text { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.pain-text strong { color: #fff; }

/* ═══════════════════════════
   PROCESS
═══════════════════════════ */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.process-step {
  background: var(--surface); border: 1px solid var(--ghostborder);
  padding: 36px 28px; position: relative; transition: all 0.3s; cursor: default;
}
.process-step:first-child { border-radius: 20px 0 0 20px; }
.process-step:last-child { border-radius: 0 20px 20px 0; }
.process-step:hover { background: rgba(37,99,235,0.06); border-color: var(--electric); z-index: 1; }
.process-step:hover .step-num { -webkit-text-fill-color: unset; color: rgba(37,99,235,0.15); }
.step-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 52px; font-weight: 800; color: #0D0F1E; line-height: 1; margin-bottom: 20px; transition: color 0.3s; }
.step-icon { font-size: 26px; margin-bottom: 12px; }
.step-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; color: #fff; margin-bottom: 10px; }
.step-desc { font-size: 13.5px; color: #64748B; line-height: 1.7; }

/* ═══════════════════════════
   SERVICES GRID (HOME)
═══════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.service-card {
  background: var(--surface); border: 1px solid var(--ghostborder);
  padding: 36px 28px; transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden;
}
.service-card:nth-child(1) { border-radius: 20px 0 0 0; }
.service-card:nth-child(3) { border-radius: 0 20px 0 0; }
.service-card:nth-child(4) { border-radius: 0 0 0 20px; }
.service-card:nth-child(6) { border-radius: 0 0 20px 0; }
.service-card::after { content: ''; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity 0.3s; }
.service-card:hover::after { opacity: 0.04; }
.service-card:hover { border-color: var(--electric); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(37,99,235,0.15); z-index: 1; }
.service-icon { font-size: 32px; margin-bottom: 16px; }
.service-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 19px; color: #fff; margin-bottom: 10px; font-weight: 700; }
.service-desc { font-size: 14px; color: #64748B; line-height: 1.7; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.service-tag { font-size: 11px; font-weight: 700; color: var(--electric-light); background: rgba(37,99,235,0.08); border: 1px solid rgba(37,99,235,0.15); padding: 3px 10px; border-radius: 100px; }
.service-arrow { color: var(--electric-light); font-weight: 700; font-size: 15px; transition: transform 0.2s; }
.service-card:hover .service-arrow { transform: translateX(4px); }

/* ═══════════════════════════
   RESULTS
═══════════════════════════ */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.result-card {
  background: var(--surface); border: 1px solid var(--ghostborder);
  border-radius: 20px; padding: 32px; transition: all 0.3s;
}
.result-card:hover { border-color: var(--electric); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(37,99,235,0.1); }
.result-badge { font-size: 13px; font-weight: 700; color: var(--neon); margin-bottom: 20px; }
.result-stats { display: flex; gap: 24px; margin-bottom: 20px; }
.result-stat { }
.result-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 32px; font-weight: 800; color: #fff; }
.result-label { font-size: 11px; color: #4B5563; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.result-quote { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 12px; }
.result-author { font-size: 12px; font-weight: 700; color: #4B5563; }

/* ═══════════════════════════
   INDUSTRIES / NICHES
═══════════════════════════ */
.niches-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.niche-card {
  background: var(--surface); border: 1px solid var(--ghostborder);
  border-radius: 14px; padding: 20px; display: flex; align-items: center; gap: 14px;
  transition: all 0.2s; cursor: default;
}
.niche-card:hover { border-color: var(--electric); background: rgba(37,99,235,0.04); }
.niche-icon { font-size: 24px; }
.niche-name { font-size: 14px; font-weight: 700; color: #fff; }
.niche-count { font-size: 11px; color: #4B5563; font-weight: 600; }

/* ═══════════════════════════
   TESTIMONIALS
═══════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--ghostborder);
  border-radius: 20px; padding: 32px; position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: var(--electric); transform: translateY(-4px); }
.featured-testimonial {
  border-color: rgba(37,99,235,0.3);
  background: rgba(37,99,235,0.04);
}
.stars { color: var(--amber); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 700; color: #fff; }
.author-biz { font-size: 12px; color: #4B5563; }

/* ═══════════════════════════
   PRICING
═══════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--ghostborder);
  border-radius: 24px; padding: 36px; position: relative; transition: all 0.3s;
}
.pricing-card:hover { border-color: var(--electric); transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--electric); background: rgba(37,99,235,0.06);
  transform: scale(1.03);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 12px; font-weight: 800;
  padding: 5px 16px; border-radius: 100px; white-space: nowrap;
}
.pricing-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; color: #fff; margin-bottom: 8px; }
.pricing-desc { font-size: 13.5px; color: #64748B; margin-bottom: 24px; line-height: 1.6; }
.pricing-price { margin-bottom: 28px; }
.currency { font-size: 24px; color: var(--text-muted); vertical-align: top; margin-top: 8px; display: inline-block; }
.amount { font-family: 'Bricolage Grotesque', sans-serif; font-size: 52px; font-weight: 800; color: #fff; line-height: 1; }
.period { font-size: 16px; color: #64748B; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pricing-features li { font-size: 14px; color: var(--text-muted); }
.pricing-features li.no { color: #374151; text-decoration: line-through; }
.btn-pricing { display: block; text-align: center; padding: 14px; border-radius: 12px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-pricing-primary { background: var(--grad); color: #fff; }
.btn-pricing-primary:hover { box-shadow: var(--shadow-blue); transform: translateY(-2px); }
.btn-pricing-outline { border: 1.5px solid var(--ghostborder); color: var(--text-muted); }
.btn-pricing-outline:hover { border-color: var(--electric); color: #fff; }

/* ═══════════════════════════
   FAQ
═══════════════════════════ */
.faq-grid { display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
.faq-item { background: var(--surface); border: 1px solid var(--ghostborder); border-radius: 14px; overflow: hidden; }
.faq-item.open { border-color: var(--electric); }
.faq-q {
  padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 700; color: #fff;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--ghost); }
.faq-icon { color: var(--electric-light); font-size: 20px; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14.5px; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ═══════════════════════════
   CTA SECTION
═══════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, rgba(29,78,216,0.15) 0%, rgba(14,165,233,0.08) 100%);
  border-top: 1px solid rgba(37,99,235,0.2); border-bottom: 1px solid rgba(37,99,235,0.2);
  padding: 100px 5%;
}
.cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--neon); margin-bottom: 16px; }
.cta-title { font-size: clamp(32px, 4vw, 54px); color: #fff; margin-bottom: 16px; }
.cta-desc { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-guarantee { font-size: 13px; color: #4B5563; font-weight: 600; }

/* ═══════════════════════════
   BLOG
═══════════════════════════ */
.blog-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; }
.blog-card { background: var(--surface); border: 1px solid var(--ghostborder); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { border-color: var(--electric); transform: translateY(-4px); }
.blog-card.featured { grid-column: span 1; }
.blog-thumb { position: relative; height: 180px; background: linear-gradient(135deg, #0A0B18, #101220); display: flex; align-items: center; justify-content: center; }
.blog-thumb-icon { font-size: 48px; opacity: 0.8; }
.blog-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,11,24,0.8), transparent); }
.blog-category {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 11px; font-weight: 700; color: var(--neon); background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2); padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 1px;
}
.blog-body { padding: 24px; }
.blog-meta { font-size: 12px; color: #374151; margin-bottom: 10px; font-weight: 600; }
.blog-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; color: #fff; line-height: 1.4; margin-bottom: 12px; font-weight: 700; }
.blog-excerpt { font-size: 13.5px; color: #64748B; line-height: 1.65; margin-bottom: 16px; }
.blog-read { font-size: 13px; font-weight: 700; color: var(--electric-light); text-decoration: none; transition: color 0.2s; }
.blog-read:hover { color: var(--neon); }

/* BLOG PAGE GRID */
.blog-page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.blog-article-card {
  display: grid; grid-template-columns: 200px 1fr;
  background: var(--surface); border: 1px solid var(--ghostborder);
  border-radius: 20px; overflow: hidden; margin-bottom: 20px;
  transition: all 0.3s;
}
.blog-article-card:hover { border-color: var(--electric); transform: translateX(4px); }
.blog-article-thumb { background: linear-gradient(135deg, #0A0B18, #101220); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-article-body { padding: 28px; }
.sidebar-widget { background: var(--surface); border: 1px solid var(--ghostborder); border-radius: 20px; padding: 24px; margin-bottom: 20px; }
.sidebar-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; color: #fff; margin-bottom: 16px; }
.sidebar-posts { display: flex; flex-direction: column; gap: 14px; }
.sidebar-post { display: flex; gap: 12px; cursor: pointer; }
.sidebar-post-thumb { width: 44px; height: 44px; border-radius: 8px; background: var(--ghost); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.sidebar-post-title { font-size: 12.5px; font-weight: 700; color: var(--text-muted); line-height: 1.4; }
.sidebar-post-date { font-size: 11px; color: #374151; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { font-size: 12px; font-weight: 700; color: #4B5563; background: var(--ghost); border: 1px solid var(--ghostborder); padding: 5px 12px; border-radius: 100px; cursor: pointer; transition: all 0.2s; }
.tag-pill:hover { color: var(--neon); border-color: var(--neon); }

/* ═══════════════════════════
   SERVICES PAGE (FULL)
═══════════════════════════ */
.services-category-title {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 800; color: #fff;
  padding: 16px 0; margin: 60px 0 24px; border-bottom: 1px solid var(--ghostborder);
}
.services-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 0; }
.service-full-card {
  background: var(--surface); border: 1px solid var(--ghostborder);
  border-radius: 20px; padding: 32px; display: flex; gap: 20px;
  transition: all 0.3s;
}
.service-full-card:hover { border-color: var(--electric); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,99,235,0.1); }
.sfc-icon { font-size: 36px; flex-shrink: 0; }
.sfc-content h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; color: #fff; margin-bottom: 10px; }
.sfc-content p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.sfc-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.sfc-benefits span { font-size: 12px; font-weight: 600; color: var(--electric-light); background: rgba(37,99,235,0.07); border: 1px solid rgba(37,99,235,0.15); padding: 3px 10px; border-radius: 100px; }
.sfc-cta { font-size: 13px; font-weight: 700; color: var(--electric-light); text-decoration: none; transition: color 0.2s; }
.sfc-cta:hover { color: var(--neon); }
.services-cta-banner {
  background: linear-gradient(135deg, rgba(29,78,216,0.12), rgba(14,165,233,0.06));
  border: 1px solid rgba(37,99,235,0.25); border-radius: 24px; padding: 48px;
  text-align: center; margin-top: 60px;
}
.services-cta-banner h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 28px; color: #fff; margin-bottom: 12px; }
.services-cta-banner p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }

/* ═══════════════════════════
   ABOUT PAGE
═══════════════════════════ */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 80px; }
.about-text p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-text strong { color: #fff; }
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 36px; }
.about-stat { background: var(--surface); border: 1px solid var(--ghostborder); border-radius: 16px; padding: 24px; }
.about-stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 36px; font-weight: 800; color: #fff; }
.about-stat-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.about-values { display: flex; flex-direction: column; gap: 16px; }
.value-card { background: var(--surface); border: 1px solid var(--ghostborder); border-radius: 16px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.value-icon { font-size: 24px; flex-shrink: 0; }
.value-card h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 16px; color: #fff; margin-bottom: 6px; }
.value-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }
.diff-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.diff-card { background: var(--surface); border: 1px solid var(--ghostborder); border-radius: 16px; padding: 24px; display: flex; gap: 14px; align-items: flex-start; transition: border-color 0.2s; }
.diff-card:hover { border-color: var(--electric); }
.diff-check { font-size: 20px; flex-shrink: 0; }
.diff-card h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; color: #fff; margin-bottom: 6px; }
.diff-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════
   PORTFOLIO PAGE
═══════════════════════════ */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.portfolio-card { background: var(--surface); border: 1px solid var(--ghostborder); border-radius: 20px; overflow: hidden; transition: all 0.3s; }
.portfolio-card:hover { border-color: var(--electric); transform: translateY(-4px); }
.portfolio-thumb { height: 160px; background: linear-gradient(135deg, #0A0B18, #101220); display: flex; align-items: center; justify-content: center; font-size: 56px; position: relative; }
.portfolio-overlay { position: absolute; inset: 0; background: rgba(10,11,24,0.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-view-btn { font-size: 13px; font-weight: 700; color: #fff; background: var(--grad); padding: 10px 20px; border-radius: 10px; text-decoration: none; }
.portfolio-body { padding: 24px; }
.portfolio-tag { font-size: 12px; font-weight: 700; color: var(--neon); margin-bottom: 8px; }
.portfolio-body h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; color: #fff; margin-bottom: 10px; }
.portfolio-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.portfolio-results { display: flex; gap: 16px; padding-top: 16px; border-top: 1px solid var(--ghostborder); }
.pr-stat { }
.pr-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 800; color: var(--neon-green); }
.pr-label { font-size: 11px; color: #4B5563; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* ═══════════════════════════
   CONTACT PAGE
═══════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.urgency-banner {
  background: rgba(244,63,94,0.08); border: 1px solid rgba(244,63,94,0.2);
  border-radius: 12px; padding: 14px 20px; font-size: 14px; color: #FDA4AF;
  margin-bottom: 20px;
}
.contact-form-card { background: var(--surface); border: 1px solid var(--ghostborder); border-radius: 24px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--ghost); border: 1px solid var(--ghostborder); border-radius: 10px;
  padding: 12px 16px; color: #fff; font-size: 14px; font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color 0.2s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #374151; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--electric); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #0A0B18; }
.form-group textarea { height: 120px; resize: none; }
.btn-submit {
  width: 100%; padding: 16px; background: var(--grad); color: #fff;
  border: none; border-radius: 12px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.form-trust { text-align: center; font-size: 12px; color: #374151; margin-top: 14px; font-weight: 600; }

.contact-info-card { background: var(--surface); border: 1px solid var(--ghostborder); border-radius: 20px; padding: 28px; }
.contact-info-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; color: #fff; margin-bottom: 20px; }
.next-step { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.next-num { width: 30px; height: 30px; background: var(--grad); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0; }
.next-step strong { font-size: 15px; color: #fff; display: block; margin-bottom: 4px; }
.next-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.contact-method { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 12px; text-decoration: none; transition: background 0.2s; margin-bottom: 10px; }
.contact-method:hover { background: var(--ghost); }
.contact-method-icon { font-size: 24px; }
.contact-method strong { font-size: 14px; color: #fff; display: block; }
.contact-method p { font-size: 13px; color: var(--text-muted); }
.trust-proof-card { display: flex; flex-direction: column; gap: 10px; }
.trust-proof-item { font-size: 14px; color: var(--text-muted); font-weight: 600; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
.footer { background: rgba(4,5,14,0.95); border-top: 1px solid var(--ghostborder); padding: 80px 5% 40px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 60px; }
.footer-tagline { font-size: 14px; color: #374151; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 42px; height: 42px; background: var(--ghost); border: 1px solid var(--ghostborder); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--text-muted); text-decoration: none; transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1); font-weight: 700; }
.social-btn:hover { border-color: var(--electric); color: #fff; transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 20px rgba(37,99,235,0.25); }
.social-btn[title="LinkedIn"]:hover { background: #0A66C2; border-color: #0A66C2; }
.social-btn[title="X / Twitter"]:hover { background: #1a1a1a; border-color: #333; }
.social-btn[title="Facebook"]:hover { background: #1877F2; border-color: #1877F2; }
.social-btn[title="YouTube"]:hover { background: #FF0000; border-color: #FF0000; }
.footer-col-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: #374151; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-muted); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--ghostborder); font-size: 13px; color: #374151; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #374151; text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text-muted); }

/* ═══════════════════════════
   TOAST NOTIFICATIONS
═══════════════════════════ */
.toast-container { position: fixed; bottom: 24px; left: 24px; z-index: 9000; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: rgba(10,11,24,0.97); border: 1px solid var(--ghostborder);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: slideIn 0.4s ease; max-width: 320px;
}
@keyframes slideIn { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:translateX(0); } }
.toast-icon { font-size: 22px; flex-shrink: 0; }
.toast-name { font-size: 13px; font-weight: 700; color: #fff; }
.toast-detail { font-size: 11.5px; color: #4B5563; }
.toast-time { font-size: 10.5px; color: var(--neon); font-weight: 700; margin-left: auto; flex-shrink: 0; }

/* ═══════════════════════════
   STICKY BAR
═══════════════════════════ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(4,5,14,0.97); border-top: 1px solid var(--ghostborder);
  backdrop-filter: blur(20px); transform: translateY(100%); transition: transform 0.4s ease;
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar-inner { max-width: 1280px; margin: 0 auto; padding: 12px 5%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sticky-bar-text { font-size: 13.5px; color: var(--text-muted); }
.sticky-bar-text strong { color: #fff; }
.sticky-bar-cta { padding: 8px 20px; background: var(--grad); color: #fff; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; }

/* ═══════════════════════════
   EXIT POPUP
═══════════════════════════ */
.exit-popup {
  position: fixed; inset: 0; z-index: 99000; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.exit-popup.show { opacity: 1; pointer-events: all; }
.exit-popup-inner {
  background: var(--surface); border: 1px solid var(--ghostborder);
  border-radius: 24px; padding: 48px 40px; max-width: 480px; width: 90%; text-align: center; position: relative;
}
.exit-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: #4B5563; font-size: 20px; cursor: pointer; }
.exit-icon { font-size: 48px; margin-bottom: 16px; }
.exit-popup-inner h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 26px; color: #fff; margin-bottom: 12px; }
.exit-popup-inner p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.exit-fine { font-size: 12px; color: #374151; margin-top: 12px; }

/* ═══════════════════════════
   MOBILE MENU
═══════════════════════════ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 990;
  background: rgba(4,5,14,0.99); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; padding: 96px 5% 40px;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.mobile-nav-link { font-family: 'Bricolage Grotesque', sans-serif; font-size: 26px; font-weight: 800; color: #fff; text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--ghostborder); transition: color 0.2s; display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-link:hover { color: var(--neon); }
.mobile-ctas { display: flex; flex-direction: column; gap: 12px; padding-top: 20px; }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step:first-child { border-radius: 20px 0 0 0; }
  .process-step:last-child { border-radius: 0 0 20px 0; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(3,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 100px; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step:first-child, .process-step:last-child { border-radius: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article-card { grid-template-columns: 1fr; }
  .blog-article-thumb { height: 140px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 18px; }
  .trust-stat .num { font-size: 24px; }
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  .sticky-bar-text { font-size: 12px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* =============================================
   ENHANCED RESPONSIVE — ALL DEVICES
   (375px phones → 1400px+ desktops)
============================================= */

/* --- SMALL PHONES (≤390px) --- */
@media (max-width: 390px) {
  nav { padding: 0 4%; height: 64px; }
  .logo-text { font-size: 14px; }
  .logo-img { height: 28px !important; width: auto !important; max-width: 120px !important; }
  .hero { padding: 90px 4% 60px; }
  .hero h1 { font-size: 28px; letter-spacing: -0.5px; }
  .hero-desc { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-hero { width: 100%; justify-content: center; padding: 14px 20px; font-size: 14px; }
  .hero-trust { flex-wrap: wrap; gap: 12px; }
  .trust-div { display: none; }
  .trust-stat .num { font-size: 20px; }
  .section { padding: 60px 4%; }
  .section-title { font-size: 24px; }
  .section-sub { font-size: 14px; }
  .ann-bar { font-size: 11px; padding: 9px 12px; }
  .niches-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px 18px; }
  .pricing-card { padding: 28px 18px; }
  .contact-form-card { padding: 24px 16px; }
  .contact-info-card { padding: 20px 16px; }
  .btn-submit { font-size: 14px; padding: 14px; }
  .footer-inner { padding: 40px 4% 24px; }
  .hero-eyebrow { font-size: 10px; }
  .exit-popup-inner { padding: 32px 20px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .service-card { padding: 24px 18px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* --- STANDARD PHONES (390px–767px) --- */
@media (max-width: 767px) {
  /* Blog thumb images */
  .blog-thumb { height: 160px; }
  .blog-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

  /* Mobile menu full-width CTAs */
  .mobile-ctas a { display: block; text-align: center; }

  /* Section tag smaller */
  .section-tag { font-size: 10px; }

  /* Services full cards */
  .sfc-benefits { flex-wrap: wrap; gap: 6px; }
  .sfc-benefits span { font-size: 11px; }

  /* Hero visual hide */
  .hero-visual { display: none; }

  /* FAQ */
  .faq-question { font-size: 14px; padding: 16px 14px; }
  .faq-answer { padding: 0 14px; font-size: 13px; }

  /* Portfolio */
  .portfolio-card { min-height: 220px; }

  /* Blog page grid */
  .blog-page-grid { grid-template-columns: 1fr !important; }
  .blog-sidebar { margin-top: 32px; }

  /* Contact form */
  .form-group label { font-size: 13px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 14px; }

  /* Stats section */
  .stats-grid { grid-template-columns: repeat(2,1fr) !important; gap: 16px; }

  /* Sticky bar */
  .sticky-bar { display: none; }

  /* Blog grid */
  .blog-grid .blog-card.featured .blog-thumb { height: 200px; }

  /* Niche cards */
  .niche-card { padding: 14px 12px; gap: 10px; }
  .niche-icon { font-size: 20px; }

  /* Process steps */
  .step-num { font-size: 40px; }
  .step-title { font-size: 16px; }

  /* Announcement bar */
  .ann-bar br { display: block; }

  /* Toast */
  .toast { max-width: calc(100vw - 32px); }

  /* Exit popup */
  .exit-popup-inner { width: calc(100vw - 32px); max-width: 400px; }

  /* Services category title */
  .services-category-title { font-size: 16px; }

  /* Logo size */
  .logo-img { height: 34px !important; width: auto !important; max-width: 130px !important; }
}

/* --- TABLETS (768px–1023px) --- */
@media (min-width: 768px) and (max-width: 1023px) {
  nav { padding: 0 4%; }
  .hero { padding: 110px 4% 70px; }
  .hero h1 { font-size: 44px; }
  .hero-content { gap: 40px; }
  .section { padding: 80px 4%; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .niches-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid .blog-card.featured { grid-column: span 2; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .logo-img { height: 36px !important; width: auto !important; max-width: 135px !important; }
}

/* --- LARGE DESKTOP (1400px+) --- */
@media (min-width: 1400px) {
  .section-inner { max-width: 1400px; }
  .hero-content { max-width: 1400px; gap: 100px; }
  .hero h1 { font-size: 84px; }
  .section-title { font-size: 58px; }
}

/* =============================================
   LOGO EVERYWHERE
============================================= */
/* logo-img styles defined above in nav section */

/* =============================================
   STAR RATINGS (replace emoji stars)
============================================= */
.star-rating {
  color: #FBBF24;
  font-size: 16px;
  letter-spacing: 2px;
}

/* =============================================
   BLOG THUMB REAL IMAGE FIX
============================================= */
.blog-thumb {
  position: relative;
  overflow: hidden;
}
.blog-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s ease;
}
.blog-thumb:hover img { transform: scale(1.04); }
.blog-thumb .blog-thumb-overlay { z-index: 1; }
.blog-thumb .blog-category { z-index: 2; }

/* =============================================
   TESTIMONIAL AVATAR PHOTO FIX
============================================= */
.author-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  flex-shrink: 0;
  border: 2px solid rgba(37,99,235,0.4);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* =============================================
   EMAIL FORM IMPROVEMENTS
============================================= */
.btn-submit svg { display: none; }
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  background: var(--grad, linear-gradient(135deg,#1D4ED8,#2563EB,#06B6D4));
  color: #fff;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 20px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,99,235,0.4); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* =============================================
   ICON SVG COLOR FIXES
============================================= */
.service-icon svg,
.step-icon svg,
.sfc-icon svg,
.niche-icon svg,
.contact-method-icon svg,
.value-icon svg,
.diff-icon svg { 
  color: currentColor;
  display: inline-block;
  vertical-align: middle;
}
.service-icon svg { stroke: var(--electric-light, #3B82F6); }
.step-icon svg { stroke: var(--electric-light, #3B82F6); }

/* services category icons */
.services-category-title svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

/* trust proof icons */
.trust-proof-item svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

/* sfc benefits icons */
.sfc-benefits span svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

/* =============================================
   ANNOUNCEMENT BAR ICON FIX
============================================= */
.ann-bar svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

/* CTA button icon fix */
.btn-hero svg,
.btn-cta svg {
  display: inline-block;
  vertical-align: middle;
}

/* Exit icon */
.exit-icon svg {
  width: 40px !important;
  height: 40px !important;
  stroke: var(--cyan, #06B6D4);
}

/* Form trust icon */
.form-trust svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

/* Urgency banner icon */
.urgency-banner svg {
  display: inline-block;
  vertical-align: middle;
}

/* Sticky bar icon */
.sticky-bar-text svg {
  display: inline-block;
  vertical-align: middle;
}

/* =============================================
   PRICING CHECK ICONS
============================================= */
.pricing-features li svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  flex-shrink: 0;
}
.pricing-features li {
  display: flex;
  align-items: center;
}


/* Social button upgrades */
.social-btn { font-size: 20px !important; width: 42px !important; height: 42px !important; border-radius: 12px !important; }
.social-btn:hover { transform: translateY(-3px) scale(1.1) !important; }


/* =============================================
   PHOSPHOR ICONS — GLOBAL SIZING & POLISH
============================================= */
.ph, [class*="ph-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Service icon containers - larger, more impactful */
.service-icon {
  width: 64px; height: 64px;
  background: var(--ghost);
  border: 1px solid var(--ghostborder);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.3);
  transform: scale(1.05);
}

/* Niche icon containers */
.niche-icon {
  width: 44px; height: 44px;
  background: var(--ghost);
  border: 1px solid var(--ghostborder);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.niche-card:hover .niche-icon {
  background: rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.3);
}

/* Pain icon containers */
.pain-icon {
  width: 52px; height: 52px;
  background: rgba(244,63,94,0.08);
  border: 1px solid rgba(244,63,94,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* Portfolio thumb improvements */
.portfolio-thumb {
  position: relative;
  overflow: hidden;
}

/* Result badge icon alignment */
.result-badge i,
.niche-icon i,
.service-icon i,
.pain-icon i,
.contact-method-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact method icon upgrade */
.contact-method-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Logo width fix - ensure proper display */
.logo { align-items: center; }
.logo-img {
  height: 38px !important;
  width: auto !important;
  max-width: 150px !important;
  object-fit: contain;
}

/* Footer logo text fix */
.footer-brand .logo-text em {
  font-style: normal;
  color: #64748b;
}

/* Responsive logo on mobile */
@media (max-width: 480px) {
  .logo-img { height: 30px !important; max-width: 110px !important; }
}


/* ── PROCESS STEP ICON UPGRADES ── */
.step-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(0,212,255,0.08));
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37,99,235,0.1);
}
.process-step:hover .step-icon {
  background: linear-gradient(135deg, rgba(37,99,235,0.25), rgba(0,212,255,0.15));
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 8px 32px rgba(0,212,255,0.2);
  transform: translateY(-2px);
}

/* ── SFC ICON UPGRADE ── */
.sfc-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(0,212,255,0.06));
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.service-full-card:hover .sfc-icon {
  background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(0,212,255,0.12));
  border-color: rgba(0,212,255,0.35);
  transform: scale(1.05);
}

/* ── VALUE CARD ICON ── */
.value-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(0,212,255,0.06));
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* ── NICHE GRID - Better spacing ── */
.niches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.niche-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--ghost);
  border: 1px solid var(--ghostborder);
  border-radius: 14px;
  transition: all 0.25s ease;
  cursor: default;
}
.niche-card:hover {
  background: rgba(37,99,235,0.08);
  border-color: rgba(37,99,235,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ── LOGO PILL ICONS ── */
.logo-pill {
  display: inline-flex; align-items: center; gap: 6px;
}

/* ── REMOVE EMPTY PAIN ICON FALLBACK ── */
.pain-card .pain-icon:empty::before {
  content: '⚠';
  font-size: 24px;
  color: #F97316;
}
