/* ================================================================
   BugLine AI Theme — Master Stylesheet
   ================================================================ */

:root {
  --lime: #BFFF00;
  --lime-dim: #a8e600;
  --dark: #0A0F0D;
  --dark2: #111916;
  --dark3: #1a2420;
  --forest: #14291F;
  --slate: #8B9A8F;
  --light: #E8F0EA;
  --white: #FAFFF6;
  --orange: #FF6B2C;
  --red-subtle: #FF4444;
  --glass: rgba(191, 255, 0, 0.06);
  --glass-border: rgba(191, 255, 0, 0.12);
  --font: 'Plus Jakarta Sans', sans-serif;
  --mono: 'Space Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--lime); text-decoration: none; }
a:hover { text-decoration: underline; }

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.85' 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: 9999;
}

.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(10, 15, 13, 0.85);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo:hover { text-decoration: none; }
.nav-logo-img { height: 38px; width: auto; }
.nav-logo-icon { width: 38px; height: 38px; background: var(--lime); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; transform: rotate(-5deg); flex-shrink: 0; }
.nav-logo-text { font-weight: 800; font-size: 22px; color: var(--white); letter-spacing: -0.5px; white-space: nowrap; }
.nav-logo-text span { color: var(--lime); }

.nav-links, .nav-links ul { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--slate); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--lime); text-decoration: none; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu { position: fixed; inset: 0; z-index: 999; background: rgba(10, 15, 13, 0.97); backdrop-filter: blur(20px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner { width: 100%; max-width: 320px; padding: 20px; }
.mobile-nav-links, .mobile-nav-links ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav-links li { border-bottom: 1px solid var(--glass-border); }
.mobile-nav-links a { display: block; padding: 18px 0; font-size: 18px; font-weight: 600; color: var(--white); text-decoration: none; transition: color 0.2s; }
.mobile-nav-links a:hover { color: var(--lime); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-family: var(--font); font-weight: 700; font-size: 15px; text-decoration: none; cursor: pointer; border: none; transition: all 0.25s ease; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--lime); color: var(--dark); }
.btn-primary:hover { background: var(--lime-dim); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(191, 255, 0, 0.3); }
.btn-outline { background: transparent; color: var(--lime); border: 1.5px solid var(--lime); }
.btn-outline:hover { background: var(--glass); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ================================================================
   HERO
   ================================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 40px 80px; overflow: visible; }

.hero-bg-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(191,255,0,0.08) 0%, transparent 70%); top: -200px; right: -150px; pointer-events: none; }
.hero-bg-glow2 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,44,0.05) 0%, transparent 70%); bottom: -100px; left: -100px; pointer-events: none; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(191,255,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(191,255,0,0.03) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%); }

.hero-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 2; }

.hero-badge { display: inline-flex; align-items: center; gap: 12px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 50px; padding: 12px 24px 12px 16px; font-size: clamp(32px, 4vw, 48px); color: var(--lime); font-weight: 600; margin-bottom: 24px; animation: fadeInUp 0.6s ease both; }
.hero-badge-dot { width: 12px; height: 12px; background: var(--lime); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 { font-size: clamp(40px, 5vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -2px; color: var(--white); margin-bottom: 20px; animation: fadeInUp 0.6s 0.1s ease both; }
.hero h1 .highlight { color: var(--lime); position: relative; }
.hero h1 .highlight::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 4px; background: var(--lime); opacity: 0.3; border-radius: 2px; }

.hero-sub { font-size: 21px; line-height: 1.7; color: var(--slate); margin-bottom: 36px; max-width: 520px; animation: fadeInUp 0.6s 0.2s ease both; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeInUp 0.6s 0.3s ease both; }
.hero-proof { display: flex; align-items: center; gap: 16px; animation: fadeInUp 0.6s 0.4s ease both; }
.hero-avatars { display: flex; }
.hero-avatars span { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--dark); margin-left: -10px; display: flex; align-items: center; justify-content: center; font-size: 16px; background: var(--forest); }
.hero-avatars span:first-child { margin-left: 0; }
.hero-proof-text { font-size: 15px; color: var(--slate); line-height: 1.5; }
.hero-proof-text strong { color: var(--lime); font-weight: 700; }

/* ─── PHONE MOCKUP — FIXED OVERFLOW ─── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s 0.3s ease both;
  /* Extra padding so float cards have room and don't clip */
  padding: 40px 60px 50px 60px;
  overflow: visible;
}

.phone-mockup {
  width: 300px;
  background: var(--dark2);
  border-radius: 36px;
  border: 2px solid var(--glass-border);
  padding: 16px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 80px rgba(191,255,0,0.05), inset 0 1px 0 rgba(255,255,255,0.05);
  z-index: 2;
}

.phone-notch { width: 120px; height: 28px; background: var(--dark); border-radius: 0 0 16px 16px; margin: -16px auto 16px; position: relative; z-index: 2; }
.phone-screen { background: var(--dark3); border-radius: 24px; padding: 24px 20px; min-height: 440px; }
.phone-caller { text-align: center; margin-bottom: 28px; }
.phone-caller-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--lime), #7acc00); border-radius: 50%; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 28px; animation: ring 2s ease infinite; }
@keyframes ring { 0%,100%{transform:rotate(0)} 5%{transform:rotate(15deg)} 10%{transform:rotate(-15deg)} 15%{transform:rotate(10deg)} 20%{transform:rotate(-10deg)} 25%{transform:rotate(0)} }

.phone-caller-name { font-weight: 700; font-size: 18px; color: var(--white); }
.phone-caller-num { font-family: var(--mono); font-size: 13px; color: var(--slate); margin-top: 4px; }
.phone-transcript { display: flex; flex-direction: column; gap: 12px; }
.chat-bubble { max-width: 88%; padding: 12px 16px; border-radius: 18px; font-size: 13px; line-height: 1.5; animation: bubbleIn 0.4s ease both; }
.chat-ai { background: rgba(191,255,0,0.12); color: var(--lime); border-bottom-left-radius: 6px; align-self: flex-start; }
.chat-human { background: rgba(255,255,255,0.08); color: var(--light); border-bottom-right-radius: 6px; align-self: flex-end; }
.chat-bubble .label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; opacity: 0.6; }
@keyframes bubbleIn { from{opacity:0;transform:translateY(10px) scale(0.95)} to{opacity:1;transform:translateY(0) scale(1)} }
.chat-bubble:nth-child(1){animation-delay:.8s}.chat-bubble:nth-child(2){animation-delay:1.6s}.chat-bubble:nth-child(3){animation-delay:2.4s}.chat-bubble:nth-child(4){animation-delay:3.2s}

.phone-status { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; padding: 10px; background: rgba(191,255,0,0.08); border-radius: 12px; font-size: 12px; font-weight: 700; color: var(--lime); font-family: var(--mono); animation: bubbleIn 0.4s 3.8s ease both; }
.status-dot { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; animation: pulse-dot 1.5s infinite; }

/* ─── FLOATING CARDS — REPOSITIONED OUTSIDE PHONE ─── */
.float-card {
  position: absolute;
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}

/* Card 1 — top right, fully outside phone */
.float-card.fc1 { top: 0; right: -20px; }
/* Card 2 — middle left, fully outside phone */
.float-card.fc2 { top: 50%; left: -20px; transform: translateY(-50%); animation-delay: 1.5s; }
/* Card 3 — bottom right */
.float-card.fc3 { bottom: 0; right: -10px; animation-delay: 3s; }

.float-card .fc-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.fc1 .fc-icon { background: rgba(191,255,0,0.15); }
.fc2 .fc-icon { background: rgba(255,107,44,0.15); }
.fc3 .fc-icon { background: rgba(100,200,255,0.15); }

.fc-val { font-family: var(--mono); font-size: 11px; }
.fc-val-lime { color: var(--lime); }
.fc-val-orange { color: var(--orange); }
.fc-val-blue { color: #64c8ff; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
/* Override float for fc2 which uses translateY for centering */
.float-card.fc2 { animation: float2 4s 1.5s ease-in-out infinite; }
@keyframes float2 { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 8px))} }

@keyframes fadeInUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar { border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 48px 40px; background: var(--glass); }
.stats-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item h3 { font-size: 48px; font-weight: 800; color: var(--lime); letter-spacing: -2px; font-family: var(--mono); }
.stat-item p { font-size: 16px; color: var(--slate); margin-top: 4px; }

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: 100px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-family: var(--mono); font-size: 25px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--lime); margin-bottom: 16px; }
.section-title { font-size: clamp(36px, 4vw, 56px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.15; color: var(--white); margin-bottom: 20px; }
.section-sub { font-size: 20px; color: var(--slate); line-height: 1.7; max-width: 600px; }

/* Problem */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.problem-card { background: var(--dark2); border: 1px solid rgba(255,68,68,0.15); border-radius: 20px; padding: 36px 28px; transition: all 0.3s ease; position: relative; overflow: hidden; }
.problem-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red-subtle), transparent); opacity: 0.5; }
.problem-card:hover { border-color: rgba(255,68,68,0.3); transform: translateY(-4px); }
.problem-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(255,68,68,0.1); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.problem-card h4 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.problem-card p { font-size: 16px; color: var(--slate); line-height: 1.7; }
.problem-stat { display: inline-block; margin-top: 16px; font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--red-subtle); background: rgba(255,68,68,0.08); padding: 6px 14px; border-radius: 8px; }

/* How it works */
.solution-section { background: linear-gradient(180deg, var(--dark) 0%, var(--forest) 50%, var(--dark) 100%); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.step-card { background: rgba(191,255,0,0.03); border: 1px solid var(--glass-border); border-radius: 20px; padding: 36px 28px; text-align: center; transition: all 0.3s ease; position: relative; }
.step-card:hover { background: rgba(191,255,0,0.06); transform: translateY(-4px); border-color: rgba(191,255,0,0.25); }
.step-num { font-family: var(--mono); font-size: 52px; font-weight: 700; color: var(--lime); opacity: 0.15; position: absolute; top: 16px; left: 24px; }
.step-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(191,255,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 20px; }
.step-card h4 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step-card p { font-size: 16px; color: var(--slate); line-height: 1.7; }
.step-connector { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; font-family: var(--mono); font-size: 13px; color: var(--lime); opacity: 0.5; }
.step-connector::before, .step-connector::after { content: ''; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--lime), transparent); opacity: 0.3; }

/* Features */
.features-grid { display: flex; flex-direction: column; gap: 80px; margin-top: 64px; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-text .feature-tag { font-family: var(--mono); font-size: 25px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--lime); margin-bottom: 12px; }
.feature-text h3 { font-size: 36px; font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 16px; line-height: 1.2; }
.feature-text p { font-size: 18px; color: var(--slate); line-height: 1.8; margin-bottom: 24px; }
.feature-checks { display: flex; flex-direction: column; gap: 12px; }
.feature-check { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--light); }
.feature-check-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(191,255,0,0.12); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--lime); flex-shrink: 0; }
.feature-visual { background: var(--dark2); border: 1px solid var(--glass-border); border-radius: 20px; padding: 32px; min-height: 340px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.feature-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(191,255,0,0.04) 0%, transparent 60%); }
.fv-dashboard { position: relative; z-index: 1; }
.fv-metric { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.fv-metric-label { font-size: 13px; color: var(--slate); }
.fv-metric-value { font-family: var(--mono); font-size: 16px; font-weight: 700; color: var(--lime); }
.fv-bar-container { margin-top: 20px; }
.fv-bar-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--slate); margin-bottom: 8px; }
.fv-bar { height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; margin-bottom: 16px; }
.fv-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--lime), #7acc00); }

/* Tool replacement */
.tool-replace { background: var(--dark2); border: 1px solid var(--glass-border); border-radius: 24px; padding: 56px; margin-top: 80px; text-align: center; }
.tools-crossed { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin: 36px 0; }
.tool-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px 28px; font-size: 18px; font-weight: 600; color: var(--slate); text-decoration: line-through; text-decoration-color: var(--red-subtle); }
.tool-price { font-family: var(--mono); font-size: 25px; color: var(--red-subtle); display: block; margin-top: 4px; text-decoration: none; }
.replace-arrow { font-size: 40px; color: var(--lime); margin: 24px 0; }
.replace-result { display: inline-flex; align-items: center; gap: 12px; background: rgba(191,255,0,0.08); border: 2px solid var(--lime); border-radius: 16px; padding: 20px 36px; font-size: 24px; font-weight: 800; color: var(--lime); }

/* Testimonials */
.testimonial-section { background: var(--forest); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card { background: var(--dark2); border: 1px solid var(--glass-border); border-radius: 20px; padding: 32px; transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(191,255,0,0.2); }
.testimonial-stars { color: #FFB800; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card blockquote { font-size: 17px; line-height: 1.7; color: var(--light); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--lime), #7acc00); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: var(--dark); flex-shrink: 0; }
.testimonial-name { font-size: 16px; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 14px; color: var(--slate); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.pricing-card { background: var(--dark2); border: 1px solid var(--glass-border); border-radius: 24px; padding: 40px 32px; position: relative; transition: all 0.3s ease; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.popular { border-color: var(--lime); background: rgba(191,255,0,0.03); }
.pricing-popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--lime); color: var(--dark); font-size: 12px; font-weight: 800; padding: 6px 20px; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; }
.pricing-name { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.pricing-desc { font-size: 13px; color: var(--slate); margin-bottom: 24px; line-height: 1.5; }
.pricing-price { margin-bottom: 28px; }
.pricing-price .amount { font-size: 48px; font-weight: 800; color: var(--white); font-family: var(--mono); letter-spacing: -2px; }
.pricing-card.popular .amount { color: var(--lime); }
.pricing-price .period { font-size: 14px; color: var(--slate); }
.pricing-features { list-style: none; margin-bottom: 32px; padding: 0; }
.pricing-features li { font-size: 14px; color: var(--light); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--lime); font-weight: 800; font-size: 12px; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* FAQ */
.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-question { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; padding: 24px 0; cursor: pointer; font-family: var(--font); font-size: 20px; font-weight: 600; color: var(--white); text-align: left; transition: color 0.2s; }
.faq-question:hover { color: var(--lime); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--glass-border); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--lime); flex-shrink: 0; transition: transform 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding-bottom: 24px; font-size: 17px; color: var(--slate); line-height: 1.8; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 300px; }

/* Final CTA */
.final-cta { text-align: center; padding: 100px 40px; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--dark) 0%, var(--forest) 100%); }
.final-cta::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(191,255,0,0.1) 0%, transparent 60%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.final-cta .section-title { max-width: 700px; margin: 0 auto 20px; }
.final-cta .section-sub { max-width: 500px; margin: 0 auto 40px; text-align: center; }
.final-cta .cta-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 2; }
.final-guarantee { margin-top: 24px; font-size: 13px; color: var(--slate); position: relative; z-index: 2; }

/* ================================================================
   INNER PAGES
   ================================================================ */
.page-main { padding-top: 80px; }
.page-hero-bar { padding: 60px 40px 40px; border-bottom: 1px solid var(--glass-border); background: var(--glass); text-align: center; }
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-title { font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -1.5px; color: var(--white); }
.page-content-wrap { max-width: 880px; margin: 0 auto; padding: 60px 40px 100px; }

.page-content h1,.page-content h2,.page-content h3,.page-content h4,.page-content h5,.page-content h6 { color: var(--white); margin-top: 1.6em; margin-bottom: 0.6em; font-weight: 700; }
.page-content h2 { font-size: 28px; }
.page-content h3 { font-size: 22px; }
.page-content p { color: var(--light); font-size: 16px; line-height: 1.8; margin-bottom: 1.2em; }
.page-content ul,.page-content ol { color: var(--light); margin-bottom: 1.2em; padding-left: 24px; }
.page-content li { margin-bottom: 0.4em; line-height: 1.7; }
.page-content blockquote { border-left: 3px solid var(--lime); padding: 16px 24px; margin: 24px 0; background: var(--glass); border-radius: 0 12px 12px 0; }
.page-content blockquote p { color: var(--light); margin-bottom: 0; }
.page-content img { border-radius: 12px; margin: 24px 0; }
.page-content a { color: var(--lime); }
.page-content a:hover { text-decoration: underline; }
.page-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.page-content th,.page-content td { padding: 12px 16px; border: 1px solid var(--glass-border); text-align: left; }
.page-content th { background: var(--glass); color: var(--white); font-weight: 700; }
.page-content code { background: var(--dark2); padding: 2px 8px; border-radius: 4px; font-family: var(--mono); font-size: 14px; }
.page-content pre { background: var(--dark2); padding: 20px; border-radius: 12px; overflow-x: auto; margin: 24px 0; }
.page-content hr { border: none; border-top: 1px solid var(--glass-border); margin: 40px 0; }
.page-content .alignwide { margin-left: -40px; margin-right: -40px; max-width: calc(100% + 80px); }
.page-content .alignfull { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); max-width: 100vw; width: 100vw; }

/* Blog */
.blog-wrap { max-width: 1100px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--dark2); border: 1px solid var(--glass-border); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(191,255,0,0.2); }
.blog-card-thumb img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--slate); margin-bottom: 12px; }
.blog-card-meta a { color: var(--slate); font-size: 12px; }
.blog-card-meta a:hover { color: var(--lime); }
.blog-card h2 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.blog-card h2 a { color: var(--white); text-decoration: none; }
.blog-card h2 a:hover { color: var(--lime); }
.blog-card p { font-size: 14px; color: var(--slate); line-height: 1.6; margin-bottom: 16px; }
.blog-read-more { font-size: 13px; font-weight: 700; color: var(--lime); }
.blog-read-more:hover { text-decoration: underline; }

.single-featured-img { margin-bottom: 32px; border-radius: 16px; overflow: hidden; }
.single-featured-img img { width: 100%; }
.single-post-footer { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--glass-border); }
.single-tags { font-size: 13px; color: var(--slate); margin-bottom: 24px; }
.single-tags a { color: var(--lime); }
.tag-label { font-weight: 700; margin-right: 8px; }
.single-nav { display: flex; justify-content: space-between; gap: 16px; }
.single-nav-link { font-size: 14px; font-weight: 600; color: var(--lime); }
.single-nav-link:hover { text-decoration: underline; }
.single-comments { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--glass-border); }
.single-comments .comment-reply-title { font-size: 20px; color: var(--white); margin-bottom: 16px; }
.single-comments input,.single-comments textarea { background: var(--dark2); border: 1px solid var(--glass-border); color: var(--light); border-radius: 8px; padding: 12px 16px; font-family: var(--font); width: 100%; margin-bottom: 12px; }
.single-comments input:focus,.single-comments textarea:focus { outline: none; border-color: var(--lime); }
.single-comments .form-submit input[type="submit"] { background: var(--lime); color: var(--dark); font-weight: 700; border: none; cursor: pointer; width: auto; border-radius: 50px; padding: 12px 28px; }
.bugline-pagination { margin-top: 48px; text-align: center; }
.bugline-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.bugline-pagination a,.bugline-pagination span { padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; }
.bugline-pagination a { background: var(--dark2); color: var(--lime); border: 1px solid var(--glass-border); text-decoration: none; }
.bugline-pagination a:hover { border-color: var(--lime); }
.bugline-pagination .current { background: var(--lime); color: var(--dark); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { border-top: 1px solid var(--glass-border); }
.footer-widgets { padding: 64px 40px 32px; }
.footer-widgets-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.footer-logo:hover { text-decoration: none; }
.footer-logo-img { height: 32px; width: auto; }
.footer-tagline { font-size: 14px; color: var(--slate); line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social-link { font-size: 12px; font-weight: 600; color: var(--slate); background: var(--glass); border: 1px solid var(--glass-border); padding: 6px 14px; border-radius: 50px; text-decoration: none; transition: all 0.2s; }
.footer-social-link:hover { color: var(--lime); border-color: var(--lime); text-decoration: none; }
.footer-widget-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-widget { margin-bottom: 24px; }
.footer-widget ul { list-style: none; padding: 0; margin: 0; }
.footer-widget li { margin-bottom: 8px; }
.footer-widget a { color: var(--slate); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-widget a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid var(--glass-border); padding: 24px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { font-size: 13px; color: var(--slate); margin: 0; }
.footer-nav,.footer-nav ul { display: flex; align-items: center; gap: 8px; list-style: none; padding: 0; margin: 0; }
.footer-nav a { color: var(--lime); font-size: 13px; text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; }
.footer-nav .sep { color: var(--slate); }
.sidebar-widget { margin-bottom: 32px; }
.sidebar-widget-title { font-size: 14px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--lime); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { margin-top: 40px; padding: 30px 20px; }
  .float-card { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid,.steps-grid,.testimonials-grid,.pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .feature-row,.feature-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .tool-replace { padding: 36px 24px; }
  .tools-crossed { gap: 12px; }
  .blog-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-widgets-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links,.nav-cta-btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 14px 20px; }
  .section { padding: 60px 20px; }
  .page-hero-bar { padding: 40px 20px 30px; }
  .page-content-wrap { padding: 40px 20px 60px; }
}

@media (max-width: 600px) {
  .footer-widgets-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-item h3 { font-size: 32px; }
}

/* Scroll-triggered animations */
.problem-card,.step-card,.testimonial-card,.pricing-card,.feature-row { opacity: 0; }

/* ================================================================
   SPAM FILTER SECTION
   ================================================================ */
.spam-section { background: linear-gradient(180deg, var(--dark) 0%, #0d1a14 50%, var(--dark) 100%); }
.spam-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 56px; }
.spam-card { background: var(--dark2); border: 1px solid var(--glass-border); border-radius: 24px; padding: 40px 36px; transition: all 0.3s ease; }
.spam-card:hover { transform: translateY(-4px); }
.spam-card.spam-blocked { border-color: rgba(255,68,68,0.2); }
.spam-card.spam-blocked:hover { border-color: rgba(255,68,68,0.4); }
.spam-card.spam-passed { border-color: rgba(191,255,0,0.2); }
.spam-card.spam-passed:hover { border-color: rgba(191,255,0,0.4); }
.spam-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.spam-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.spam-blocked .spam-icon { background: rgba(255,68,68,0.12); }
.spam-passed .spam-icon { background: rgba(191,255,0,0.12); }
.spam-card h4 { font-size: 22px; font-weight: 700; color: var(--white); }
.spam-list { list-style: none; padding: 0; margin: 0 0 28px 0; }
.spam-list li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 17px; color: var(--light); }
.spam-list li:last-child { border-bottom: none; }
.spam-x { color: var(--red-subtle); font-weight: 700; font-size: 16px; }
.spam-check { color: var(--lime); font-weight: 700; font-size: 16px; }
.spam-stat-box { background: rgba(255,68,68,0.08); border-radius: 16px; padding: 24px; text-align: center; }
.spam-stat-box.passed { background: rgba(191,255,0,0.08); }
.spam-stat-num { display: block; font-family: var(--mono); font-size: 42px; font-weight: 800; color: var(--red-subtle); letter-spacing: -2px; }
.spam-stat-box.passed .spam-stat-num { color: var(--lime); }
.spam-stat-label { display: block; font-size: 15px; color: var(--slate); margin-top: 6px; }
.spam-bottom { text-align: center; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--glass-border); }
.spam-quote { font-size: 22px; font-style: italic; color: var(--light); max-width: 600px; margin: 0 auto 12px; line-height: 1.6; }
.spam-attribution { font-size: 16px; color: var(--lime); font-weight: 600; }

@media (max-width: 900px) {
  .spam-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

/* ================================================================
   TRY IT YOURSELF SECTION
   ================================================================ */
.try-section { background: linear-gradient(180deg, var(--forest) 0%, var(--dark) 50%, var(--forest) 100%); }
.try-phone-card { background: var(--dark2); border: 2px solid var(--lime); border-radius: 24px; padding: 48px 40px; margin: 56px auto 0; max-width: 800px; position: relative; overflow: hidden; }
.try-phone-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--lime), #7acc00); }
.try-phone-card { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.try-phone-icon { width: 80px; height: 80px; border-radius: 20px; background: linear-gradient(135deg, var(--lime), #7acc00); display: flex; align-items: center; justify-content: center; font-size: 40px; animation: ring 3s ease-in-out infinite; }
.try-phone-details h3 { font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.try-phone-number { display: block; font-family: var(--mono); font-size: 48px; font-weight: 800; color: var(--lime); text-decoration: none; letter-spacing: -1px; margin-bottom: 16px; transition: all 0.3s ease; }
.try-phone-number:hover { color: var(--lime-dim); transform: scale(1.02); text-decoration: none; }
.try-phone-desc { font-size: 16px; color: var(--slate); line-height: 1.6; }
.try-features { display: flex; flex-direction: column; gap: 16px; }
.try-feature { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--light); font-weight: 600; }
.try-feature-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(191,255,0,0.12); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.try-bottom { text-align: center; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--glass-border); }
.try-testimonial { font-size: 22px; font-style: italic; color: var(--light); max-width: 700px; margin: 0 auto 16px; line-height: 1.6; }
.try-attribution { font-size: 16px; color: var(--lime); font-weight: 600; }

@media (max-width: 900px) {
  .try-phone-card { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .try-phone-number { font-size: 36px; }
  .try-features { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}
