/* ========================================
   GREEK GODDESSES - Landing Page Styles
   ======================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold-100: #fff8e1;
  --gold-200: #ffe082;
  --gold-300: #ffd54f;
  --gold-400: #d4a843;
  --gold-500: #c9952a;
  --gold-600: #b8860b;
  --gold-700: #8b6508;

  --purple-100: #f3e5f5;
  --purple-200: #ce93d8;
  --purple-300: #ba68c8;
  --purple-400: #9c27b0;
  --purple-500: #7b1fa2;
  --purple-600: #6a1b9a;
  --purple-700: #4a148c;

  --red-400: #ef5350;
  --red-500: #e53935;
  --red-600: #c62828;

  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: rgba(20, 16, 30, 0.85);
  --bg-glass: rgba(30, 25, 45, 0.6);

  --text-primary: #f5f0e8;
  --text-secondary: #b8a99a;
  --text-muted: #7a6e63;

  --border-gold: rgba(201, 149, 42, 0.3);
  --border-glass: rgba(255, 255, 255, 0.08);

  --shadow-gold: 0 0 30px rgba(201, 149, 42, 0.15);
  --shadow-purple: 0 0 40px rgba(124, 31, 162, 0.2);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-600);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-500);
}

/* ---- Greek Meander Border ---- */
.meander-border {
  width: 100%;
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold-500) 0px,
    var(--gold-500) 8px,
    transparent 8px,
    transparent 12px,
    var(--gold-500) 12px,
    var(--gold-500) 20px,
    transparent 20px,
    transparent 24px
  );
  opacity: 0.4;
}

.meander-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  margin: 0 auto;
  position: relative;
}

.meander-divider::before {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold-500);
  font-size: 14px;
  background: var(--bg-primary);
  padding: 0 12px;
}

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-spacing {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold-400);
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Age Gate Overlay ---- */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 5, 10, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.age-gate-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-gold), var(--shadow-deep);
  animation: fadeScaleIn 0.5s ease;
}

.age-gate-card h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.age-gate-card .age-warning {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 16px;
}

.age-gate-card p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.age-gate-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.age-gate-buttons .btn-confirm {
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: 'Inter', sans-serif;
}

.age-gate-buttons .btn-yes {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #fff;
}
.age-gate-buttons .btn-yes:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 149, 42, 0.3);
}

.age-gate-buttons .btn-no {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
}
.age-gate-buttons .btn-no:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: linear-gradient(90deg, var(--red-600), var(--purple-600), var(--red-600));
  background-size: 200% 100%;
  animation: gradientShift 4s linear infinite;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.announcement-bar .pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1.5s infinite;
  vertical-align: middle;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---- HERO Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.3) 0%,
    rgba(10, 10, 15, 0.6) 50%,
    rgba(10, 10, 15, 1) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-400);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 6s infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 149, 42, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.8s ease 0.2s both;
}

.hero-badge .fire-icon {
  font-size: 1rem;
  animation: flicker 1.5s infinite alternate;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}

.hero-title .line-accent {
  display: block;
  background: linear-gradient(135deg, var(--gold-200), var(--gold-500), var(--purple-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  font-weight: 400;
  font-style: italic;
  max-width: 650px;
  margin: 0 auto 40px;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  animation: fadeSlideUp 0.8s ease 0.8s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  animation: fadeSlideUp 0.8s ease 1s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #fff;
  box-shadow: 0 4px 20px rgba(201, 149, 42, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(201, 149, 42, 0.45);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--gold-400);
  border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
  background: rgba(201, 149, 42, 0.1);
  transform: translateY(-3px);
  border-color: var(--gold-500);
}

.btn-large {
  padding: 20px 48px;
  font-size: 1.1rem;
  border-radius: 16px;
}

.btn-pulse {
  animation: btnPulse 2.5s infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 149, 42, 0.3); }
  50% { box-shadow: 0 4px 35px rgba(201, 149, 42, 0.55), 0 0 60px rgba(201, 149, 42, 0.15); }
}

/* ---- Features Strip ---- */
.features-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 48px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  background: var(--bg-glass);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.feature-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---- Section Headings ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Gallery Section ---- */
.gallery-section {
  background: var(--bg-primary);
  position: relative;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(ellipse at center top, rgba(124, 31, 162, 0.08), transparent);
  pointer-events: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-glass);
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-gold), var(--shadow-deep);
  border-color: var(--border-gold);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(10, 10, 15, 0.85) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-overlay {
  background: linear-gradient(
    180deg,
    rgba(124, 31, 162, 0.1) 0%,
    rgba(10, 10, 15, 0.9) 100%
  );
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(201, 149, 42, 0.2);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  margin-bottom: 10px;
}

.gallery-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.gallery-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-style: italic;
}

.gallery-lock-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--border-glass);
}

/* ---- Urgency Banner ---- */
.urgency-section {
  background: linear-gradient(135deg, rgba(198, 40, 40, 0.08), rgba(74, 20, 140, 0.08));
  border-top: 1px solid rgba(198, 40, 40, 0.2);
  border-bottom: 1px solid rgba(198, 40, 40, 0.2);
  padding: 48px 0;
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.urgency-timer {
  display: flex;
  gap: 12px;
}

.timer-block {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(198, 40, 40, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 72px;
}

.timer-value {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red-400);
}

.timer-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.urgency-text {
  max-width: 400px;
}

.urgency-text h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--red-400);
  margin-bottom: 6px;
}

.urgency-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ---- Packages / Pricing ---- */
.pricing-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 149, 42, 0.06), transparent);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 400px));
  justify-content: center;
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}

.pricing-card.featured {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 24px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.pricing-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-price {
  margin-bottom: 28px;
}

.pricing-old-price {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-current-price {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pricing-current-price .currency {
  font-size: 1.4rem;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border-glass);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  color: var(--gold-400);
  font-size: 1rem;
}

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--bg-primary);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 32px;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

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

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--purple-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-verified {
  font-size: 0.75rem;
  color: var(--gold-500);
}

/* ---- Delivery / Trust ---- */
.delivery-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.delivery-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.delivery-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.delivery-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.delivery-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 10px;
}

.delivery-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Final CTA ---- */
.final-cta {
  background: linear-gradient(135deg, rgba(74, 20, 140, 0.15), rgba(201, 149, 42, 0.08));
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/greek-texture.png') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

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

.final-cta-content .section-title {
  margin-bottom: 16px;
}

.final-cta-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 40px;
}

.final-cta-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trust-badge-icon {
  font-size: 1.2rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-glass);
  padding: 40px 0;
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer .footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---- Animations ---- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeScaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.8; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .features-grid,
  .pricing-grid,
  .testimonials-grid,
  .delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1);
  }
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .hero-stats {
    gap: 32px;
  }

  .urgency-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 64px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-grid,
  .testimonials-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
  }

  .urgency-timer {
    gap: 8px;
  }

  .timer-block {
    min-width: 60px;
    padding: 10px 14px;
  }

  .final-cta-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .age-gate-card {
    padding: 32px 24px;
  }

  .age-gate-buttons {
    flex-direction: column;
  }
}
