/* ==========================================================================
   VPNShark (www.vpnshark.my) - PopAds Conversion Landing Page Stylesheet
   Design System: Midnight Obsidian & Electric Cyan / Neon Coral Accent
   ========================================================================== */

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

:root {
  /* Brand Colors */
  --bg-dark: #070913;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(26, 38, 66, 0.85);
  --border-color: rgba(56, 189, 248, 0.15);
  --border-focus: rgba(56, 189, 248, 0.5);

  --primary-cyan: #06b6d4;
  --primary-cyan-glow: rgba(6, 182, 212, 0.35);
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-orange: #f97316;
  --accent-coral: #ff4757;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --success-green: #10b981;
  --warning-amber: #f59e0b;

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-glow: 0 0 35px rgba(6, 182, 212, 0.25);
  --shadow-coral: 0 8px 25px rgba(255, 71, 87, 0.35);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Ambient Glow Effects */
.bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-cyan);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: var(--accent-purple);
  top: 40%;
  right: -150px;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: var(--accent-blue);
  bottom: -100px;
  left: 30%;
}

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

/* PopAds Top Promo Notification Bar */
.pop-promo-bar {
  background: linear-gradient(90deg, #1e1b4b, #312e81, #0f172a);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  color: #fff;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.pop-promo-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.promo-badge {
  background: rgba(255, 71, 87, 0.2);
  border: 1px solid var(--accent-coral);
  color: var(--accent-coral);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255, 71, 87, 0); }
}

.promo-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: #fbbf24;
}

.btn-promo-claim {
  background: var(--accent-coral);
  color: white;
  text-decoration: none;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.btn-promo-claim:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-coral);
}

/* Header & Navbar */
.site-header {
  padding: 24px 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--primary-cyan);
}

.brand-badge {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

.btn-header-cta {
  background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
  color: white;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

/* Hero Section */
.hero-section {
  padding: 40px 0 70px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid var(--border-color);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--primary-cyan);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-pill .dot {
  width: 8px;
  height: 8px;
  background: var(--success-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success-green);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 36px;
  font-weight: 400;
}

/* CTA Primary Group */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-coral), #ef4444);
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 18px 42px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-coral);
  transition: var(--transition-normal);
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: rotate(30deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  20%, 100% { transform: translateX(100%) rotate(30deg); }
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 71, 87, 0.5);
}

.cta-subtext {
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-subtext span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Trust Badges Bar */
.trust-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-top: 30px;
}

.metric-card {
  text-align: center;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card:last-child {
  border-right: none;
}

.metric-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-cyan);
  font-family: var(--font-mono);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Node Speed Test Section */
.section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-tag {
  color: var(--primary-cyan);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--text-muted);
  margin-top: 10px;
  font-size: 1rem;
}

.live-nodes-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.nodes-test-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pulse-icon {
  width: 10px;
  height: 10px;
  background-color: var(--success-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success-green);
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.meta-badge {
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--primary-cyan);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.nodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.node-item {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.node-item:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}

.node-flag-region {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.node-region-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}

.flag {
  font-size: 1.4rem;
}

.node-tag-good {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
}

.node-metrics {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.metric-ping {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.metric-ping strong {
  color: var(--success-green);
}

.metric-speed {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.speed-bar-wrap {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.speed-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), var(--primary-cyan));
  border-radius: 3px;
}

/* Service & AI Unlock Matrix */
.unlock-matrix-card {
  margin-top: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.matrix-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.unlock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.unlock-badge {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.unlock-badge:hover {
  border-color: var(--primary-cyan);
}

.unlock-icon {
  font-size: 1.5rem;
}

.unlock-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.unlock-status {
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.status-full {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success-green);
}

.status-part {
  background: rgba(245, 158, 11, 0.2);
  color: var(--warning-amber);
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.6) 100%);
  padding: 80px 0;
}

.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-toggle {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-color);
  padding: 6px;
  border-radius: var(--radius-full);
  display: inline-flex;
  gap: 4px;
}

.toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
  color: white;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.toggle-badge {
  background: var(--accent-coral);
  color: white;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-normal);
  backdrop-filter: blur(16px);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-cyan);
  box-shadow: 0 20px 40px -15px rgba(6, 182, 212, 0.2);
}

.pricing-card.featured {
  border: 2px solid var(--primary-cyan);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(6, 182, 212, 0.12) 100%);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.25);
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent-coral), #ef4444);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
}

.plan-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.plan-traffic {
  font-size: 0.9rem;
  color: var(--primary-cyan);
  font-weight: 600;
  margin-top: 4px;
}

.plan-price-wrap {
  margin: 24px 0;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-mono);
  line-height: 1;
}

.plan-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-calc-note {
  font-size: 0.85rem;
  color: var(--success-green);
  font-weight: 600;
  margin-top: 8px;
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li svg {
  color: var(--primary-cyan);
  flex-shrink: 0;
}

.btn-select-plan {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-card.featured .btn-select-plan,
.btn-select-plan.primary {
  background: linear-gradient(135deg, var(--accent-coral), #ef4444);
  border: none;
  box-shadow: var(--shadow-coral);
}

.btn-select-plan:hover {
  transform: translateY(-2px);
  background: #fff;
  color: var(--bg-dark);
}

.pricing-card.featured .btn-select-plan:hover,
.btn-select-plan.primary:hover {
  box-shadow: 0 10px 25px rgba(255, 71, 87, 0.6);
  color: #fff;
}

/* Extra Budget & Non-time Plans Grid */
.extra-plans-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.extra-plan-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.extra-plan-info h4 {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700;
}

.extra-plan-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.extra-plan-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-cyan);
  font-family: var(--font-mono);
}

/* Platform Client Tutorial Icons */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition-fast);
}

.platform-card:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-3px);
}

.platform-icon {
  width: 56px;
  height: 56px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary-cyan);
}

.platform-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.platform-apps {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Architecture Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition-fast);
}

.feature-box:hover {
  border-color: var(--accent-blue);
  transform: translateY(-3px);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-cyan);
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-chevron {
  transition: transform 0.3s ease;
  color: var(--primary-cyan);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* Sticky Bottom Floating Conversion Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.92);
  border-top: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta-bar.show {
  transform: translateY(0);
}

.sticky-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.sticky-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.sticky-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-sticky-action {
  background: linear-gradient(135deg, var(--accent-coral), #ef4444);
  color: white;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-coral);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-sticky-action:hover {
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 0 100px;
  color: var(--text-dim);
  font-size: 0.85rem;
  text-align: center;
}

.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 992px) {
  .hero-title { font-size: 2.5rem; }
  .trust-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-card { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .extra-plans-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 1.95rem; }
  .hero-subtitle { font-size: 0.98rem; }
  .btn-hero-primary { font-size: 1.05rem; padding: 15px 24px; }
  .trust-metrics-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pop-promo-content { flex-direction: column; text-align: center; justify-content: center; }
  .nav-links { display: none; }
  .sticky-cta-content { flex-direction: column; text-align: center; gap: 8px; }
}
