/* ============================================
   The Day You Were Born — Design System v2
   Modern, professional, high-converting e-commerce
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  /* Brand palette — warm gold meets deep navy */
  --gold-50: #fefbf4;
  --gold-100: #fdf4e1;
  --gold-200: #fae6b8;
  --gold-300: #f5d182;
  --gold-400: #f0b94d;
  --gold-500: #e5a224;
  --gold-600: #cd8514;
  --gold-700: #a96512;
  --gold-800: #8a4f16;
  --gold-900: #724116;

  --navy-50: #f0f4f8;
  --navy-100: #d9e2ec;
  --navy-200: #bcccdc;
  --navy-300: #9fb3c8;
  --navy-400: #829ab1;
  --navy-500: #627d98;
  --navy-600: #486581;
  --navy-700: #334e68;
  --navy-800: #243b53;
  --navy-900: #102a43;

  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;

  --rose-500: #f43f5e;
  --rose-600: #e11d48;

  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Semantic */
  --bg-primary: var(--white);
  --bg-secondary: var(--gray-50);
  --bg-accent: var(--gold-50);
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --border-light: var(--gray-200);
  --border-medium: var(--gray-300);

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-heading: 'DM Sans', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 20px rgba(229,162,36,0.15);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.06);

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

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

main { flex: 1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
ul, ol { list-style: none; }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.container--narrow { max-width: 800px; }
.container--wide { max-width: 1400px; }

.section { padding: var(--space-4xl) 0; }
.section--sm { padding: var(--space-3xl) 0; }
.section--flush { padding: 0; }

/* ============================================
   Typography
   ============================================ */
.display { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
.display--xl { font-size: clamp(2.5rem, 5vw, 4rem); }
.display--lg { font-size: clamp(2rem, 4vw, 3rem); }
.display--md { font-size: clamp(1.5rem, 3vw, 2.25rem); }

.heading { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
.heading--xl { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.heading--lg { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
.heading--md { font-size: 1.25rem; }
.heading--sm { font-size: 1.05rem; }

.text--lg { font-size: 1.125rem; line-height: 1.7; }
.text--sm { font-size: 0.875rem; }
.text--xs { font-size: 0.75rem; }
.text--muted { color: var(--text-secondary); }
.text--center { text-align: center; }

.overline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}
.btn--primary:hover { background: var(--navy-900); border-color: var(--navy-900); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn--gold {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
  font-weight: 700;
}
.btn--gold:hover { background: var(--gold-400); border-color: var(--gold-400); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn--outline {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-300);
}
.btn--outline:hover { border-color: var(--navy-800); background: var(--navy-50); }

.btn--white {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--white);
  font-weight: 700;
}
.btn--white:hover { background: var(--gray-100); transform: translateY(-1px); box-shadow: var(--shadow-xl); }

.btn--ghost { background: transparent; color: var(--gray-600); padding: 0.5rem 1rem; }
.btn--ghost:hover { color: var(--navy-800); background: var(--gray-100); }

.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn--full { width: 100%; }
.btn--icon { padding: 0.625rem; border-radius: var(--radius-md); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ============================================
   Forms
   ============================================ */
.form-group { margin-bottom: var(--space-lg); }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--space-xs);
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--duration-fast) ease;
  appearance: none;
}
.form-input:hover { border-color: var(--border-medium); }
.form-input:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(229,162,36,0.12); }
.form-input::placeholder { color: var(--gray-400); }

select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-hint { font-size: 0.75rem; color: var(--gray-500); margin-top: var(--space-xs); }

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
}
.card:hover { box-shadow: var(--shadow-card); }

.card--elevated { box-shadow: var(--shadow-card); }
.card--elevated:hover { box-shadow: var(--shadow-xl); transform: translateY(-2px); }

.card--gold {
  background: linear-gradient(135deg, var(--gold-50), var(--white));
  border-color: var(--gold-200);
}

.card--dark {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-700);
}

/* ============================================
   Badge / Pill
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}
.badge--gold { background: var(--gold-100); color: var(--gold-800); }
.badge--navy { background: var(--navy-100); color: var(--navy-800); }
.badge--emerald { background: rgba(16,185,129,0.1); color: var(--emerald-600); }

/* ============================================
   Trust Indicators
   ============================================ */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg) var(--space-2xl);
  padding: var(--space-lg) 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
}
.trust-item svg { color: var(--emerald-500); flex-shrink: 0; }

/* Star rating */
.stars { display: inline-flex; gap: 2px; color: var(--gold-500); }
.stars svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--duration-normal) ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy-800);
  color: var(--gold-400);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-900);
}
@media (max-width: 400px) { .logo-text { display: none; } }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-xs);
}
.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) ease;
}
.nav-link:hover { color: var(--navy-900); background: var(--gray-50); }

.nav-cta { margin-left: var(--space-sm); }

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--gray-600);
  transition: all var(--duration-fast) ease;
}
.cart-link:hover { color: var(--navy-900); background: var(--gray-50); }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px; height: 18px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-badge:empty { display: none; }

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--gray-600);
}
.mobile-toggle:hover { background: var(--gray-50); }

.mobile-menu {
  display: none;
  padding: var(--space-md) 0 var(--space-lg);
  border-top: 1px solid var(--border-light);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--gray-700);
  font-size: 1rem;
}
.mobile-menu a:hover { color: var(--navy-900); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-toggle { display: none; }
}

/* ============================================
   HERO (Homepage)
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(229,162,36,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0 var(--space-4xl);
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 420px; align-items: center; padding: var(--space-4xl) 0; }
}

.hero-content { max-width: 600px; }
.hero-overline { color: var(--gold-400); margin-bottom: var(--space-md); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}
.hero h1 em { font-style: italic; color: var(--gold-400); }
.hero-subtitle { font-size: 1.1rem; line-height: 1.7; color: var(--navy-200); max-width: 480px; margin-bottom: var(--space-2xl); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.hero-trust-item { display: flex; align-items: center; gap: var(--space-sm); font-size: 0.85rem; color: var(--navy-300); }
.hero-trust-item svg { color: var(--emerald-400); }

/* Hero order form */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(0,0,0,0.2);
  color: var(--text-primary);
}
.hero-form-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.hero-form-header h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}
.hero-form-header p { font-size: 0.85rem; color: var(--gray-500); }

.hero-form .form-group { margin-bottom: var(--space-md); }
.hero-form .form-label { font-size: 0.8rem; }
.hero-form .form-input { padding: 0.625rem 0.875rem; font-size: 0.9rem; }

.hero-form .btn { margin-top: var(--space-sm); }

.hero-form-footer {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--gray-100);
}
.hero-form-footer span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--gray-500);
}
.hero-form-footer svg { width: 14px; height: 14px; color: var(--gray-400); }

/* ============================================
   Social Proof Bar
   ============================================ */
.social-proof-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-lg) 0;
}
.proof-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl) var(--space-3xl);
}
.proof-stat { text-align: center; }
.proof-stat .number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-800);
}
.proof-stat .label { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.125rem; }

.proof-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.proof-rating .stars { font-size: 0; }
.proof-rating .stars svg { width: 18px; height: 18px; }
.proof-rating .label { font-size: 0.8rem; color: var(--gray-500); }

/* ============================================
   How It Works
   ============================================ */
.how-it-works { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-2xl); } }

.step-card { text-align: center; padding: var(--space-lg); }
.step-num {
  display: inline-flex;
  width: 48px; height: 48px;
  background: var(--navy-800);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 1.25rem;
  border-radius: var(--radius-lg);
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.step-card p { color: var(--text-secondary); font-size: 0.9rem; }

.step-connector {
  display: none;
}
@media (min-width: 768px) {
  .steps-grid { position: relative; }
}

/* ============================================
   Certificate Examples / Gallery
   ============================================ */
.examples-section { background: var(--gray-50); }

.example-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
@media (min-width: 640px) { .example-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .example-grid { grid-template-columns: repeat(3, 1fr); } }

.example-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: all var(--duration-normal) var(--ease-out);
}
.example-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.example-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.example-img .cert-mini {
  width: 80%;
  background: linear-gradient(135deg, #fdf9f0 0%, #faf2e0 50%, #f5e6c8 100%);
  border: 2px double var(--gold-700);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cert-mini .cert-mini-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--navy-800);
  margin-bottom: 0.25rem;
}
.cert-mini .cert-mini-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}
.cert-mini .cert-mini-date { font-size: 0.7rem; color: var(--gray-600); }
.cert-mini .cert-mini-divider { width: 2rem; height: 1px; background: var(--gold-600); margin: 0.5rem auto; }
.cert-mini .cert-mini-facts { font-size: 0.65rem; color: var(--gray-500); line-height: 1.5; }

.example-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
}

.example-body { padding: var(--space-lg); }
.example-body h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.example-body p { font-size: 0.85rem; color: var(--text-secondary); }

/* ============================================
   Features / What's Included
   ============================================ */
.features-section { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: background var(--duration-fast) ease;
}
.feature-item:hover { background: var(--gray-50); }
.feature-icon {
  width: 40px; height: 40px;
  background: var(--gold-100);
  color: var(--gold-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.feature-item h3 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.125rem; }
.feature-item p { font-size: 0.85rem; color: var(--text-secondary); }

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section { background: var(--gray-50); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }

.pricing-card {
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}
.pricing-card--default {
  background: var(--white);
  border: 1.5px solid var(--border-light);
}
.pricing-card--featured {
  background: var(--navy-800);
  color: var(--white);
  border: 1.5px solid var(--navy-700);
  box-shadow: var(--shadow-xl);
  position: relative;
}
.pricing-card--featured .pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; }
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin: var(--space-md) 0;
}
.pricing-price .currency { font-size: 1.25rem; vertical-align: super; }

.pricing-features { text-align: left; margin-bottom: var(--space-xl); }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
.pricing-features .check-icon { color: var(--emerald-500); flex-shrink: 0; margin-top: 2px; }
.pricing-card--featured .check-icon { color: var(--gold-400); }

.pricing-card .btn { width: 100%; }

/* ============================================
   Reviews / Testimonials
   ============================================ */
.reviews-section { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--gray-50);
  border: 1px solid var(--border-light);
}
.review-card .stars { margin-bottom: var(--space-md); }
.review-card blockquote { font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; margin-bottom: var(--space-md); }
.review-author {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
}
.review-meta { font-size: 0.75rem; color: var(--gray-400); }

/* ============================================
   Newsletter / CTA Banner
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(229,162,36,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
}
.cta-inner p { color: var(--navy-200); font-size: 1rem; margin-bottom: var(--space-xl); }

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form .form-input {
  flex: 1;
  border-color: var(--navy-600);
  background: var(--navy-700);
  color: var(--white);
}
.newsletter-form .form-input::placeholder { color: var(--navy-400); }
.newsletter-form .form-input:focus { border-color: var(--gold-500); background: var(--navy-600); }

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: var(--space-md); }
.footer-brand .logo-mark { background: var(--navy-700); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: var(--gray-500); }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-300);
  margin-bottom: var(--space-md);
}
.footer-links li { margin-bottom: var(--space-sm); }
.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: color var(--duration-fast) ease;
}
.footer-links a:hover { color: var(--gold-400); }

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: 0.8rem;
  color: var(--gray-600);
}
.footer-bottom-links { display: flex; gap: var(--space-lg); }
.footer-bottom-links a { color: var(--gray-600); }
.footer-bottom-links a:hover { color: var(--gray-400); }

/* ============================================
   Certificate Preview (shared)
   ============================================ */
.certificate-preview {
  background: linear-gradient(135deg, #fefcf7 0%, #fdf6ea 50%, #f8ecd4 100%);
  border: 3px double var(--gold-700);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  position: relative;
  box-shadow: var(--shadow-lg), inset 0 0 40px rgba(200,108,42,0.04);
}
.certificate-preview::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(169,101,18,0.2);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.cert-header { text-align: center; margin-bottom: var(--space-lg); }
.cert-overline {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-700);
}
.cert-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy-900);
  margin: 0.25rem 0;
}
.cert-divider { width: 3rem; height: 2px; background: var(--gold-600); margin: var(--space-md) auto; }
.cert-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy-800); }
.cert-date { font-size: 0.9rem; color: var(--gold-800); margin-top: 0.25rem; }

.cert-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1.5rem;
  font-size: 0.85rem;
}
.cert-fact-label { font-weight: 600; color: var(--gray-700); }
.cert-fact-value { color: var(--gray-600); }

.cert-section-divider { border: none; border-top: 1px solid rgba(169,101,18,0.15); margin: var(--space-md) 0; }

.cert-detail { font-size: 0.85rem; margin-bottom: 0.625rem; }
.cert-detail strong { color: var(--gray-700); }
.cert-detail span { color: var(--gray-600); }

.cert-events { font-size: 0.85rem; }
.cert-events ul { margin-top: 0.375rem; }
.cert-events li { color: var(--gray-600); padding: 0.2rem 0 0.2rem 1rem; position: relative; }
.cert-events li::before { content: '\2022'; color: var(--gold-600); position: absolute; left: 0; }

.cert-funfact {
  background: rgba(254,251,244,0.7);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  font-size: 0.85rem;
  margin-top: var(--space-md);
}

.cert-footer {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.7rem;
  color: var(--gold-600);
}
.cert-footer-line { width: 2.5rem; height: 1px; background: var(--gold-400); margin: 0 auto 0.375rem; }

.cert-placeholder {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gray-400);
}

/* ============================================
   Page-level Components
   ============================================ */
.page-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: var(--space-3xl) 0;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: var(--space-sm); }
.page-hero p { color: var(--navy-200); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

.page-section { padding: var(--space-3xl) 0; }

/* Customize page */
.customize-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 1024px) { .customize-grid { grid-template-columns: 1fr 1fr; } }

.tier-option {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  margin-bottom: var(--space-sm);
}
.tier-option:hover { border-color: var(--gold-300); }
.tier-option.selected { border-color: var(--gold-500); background: var(--gold-50); }
.tier-option input[type="radio"] { margin-top: 3px; accent-color: var(--gold-600); }
.tier-info { flex: 1; }
.tier-header { display: flex; justify-content: space-between; align-items: center; }
.tier-name { font-family: var(--font-heading); font-weight: 600; color: var(--gray-900); }
.tier-price { font-family: var(--font-heading); font-weight: 700; color: var(--navy-800); }
.tier-desc { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.125rem; }

/* Cart & Checkout */
.cart-item {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.cart-item-info h3 { font-family: var(--font-heading); font-weight: 600; }
.cart-item-info p { font-size: 0.85rem; color: var(--text-secondary); }
.cart-item-actions { display: flex; align-items: center; gap: var(--space-md); }

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.qty-control button {
  padding: 0.375rem 0.75rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  transition: all var(--duration-fast) ease;
}
.qty-control button:hover { background: var(--gray-50); color: var(--gray-900); }
.qty-control span {
  padding: 0.375rem 0.75rem;
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  min-width: 2.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.cart-item-price { font-family: var(--font-heading); font-weight: 700; color: var(--navy-800); min-width: 5rem; text-align: right; font-size: 1.05rem; }
.remove-btn { color: var(--gray-400); padding: 0.25rem; transition: color var(--duration-fast) ease; }
.remove-btn:hover { color: var(--rose-500); }

.checkout-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
@media (min-width: 1024px) { .checkout-grid { grid-template-columns: 5fr 3fr; } }

.payment-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  margin-bottom: var(--space-sm);
}
.payment-option:hover { border-color: var(--gold-300); }
.payment-option.selected { border-color: var(--gold-500); background: var(--gold-50); }
.payment-option input[type="radio"] { accent-color: var(--gold-600); }

.order-summary { position: sticky; top: 5rem; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  padding: var(--space-lg) 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gray-800);
  font-size: 1rem;
}
.faq-question:hover { color: var(--navy-800); }
.faq-arrow { transition: transform var(--duration-normal) var(--ease-out); color: var(--gold-600); flex-shrink: 0; margin-left: var(--space-md); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: var(--space-lg); color: var(--text-secondary); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* Empty state */
.empty-state {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.empty-state svg { color: var(--gray-300); margin: 0 auto var(--space-md); }
.empty-state h1 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: var(--space-sm); }
.empty-state p { color: var(--text-secondary); margin-bottom: var(--space-lg); }

/* Success */
.success-message { min-height: 50vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.success-message .icon { font-size: 3rem; margin-bottom: var(--space-md); }

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Animate on scroll (simple) */
[data-aos] { opacity: 0; transform: translateY(20px); transition: all 0.6s var(--ease-out); }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-in"] { transform: none; }
