/* ============================================
   LEADMINDS INSIGHTS — Global Styles
   Dark tech / B2B SaaS aesthetic
   ============================================ */

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

:root {
  --bg:          #080c14;
  --bg2:         #0d1220;
  --bg3:         #111827;
  --surface:     #151d2e;
  --surface2:    #1a2438;
  --border:      rgba(99,179,237,0.12);
  --border2:     rgba(99,179,237,0.22);
  --accent:      #3b82f6;
  --accent2:     #60a5fa;
  --accent3:     #93c5fd;
  --green:       #22d3a5;
  --green2:      #10b981;
  --orange:      #f59e0b;
  --red:         #ef4444;
  --text:        #f0f4ff;
  --text2:       #94a3b8;
  --text3:       #64748b;
  --glow:        rgba(59,130,246,0.15);
  --glow2:       rgba(34,211,165,0.12);
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --radius:      12px;
  --radius2:     20px;
  --transition:  0.3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- NOISE TEXTURE OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-family: var(--font-body); color: var(--text2); font-size: 1.05rem; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* ---- GRADIENT MESH BACKGROUNDS ---- */
.mesh-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 18px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(8,12,20,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 8px var(--accent); }
  50% { box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(59,130,246,0.3); }
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 16px; }

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text3);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 5px;
  transition: var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px rgba(59,130,246,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59,130,246,0.5);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(99,179,237,0.35);
  transform: translateY(-1px);
}
.btn-green {
  background: var(--green);
  color: var(--bg);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(34,211,165,0.35);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(34,211,165,0.5);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 14px; }
.btn-xl { padding: 20px 48px; font-size: 1.15rem; border-radius: 16px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-mesh1 {
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.18) 0%, transparent 70%);
  top: -100px; left: -200px;
}
.hero-mesh2 {
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(34,211,165,0.12) 0%, transparent 70%);
  bottom: -100px; right: -100px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent2);
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 1.5s ease infinite;
}
.hero h1 {
  animation: fadeInUp 0.6s 0.1s ease both;
  margin-bottom: 24px;
}
.hero h1 span.highlight {
  background: linear-gradient(135deg, var(--accent), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text2);
  max-width: 580px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
  animation: fadeInUp 0.6s 0.3s ease both;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.6s 0.4s ease both;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text3);
}
.hero-trust-item svg { color: var(--green); flex-shrink: 0; }

/* ---- STATS TICKER ---- */
.stats-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.stats-grid {
  display: flex;
  gap: 0;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.stat-item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent2), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: var(--text3); font-weight: 500; }

/* ---- PROBLEM SECTION ---- */
.problem-section { background: var(--bg2); position: relative; overflow: hidden; }
.problem-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.problem-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  padding: 4px 12px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 6px;
}
.cost-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.cost-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}
.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cost-row:last-child { border-bottom: none; }
.cost-label { font-size: 0.9rem; color: var(--text2); }
.cost-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--red);
}
.cost-total {
  margin-top: 20px;
  padding: 20px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cost-total .label { font-weight: 600; color: var(--text); }
.cost-total .value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--red);
}

/* ---- HOW IT WORKS ---- */
.how-section { position: relative; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
}
.step-card {
  background: var(--bg2);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { background: var(--surface); }
.step-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.step-icon {
  width: 48px; height: 48px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.step-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step-card p { font-size: 0.9rem; line-height: 1.6; }

/* ---- FEATURES ---- */
.features-section { background: var(--bg2); }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-sub {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 560px;
}
.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-sub { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-icon.blue { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25); }
.feature-icon.green { background: rgba(34,211,165,0.10); border: 1px solid rgba(34,211,165,0.25); }
.feature-icon.orange { background: rgba(245,158,11,0.10); border: 1px solid rgba(245,158,11,0.25); }
.feature-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p { font-size: 0.88rem; line-height: 1.65; }

/* ---- DASHBOARD MOCK ---- */
.dashboard-section { position: relative; overflow: hidden; }
.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px var(--border);
  margin-top: 60px;
}
.mock-topbar {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red { background: #ef4444; }
.mock-dot.yellow { background: #f59e0b; }
.mock-dot.green { background: #22c55e; }
.mock-body { padding: 24px; }
.mock-visitor-list { display: flex; flex-direction: column; gap: 2px; }
.mock-visitor {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  align-items: center;
  font-size: 0.82rem;
  transition: var(--transition);
}
.mock-visitor:hover { background: var(--surface2); }
.mock-visitor.header {
  color: var(--text3);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  margin-bottom: 4px;
}
.visitor-company { display: flex; align-items: center; gap: 10px; }
.visitor-avatar {
  width: 30px; height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.visitor-name { font-weight: 600; color: var(--text); font-size: 0.85rem; }
.visitor-domain { font-size: 0.75rem; color: var(--text3); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}
.badge-hot { background: rgba(239,68,68,0.15); color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }
.badge-warm { background: rgba(245,158,11,0.12); color: #fcd34d; border: 1px solid rgba(245,158,11,0.3); }
.badge-new { background: rgba(59,130,246,0.12); color: var(--accent3); border: 1px solid rgba(59,130,246,0.3); }
.badge-cart { background: rgba(34,211,165,0.1); color: #6ee7b7; border: 1px solid rgba(34,211,165,0.25); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--bg2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 5rem;
  font-family: serif;
  color: var(--accent);
  opacity: 0.1;
  line-height: 1;
}
.testimonial-stars {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.testimonial-text { font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; color: var(--text2); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.78rem; color: var(--text3); }

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}
.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(59,130,246,0.05) 100%);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(59,130,246,0.15);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 12px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.pricing-price .amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
}
.pricing-price .currency { font-size: 1.2rem; color: var(--text2); align-self: flex-start; margin-top: 12px; }
.pricing-price .period { font-size: 0.9rem; color: var(--text3); }
.pricing-desc { font-size: 0.85rem; color: var(--text3); margin-bottom: 28px; }
.pricing-features { margin-bottom: 32px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text2);
  border-bottom: 1px solid rgba(99,179,237,0.06);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature .check { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.pricing-feature .cross { color: var(--text3); flex-shrink: 0; margin-top: 2px; }

/* ---- CTA SECTION ---- */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0;
}
.cta-mesh {
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.12) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-section h2 { margin-bottom: 20px; }
.cta-section p { font-size: 1.15rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-note { font-size: 0.82rem; color: var(--text3); }

/* ---- FOOTER ---- */
.footer {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 16px; margin-bottom: 24px; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text2);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text3); }

/* ---- BLOG ---- */
.blog-hero { padding: 140px 0 80px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.blog-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-content { padding: 24px; }
.blog-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent2);
  margin-bottom: 10px;
  display: block;
}
.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card p { font-size: 0.84rem; line-height: 1.6; margin-bottom: 20px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: var(--text3); }
.read-more { color: var(--accent2); font-weight: 600; font-size: 0.84rem; display: flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.blog-card:hover .read-more { gap: 8px; }

/* ---- PAGE HERO SHARED ---- */
.page-hero { padding: 140px 0 80px; text-align: center; }
.page-hero p { font-size: 1.15rem; max-width: 560px; margin: 20px auto 0; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: none;
}

/* ---- MOBILE NAV ---- */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,12,20,0.98);
  backdrop-filter: blur(20px);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pricing-card.popular { transform: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .mobile-menu-btn { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .stat-item:last-child { border-bottom: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .mock-visitor { grid-template-columns: 1fr 1fr; }
  .mock-visitor > *:nth-child(n+3) { display: none; }
}
