/* ============================================
   AZURIAN WEALTH — Stylesheet
   Palette: deep onyx + jewel emerald + warm gold + cream
   Vibe: private-banking / old-money luxury
   ============================================ */

:root {
  /* base */
  --bg:        #07100d;
  --bg-soft:   #0b1612;
  --bg-card:   #0f1c18;
  --bg-deep:   #050a08;
  --line:      #1c2a25;
  --line-soft: #142019;

  /* text */
  --text:      #f0e7d3;
  --text-dim:  #a59b87;
  --text-faint:#6f6857;

  /* accents */
  --emerald:       #0fa86f;
  --emerald-deep:  #086d4a;
  --emerald-bright:#19c787;
  --emerald-glow:  rgba(15, 168, 111, 0.22);

  --gold:        #d4b265;
  --gold-bright: #ecc97a;
  --gold-deep:   #957a3d;
  --gold-glow:   rgba(212, 178, 101, 0.18);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(212, 178, 101, 0.05), transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 50%, var(--emerald-glow), transparent 60%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; font-family: var(--serif); font-weight: 500; color: var(--gold); }

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

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 16, 13, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--bg);
  background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep));
  border-radius: 8px;
  box-shadow: 0 0 24px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.brand-name {
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 14px;
  color: var(--text);
}
.brand-name em {
  color: var(--gold);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .15s ease, box-shadow .25s ease, background .2s, color .2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: linear-gradient(140deg, var(--emerald-bright), var(--emerald-deep));
  color: #04130c;
  box-shadow:
    0 14px 38px -10px var(--emerald-glow),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px -12px var(--emerald-glow),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-gold {
  background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep));
  color: #1a1408;
  box-shadow:
    0 14px 38px -10px var(--gold-glow),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.2);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -12px var(--gold-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 11px 20px;
  font-size: 14px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-xl {
  padding: 20px 40px;
  font-size: 17px;
}
.btn-link {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-link:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 100px 0 90px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, var(--emerald-glow), transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 100%, var(--gold-glow), transparent 70%);
  overflow: hidden;
}
.hero-two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}
.hero-text { text-align: left; }
.hero-text .stars-row,
.hero-text .cta-row { justify-content: flex-start; }
.hero-text .display {
  text-align: left;
  margin-left: 0;
  font-size: clamp(38px, 5vw, 64px);
}
.hero-text .lede { margin-left: 0; }
.hero-text .countdown {
  align-items: flex-start;
  margin-top: 8px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 178, 101, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 178, 101, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  background: rgba(11, 22, 18, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.eyebrow strong { color: var(--gold); font-weight: 600; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald-bright);
  box-shadow: 0 0 12px var(--emerald);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text);
}
.display em {
  color: var(--gold);
  font-style: italic;
}

.lede {
  max-width: 660px;
  margin: 0 auto 38px;
  color: var(--text-dim);
  font-size: 19px;
  line-height: 1.6;
}

.stars-row {
  display: flex; gap: 14px; justify-content: center; align-items: center;
  margin-bottom: 38px;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 19px; }
.stars-meta { color: var(--text-dim); font-size: 14px; }

.cta-row {
  display: flex; gap: 26px; justify-content: center; align-items: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 40px;
  background: linear-gradient(180deg, rgba(15, 28, 24, 0.6), rgba(15, 28, 24, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.countdown::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.countdown-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
}
.countdown-grid {
  display: flex;
  gap: 26px;
}
.countdown-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 58px;
}
.countdown-grid strong {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.countdown-grid span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  margin-top: 8px;
}

/* ---------- HERO STAGE (full-body avatar with book) ---------- */
.hero-stage {
  position: relative;
  min-height: 620px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.stage-glow {
  position: absolute;
  inset: 5% 0 5% 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 55%, var(--emerald-glow), transparent 65%),
    radial-gradient(ellipse 45% 30% at 50% 92%, var(--gold-glow), transparent 65%);
  filter: blur(30px);
  z-index: 0;
}
.hero-stage::after {
  /* ground reflection / shadow */
  content: '';
  position: absolute;
  bottom: 0;
  left: 18%;
  right: 18%;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.65), transparent 70%);
  z-index: 1;
  filter: blur(4px);
}
.avatar-cutout {
  position: relative;
  z-index: 2;
  max-height: 720px;
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 35px 45px rgba(0,0,0,0.55));
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* ---------- PROOF STRIP ---------- */
.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 28px 0;
  position: relative;
}
.proof-strip::before, .proof-strip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
}
.proof-strip::before { top: -1px; }
.proof-strip::after { bottom: -1px; }
.proof-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.proof-logos {
  display: flex; gap: 40px; flex-wrap: wrap; justify-content: center;
}
.proof-logos span {
  font-weight: 600;
  color: var(--text-dim);
  font-family: var(--serif);
  letter-spacing: 0.16em;
  font-size: 14px;
}

/* ---------- SECTIONS ---------- */
.section { padding: 120px 0; }
.section-alt {
  background:
    linear-gradient(180deg, var(--bg-deep), var(--bg-soft));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 72px;
}
.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding: 0 28px;
}
.kicker::before, .kicker::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--gold-deep);
}
.kicker::before { left: 0; }
.kicker::after { right: 0; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  color: var(--text);
}
.section-head h2 em { color: var(--gold); }
.section-head p {
  color: var(--text-dim);
  font-size: 17px;
}

/* ---------- BUNDLE CARDS ---------- */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background:
    linear-gradient(160deg, var(--bg-card), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: transform .2s, border-color .2s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, var(--gold-glow), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px var(--gold-deep);
}
.card:hover::after { opacity: 1; }
.card-icon {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.card-sub {
  color: var(--gold);
  margin-bottom: 22px;
  font-size: 14px;
  font-style: italic;
  font-family: var(--serif);
}
.card ul { list-style: none; margin-bottom: 26px; }
.card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 11px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}
.card li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--emerald-bright);
  font-size: 12px;
  top: 4px;
}
.card .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  width: 100%;
  font-weight: 600;
}

/* ---------- AUTHOR ---------- */
.author-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.author-photo { aspect-ratio: 4/5; }
.author-media {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}
.author-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-media-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 0 0 1px rgba(212, 178, 101, 0.15),
    inset 0 0 80px rgba(0,0,0,0.5);
}
.author-media-frame::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212, 178, 101, 0.3);
  border-radius: 16px;
}
.author-copy .kicker { margin-bottom: 16px; }
.author-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  color: var(--text);
}
.author-copy h2 em { color: var(--gold); }
.author-copy p { color: var(--text-dim); margin-bottom: 18px; font-size: 17px; }
.author-copy .btn { margin-top: 14px; }

/* ---------- PRICING ---------- */
.pricing-card {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(140deg, var(--bg-card), var(--bg-soft) 60%, var(--bg-deep));
  border-radius: var(--radius-lg);
  padding: 52px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 52px;
  position: relative;
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(212, 178, 101, 0.15);
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold), transparent 35%, transparent 65%, var(--emerald));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}
.pricing-left h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 24px;
  color: var(--text);
}
.pricing-list { list-style: none; }
.pricing-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 15.5px;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::first-letter { color: var(--emerald-bright); }
.pricing-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.price-stack { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.price-old {
  text-decoration: line-through;
  color: var(--text-faint);
  font-size: 22px;
  font-family: var(--serif);
}
.price-new {
  font-family: var(--serif);
  font-size: 96px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px var(--gold-glow);
}
.price-meta {
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.trust-row {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--text-faint);
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonials figure {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.testimonials figure::before {
  content: '\201C';
  position: absolute;
  top: 4px;
  left: 18px;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold-deep);
  opacity: 0.3;
  line-height: 1;
}
.testimonials .stars { font-size: 16px; margin-bottom: 16px; position: relative; z-index: 1; }
.testimonials blockquote {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.testimonials figcaption {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}
.testimonials figcaption span {
  color: var(--text-faint);
  font-weight: 400;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 28px;
  color: var(--gold);
  transition: transform .25s;
  font-family: var(--sans);
  font-weight: 300;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold); }
.faq details p {
  padding-top: 14px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.65;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  text-align: center;
  padding: 110px 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, var(--emerald-glow), transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 50%, var(--gold-glow), transparent 65%),
    var(--bg-deep);
  border-top: 1px solid var(--line);
  position: relative;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 38px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text);
}
.final-cta h2 em { color: var(--gold); }
.final-cta .fine {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 72px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 52px;
  margin-bottom: 44px;
}
.footer-tag {
  color: var(--text-dim);
  margin-top: 16px;
  font-size: 15px;
  font-style: italic;
  font-family: var(--serif);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-cols a {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  padding: 5px 0;
  transition: color .2s;
}
.footer-cols a:hover { color: var(--gold); }
.disclaimer {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links a:not(.btn) { display: none; }
  .bundle-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .author-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-card { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 80px 0; }
  .hero { padding: 90px 0 70px; }
  .hero-two-col { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-text { text-align: center; }
  .hero-text .stars-row,
  .hero-text .cta-row { justify-content: center; }
  .hero-text .display { text-align: center; }
  .hero-text .countdown { align-items: center; margin-left: auto; margin-right: auto; }
  .hero-stage { max-width: 420px; margin: 0 auto; min-height: 520px; }
  .avatar-cutout { max-height: 520px; }
  .countdown-grid { gap: 16px; }
  .countdown-grid strong { font-size: 30px; }
  .price-new { font-size: 72px; }
}
@media (max-width: 540px) {
  .display { font-size: 42px; }
  .footer-cols { grid-template-columns: 1fr; gap: 20px; }
  .cta-row { flex-direction: column; gap: 14px; }
  .btn { width: 100%; text-align: center; }
  .btn-link { width: auto; }
  .pricing-card { padding: 28px; }
  .card { padding: 28px; }
}
