@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ===== CSS VARIABLES — LIGHT EDITORIAL THEME ===== */
:root {
  /* Gold palette */
  --gold: #C9A84C;
  --gold-dark: #A8882E;
  --gold-light: #E2C97E;
  --gold-dim: rgba(201,168,76, 0.12);
  --gold-glow: rgba(201,168,76, 0.3);

  /* Light backgrounds */
  --bg: #FAFAF8;
  --bg-alt: #F2F2ED;
  --bg-card: #FFFFFF;
  --bg-dark: #111110;        /* used for dark CTA section */

  /* Text */
  --ink: #0F0F0E;
  --ink-mid: #3A3A38;
  --ink-soft: #717170;
  --ink-faint: #ADADAA;

  /* Borders */
  --border: #E4E4DE;
  --border-gold: rgba(201,168,76, 0.35);

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.12), 0 6px 20px rgba(0,0,0,0.07);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.12; color: var(--ink); }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 700; }
h4 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--ink); }
p { color: var(--ink-soft); font-size: 1.05rem; }

.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mono { font-family: 'Space Mono', monospace; font-size: 0.78rem; letter-spacing: 0.08em; color: var(--gold); text-transform: uppercase; }
.section-label {
  font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 1.2rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.section-label::before {
  content: ''; display: inline-block; width: 20px; height: 1.5px; background: var(--gold);
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; position: relative; }
.section-sm { padding: 4rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ===== BACKGROUND PATTERNS ===== */
.grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}
.radial-glow {
  position: absolute; z-index: 0; pointer-events: none;
  border-radius: 50%; filter: blur(80px); opacity: 0.25;
}
.glow-gold { background: radial-gradient(circle, var(--gold-light), transparent 70%); }
.glow-warm { background: radial-gradient(circle, #f5e6c0, transparent 70%); }

/* ===== NAVIGATION ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
#nav.scrolled {
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--ink-mid);
  transition: var(--transition); position: relative; padding: 0.3rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--ink); transition: var(--transition); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.8rem; border-radius: 6px; font-size: 0.875rem;
  font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; border: none; transition: var(--transition);
  position: relative; letter-spacing: 0.01em;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(201,168,76,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.45); }
.btn-dark {
  background: var(--ink); color: #fff;
}
.btn-dark:hover { background: var(--ink-mid); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--border-gold);
}
.btn-outline-gold:hover { background: var(--gold-dim); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 0.95rem; }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.82rem; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem;
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--gold-dim); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
  border: 1px solid var(--border-gold);
}
.card h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.card p { font-size: 0.92rem; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark); padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; font-family: 'Space Mono', monospace;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; animation: pulse 2s infinite; }

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ===== PRICING TABLE ===== */
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.5rem; transition: var(--transition);
  position: relative; box-shadow: var(--shadow-sm);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--border-gold), var(--shadow-md);
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.price-tag { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--ink); }
.price-tag sup { font-size: 1.4rem; vertical-align: top; margin-top: 0.6rem; color: var(--gold); }
.price-tag .period { font-size: 1rem; color: var(--ink-soft); font-family: 'Inter', sans-serif; font-weight: 400; }
.feature-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.93rem; color: var(--ink-mid); }
.feature-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.feature-list li.strike { text-decoration: line-through; opacity: 0.45; }
.feature-list li.strike::before { content: '✗'; color: var(--ink-faint); }
.pill-featured {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.25rem 1rem;
  border-radius: 100px; white-space: nowrap; font-family: 'Space Mono', monospace;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 1.5px; background: linear-gradient(180deg, var(--gold), var(--border));
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -2.5rem; top: 4px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; color: var(--gold); font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.timeline-label { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.timeline-title { font-weight: 700; margin-bottom: 0.4rem; font-size: 1.05rem; color: var(--ink); }
.timeline-body { font-size: 0.92rem; color: var(--ink-soft); }

/* ===== STAT BLOCKS ===== */
.stat-block { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: var(--ink); line-height: 1; margin-bottom: 0.4rem; }
.stat-num span.gold-num { color: var(--gold); }
.stat-label { font-size: 0.875rem; color: var(--ink-soft); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 100px;
  background: var(--bg);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 920px; margin: 0 auto; }
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.15rem; max-width: 660px; margin: 0 auto 2.5rem; color: var(--ink-soft); line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-image-wrap {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: center;
  animation: float 7s ease-in-out infinite;
}
.hero-image-wrap img { filter: drop-shadow(0 20px 50px rgba(201,168,76,0.2)); max-width: 500px; }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; color: var(--ink-faint); letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ===== TAG STRIP ===== */
.tag-strip { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag {
  display: inline-block; padding: 0.35rem 0.9rem;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 100px; font-size: 0.8rem; color: var(--ink-mid);
  transition: var(--transition);
}
.tag:hover { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-dim); }

/* ===== CHECK LIST ===== */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--ink-mid); }
.check-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ===== PROCESS STEPS ===== */
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-dim); border: 1.5px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--gold-dark);
  margin: 0 auto 1.2rem; flex-shrink: 0;
}

/* ===== TESTIMONIAL ===== */
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem; position: relative;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 4rem; color: var(--gold-dim); font-family: 'Playfair Display', serif; line-height: 1;
  color: var(--gold-light);
}
.testimonial-text { font-size: 0.96rem; color: var(--ink-mid); font-style: italic; margin-bottom: 1.2rem; line-height: 1.75; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.author-title { font-size: 0.78rem; color: var(--ink-faint); }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 0.75rem; }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.83rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--ink-mid); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.85rem 1.1rem;
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: 8px; color: var(--ink); font-size: 0.93rem;
  font-family: 'Inter', sans-serif; transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-faint); }
.form-select { cursor: pointer; }
.form-select option { background: var(--bg-card); color: var(--ink); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 5rem 0 2.5rem;
}
footer h5 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 1.2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-top: 1rem; max-width: 280px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
  transition: var(--transition); color: rgba(255,255,255,0.5);
}
.social-link:hover { background: var(--gold-dim); border-color: var(--border-gold); color: var(--gold-light); transform: translateY(-2px); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
  text-align: center;
  background: var(--bg);
}
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; color: var(--ink-soft); }

/* ===== DARK SECTION ===== */
.section-dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.65); }

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.fade-up { opacity: 1; transform: translateY(0); }
.js-ready .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.js-ready .fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.08s; }
.fade-up-delay-2 { transition-delay: 0.16s; }
.fade-up-delay-3 { transition-delay: 0.24s; }
.fade-up-delay-4 { transition-delay: 0.32s; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== MODEL CARDS ===== */
.model-card {
  border-radius: 14px; padding: 2rem;
  border: 1.5px solid var(--border);
  background: var(--bg-card); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.model-card:hover, .model-card.active {
  border-color: var(--border-gold); background: var(--gold-dim);
  box-shadow: var(--shadow-md);
}
.model-card .model-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.model-price { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--ink); font-weight: 700; margin: 0.5rem 0; }
.model-note { font-size: 0.78rem; color: var(--ink-faint); font-family: 'Space Mono', monospace; letter-spacing: 0.04em; }

/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 48px; height: 2px; border-radius: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: 1rem auto 0;
}
.section-divider.left { margin-left: 0; }

/* ===== GOLD LINE ACCENT ===== */
.gold-line {
  width: 60px; height: 3px; border-radius: 2px;
  background: var(--gold);
  display: block;
}

/* ===== MOBILE MENU ===== */
.mobile-nav {
  position: fixed; inset: 0; background: rgba(250,250,248,0.98);
  backdrop-filter: blur(20px); z-index: 999; display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.8rem; font-family: 'Playfair Display', serif; font-weight: 700; color: var(--ink-mid); transition: var(--transition); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  color: var(--ink-mid); font-size: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .hero-image-wrap img { max-width: 300px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 1.5rem; }
}
