/* ═══════════════════════════════════════════════════════════════════
   iParde — Main Stylesheet v2
   Primary #4A0E8F · Pink #E8365D · Teal #0D7377 · Gold #F5A623
   ═══════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:       #4A0E8F;
  --purple-dark:  #380a6e;
  --purple-mid:   #5c1aad;
  --purple-light: #7b35c4;
  --pink:         #E8365D;
  --pink-light:   #ff5577;
  --teal:         #0D7377;
  --teal-light:   #11969b;
  --gold:         #F5A623;
  --gold-light:   #F7C04A;
  --gold-dark:    #d4891e;
  --white:        #ffffff;
  --bg-dark:      #0e0520;
  --bg-body:      #170830;
  --text-body:    #d4c8f0;
  --text-muted:   #9a87c0;
  --border:       rgba(74,14,143,.28);
  --card-bg:      rgba(31,13,64,.55);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-card: 0 4px 28px rgba(0,0,0,.45);
  --shadow-glow: 0 0 40px rgba(232,54,93,.22);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

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

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 110px 0; } }

.hide-mobile { display: none; }
@media (min-width: 600px) { .hide-mobile { display: inline; } }

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a0533;
  box-shadow: 0 4px 20px rgba(245,166,35,.35);
}
.btn-gold:hover {
  box-shadow: 0 6px 30px rgba(245,166,35,.55);
  transform: translateY(-2px);
}

.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(74,14,143,.4);
}
.btn-purple:hover {
  box-shadow: 0 6px 28px rgba(74,14,143,.6);
  transform: translateY(-2px);
}

.btn-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,54,93,.35);
}
.btn-pink:hover {
  box-shadow: 0 6px 28px rgba(232,54,93,.55);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.07);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #1a0533;
  transform: translateY(-2px);
}

.btn-lg  { padding: 15px 36px; font-size: 1.05rem; }
.btn-xl  { padding: 18px 44px; font-size: 1.15rem; }
.btn-sm  { padding: 8px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.pulse-ring { position: relative; }
.pulse-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid var(--gold);
  animation: pulse-ring 2.4s ease-out infinite;
  opacity: 0;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: .6; }
  100% { transform: scale(1.15); opacity: 0;  }
}

/* ── Section labels ───────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-header.scrolled {
  background: rgba(14,5,32,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  flex: 1;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta { display: none; margin-left: auto; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  background: rgba(14,5,32,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1);
}
.nav-mobile.open { max-height: 320px; }
.nav-mobile ul {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile ul a {
  display: block;
  padding: 10px 12px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-mobile ul a:not(.btn):hover { background: rgba(255,255,255,.07); }
.nav-mobile ul .btn { margin-top: 8px; width: 100%; }

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 75% 30%, rgba(232,54,93,.16) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 15% 65%, rgba(13,115,119,.2) 0%, transparent 50%),
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(74,14,143,.45) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg-body) 0%, var(--bg-dark) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-particles::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(245,166,35,.3) 1px, transparent 1px),
    radial-gradient(circle, rgba(232,54,93,.2) 1px, transparent 1px);
  background-size: 120px 120px, 80px 80px;
  background-position: 0 0, 40px 40px;
  animation: drift 18s linear infinite;
}
@keyframes drift { to { transform: translateY(-120px); } }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 24px;
  animation: fade-up 0.7s ease both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fade-up 0.7s 0.1s ease both;
}

.headline-accent {
  color: transparent;
  background: linear-gradient(135deg, var(--pink) 0%, var(--gold) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3.5s linear infinite, fade-up 0.7s 0.1s ease both;
}
@keyframes shimmer { to { background-position: 200% center; } }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-body);
  margin-bottom: 40px;
  animation: fade-up 0.7s 0.2s ease both;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 56px;
  animation: fade-up 0.7s 0.3s ease both;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 0.7s 0.4s ease both;
}
.proof-item { padding: 0 24px; text-align: center; }
.proof-item strong { display: block; font-size: 1.5rem; font-weight: 700; color: var(--white); }
.proof-item span   { font-size: 0.8rem; color: var(--text-muted); }
.proof-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: fade-up 1s 1s ease both;
}
.scroll-dot {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 14px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  70%       { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════ */
.how-it-works {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-body) 100%);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(232,54,93,.35);
}
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -14px;
  left: 28px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: #1a0533;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; line-height: 1; }
.step-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); margin-bottom: 10px; }
.step-card p  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════════
   TEMPLATES
   ═══════════════════════════════════════════════════════════════════ */
.templates-section { background: var(--bg-body); text-align: center; }

.category-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 40px;
}
.tab-btn {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--text-body);
  background: transparent;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}
@media (min-width: 900px) { .templates-grid { grid-template-columns: repeat(4, 1fr); } }

.template-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.template-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(232,54,93,.4);
}
.template-card.hidden { display: none; }
.template-card.selected {
  border-color: var(--pink);
  box-shadow: 0 0 0 2px var(--pink), var(--shadow-card);
}

.template-preview {
  position: relative;
  aspect-ratio: 9/14;
  overflow: hidden;
}

/* Template preview backgrounds — new brand palette */
.preview-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.birthday-1 { background: linear-gradient(160deg, #2a0555, #7b1fa2, #1a0333); }
.birthday-2 { background: linear-gradient(160deg, #0d373a, #0D7377, #0a2d30); }
.birthday-3 { background: linear-gradient(160deg, #3d0520, #E8365D, #1a021a); }
.birthday-4 { background: linear-gradient(160deg, #1a0533, #4A0E8F, #0e0520); }
.july-1     { background: linear-gradient(160deg, #0d1a40, #1a3a8f, #0d0d20); }
.july-2     { background: linear-gradient(160deg, #2a0d0d, #8b0000, #0d0d2a); }
.july-3     { background: linear-gradient(160deg, #0d1a40, #2a3a7d, #2a0555); }
.july-4     { background: linear-gradient(160deg, #0e0520, #1a0a3d, #0a1a0a); }

.preview-animation {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.preview-text {
  font-size: 3.5rem;
  filter: drop-shadow(0 0 20px rgba(255,255,255,.4));
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.confetti-burst, .firework-burst, .star-burst, .glow-pulse, .flag-wave, .eagle-soar {
  font-size: 2rem;
  animation: burst 1.8s ease-in-out infinite;
}
.balloon-rise { font-size: 2rem; animation: rise 3s ease-in-out infinite; }
@keyframes burst {
  0%   { transform: scale(1);    opacity: 1; }
  50%  { transform: scale(1.4);  opacity: .8; }
  100% { transform: scale(1);    opacity: 1; }
}
@keyframes rise {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-16px) scale(1.1); }
  100% { transform: translateY(0) scale(1); }
}

.template-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 4px 12px;
}
.standard-badge {
  background: rgba(14,5,32,.85);
  color: var(--text-body);
  border: 1px solid var(--border);
}
.premium-badge {
  background: rgba(245,166,35,.18);
  color: var(--gold-light);
  border: 1px solid rgba(245,166,35,.45);
}

/* Selected checkmark overlay */
.template-card.selected .template-preview::after {
  content: '✓';
  position: absolute;
  inset: 0;
  background: rgba(232,54,93,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  font-weight: 700;
}

.template-info { padding: 14px 16px 16px; }
.template-info h3       { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.template-category      { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; }

.templates-cta { margin-top: 48px; }

/* ═══════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════ */
.pricing-section {
  background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-dark) 100%);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 600px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }

.pricing-featured {
  background: linear-gradient(160deg, rgba(74,14,143,.4), rgba(31,13,64,.8));
  border: 2px solid var(--pink);
  box-shadow: 0 0 40px rgba(232,54,93,.18);
}
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--gold));
  color: #1a0533;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 5px 18px;
  white-space: nowrap;
}

.pricing-icon { font-size: 2rem; margin-bottom: 12px; }
.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 4px;
}
.price-currency { font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-top: 6px; }
.price-amount   { font-size: 4rem; font-weight: 800; color: var(--white); }
.price-cents    { font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-top: 6px; }
.pricing-desc   { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-body); }
.check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.feature-muted { color: var(--text-muted) !important; }
.feature-muted span { color: var(--text-muted); }

.pricing-note { margin-top: 32px; font-size: 0.85rem; color: var(--text-muted); text-align: center; }

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--bg-body); text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}
@media (min-width: 600px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(74,14,143,.5); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.92rem; color: var(--text-body); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-card footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card footer strong { font-size: 0.9rem; color: var(--white); }
.testimonial-card footer span  { font-size: 0.78rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, rgba(74,14,143,.35) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 14px;
}
.cta-inner p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 36px; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #060212;
  border-top: 1px solid var(--border);
  padding-top: 52px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 40px;
}
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; align-items: flex-start; justify-content: space-between; }
}
.footer-brand .nav-logo { margin-bottom: 10px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); max-width: 200px; }
.footer-logo-img { height: 32px; width: auto; }

.footer-links ul { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p  { font-size: 0.82rem; color: var(--text-muted); }
.footer-secure    { font-size: 0.82rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════════ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
