/* ============================================
   Screen Studio Affiliate Site - Main Styles
   ScreenStudioDeals.com
   Theme: White + Charcoal Black (NO PURPLE)
   ============================================ */

/* CSS Variables */
:root {
  /* PRIMARY BRAND COLORS - Charcoal & Black */
  --primary: #1A1A1A;
  --primary-dark: #000000;
  --primary-light: #F4F4F4;

  /* ACCENT COLORS for badges/offers/highlights */
  --accent-red: #E63946;
  --accent-orange: #FF6B35;
  --accent-green: #10B981;
  --accent-blue: #2563EB;
  --accent-yellow: #F59E0B;
  --accent-teal: #0891B2;

  /* CTA / Highlight color - deep charcoal */
  --cta: #1A1A1A;
  --cta-hover: #000000;
  --cta-light: #F4F4F4;

  /* Background colors */
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --dark-card: #1E1E1E;

  /* Text */
  --text: #111111;
  --text-muted: #555555;
  --text-light: #888888;
  --white: #FFFFFF;

  /* Grays */
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D0D0D0;
  --gray-400: #B0B0B0;

  /* Status */
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #E63946;
  --info: #2563EB;

  /* Spacing & shape */
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 32px;
  --shadow: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0; /* managed via JS offset */
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-main); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-muted); line-height: 1.75; }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 70px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 90px 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
/* Primary = Black */
.btn-primary {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  color: var(--white);
}
/* Secondary = Orange accent */
.btn-secondary {
  background: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn-secondary:hover {
  background: #e55a28;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.45);
  color: var(--white);
}
/* Outline = Black border */
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
/* White = for dark backgrounds */
.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
/* Red CTA */
.btn-red {
  background: var(--accent-red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(230,57,70,0.35);
}
.btn-red:hover {
  background: #c0242f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230,57,70,0.45);
  color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-pulse { animation: pulse-dark 2s infinite; }
@keyframes pulse-dark {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
  50% { box-shadow: 0 4px 30px rgba(0,0,0,0.45), 0 0 0 8px rgba(0,0,0,0.06); }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
/* Announcement bar sits above sticky header — both stack naturally */
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 9px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-bar p { color: rgba(255,255,255,0.9); font-size: 0.82rem; font-weight: 600; margin: 0; }
.announcement-bar a { color: var(--accent-orange); text-decoration: none; font-weight: 700; border-bottom: 1px solid rgba(255,107,53,0.4); }
.announcement-bar a:hover { border-bottom-color: var(--accent-orange); }
.bar-close {
  position: absolute; right: 16px;
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 0.85rem; cursor: pointer; padding: 4px 6px;
  border-radius: 4px; transition: var(--transition);
}
.bar-close:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.countdown-inline {
  display: inline-flex; gap: 2px;
  background: var(--accent-orange); color: var(--white);
  padding: 1px 7px; border-radius: 4px; font-weight: 700; font-size: 0.78rem;
  vertical-align: middle;
}
#header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--gray-200);
}
#header.scrolled .nav-logo { color: var(--dark); }
#header.scrolled .nav-link { color: var(--text-muted); }
#header.scrolled .nav-link:hover { color: var(--dark); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px;
}
.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: var(--white);
  color: var(--dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
#header.scrolled .nav-logo .logo-icon {
  background: var(--dark);
}
.nav-logo span { color: var(--accent-orange); }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.9); transition: var(--transition);
}
.nav-link:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.nav-link.active { color: var(--accent-orange); }
#header.scrolled .nav-link.active { color: var(--accent-orange); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-badge {
  background: var(--accent-red);
  color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  padding: 2px 6px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.5px;
  vertical-align: super;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
#header.scrolled .hamburger span { background: var(--dark); }

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  min-height: calc(100vh - 42px);
  background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 40%, #111111 70%, #0a0a0a 100%);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.25; }
.hero-orb-1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, #3a3a3a, transparent);
  top: -120px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,0.3), transparent);
  bottom: -60px; left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(230,57,70,0.15), transparent);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: float 12s ease-in-out infinite 2s;
}
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-content {
  flex: 1; display: flex; align-items: center;
  padding: 64px 0 48px; position: relative; z-index: 1;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85); padding: 6px 14px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 16px;
  backdrop-filter: blur(10px);
}
.hero-badge .fire { animation: fire 1s ease infinite alternate; }
@keyframes fire { from { transform: scale(1); } to { transform: scale(1.2); } }
.hero-title {
  font-size: clamp(1.85rem, 3.8vw, 3rem); font-weight: 800;
  color: var(--white); line-height: 1.18; margin-bottom: 18px; letter-spacing: -0.5px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #FF6B35, #E63946);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title .strike {
  text-decoration: line-through; color: rgba(255,255,255,0.3);
  -webkit-text-fill-color: rgba(255,255,255,0.3); font-size: 0.7em;
}
.hero-description { font-size: 1rem; color: rgba(255,255,255,0.72); margin-bottom: 28px; max-width: 480px; line-height: 1.75; }
.hero-cta-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.hero-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--dark);
  padding: 15px 30px; border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: var(--transition); position: relative; overflow: hidden;
  width: fit-content;
}
.hero-cta-primary::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(0,0,0,0.04), transparent);
  transform: rotate(45deg) translateX(-100%); transition: 0.6s;
}
.hero-cta-primary:hover::before { transform: rotate(45deg) translateX(100%); }
.hero-cta-primary:hover { background: var(--gray-100); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); color: var(--dark); }
.hero-cta-secondary { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 0.95rem; font-weight: 500; transition: var(--transition); }
.hero-cta-secondary:hover { color: var(--white); gap: 12px; }
.hero-savings-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.savings-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px; border-radius: 50px; font-size: 0.82rem;
  color: rgba(255,255,255,0.78); backdrop-filter: blur(10px);
}
.savings-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-app-mockup {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px; padding: 20px; backdrop-filter: blur(20px); position: relative; overflow: hidden;
}
.mockup-topbar { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot-red { background: #FF5F57; }
.mockup-dot-yellow { background: #FEBC2E; }
.mockup-dot-green { background: #28C840; }
.hero-img-main { width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,0.07); }
.hero-floating-card {
  position: absolute; background: var(--white); border-radius: 14px;
  padding: 14px 18px; box-shadow: var(--shadow-xl);
  animation: float-card 4s ease-in-out infinite;
}
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-floating-card.card-1 { bottom: -20px; left: -20px; animation-delay: 0s; }
.hero-floating-card.card-2 { top: 30px; right: -20px; animation-delay: 2s; }
.floating-card-title { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.floating-card-value { font-size: 1.3rem; font-weight: 800; color: var(--dark); }
.floating-card-tag { font-size: 0.7rem; color: var(--success); font-weight: 600; }

/* Stats Bar */
.hero-stats { background: rgba(255,255,255,0.03); border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; position: relative; z-index: 1; }
.hero-stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-number { font-size: 1.75rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.stat-number span { color: var(--accent-orange); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.45); font-weight: 500; }

/* announcement-bar styles moved above #header */

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gray-100); color: var(--dark);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px;
  border: 1px solid var(--gray-200);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ============================================
   COUPON / DEAL SECTION
   ============================================ */
#deals { background: var(--gray-50); }
.deals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.deal-card {
  background: var(--white); border-radius: var(--border-radius-lg);
  padding: 28px; box-shadow: var(--shadow);
  border: 2px solid var(--gray-200); transition: var(--transition); position: relative; overflow: hidden;
}
.deal-card:hover { border-color: var(--dark); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.deal-card.featured { border-color: var(--dark); background: var(--gray-50); }
.deal-card.featured::before {
  content: 'BEST DEAL 🔥'; position: absolute; top: 16px; right: -30px;
  background: var(--dark); color: var(--white);
  font-size: 0.7rem; font-weight: 800; padding: 5px 40px;
  transform: rotate(40deg); letter-spacing: 1px;
}
.deal-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gray-100); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px; border: 1px solid var(--gray-200);
}
.deal-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.deal-card p { font-size: 0.9rem; margin-bottom: 16px; }
.deal-discount { font-size: 2.2rem; font-weight: 900; color: var(--accent-red); line-height: 1; margin-bottom: 4px; }
.deal-original { font-size: 0.875rem; color: var(--text-light); text-decoration: line-through; margin-bottom: 16px; }
.deal-code-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--gray-100); border: 2px dashed var(--gray-300);
  border-radius: 10px; padding: 10px 14px; margin-bottom: 16px;
  cursor: pointer; transition: var(--transition);
}
.deal-code-box:hover { border-color: var(--dark); background: var(--gray-200); }
.deal-code { flex: 1; font-family: 'Courier New', monospace; font-size: 1rem; font-weight: 700; color: var(--dark); letter-spacing: 1px; }
.copy-btn {
  font-size: 0.75rem; color: var(--text-muted); font-weight: 600;
  background: none; padding: 4px 8px; border-radius: 6px; border: 1px solid var(--gray-300);
}
.copy-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.deal-cta {
  display: block; text-align: center; background: var(--dark); color: var(--white);
  padding: 12px 20px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; transition: var(--transition);
}
.deal-cta:hover { background: #000; color: var(--white); transform: translateY(-2px); }
.deal-expiry { text-align: center; font-size: 0.75rem; color: var(--text-light); margin-top: 12px; }

/* Deals Table */
.deals-table-wrap { background: var(--white); border-radius: var(--border-radius-lg); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 40px; }
.deals-table-wrap h3 { padding: 24px 28px 0; font-size: 1.3rem; margin-bottom: 20px; }
.deals-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.deals-table th {
  background: var(--dark); color: var(--white);
  padding: 14px 20px; text-align: left;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.deals-table td { padding: 16px 20px; border-bottom: 1px solid var(--gray-100); color: var(--text); }
.deals-table tr:last-child td { border-bottom: none; }
.deals-table tr:hover td { background: var(--gray-50); }
.deals-table .badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.badge-green { background: #D1FAE5; color: #065F46; }
.badge-blue { background: #DBEAFE; color: #1E40AF; }
.badge-orange { background: #FEF3C7; color: #92400E; }
.badge-red { background: #FEE2E2; color: #991B1B; }
.deals-table .claim-link { color: var(--accent-orange); font-weight: 700; font-size: 0.875rem; }
.deals-table .claim-link:hover { color: #e55a28; }

/* ============================================
   PRICING SECTION
   ============================================ */
#pricing { background: var(--white); }
.pricing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 50px; }
.pricing-toggle-label { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.toggle-switch { position: relative; width: 56px; height: 28px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--gray-300); border-radius: 50px; transition: 0.3s;
}
.toggle-slider::before {
  content: ''; position: absolute; width: 22px; height: 22px;
  left: 3px; bottom: 3px; background: var(--white); border-radius: 50%; transition: 0.3s;
}
input:checked + .toggle-slider { background: var(--dark); }
input:checked + .toggle-slider::before { transform: translateX(28px); }
.savings-label { background: #D1FAE5; color: #065F46; font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pricing-card {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: var(--border-radius-xl); padding: 36px 32px; transition: var(--transition); position: relative;
}
.pricing-card:hover { border-color: var(--dark); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.popular { border-color: var(--dark); background: var(--gray-50); transform: scale(1.03); }
.pricing-card.popular:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--dark); color: var(--white);
  font-size: 0.75rem; font-weight: 700; padding: 6px 20px; border-radius: 50px;
  white-space: nowrap; box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.pricing-plan-name { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 12px; }
.pricing-price { margin-bottom: 6px; }
.pricing-currency { font-size: 1.3rem; font-weight: 700; color: var(--text-muted); vertical-align: top; margin-top: 10px; display: inline-block; }
.pricing-amount { font-size: 3.5rem; font-weight: 900; color: var(--dark); line-height: 1; }
.pricing-period { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }
.pricing-billed { font-size: 0.82rem; color: var(--text-light); margin-bottom: 6px; }
.pricing-original { font-size: 0.875rem; color: var(--text-light); text-decoration: line-through; margin-bottom: 6px; }
.pricing-savings-pill { display: inline-block; background: #D1FAE5; color: #065F46; font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; margin-bottom: 24px; }
.pricing-divider { height: 1px; background: var(--gray-200); margin: 24px 0; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text); }
.pricing-feature .check { color: var(--success); font-weight: 700; }
.pricing-feature .cross { color: var(--danger); }
.pricing-btn { display: block; text-align: center; padding: 14px 24px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: var(--transition); }
.pricing-btn-primary { background: var(--dark); color: var(--white); }
.pricing-btn-primary:hover { background: #000; color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.pricing-btn-outline { border: 2px solid var(--gray-300); color: var(--text); }
.pricing-btn-outline:hover { border-color: var(--dark); color: var(--dark); }
.pricing-note { text-align: center; margin-top: 32px; font-size: 0.875rem; color: var(--text-muted); }
.pricing-note a { color: var(--accent-orange); font-weight: 600; }
.savings-breakdown { background: var(--gray-50); border-radius: var(--border-radius-lg); padding: 36px; margin-top: 60px; border: 1px solid var(--gray-200); }
.savings-breakdown h3 { text-align: center; margin-bottom: 28px; font-size: 1.4rem; }
.savings-table { width: 100%; border-collapse: collapse; }
.savings-table th {
  background: var(--dark); color: var(--white); padding: 14px 20px;
  text-align: left; font-size: 0.875rem; font-weight: 700;
}
.savings-table th:first-child { border-radius: 10px 0 0 0; }
.savings-table th:last-child { border-radius: 0 10px 0 0; }
.savings-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-200); font-size: 0.9rem; }
.savings-table tr:last-child td { border-bottom: none; }
.savings-table .highlight-row td { background: #F0FDF4; color: #065F46; font-weight: 700; }

/* ============================================
   FEATURES SECTION
   ============================================ */
#features { background: var(--gray-50); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--white); border-radius: var(--border-radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow); transition: var(--transition); border: 2px solid transparent;
}
.feature-card:hover { border-color: var(--dark); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
/* Feature icon colors — colorful accents on white/charcoal base */
/* icon-purple renamed to icon-gray - no purple in theme */
.icon-purple { background: var(--gray-100); }
.icon-gray { background: var(--gray-100); }
.icon-orange { background: #FFF4ED; }
.icon-green { background: #ECFDF5; }
.icon-blue { background: #EFF6FF; }
.icon-pink { background: #FFF0F3; }
.icon-yellow { background: #FFFBEB; }
.icon-teal { background: #F0FDFA; }
.icon-red { background: #FFF1F2; }
.icon-gray { background: var(--gray-100); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; margin-bottom: 0; }

/* Feature Showcase Block */
.feature-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; }
.feature-showcase.reverse { direction: rtl; }
.feature-showcase.reverse > * { direction: ltr; }
.showcase-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gray-100); color: var(--dark);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; margin-bottom: 16px;
  border: 1px solid var(--gray-200);
}
.showcase-content h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.3; }
.showcase-content p { font-size: 1rem; margin-bottom: 24px; }
.showcase-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.showcase-list li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--text); }
.showcase-list .check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.showcase-visual { position: relative; }
.showcase-img-wrap { border-radius: var(--border-radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); background: var(--dark-2); }
.showcase-img-wrap img { width: 100%; display: block; }

/* ============================================
   HOW TO SECTION
   ============================================ */
#how-to { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 40px;
  left: calc(12.5% + 30px); right: calc(12.5% + 30px);
  height: 2px; background: linear-gradient(90deg, var(--dark), var(--gray-300), var(--dark)); z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 6px 20px rgba(0,0,0,0.25); position: relative;
}
.step-number::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px dashed rgba(0,0,0,0.2); animation: spin 20s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.step-item h4 { margin-bottom: 10px; }
.step-item p { font-size: 0.875rem; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
#comparison { background: var(--dark); }
#comparison .section-header h2 { color: var(--white); }
#comparison .section-header p { color: rgba(255,255,255,0.6); }
.comparison-table-wrap { overflow-x: auto; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-xl); }
.comparison-table { width: 100%; border-collapse: collapse; background: #1a1a1a; min-width: 700px; }
.comparison-table thead th {
  padding: 24px 20px; text-align: center;
  font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.07); background: #111;
}
.comparison-table thead th.highlight-col { background: #2a2a2a; color: var(--white); font-size: 1rem; }
.comparison-table thead th .tool-name { font-size: 1rem; font-weight: 800; color: var(--white); display: block; margin-bottom: 4px; }
.comparison-table thead th .tool-price { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.comparison-table th.highlight-col .tool-price { color: var(--accent-orange); }
.comparison-table td {
  padding: 18px 20px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.65); font-size: 0.9rem;
}
.comparison-table td.feature-name { text-align: left; padding-left: 28px; font-weight: 600; color: rgba(255,255,255,0.85); }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
.comparison-table td.highlight-col { background: rgba(255,255,255,0.04); color: var(--white); font-weight: 600; }
.check-yes { color: var(--success); font-size: 1.1rem; }
.check-no { color: var(--danger); font-size: 1.1rem; }
.check-partial { color: var(--warning); font-size: 1rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials { background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.testimonial-card {
  background: var(--white); border-radius: var(--border-radius-lg); padding: 28px;
  box-shadow: var(--shadow); transition: var(--transition); border: 2px solid transparent;
}
.testimonial-card:hover { border-color: var(--dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial-rating { color: #F59E0B; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }
.testimonials-logos { text-align: center; }
.testimonials-logos p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.logos-row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 32px; }
.brand-logo { font-size: 0.875rem; font-weight: 700; color: var(--gray-300); letter-spacing: 0.5px; text-transform: uppercase; }

/* ============================================
   FAQ SECTION
   ============================================ */
#faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: var(--gray-50); border-radius: var(--border-radius);
  border: 2px solid var(--gray-200); overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--dark); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 0.95rem;
  color: var(--dark); background: none; width: 100%; text-align: left; border: none;
}
.faq-question:hover { color: var(--dark); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-200); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition); font-size: 1rem;
}
.faq-item.open .faq-icon { background: var(--dark); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; }
.faq-answer p { font-size: 0.9rem; line-height: 1.8; color: var(--text-muted); }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ============================================
   WHO IS IT FOR
   ============================================ */
#audience { background: var(--dark); }
#audience .section-header h2 { color: var(--white); }
#audience .section-header p { color: rgba(255,255,255,0.6); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.audience-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-lg); padding: 32px 28px;
  transition: var(--transition); backdrop-filter: blur(10px);
}
.audience-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.audience-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.audience-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.audience-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* ============================================
   STICKY DEAL WIDGET
   ============================================ */
.sticky-deal {
  position: fixed; right: 20px; bottom: 20px; z-index: 999;
  max-width: 300px; background: var(--white);
  border-radius: var(--border-radius-lg); box-shadow: var(--shadow-xl);
  border: 2px solid var(--dark); overflow: hidden;
  transform: translateX(350px); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sticky-deal.visible { transform: translateX(0); }
.sticky-deal-header {
  background: var(--dark);
  padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
}
.sticky-deal-header p { color: var(--white); font-size: 0.82rem; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.sticky-close {
  background: rgba(255,255,255,0.15); border: none; color: var(--white);
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.9rem; line-height: 1; transition: var(--transition);
}
.sticky-close:hover { background: rgba(255,255,255,0.28); }
.sticky-deal-body { padding: 16px; }
.sticky-savings { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.sticky-savings .big-save { font-size: 2rem; font-weight: 900; color: var(--accent-red); line-height: 1; }
.sticky-savings-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
.sticky-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.sticky-new-price { font-size: 1.5rem; font-weight: 800; color: var(--dark); }
.sticky-old-price { font-size: 0.875rem; color: var(--text-light); text-decoration: line-through; }
.sticky-period { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; }
.sticky-countdown { display: flex; gap: 8px; margin-bottom: 14px; font-size: 0.75rem; color: var(--text-muted); align-items: center; }
.sticky-timer { display: flex; gap: 6px; }
.timer-unit { text-align: center; }
.timer-val {
  display: block; background: var(--dark); color: var(--white);
  font-size: 1rem; font-weight: 800; padding: 4px 8px; border-radius: 6px; min-width: 32px;
}
.timer-label { font-size: 0.6rem; color: var(--text-light); margin-top: 2px; display: block; }
.sticky-cta {
  display: block; text-align: center; background: var(--dark); color: var(--white);
  padding: 12px; border-radius: 10px; font-weight: 700; font-size: 0.875rem; transition: var(--transition);
}
.sticky-cta:hover { background: #000; color: var(--white); transform: translateY(-1px); }
.sticky-guarantee { text-align: center; font-size: 0.7rem; color: var(--text-light); margin-top: 8px; }
.sticky-toggle-btn {
  position: fixed; right: 20px; bottom: 20px; z-index: 998;
  background: var(--dark); color: var(--white); border: none;
  padding: 12px 20px; border-radius: 50px; font-size: 0.875rem; font-weight: 700;
  cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  display: none; align-items: center; gap: 8px; transition: var(--transition);
  animation: pulse-dark 2s infinite;
}
.sticky-toggle-btn.show { display: flex; }
.sticky-toggle-btn:hover { background: #000; transform: translateY(-2px); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--dark);
  border-radius: var(--border-radius-xl);
  padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='white' fill-opacity='0.05'/%3E%3C/svg%3E");
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }
.cta-banner-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-guarantee { margin-top: 20px; display: flex; justify-content: center; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-size: 0.875rem; }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer-logo .logo-icon { width: 36px; height: 36px; background: var(--white); color: var(--dark); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: var(--transition);
}
.social-btn:hover { background: var(--white); color: var(--dark); border-color: var(--white); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; font-size: 0.8rem; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--white); }
.footer-disclaimer { background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.05); padding: 16px 0; font-size: 0.75rem; color: rgba(255,255,255,0.22); text-align: center; line-height: 1.7; }

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-strip { background: var(--white); padding: 28px 0; border-bottom: 1px solid var(--gray-200); }
.trust-strip-inner { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 600; color: var(--text-muted); }
.trust-item-icon { font-size: 1.3rem; }

/* ============================================
   AFFILIATE DISCLOSURE
   ============================================ */
.affiliate-notice {
  background: #FFFBEB; border: 1px solid #FDE68A; border-radius: 10px;
  padding: 12px 20px; display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.825rem; color: #92400E; margin-bottom: 40px;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--accent-orange); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================
   LONG-FORM CONTENT
   ============================================ */
.content-block { max-width: 860px; margin: 0 auto; }
.content-block h2 { font-size: 1.8rem; margin: 40px 0 16px; color: var(--dark); }
.content-block h3 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--dark); }
.content-block p { font-size: 1rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 16px; }
.content-block ul, .content-block ol { margin: 16px 0 24px 24px; }
.content-block li { margin-bottom: 8px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; list-style: disc; }

/* ============================================
   MISC UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--dark); }
.text-white { color: var(--white); }
.fw-bold { font-weight: 700; }
.gradient-text { color: var(--dark); }
.tag { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; background: var(--gray-100); color: var(--dark); border: 1px solid var(--gray-200); }

/* Scroll progress bar */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--dark), var(--accent-orange)); z-index: 10000; transition: width 0.1s; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 48px 0 36px; }
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.popular { transform: scale(1); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-showcase { grid-template-columns: 1fr; gap: 30px; }
  .feature-showcase.reverse { direction: ltr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  /* Comparison & feature tables scroll on tablet */
  .comparison-table-wrap,
  .compare-table-wrap,
  .feature-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    width: 100%;
  }
}
@media (max-width: 768px) {
  :root { --max-width: 100%; }
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .nav-menu {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.99); backdrop-filter: blur(20px);
    padding: 20px; gap: 4px; border-bottom: 1px solid var(--gray-200);
    z-index: 999; max-height: 80vh; overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-link { color: var(--text) !important; padding: 10px 16px; width: 100%; border-radius: 8px; }
  .nav-link:hover { background: var(--gray-100); }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .deals-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { padding: 40px 24px; }
  .cta-banner-buttons { flex-direction: column; align-items: center; }
  .savings-table { font-size: 0.8rem; }
  .savings-table th, .savings-table td { padding: 10px 12px; }
  .trust-strip-inner { gap: 20px; }
  .sticky-deal { max-width: 260px; right: 10px; bottom: 10px; }
  /* All tables scrollable */
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    max-width: 100%;
  }
  table th, table td { white-space: normal; }
  .comparison-table-wrap,
  .compare-table-wrap,
  .feature-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    width: 100%;
    border-radius: 12px;
  }
  /* Images always fit */
  img, video { max-width: 100% !important; height: auto !important; }
  /* Iframe aspect ratio */
  iframe { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.55rem; letter-spacing: -0.3px; }
  .hero-description { font-size: 0.9rem; }
  .hero-savings-badges { flex-direction: column; }
  .hero-cta-primary { font-size: 0.9rem; padding: 13px 22px; }
  .section-header { margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .announcement-bar p { font-size: 0.75rem; }
  .announcement-bar .hide-mobile { display: none; }
  /* Override white-space:nowrap set by block display */
  table { white-space: normal; }
  table th, table td { padding: 8px 10px; font-size: 0.78rem; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
