/* ============================================================
   ROOT VARIABLES & RESET
   ============================================================ */
:root {
  --primary:       #2563eb;
  --primary-dark:  #1d4ed8;
  --primary-light: #dbeafe;
  --accent:        #f59e0b;
  --accent-dark:   #d97706;
  --green:         #16a34a;
  --green-light:   #dcfce7;
  --red:           #dc2626;
  --purple:        #7c3aed;
  --teal:          #0d9488;
  --orange:        #ea580c;

  --text-dark:     #111827;
  --text-body:     #374151;
  --text-muted:    #6b7280;
  --text-light:    #9ca3af;

  --bg-white:      #ffffff;
  --bg-light:      #f9fafb;
  --bg-muted:      #f3f4f6;

  --border:        #e5e7eb;
  --border-dark:   #d1d5db;

  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.14);
  --shadow-xl:     0 20px 60px rgba(0,0,0,.18);

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  --font:          'Inter', sans-serif;
  --transition:    0.22s ease;
  --container:     1200px;
}

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

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

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* ── Sticky footer: push footer to bottom on short pages ── */
body > main {
  flex: 1 0 auto;
}

/* Ensure footer never shrinks — always sits at page bottom */
body > footer,
.site-footer,
.site-footer-main {
  flex-shrink: 0;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; padding: 0; }
button { cursor: pointer; font-family: var(--font); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.green-text   { color: var(--green); }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-title.left-aligned { text-align: left; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
}
.eyebrow-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.highlight-brand { color: var(--primary); }

.yes-icon  { color: var(--green); font-size: 1rem; }
.no-icon   { color: var(--red);   font-size: 1rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-xl  { padding: 15px 34px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-lg  { padding: 13px 28px; font-size: 1rem; }
.btn-sm  { padding: 8px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 4px 14px rgba(37,99,235,.28);
}
.btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.38);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-offer {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 4px 14px rgba(37,99,235,.28);
}
.btn-offer:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.38);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-nav-cta {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  padding: 9px 20px;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(37,99,235,.28);
}
.btn-nav-cta:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-1px);
}

.btn-sticky {
  background: #fff;
  color: var(--primary);
  padding: 6px 16px;
  font-size: 0.82rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  flex-shrink: 0;
}
.btn-sticky:hover { background: #f0f4ff; }

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-copy:hover, .btn-copy.copied {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   CODE CHIP
   ============================================================ */
.code-chip {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px dashed rgba(255,255,255,.6);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  font-family: monospace;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.code-chip--dark {
  background: var(--primary-light);
  border: 1px dashed var(--primary);
  color: var(--primary);
}

/* ============================================================
   STICKY TOP BAR
   ============================================================ */
.sticky-top-bar {
  background: #1e3a8a;
  color: #fff;
  padding: 10px 24px;
  position: relative;
  z-index: 1000;
  transition: transform var(--transition);
}
.sticky-top-bar.hidden { transform: translateY(-100%); display: none; }
.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.fire-icon { font-size: 1.1rem; flex-shrink: 0; }
.sticky-text {
  font-size: 0.88rem;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* Right-side group: Claim Now button (centered with text) */
.sticky-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 0;
}
.sticky-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.sticky-close:hover {
  background: rgba(255,255,255,.3);
  transform: translateY(-50%) scale(1.12);
}
.sticky-close:active { transform: translateY(-50%) scale(0.95); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
  /* Required so the absolute mobile menu positions relative to header */
  position: sticky;
}
.site-header .navbar { position: relative; }
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
  position: relative; /* anchor for absolute mobile menu */
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}
.logo-text strong { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links li { position: relative; }
.nav-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover { background: var(--bg-muted); color: var(--primary); }
.nav-links .nav-highlight {
  color: var(--primary);
  font-weight: 600;
}
.nav-links .nav-highlight:hover { background: var(--primary-light); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: 8px;
  z-index: 1000;
  animation: fadeDown .18s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--text-body);
  border-radius: var(--radius-sm);
}
.dropdown-menu li a:hover { background: var(--bg-muted); color: var(--primary); }

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  flex-shrink: 0;
  min-width: 40px;
  min-height: 40px;
  transition: border-color var(--transition), background var(--transition);
}
.hamburger:hover { border-color: var(--primary); background: var(--primary-light); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.hamburger.open { border-color: var(--primary); background: var(--primary); }
.hamburger.open span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #f5f3ff 100%);
  padding: 24px 0 60px;
  text-align: center;
}
.hero-container { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.25);
  color: var(--primary-dark);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .7; }
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--primary); }

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.trust-strip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 28px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
}
.trust-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
}
.trust-icon { font-size: 0.9rem; }
.trust-icon.verified { color: var(--primary); }
.trust-icon.rated { color: var(--accent); }

/* Hero blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
}
.hero-blob-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #bfdbfe, transparent);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #e9d5ff, transparent);
  bottom: -80px; left: -60px;
}

/* ============================================================
   SECTION LABEL / HOT BADGE
   ============================================================ */
.section-label { text-align: center; margin-bottom: 12px; }
.hot-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, var(--red), #f97316);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 5px 14px;
}

/* ============================================================
   OFFERS / COUPON CARDS
   ============================================================ */
.offers {
  padding: 44px 0 52px;
  background: var(--bg-white);
}
.offers .section-title,
.offers .section-sub { text-align: center; }

.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 12px;
}

.offer-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  /* top padding: ribbon sits at top:16px, ribbon height ~30px, then 24px gap before text */
  padding: 80px 28px 28px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.offer-card--featured {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(37,99,235,.2);
}

.card-ribbon {
  position: absolute;
  /* 16px from top edge of card — matches reference image spacing */
  top: 16px;
  left: 0;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  /* vertical padding 8px gives ~30px total height; horizontal right padding for arrow notch */
  padding: 8px 26px 8px 16px;
  /* arrow-right notch pointing inward */
  clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, 0 100%);
  text-transform: uppercase;
  /* subtle lift shadow */
  box-shadow: 2px 2px 6px rgba(0,0,0,0.20);
  z-index: 2;
  /* no border-radius — left edge is flush with card border */
  border-radius: 0;
}
.card-ribbon--limited  { background: var(--orange); }
.card-ribbon--verified { background: var(--green); }

.card-discount-badge {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.card-discount-badge--alt   { color: var(--orange); }
.card-discount-badge--green { color: var(--green); }

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.code-block {
  background: var(--bg-muted);
  border: 1px dashed var(--border-dark);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.code-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.code-copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.code-value {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}

.card-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.card-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-details li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-body);
}
.card-details li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.card-details li i.fa-graduation-cap { color: var(--primary); }
.card-details li i.fa-infinity { color: var(--purple); }

.urgency-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 600;
  text-align: center;
  justify-content: center;
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-table {
  padding: 44px 0;
  background: var(--bg-light);
}
.pricing-table .section-title,
.pricing-table .section-sub { text-align: center; }

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.92rem;
}
.compare-table thead tr {
  background: #2563eb;
  color: #fff;
}
.compare-table th {
  padding: 16px 20px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
.compare-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--bg-light); }
.compare-table .row-featured td { background: #fefce8; }
.compare-table .row-featured td:first-child { border-left: 4px solid var(--accent); }

.plan-name {
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.original-price { color: var(--text-muted); }
.original-price s { text-decoration: line-through; }
.discount-price { color: var(--green); }
.savings-col { text-align: center; }
.savings-badge {
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
}
.savings-badge--big {
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 700;
}
.best-value-tag {
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
}

.table-cta {
  text-align: center;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.table-cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   SAVINGS EXPLAINER
   ============================================================ */
.savings-explainer {
  padding: 44px 0;
  background: var(--bg-white);
}
.savings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.savings-text { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.savings-text p { color: var(--text-body); line-height: 1.75; }

.savings-numbers {
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.savings-numbers-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  text-align: center;
}

.numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.number-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.number-item:hover { transform: scale(1.03); }
.number-item--bonus  { background: #f0fdf4; border-color: #86efac; }
.number-item--highlight {
  background: #2563eb;
  color: #fff;
  border-color: transparent;
}
.number-item--highlight .number-value  { color: #fff; }
.number-item--highlight .number-label  { color: rgba(255,255,255,.75); }

.number-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}
.number-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }

.savings-vs {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.vs-item { flex: 1; }
.vs-label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 4px; }
.vs-price { font-size: 1.1rem; font-weight: 800; }
.vs-winner { color: var(--green); }
.vs-loser  { color: var(--red); text-decoration: line-through; }
.vs-vs {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-muted);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.savings-callout {
  background: #fef9c3;
  border: 1px solid #fde047;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #713f12;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features {
  padding: 44px 0;
  background: var(--bg-light);
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.feature-card p  { font-size: 0.88rem; color: var(--text-muted); }

.feature-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.feature-icon-wrap--blue   { background: var(--primary); }
.feature-icon-wrap--orange { background: var(--orange); }
.feature-icon-wrap--green  { background: var(--green); }
.feature-icon-wrap--purple { background: var(--purple); }
.feature-icon-wrap--red    { background: var(--red); }
.feature-icon-wrap--teal   { background: var(--teal); }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 4px;
}
.feature-list li {
  font-size: 0.83rem;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}
.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ============================================================
   MID-PAGE CTA BAND
   ============================================================ */
.cta-band {
  background: #1e3a8a;
  padding: 44px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  text-align: left;
  position: relative;
}
.cta-band-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fde68a;
  margin-bottom: 10px;
}
.cta-band-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-band-text p { font-size: 0.95rem; color: rgba(255,255,255,.8); max-width: 480px; }
.cta-band-action { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }
.cta-band-subtext {
  font-size: 0.78rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits {
  padding: 44px 0;
  background: var(--bg-white);
  text-align: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.benefit-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-light);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.benefit-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.benefit-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   TUTORIAL
   ============================================================ */
.tutorial {
  padding: 44px 0;
  background: var(--bg-light);
  text-align: center;
}
.tutorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
  margin-bottom: 36px;
}
.tutorial-column {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.tutorial-section-header {
  padding: 18px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tutorial-section-header--blue   { background: var(--primary); }
.tutorial-section-header--orange { background: var(--orange); }

.tutorial-steps { padding: 8px 0; }
.tutorial-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}
.tutorial-step:last-child { border-bottom: none; }
.step-number {
  width: 36px; height: 36px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tutorial-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  text-align: left;
}
.tutorial-step p {
  font-size: 0.83rem;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.5;
}

.pro-tips-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.pro-tip-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.pro-tip-header {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.pro-tip-header i { color: var(--primary); }
.pro-tip-card ul { display: flex; flex-direction: column; gap: 8px; }
.pro-tip-card li {
  font-size: 0.83rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}
kbd {
  background: var(--bg-muted);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: monospace;
  font-size: 0.8em;
  color: var(--text-dark);
  flex-shrink: 0;
}

/* ============================================================
   PRICING ANALYSIS
   ============================================================ */
.pricing-analysis {
  padding: 44px 0;
  background: var(--bg-white);
  text-align: center;
}
.pricing-analysis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}
.plan-analysis-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-analysis-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.plan-analysis-card--featured {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(245,158,11,.2);
}
.plan-best-tag {
  position: absolute;
  top: 14px;
  right: -10px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 20px 5px 12px;
  text-transform: uppercase;
  clip-path: polygon(0 0,100% 0,100% 100%,0 100%,10% 50%);
}
.plan-analysis-header {
  padding: 28px 24px 20px;
  color: #fff;
  text-align: center;
}
.plan-analysis-header--blue { background: #2563eb; }
.plan-analysis-header--gold { background: linear-gradient(135deg, #d97706, #92400e); }
.plan-analysis-header--green { background: linear-gradient(135deg, var(--green), #14532d); }
.plan-analysis-header i { font-size: 2rem; margin-bottom: 10px; opacity: .9; }
.plan-analysis-header h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.plan-analysis-price { font-size: 1.8rem; font-weight: 900; }
.plan-analysis-price small { font-size: 0.7em; font-weight: 500; opacity: .8; }

.plan-analysis-body { padding: 24px; text-align: left; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.pros h4 { color: var(--green); font-size: 0.82rem; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.cons h4 { color: var(--red);  font-size: 0.82rem; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.pros ul, .cons ul { display: flex; flex-direction: column; gap: 6px; }
.pros li, .cons li { font-size: 0.8rem; color: var(--text-body); padding-left: 10px; position: relative; }
.pros li::before { content: '+'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons li::before { content: '−'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

.plan-verdict {
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.83rem;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.plan-verdict--blue  { background: var(--primary-light); color: var(--primary-dark); }
.plan-verdict--gold  { background: #fef9c3; color: #78350f; }
.plan-verdict--green { background: var(--green-light); color: #14532d; }

.student-prices { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.student-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg-muted);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.how-to-steps h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.how-to-steps ol {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.how-to-steps li { font-size: 0.82rem; color: var(--text-body); }

/* Money tips */
.money-tips {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.money-tips-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  text-align: left;
}
.money-tips-title i { color: var(--accent); }
.money-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.money-tip { text-align: left; }
.money-tip-icon {
  width: 40px; height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 12px;
}
.money-tip h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.money-tip ul { display: flex; flex-direction: column; gap: 6px; }
.money-tip li {
  font-size: 0.83rem;
  color: var(--text-body);
  padding-left: 14px;
  position: relative;
}
.money-tip li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison {
  padding: 44px 0;
  background: var(--bg-light);
  text-align: center;
}
.comparison-table-wrap { margin-bottom: 40px; }
.features-compare .pdfexpert-col { background: #eff6ff; }
.features-compare .highlight-cell { font-weight: 600; }
.winner-chip {
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.06em;
}
.feature-col { font-weight: 600; color: var(--text-dark); }
.rating-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
}
.rating-excellent { background: #dcfce7; color: var(--green); }
.rating-complex   { background: #fee2e2; color: var(--red); }
.rating-good      { background: #fef9c3; color: #92400e; }

/* H2H Cards */
.h2h-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.h2h-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.h2h-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
}
.h2h-logo {
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
.h2h-pdf   { background: var(--primary); }
.h2h-adobe { background: #cc1818; }
.h2h-foxit { background: #e05d08; }
.h2h-vs {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}
.h2h-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.h2h-pros, .h2h-cons {
  padding: 20px 18px;
}
.h2h-pros { border-right: 1px solid var(--border); }
.h2h-pros h4, .h2h-cons h4 {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.h2h-pros h4 { color: var(--green); }
.h2h-cons h4 { color: var(--text-muted); }
.h2h-pros ul, .h2h-cons ul { display: flex; flex-direction: column; gap: 6px; }
.h2h-pros li, .h2h-cons li { font-size: 0.8rem; color: var(--text-body); padding-left: 12px; position: relative; }
.h2h-pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 0.75rem; }
.h2h-cons li::before { content: '·'; position: absolute; left: 0; color: var(--text-muted); font-weight: 700; }
.h2h-verdict {
  padding: 14px 18px;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}
.h2h-verdict i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   TROUBLESHOOTING
   ============================================================ */
.troubleshooting {
  padding: 44px 0;
  background: var(--bg-white);
  text-align: center;
}
.trouble-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.trouble-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}
.trouble-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trouble-icon {
  width: 48px; height: 48px;
  background: #fff3cd;
  color: var(--accent-dark);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.trouble-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.trouble-symptom { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 12px; }
.trouble-card ul { display: flex; flex-direction: column; gap: 7px; }
.trouble-card li {
  font-size: 0.83rem;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}
.trouble-card li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--primary);
  font-weight: 700;
}

.sys-requirements {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
  text-align: left;
}
.sys-requirements h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
}
.sys-req-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sys-req-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.83rem;
  color: var(--text-body);
}
.sys-req-item i { color: var(--primary); }

.support-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.support-cta-block p { font-size: 0.95rem; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 44px 0;
  background: var(--bg-light);
  text-align: center;
}
.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
}
.faq-group-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.faq-group-title i { color: var(--primary); }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  gap: 12px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
  font-size: 0.75rem;
}
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--primary); }
.faq-question[aria-expanded="true"] { color: var(--primary); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}
.faq-answer.open { max-height: 300px; padding-bottom: 16px; }
.faq-answer p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: #1e3a8a;
  padding: 56px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; }
.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fde68a;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.final-cta p { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto 36px; }
.final-cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.final-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: rgba(255,255,255,.75);
}
.final-trust-strip span { display: flex; align-items: center; gap: 5px; }
.final-trust-strip i { color: #86efac; }

/* ============================================================
   FOOTER
   ============================================================ */
/* ── Sticky footer ── */
.site-footer,
.site-footer-main {
  margin-top: auto;   /* pushes footer to bottom when content is short */
  flex-shrink: 0;
}
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.8);
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 24px 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-about { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 300px; margin-bottom: 20px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.social-icon:hover { background: var(--primary); color: #fff; }

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: #fff; }
.footer-links a .fa-fw { color: rgba(255,255,255,.35); font-size: 0.78rem; flex-shrink: 0; }
.footer-badges { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}
.footer-badge i { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
}
.footer-bottom-inner > p:first-child { font-size: 0.82rem; color: rgba(255,255,255,.5); }
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
  max-width: 800px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  text-align: center;
}
.footer-disclaimer i { color: rgba(255,255,255,.4); flex-shrink: 0; margin-top: 2px; }
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: #fff; }

/* ============================================================
   EXIT POPUP
   ============================================================ */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9999;
  backdrop-filter: blur(4px);
  animation: fadeIn .2s ease;
}
.exit-popup-overlay.active { display: flex; align-items: center; justify-content: center; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.exit-popup {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  max-width: 440px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: slideUp .25s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px) scale(.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.exit-popup-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  line-height: 1;
  transition: color var(--transition);
}
.exit-popup-close:hover { color: var(--text-dark); }
.exit-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fef3c7;
  color: #b45309;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.exit-popup h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.exit-popup p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.exit-popup-dismiss {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--transition);
}
.exit-popup-dismiss:hover { color: var(--text-dark); }

/* ============================================================
   STICKY BOTTOM BAR (mobile)
   ============================================================ */
.sticky-bottom-bar {
  display: none;               /* shown via JS on scroll */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #1e3a8a;
  padding: 10px 16px;
  z-index: 998;
  border-top: 2px solid rgba(255,255,255,.18);
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  /* Safe-area inset for notched phones */
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
}
.sticky-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.sticky-bottom-text {
  font-size: 0.82rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  line-height: 1.4;
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* Right-side group: Claim Now button (centered with text) */
.sticky-bottom-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 0;
}
.sticky-bottom-text strong {
  color: #fff;
  white-space: nowrap;
}
/* CTA button inside bottom bar — always white & visible */
.sticky-bottom-bar .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #fff !important;
  color: #1e3a8a !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  padding: 6px 16px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.sticky-bottom-bar .btn:hover {
  background: #f0f4ff !important;
  color: #1d4ed8 !important;
  transform: translateY(-1px);
}
/* Code chip inside dark bar — white on navy */
.sticky-bottom-bar .code-chip,
.sticky-bottom-bar .code-chip--dark {
  background: rgba(255,255,255,.18) !important;
  border: 1px dashed rgba(255,255,255,.55) !important;
  color: #fde68a !important;   /* warm yellow — readable on dark navy */
  font-family: monospace;
  font-size: 0.88em;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 1px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
/* Close button — absolute far-right corner */
.sticky-bottom-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.sticky-bottom-close:hover {
  background: rgba(255,255,255,.3);
  transform: translateY(-50%) scale(1.12);
}
.sticky-bottom-close:active {
  transform: translateY(-50%) scale(0.95);
}

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .savings-grid { gap: 36px; }
  .h2h-grid { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band-text p { margin: 0 auto; }
  .cta-band-action { align-items: center; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {

  /* --- Global safety net --- */
  *, *::before, *::after { box-sizing: border-box; }
  html, body { overflow-x: hidden; max-width: 100%; }

  .container { padding-left: 1rem; padding-right: 1rem; }

  /* --- Images & media --- */
  img, video, iframe, embed, object { max-width: 100%; height: auto; display: block; }

  /* --- Tables: all tables get horizontal scroll wrapper behaviour --- */
  .table-wrapper,
  .comp-table-wrap,
  .overview-table-wrap,
  .detailed-table-wrap,
  [class*="table-wrap"] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
  }

  /* --- Navigation --- */
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-container { height: 60px; }

  /* ── Mobile menu panel ── */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    /* Anchor to nav-container (position:relative) */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid #2563eb;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,.16);
    padding: 10px 14px 18px;
    gap: 3px;
    z-index: 9999;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: mobileMenuSlide .22s ease;
  }
  @keyframes mobileMenuSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* All top-level nav links inside mobile panel */
  .nav-links.mobile-open > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--bg-muted);
    width: 100%;
    text-align: left;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .nav-links.mobile-open > li:last-of-type > a { border-bottom: none; }
  .nav-links.mobile-open > li > a:hover,
  .nav-links.mobile-open > li > a:focus {
    background: var(--primary-light);
    color: var(--primary);
  }

  /* Active link */
  .nav-links.mobile-open .active-link,
  .nav-links.mobile-open .active {
    color: var(--primary);
    font-weight: 700;
  }

  /* ── "Claim Discount" nav-highlight — solid blue button style in mobile ── */
  .nav-links.mobile-open > li > a.nav-highlight {
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border-bottom: none;
    justify-content: center;
    margin-top: 6px;
    padding: 12px 14px;
    box-shadow: 0 2px 10px rgba(37,99,235,.25);
    letter-spacing: 0.01em;
  }
  /* Wrap the nav-highlight li with a top separator line */
  .nav-links.mobile-open > li:has(> a.nav-highlight) {
    border-top: 1px solid var(--border);
    padding-top: 6px;
    margin-top: 4px;
  }
  .nav-links.mobile-open > li > a.nav-highlight:hover,
  .nav-links.mobile-open > li > a.nav-highlight:focus {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37,99,235,.38);
  }

  /* ── Dropdown trigger arrow indicator ── */
  .nav-links.mobile-open .dropdown-trigger .fa-chevron-down {
    margin-left: auto;
    transition: transform 0.25s ease;
  }
  .nav-links.mobile-open .has-dropdown.dropdown-open > .dropdown-trigger .fa-chevron-down {
    transform: rotate(180deg);
  }

  /* ── Dropdown submenu inside mobile panel ── */
  .nav-links.mobile-open .dropdown-menu {
    display: none;          /* hidden by default; toggled via JS */
    position: static;
    box-shadow: none;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--bg-muted);
    flex-direction: column;
    padding: 4px 4px 8px;
    margin: 4px 0 4px 12px;
    gap: 2px;
    animation: none;
    min-width: unset;
  }
  .nav-links.mobile-open .has-dropdown.dropdown-open > .dropdown-menu {
    display: flex;
  }
  .nav-links.mobile-open .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    font-size: 0.87rem;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    font-weight: 500;
  }
  .nav-links.mobile-open .dropdown-menu li a:hover {
    background: var(--primary-light);
    color: var(--primary);
  }

  /* ── Nav CTA button inside mobile panel ── */
  /* The <li class="nav-cta-li"> wrapper stays at bottom of the <ul> */
  .nav-cta-li {
    padding: 10px 0 0;
    margin-top: 6px;
    border-top: 2px solid var(--border);
    list-style: none;
  }
  /* The cloned .btn-nav-cta inside mobile menu — primary action button */
  .btn-nav-cta.mobile-visible {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 15px 20px !important;
    font-size: 1.02rem !important;
    font-weight: 800 !important;
    border-radius: var(--radius-md) !important;
    background: #1d4ed8 !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(29,78,216,.38) !important;
    border: none !important;
    letter-spacing: 0.02em !important;
    text-decoration: none !important;
    text-transform: none !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease !important;
  }
  .btn-nav-cta.mobile-visible:hover,
  .btn-nav-cta.mobile-visible:active {
    background: #1e40af !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 24px rgba(29,78,216,.48) !important;
  }
  .btn-nav-cta.mobile-visible i {
    font-size: 1rem !important;
  }

  /* --- Hero --- */
  .hero { padding: 24px 0 48px; }
  .hero-headline { font-size: clamp(1.55rem, 6vw, 2.4rem); }
  .hero-sub    { font-size: 0.9rem; }
  .hero-ctas   { flex-wrap: wrap; gap: 0.75rem; }

  /* --- Sticky top bar --- */
  .sticky-top-bar { padding: 8px 12px; }
  .sticky-inner { gap: 12px; }
  .sticky-text { font-size: 0.78rem; }
  .sticky-actions { gap: 6px; }
  .btn-sticky  { font-size: 0.78rem; padding: 5px 12px; white-space: nowrap; }
  .sticky-close { width: 26px; height: 26px; font-size: 0.9rem; }

  /* --- Trust strip --- */
  .trust-strip { padding: 10px 16px; gap: 0; flex-wrap: wrap; }
  .trust-item  { padding: 4px 8px; font-size: 0.75rem; }

  /* --- Offer cards --- */
  .offer-cards { grid-template-columns: 1fr; }
  .offer-card  { padding: 70px 20px 20px; }

  /* --- Savings section --- */
  .savings-grid { grid-template-columns: 1fr; }
  .savings-text { align-items: center; text-align: center; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .number-item  { padding: 16px 12px; }
  .number-value { font-size: 1.4rem; }

  /* --- Savings vs row --- */
  .savings-vs { flex-direction: column; gap: 12px; }

  /* --- Compare table (index.html) --- */
  .compare-table   { font-size: 0.8rem; }
  .compare-table th,
  .compare-table td { padding: 10px 12px; }

  /* --- Tutorial section --- */
  .tutorial-grid { grid-template-columns: 1fr; }
  .tutorial-col  { border-radius: var(--radius-md); }

  /* --- FAQ --- */
  .faq-columns { grid-template-columns: 1fr; }
  .faq-q       { font-size: 0.9rem; padding: 14px 16px; }

  /* --- H2H Comparison --- */
  .h2h-body  { grid-template-columns: 1fr; }
  .h2h-pros  { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 16px; }

  /* --- Pro tips / money tips --- */
  .pro-tips-row    { grid-template-columns: 1fr; }
  .money-tips      { padding: 20px 16px; }
  .money-tips-grid { grid-template-columns: 1fr; }

  /* --- Pricing analysis --- */
  .pricing-analysis-grid { grid-template-columns: 1fr; }
  .pros-cons             { grid-template-columns: 1fr; }

  /* --- CTA band --- */
  .cta-band-inner { gap: 24px; }
  .cta-band-action .btn { width: 100%; max-width: 380px; justify-content: center; }

  /* --- Features grid --- */
  .features-grid { grid-template-columns: 1fr; }

  /* --- Benefit cards --- */
  .benefits-grid { grid-template-columns: 1fr; }

  /* --- Troubleshooting cards --- */
  .trouble-cards { grid-template-columns: 1fr; }

  /* --- Footer --- */
  .footer-container    { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 28px; }
  .footer-bottom-inner { padding: 16px 20px; flex-direction: column; gap: 8px; text-align: center; }
  .footer-disclaimer   { text-align: center; }
  .footer-links-row    { justify-content: center; flex-wrap: wrap; }

  /* --- Section titles --- */
  .section-title { font-size: clamp(1.35rem, 5vw, 1.9rem); }
  .section-sub   { font-size: 0.9rem; margin-bottom: 1.6rem; }

  /* --- Sticky bottom bar (≤768px) --- */
  .sticky-bottom-bar {
    padding: 9px 12px;
    padding-bottom: calc(9px + env(safe-area-inset-bottom, 0px));
  }
  .sticky-bottom-inner {
    gap: 8px;
  }
  .sticky-bottom-text {
    font-size: 0.79rem;
    gap: 4px;
  }
  .sticky-bottom-text strong { font-size: 0.79rem; }
  .sticky-bottom-actions {
    gap: 6px;
  }
  .sticky-bottom-bar .btn {
    padding: 6px 14px !important;
    font-size: 0.8rem !important;
    border-radius: var(--radius-md) !important;
  }
  .sticky-bottom-close {
    width: 26px;
    height: 26px;
    font-size: 0.95rem;
  }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {

  .container { padding-left: 0.875rem; padding-right: 0.875rem; }

  /* --- Hero --- */
  .hero { padding: 20px 0 36px; }
  .hero-headline { font-size: clamp(1.4rem, 7vw, 1.8rem); }
  .hero-ctas  { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto 28px; }
  .hero-ctas .btn { justify-content: center; }

  /* --- Trust strip --- */
  .trust-strip    { border-radius: var(--radius-md); padding: 12px 14px; }
  .trust-divider  { display: none; }
  .trust-item     { padding: 4px 0; }

  /* --- Sticky top bar --- */
  .sticky-top-bar { padding: 7px 10px; }
  .sticky-inner { gap: 8px; }
  .sticky-text { font-size: 0.74rem; }
  .sticky-actions { gap: 5px; }
  .btn-sticky { padding: 5px 9px; font-size: 0.74rem; }
  .sticky-close {
    width: 24px;
    height: 24px;
    font-size: 0.85rem;
    position: static;
    top: auto;
    right: auto;
    transform: none;
  }

  /* --- Numbers grid --- */
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .number-value { font-size: 1.2rem; }
  .number-item  { padding: 14px 10px; }

  /* --- Offer card --- */
  .offer-card { padding: 64px 16px 18px; }
  .card-discount-badge { font-size: 1.8rem; }

  /* --- Compare table --- */
  .compare-table th,
  .compare-table td { padding: 8px 10px; font-size: 0.76rem; }

  /* --- Section titles --- */
  .section-title { font-size: 1.25rem; }
  .section-sub   { font-size: 0.85rem; }

  /* --- CTA band buttons --- */
  .cta-band-action .btn { max-width: 100%; }

  /* --- FAQ --- */
  .faq-q   { font-size: 0.86rem; padding: 12px 14px; }
  .faq-ans { font-size: 0.84rem; }

  /* --- Sticky bottom bar (≤480px) --- */
  .sticky-bottom-bar {
    padding: 8px 10px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
  .sticky-bottom-inner {
    gap: 6px;
  }
  .sticky-bottom-text {
    font-size: 0.77rem;
    gap: 3px 4px;
  }
  .sticky-bottom-text strong {
    font-size: 0.77rem;
  }
  .sticky-bottom-actions {
    gap: 5px;
  }
  .sticky-bottom-bar .btn {
    padding: 5px 11px !important;
    font-size: 0.77rem !important;
    border-radius: var(--radius-md) !important;
  }
  .sticky-bottom-close {
    width: 24px;
    height: 24px;
    font-size: 0.88rem;
  }
}

/* ============================================================
   RESPONSIVE — Extra Small (≤360px)
   ============================================================ */
@media (max-width: 360px) {
  .container { padding-left: 0.75rem; padding-right: 0.75rem; }
  .hero-headline { font-size: 1.25rem; }
  .sticky-text { display: none; } /* hide sticky TOP bar text, keep button only */
  .numbers-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.15rem; }

  /* Sticky BOTTOM bar — ultra compact on 360px */
  .sticky-bottom-bar { padding: 7px 8px; }
  .sticky-bottom-inner { gap: 5px; }
  .sticky-bottom-text {
    font-size: 0.73rem;
    gap: 2px 4px;
  }
  /* Hide the label text on tiny screens — keep code chip + button */
  .sticky-bottom-text strong { display: none; }
  .sticky-bottom-actions { gap: 4px; }
  .sticky-bottom-bar .btn {
    padding: 5px 12px !important;
    font-size: 0.75rem !important;
  }
  .sticky-bottom-close {
    width: 22px;
    height: 22px;
    font-size: 0.82rem;
  }
}

/* ============================================================
   SCROLL ANIMATIONS (optional enhancement)
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SMOOTH SCROLL OFFSET (for sticky header)
   ============================================================ */
section[id] { scroll-margin-top: 80px; }

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .sticky-top-bar,
  .site-header,
  .sticky-bottom-bar,
  .exit-popup-overlay,
  .cta-band,
  .final-cta { display: none !important; }
}
