/* =====================================================
   WovenVows — Promotional Website Styles
   Theme: Modern & Luxe — Deep Navy + Warm Gold
   ===================================================== */

:root {
  --color-bg:           #0F1623;
  --color-bg-dark:      #080C14;
  --color-bg-card:      #1A2233;
  --color-bg-elevated:  #222D44;
  --color-gold:         #D4AF6A;
  --color-gold-accent:  #C9A84C;
  --color-gold-light:   rgba(212,175,106,0.12);
  --color-gold-border:  rgba(212,175,106,0.22);
  --color-cream:        #E8E0D0;
  --color-cream-muted:  #9AACC2;
  --color-border:       #2A3550;
  --color-white:        #FFFFFF;
  --shadow-soft:        0 2px 12px rgba(0,0,0,0.25);
  --shadow-gold:        0 8px 32px rgba(201,168,76,0.15);
  --shadow-medium:      0 8px 40px rgba(0,0,0,0.4);
  --radius:             12px;
  --radius-lg:          20px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--color-bg);
  color: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--color-cream); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

em { font-style: italic; color: var(--color-gold); }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-accent), #b8922e);
  color: #0F1623;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #dbbf5c, var(--color-gold-accent));
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid var(--color-border);
}
.btn-ghost:hover { background: var(--color-bg-card); border-color: var(--color-gold-border); }

.btn-white {
  background: var(--color-bg-dark);
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold-border);
}
.btn-white:hover {
  background: var(--color-bg-card);
  border-color: var(--color-gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.btn-large { padding: 0.85rem 2rem; font-size: 1rem; border-radius: 10px; }

/* CTA section override */
.cta .btn-primary {
  background: linear-gradient(135deg, #0F1623, #1A2233);
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold-border);
}
.cta .btn-primary:hover {
  background: #1A2233;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,22,35,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-cream);
}
.logo-icon { color: var(--color-gold); font-size: 1.2rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-cream-muted);
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--color-gold); }
.nav-links a.active-nav { color: var(--color-gold); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-dark);
}
.mobile-menu.open { display: flex; }
.mobile-menu a:not(.btn) { font-weight: 500; color: var(--color-cream-muted); }
.mobile-menu .btn { align-self: flex-start; }

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: var(--color-gold-light);
  border: 1px solid var(--color-gold-border);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-cream-muted);
  max-width: 560px;
  margin-top: 1rem;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 0;
  background: var(--color-bg);
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; }
.shape-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,175,106,0.08), transparent 65%);
  top: -250px; right: -200px;
}
.shape-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,53,80,0.8), transparent 70%);
  bottom: 0; left: -150px;
}
.shape-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(201,168,76,0.05), transparent 70%);
  top: 40%; left: 25%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gold);
  background: var(--color-gold-light);
  border: 1px solid var(--color-gold-border);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '✦'; font-size: 0.7rem; }

.hero-content h1 { margin-bottom: 1.25rem; letter-spacing: -0.01em; }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-cream-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
}
.stat-label { font-size: 0.78rem; color: var(--color-cream-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--color-border); }

.hero-image-wrap {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
}

/* Dashboard Preview Mockup — kept light for contrast */
.dashboard-preview {
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #FDFAF6;
  box-shadow: 0 0 0 1px var(--color-gold-border), 0 -8px 80px rgba(212,175,106,0.12), 0 40px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  border-bottom: none;
}

.preview-topbar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: #F0EAE0;
  border-bottom: 1px solid #E8E0D8;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.preview-url {
  margin-left: 0.75rem;
  font-size: 0.75rem;
  color: #8a7f74;
  background: rgba(0,0,0,0.06);
  padding: 0.2rem 0.8rem;
  border-radius: 100px;
}

.preview-body { display: flex; height: 360px; }

.preview-sidebar {
  width: 180px;
  flex-shrink: 0;
  background: #0F1623;
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.sidebar-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--color-gold);
  padding: 0 0.5rem 1rem;
  border-bottom: 1px solid rgba(212,175,106,0.2);
  margin-bottom: 0.75rem;
}
.sidebar-item {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: default;
}
.sidebar-item.active {
  background: rgba(212,175,106,0.12);
  color: var(--color-gold);
  font-weight: 600;
}

.preview-main {
  flex: 1;
  padding: 1.25rem;
  background: #FDFAF6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preview-countdown {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #1A2233, #2A3550);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
}
.countdown-label { font-size: 0.78rem; color: var(--color-gold); font-weight: 500; }
.countdown-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-left: auto;
}

.preview-widgets { display: flex; gap: 1rem; flex: 1; }

.widget {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #E8E0D8;
  border-radius: 10px;
  padding: 0.85rem;
  overflow: hidden;
}
.widget-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a7f74;
  margin-bottom: 0.6rem;
}

.widget-donut { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.donut { width: 60px; height: 60px; transform: rotate(-90deg); }
.donut-center {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2D2D2D;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.donut-center span { font-size: 0.6rem; font-family: 'Inter', sans-serif; color: #8a7f74; }
.widget-legend { font-size: 0.68rem; color: #8a7f74; display: flex; flex-direction: column; gap: 0.2rem; }
.legend-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 0.3rem; }

.budget-bar-label { display: flex; justify-content: space-between; font-size: 0.7rem; color: #8a7f74; margin-bottom: 0.35rem; }
.budget-bar-track { height: 6px; background: #E8E0D8; border-radius: 3px; margin-bottom: 0.4rem; }
.budget-bar-fill { height: 100%; background: #C9A84C; border-radius: 3px; }
.budget-remaining { font-size: 0.7rem; color: #8B6F5E; font-weight: 600; margin-bottom: 0.5rem; }
.budget-categories { display: flex; flex-direction: column; gap: 0.3rem; }
.bc-item { font-size: 0.65rem; color: #8a7f74; }
.bc-item span { display: block; margin-bottom: 0.15rem; }
.bc-bar { height: 4px; background: #E8E0D8; border-radius: 2px; }
.bc-bar div { height: 100%; background: #D4AF6A; border-radius: 2px; }

.preview-tasks {
  background: #FFFFFF;
  border: 1px solid #E8E0D8;
  border-radius: 10px;
  padding: 0.75rem 1rem;
}
.task-title { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #8a7f74; margin-bottom: 0.5rem; }
.task-item { font-size: 0.73rem; color: #2D2D2D; padding: 0.2rem 0; }
.task-item.done { color: #b0a89e; text-decoration: line-through; }

/* ---- FEATURES ---- */
.features {
  padding: 7rem 0;
  background: var(--color-bg-dark);
}
.features .container > h2 { margin-bottom: 0.5rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-gold-border);
}

.feature-large {
  grid-column: 1 / 3;
  background: linear-gradient(135deg, #1C2840, var(--color-bg-card));
}

.feature-highlight {
  background: linear-gradient(135deg, #1A2A18 0%, #1D3320 100%);
  border-color: rgba(100,160,80,0.25);
  position: relative;
  overflow: hidden;
}
.feature-highlight::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,175,106,0.08), transparent 70%);
  border-radius: 50%;
}
.feature-highlight:hover { border-color: rgba(100,160,80,0.5); }

.feature-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(212,175,106,0.12);
  border: 1px solid var(--color-gold-border);
  color: var(--color-gold);
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 24px; height: 24px; }

.guests-icon  { background: rgba(212,175,106,0.1); color: var(--color-gold); }
.budget-icon  { background: rgba(201,168,76,0.12); color: var(--color-gold-accent); }
.vendor-icon  { background: rgba(100,130,180,0.12); color: #7AADDC; }
.seating-icon { background: rgba(100,160,80,0.12); color: #7DC473; }
.checklist-icon { background: rgba(212,175,106,0.1); color: var(--color-gold); }
.collab-icon  { background: rgba(100,130,180,0.12); color: #7AADDC; }

.feature-card h3 { margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.92rem; color: var(--color-cream-muted); line-height: 1.7; margin-bottom: 1.25rem; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.feature-list li {
  font-size: 0.87rem;
  color: var(--color-cream-muted);
  padding-left: 1.25rem;
  position: relative;
}
.feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 0.6rem;
  top: 0.25rem;
}

.feature-tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gold);
  background: var(--color-gold-light);
  border: 1px solid var(--color-gold-border);
  padding: 0.35rem 1rem;
  border-radius: 100px;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 7rem 0;
  background: var(--color-bg);
}
.how-it-works .container > h2 { margin-bottom: 0.5rem; }

.steps {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 4rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.step-reverse { grid-template-columns: auto 1fr 1fr; }
.step-reverse .step-content { order: 2; }
.step-reverse .step-visual  { order: 3; }
.step-reverse .step-number  { order: 1; }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gold-border), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  width: 80px;
  text-align: center;
  flex-shrink: 0;
}

.step-content h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.step-content p { color: var(--color-cream-muted); line-height: 1.7; font-size: 1rem; }

/* Step visuals */
.step-card, .rsvp-card, .export-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-medium);
}

.step-field { margin-bottom: 1rem; }
.step-field label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--color-cream-muted); margin-bottom: 0.3rem; }
.step-input {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  color: var(--color-cream);
}
.step-btn {
  background: linear-gradient(135deg, var(--color-gold-accent), #b8922e);
  color: #0F1623;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  cursor: default;
}

.rsvp-header { font-size: 0.85rem; color: var(--color-cream-muted); font-weight: 500; text-align: center; margin-bottom: 0.25rem; }
.rsvp-couple { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--color-gold); text-align: center; margin-bottom: 0.25rem; }
.rsvp-date { font-size: 0.78rem; color: var(--color-cream-muted); text-align: center; margin-bottom: 1.25rem; }
.rsvp-question { font-size: 0.85rem; font-weight: 600; color: var(--color-cream); text-align: center; margin-bottom: 0.75rem; }
.rsvp-options { display: flex; flex-direction: column; gap: 0.5rem; }
.rsvp-yes {
  background: linear-gradient(135deg, var(--color-gold-accent), #b8922e);
  color: #0F1623;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}
.rsvp-no {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-cream-muted);
  text-align: center;
}

.export-card { display: flex; flex-direction: column; gap: 0.6rem; }
.export-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: var(--color-bg-elevated);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  font-size: 0.88rem;
  color: var(--color-cream);
}
.export-icon { font-size: 1.1rem; }
.export-badge {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--color-gold-light);
  color: var(--color-gold);
  border: 1px solid var(--color-gold-border);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 7rem 0;
  background: var(--color-bg-dark);
}
.testimonials .container > h2 { margin-bottom: 3rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--color-gold-border); }

.testimonial-featured {
  background: linear-gradient(135deg, #1A2840, #202E4A);
  border-color: var(--color-gold-border);
  transform: translateY(-12px);
  box-shadow: var(--shadow-gold);
}

.stars { color: var(--color-gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }

blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
}
blockquote::before { content: '"'; }
blockquote::after  { content: '"'; }

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--color-cream); }
.testimonial-author span { font-size: 0.78rem; color: var(--color-cream-muted); }

/* ---- CTA ---- */
.cta {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background: linear-gradient(135deg, #C9A84C 0%, #A8822A 40%, #C9A84C 100%);
  text-align: center;
}

.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}
.cta-shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #fff8e0, transparent 70%);
  top: -200px; right: -100px;
}
.cta-shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #0F1623, transparent 70%);
  bottom: -150px; left: -100px;
}

.cta-content { position: relative; z-index: 2; }

.cta-icon {
  display: block;
  font-size: 2rem;
  color: #0F1623;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #0F1623;
  margin-bottom: 1.25rem;
}

.cta p {
  font-size: 1.1rem;
  color: rgba(15,22,35,0.65);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-actions { margin-bottom: 1.5rem; }

.cta-note {
  font-size: 0.82rem;
  color: rgba(15,22,35,0.5);
  margin: 0;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-cream-muted);
  padding: 4rem 0 0;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand .logo { color: var(--color-cream); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 260px; }

.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col strong { color: var(--color-gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.25rem; }
.footer-col a { font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--color-gold); }
.footer-links { display: contents; }

.footer-bottom { padding: 1.5rem 0; }
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(154,172,194,0.4);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero { padding: 3.5rem 0 0; }
  .hero-image-wrap { padding: 0 1rem; }
  .hero-content { max-width: 100%; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: 1; }

  .step { grid-template-columns: 1fr; gap: 1.5rem; }
  .step-number {
    font-size: 2.5rem; width: auto; text-align: left;
    -webkit-text-fill-color: unset;
    color: var(--color-gold-border);
  }
  .step-reverse .step-content,
  .step-reverse .step-visual,
  .step-reverse .step-number { order: unset; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { transform: none; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-links { display: contents; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .hero-stats { gap: 1.25rem; }
  .preview-sidebar { display: none; }
  .preview-body { height: 300px; }
  .preview-widgets { flex-direction: column; }
  .features-grid { gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 0.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content   { animation: fadeInUp 0.7s ease both; }
.hero-image-wrap { animation: fadeInUp 0.7s ease 0.15s both; }

.feature-card, .step, .testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s;
}
.feature-card.visible, .step.visible, .testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
