@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --white: #f5f2ee;
  --red: #e63329;
  --red-dark: #b5261f;
  --gold: #c9a84c;
  --gray: #2a2a2a;
  --gray-light: #3d3d3d;
  --text-muted: #888;
  --card-bg: #141414;
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.12;
  letter-spacing: 0.01em;
  font-weight: 700;
}

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

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

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

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span {
  color: var(--red);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(230,51,41,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,51,41,0.12);
  border: 1px solid rgba(230,51,41,0.3);
  color: #ff6b63;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 .accent { color: var(--red); }
.hero h1 .line2 { display: block; color: var(--gold); }

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 15px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(230,51,41,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.25s;
  border: 1px solid var(--border);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}

/* Card visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.card-3d {
  width: 340px;
  height: 210px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  border-radius: 20px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(230,51,41,0.15);
  transform: perspective(800px) rotateY(-12deg) rotateX(4deg);
  transition: transform 0.4s;
  overflow: hidden;
}

.card-3d:hover {
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
}

.card-3d::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.card-chip {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 44px;
  height: 34px;
  background: linear-gradient(135deg, #c9a84c, #e8c96a);
  border-radius: 6px;
}

.card-logo {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 800;
  font-size: 22px;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
}

.card-logo span { color: var(--red); }

.card-number {
  position: absolute;
  bottom: 65px;
  left: 30px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
}

.card-info {
  position: absolute;
  bottom: 28px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-holder {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

.card-holder strong {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.card-network {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-align: right;
}

.card-network strong {
  display: block;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}

/* Floating badges around card */
.float-badge {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.float-badge.top-right {
  top: -20px;
  right: -30px;
  animation: floatY 4s ease-in-out infinite;
}

.float-badge.bottom-left {
  bottom: -20px;
  left: -40px;
  animation: floatY 4s ease-in-out infinite 2s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-badge .badge-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

/* ─── STATS BAR ─── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.stat-num span { color: var(--red); }

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── SECTIONS ─── */
section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── HOW IT WORKS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,51,41,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover {
  border-color: rgba(230,51,41,0.3);
  transform: translateY(-4px);
}

.step-card:hover::before { opacity: 1; }

.step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: rgba(230,51,41,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ─── FEATURES ─── */
.features-section {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 100%;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  cursor: pointer;
}

.feature-item:hover {
  border-color: rgba(230,51,41,0.25);
  background: rgba(230,51,41,0.04);
}

.feature-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Cashback visual */
.cashback-visual {
  position: relative;
}

.cashback-card {
  background: linear-gradient(135deg, #1e1e1e, #141414);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
}

.cashback-pct {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 96px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cashback-label {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 32px;
}

.merchant-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.merchant-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

/* ─── WHERE TO BUY ─── */
.retailers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.retailer-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}

.retailer-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.retailer-icon { font-size: 28px; margin-bottom: 10px; }
.retailer-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

/* ─── FAQ ─── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 60px;
  align-items: start;
}

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

.faq-item:hover { border-color: rgba(255,255,255,0.15); }

.faq-q {
  padding: 22px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.faq-item.open .faq-a { display: block; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, rgba(230,51,41,0.15) 0%, rgba(230,51,41,0.05) 100%);
  border: 1px solid rgba(230,51,41,0.2);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 48px 100px;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,51,41,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px;
  font-size: 12px;
  color: rgba(136,136,136,0.6);
  text-align: center;
  border-top: 1px solid var(--border);
  line-height: 1.7;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 140px 48px 80px;
  position: relative;
  background: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(230,51,41,0.08) 0%, transparent 70%);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  justify-content: center;
}

.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.4; }

/* ─── REVIEW PAGE ─── */
.review-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-top: 60px;
}

.review-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 48px 0 16px;
}

.review-content h2:first-child { margin-top: 0; }

.review-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.review-content ul {
  margin: 16px 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 2;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.pros, .cons {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.pros { border-top: 3px solid #22c55e; }
.cons { border-top: 3px solid var(--red); }

.pros h4, .cons h4 {
  font-size: 16px;
  margin-bottom: 16px;
}

.pros h4 { color: #22c55e; }
.cons h4 { color: var(--red); }

.pros ul, .cons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros ul li::before { content: '✓ '; color: #22c55e; }
.cons ul li::before { content: '✗ '; color: var(--red); }

.pros ul li, .cons ul li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Rating sidebar */
.rating-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 100px;
}

.rating-overall {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.rating-big {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.rating-stars { font-size: 20px; margin: 8px 0; }

.rating-label {
  font-size: 14px;
  color: var(--text-muted);
}

.rating-breakdown { display: flex; flex-direction: column; gap: 14px; }

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.rating-row span:first-child {
  width: 90px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.rating-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 1s ease;
}

.rating-num {
  width: 24px;
  text-align: right;
  font-weight: 600;
  font-size: 13px;
  color: var(--gold);
}

/* ─── BALANCE CHECKER ─── */
.checker-box {
  max-width: 560px;
  margin: 60px auto 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.checker-box p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 16px;
}

.checker-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.checker-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
}

.checker-step .step-num-small {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 15px;
}

.checker-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.checker-step p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ─── COMPARISON TABLE ─── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 60px;
  font-size: 15px;
}

.compare-table th {
  padding: 20px 24px;
  text-align: left;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--border);
  color: var(--text-muted);
}

.compare-table th.highlight {
  color: var(--white);
  background: rgba(230,51,41,0.08);
}

.compare-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.compare-table td.highlight {
  background: rgba(230,51,41,0.04);
  color: var(--white);
  font-weight: 500;
}

.compare-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.check { color: #22c55e; font-size: 18px; }
.cross { color: var(--red); font-size: 18px; }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-visual { order: 2; }
  .hero-content { order: 1; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .float-badge.top-right { top: -10px; right: -10px; }
  .float-badge.bottom-left { bottom: -10px; left: -10px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .review-grid { grid-template-columns: 1fr; }
  .rating-card { position: static; }
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding: 90px 24px 60px;
    min-height: auto;
  }
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: 40px; }

  .card-3d {
    width: 260px;
    height: 160px;
    transform: perspective(600px) rotateY(-6deg) rotateX(2deg);
  }
  .float-badge { font-size: 11px; padding: 8px 12px; }
  .float-badge .badge-num { font-size: 16px; }
  .float-badge.top-right { top: -8px; right: -8px; }
  .float-badge.bottom-left { bottom: -8px; left: -8px; }

  section { padding: 60px 20px; }

  .stats-bar {
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }
  .stat-item {
    flex: 1 1 45%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 8px;
    min-width: 0;
  }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num { font-size: 28px; }

  .steps-grid { grid-template-columns: 1fr; gap: 16px; }

  .features-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }

  .retailers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .faq-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .cta-section { margin: 0 16px 60px; padding: 48px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary,
  .cta-actions .btn-secondary { width: 100%; justify-content: center; max-width: 300px; }

  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 12px 10px; }

  .pros-cons { grid-template-columns: 1fr; }
  .checker-steps { grid-template-columns: 1fr; }

  .page-hero { padding: 100px 20px 50px; }
  .page-hero h1 { font-size: 36px; }
  .page-hero p { font-size: 15px; }

  .disclaimer { padding: 20px; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Mobile nav open */
@media (max-width: 768px) {
  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    border-top: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
  }
}
