/* ===== GIFTCARD CPA PRO - MAIN STYLES ===== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@700;900&display=swap');

:root {
  --gold:        #F5C842;
  --gold-light:  #FFE07A;
  --gold-dark:   #C9A020;
  --black:       #0A0A0A;
  --dark:        #111111;
  --dark-card:   #1A1A1A;
  --mid:         #2A2A2A;
  --border:      #2E2E2E;
  --text:        #E8E8E8;
  --muted:       #888888;
  --green:       #2ECC71;
  --red:         #E74C3C;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 30px rgba(245,200,66,0.25);
  --font-display:'Bebas Neue', sans-serif;
  --font-serif:  'Playfair Display', serif;
  --font-body:   'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 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;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}
.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0,0,0,0.04) 40px, rgba(0,0,0,0.04) 41px);
}
.topbar .countdown-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}
.topbar .countdown-inline span { font-size: 1rem; }

/* ===== HEADER / NAV ===== */
#site-header {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(245,200,66,0.4);
  line-height: 1;
}
.site-logo span { color: var(--text); }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
nav.main-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav.main-nav a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245,200,66,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(245,200,66,0.05) 0%, transparent 60%),
    var(--black);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 12px;
}
.hero h1 .gold { color: var(--gold); display: block; }
.hero h1 .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.3);
  color: transparent;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin: 20px 0 40px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--text); }

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(245,200,66,0.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,200,66,0.45);
  color: var(--black);
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  padding: 15px 28px;
  border-radius: 8px;
  transition: all 0.25s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-trust {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.trust-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.trust-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--gold); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc { font-size: 1.05rem; color: var(--muted); max-width: 540px; line-height: 1.7; }

/* ===== OFFERS SECTION ===== */
.offers-section {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.offers-header {
  text-align: center;
  margin-bottom: 64px;
}
.offers-header .section-desc { margin: 0 auto; }
.offers-header .section-label { justify-content: center; }
.offers-header .section-label::before { display: none; }
.offers-header .section-label::after { content: ''; width: 28px; height: 2px; background: var(--gold); }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.offer-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,200,66,0.4);
  box-shadow: var(--shadow-gold);
}
.offer-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.offer-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 2;
}

.offer-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: var(--mid);
}

/* Placeholder card image with brand color */
.offer-img-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.offer-body { padding: 24px; }
.offer-brand {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}
.offer-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.offer-payout {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.offer-payout-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
}
.offer-payout-label { font-size: 0.8rem; color: var(--muted); }

.offer-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.offer-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--muted);
}
.offer-meta-item svg { width: 13px; height: 13px; color: var(--gold); }

.offer-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.offer-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: var(--black);
}

/* ===== HOW IT WORKS ===== */
.hiw-section {
  padding: 100px 0;
  background: var(--black);
}
.hiw-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hiw-steps { display: flex; flex-direction: column; gap: 0; }
.hiw-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: all 0.2s;
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step:hover { padding-left: 8px; }

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(245,200,66,0.15);
  line-height: 1;
  min-width: 52px;
  transition: color 0.2s;
}
.hiw-step:hover .step-num { color: var(--gold); }

.step-content h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}
.step-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.hiw-visual {
  position: relative;
}
.hiw-card-stack {
  position: relative;
  height: 400px;
}
.stack-card {
  position: absolute;
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 85%;
}
.stack-card-1 {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 1px solid rgba(245,200,66,0.2);
  top: 0; left: 0;
  z-index: 1;
  transform: rotate(-4deg);
}
.stack-card-2 {
  background: linear-gradient(135deg, #2d1b00, #4a2e00);
  border: 1px solid rgba(245,200,66,0.3);
  top: 40px; left: 30px;
  z-index: 2;
  transform: rotate(1deg);
}
.stack-card-3 {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  top: 80px; left: 15px;
  z-index: 3;
  transform: rotate(-1deg);
  box-shadow: 0 20px 60px rgba(245,200,66,0.3);
}
.stack-card-3 * { color: var(--black) !important; }

.card-chip {
  width: 42px;
  height: 32px;
  background: linear-gradient(135deg, #d4af37, #f0d060);
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.card-3-chip { background: linear-gradient(135deg, #5a3e00, #8a6200); }

.card-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 4px;
}
.card-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; text-transform: uppercase; }
.card-brand { font-size: 1.2rem; font-weight: 700; margin-bottom: 28px; }
.card-number { font-size: 0.85rem; letter-spacing: 0.2em; color: rgba(0,0,0,0.6); margin-top: 20px; }

/* ===== WHY US / FEATURES ===== */
.features-section {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
}
.feature-cell {
  padding: 40px 32px;
  background: var(--dark-card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.feature-cell:hover { background: var(--mid); }
.feature-cell:nth-child(3n) { border-right: none; }
.feature-cell:nth-last-child(-n+3) { border-bottom: none; }

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.feature-cell h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-cell p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }
.testimonials-header .section-label::after { content: ''; width: 28px; height: 2px; background: var(--gold); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(245,200,66,0.3); }

.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  border: 2px solid rgba(245,200,66,0.3);
}
.author-info .name { font-weight: 700; font-size: 0.9rem; color: #fff; }
.author-info .earned { font-size: 0.78rem; color: var(--green); }

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  padding-bottom: 22px;
}
.faq-item.open .faq-answer { display: block; }

/* ===== FINAL CTA SECTION ===== */
.cta-section {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,200,66,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-label { justify-content: center; }
.cta-section .section-label::before { display: none; }
.cta-section .section-label::after { content: ''; width: 28px; height: 2px; background: var(--gold); }

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: #fff;
  margin: 16px 0 24px;
}
.cta-section h2 span { color: var(--gold); }
.cta-section p { font-size: 1.05rem; color: var(--muted); margin-bottom: 40px; }
.cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .site-logo { margin-bottom: 16px; font-size: 1.6rem; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.footer-disclaimer {
  font-size: 0.72rem;
  color: #555;
  max-width: 600px;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
  padding-top: 16px;
}

/* ===== POPUP MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--dark-card);
  border: 1px solid rgba(245,200,66,0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-gold);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from{opacity:0;transform:scale(0.9) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--mid);
  border: none;
  color: var(--muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--border); }
.modal-emoji { font-size: 3.5rem; margin-bottom: 20px; }
.modal-title { font-family: var(--font-serif); font-size: 1.8rem; color: #fff; margin-bottom: 12px; }
.modal-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 32px; line-height: 1.6; }
.modal-steps { display: flex; flex-direction: column; gap: 10px; text-align: left; margin-bottom: 32px; }
.modal-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text);
}
.modal-step-num {
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-strip {
  background: rgba(245,200,66,0.06);
  border: 1px solid rgba(245,200,66,0.15);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
}
.countdown-digits {
  display: flex;
  align-items: center;
  gap: 8px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: var(--mid);
  padding: 6px 14px;
  border-radius: 6px;
  min-width: 56px;
  text-align: center;
}
.countdown-unit span { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.countdown-sep { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); line-height: 1; margin-bottom: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hiw-layout { grid-template-columns: 1fr; gap: 60px; }
  .hiw-card-stack { height: 300px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cell:nth-child(2n) { border-right: none; }
  .feature-cell:nth-child(3) { border-right: 1px solid var(--border); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .hero h1 { font-size: 3rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-cell { border-right: none !important; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; }
  .trust-divider { display: none; }
  .hiw-layout .section-title { font-size: 2rem; }
}

/* ===== 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);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
