/* ==========================================================================
   AvadaLearn Kids - Modern Funky 10/10 Sales Page CSS Design System
   ========================================================================== */

:root {
  --font-heading: 'Fredoka', 'Bubblegum Sans', sans-serif;
  --font-body: 'Quicksand', sans-serif;

  /* Playful Theme Palette */
  --bg-main: #f0fdf4;
  --card-bg: rgba(255, 255, 255, 0.96);
  
  --color-primary: #ff4757;
  --color-secondary: #ffa502;
  --color-accent-green: #2ed573;
  --color-accent-blue: #1e90ff;
  --color-accent-purple: #9b59b6;
  --color-accent-pink: #ff78ae;

  --text-dark: #1e293b;
  --text-muted: #64748b;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 18px 36px rgba(0, 0, 0, 0.14);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
}

/* Global Resets */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: #f8fafc;
  color: var(--text-dark);
}

body {
  background: linear-gradient(180deg, #f0f9ff 0%, #f0fdf4 40%, #fefce8 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 75px; /* Space for mobile sticky bottom bar */
}

/* Top Announcement Bar */
.top-announcement {
  background: linear-gradient(90deg, #ff4757, #9b59b6, #1e90ff);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.top-announcement span {
  background: #ffd93d;
  color: #1e293b;
  padding: 2px 8px;
  border-radius: 6px;
}

/* Floating Background Elements */
.cloud, .star { position: absolute; pointer-events: none; z-index: 0; opacity: 0.6; }
.cloud-1 { top: 60px; left: 4%; font-size: 3rem; animation: floatCloud 25s linear infinite; }
.cloud-2 { top: 220px; right: 6%; font-size: 4rem; animation: floatCloud 32s linear infinite reverse; }
.cloud-3 { top: 750px; left: 10%; font-size: 3.5rem; animation: floatCloud 28s linear infinite; }

.star-1 { top: 120px; right: 22%; font-size: 2rem; animation: pulseStar 3s ease-in-out infinite; }
.star-2 { top: 500px; left: 5%; font-size: 2.5rem; animation: pulseStar 4s ease-in-out infinite 1s; }

@keyframes floatCloud {
  0% { transform: translateX(-40px); }
  50% { transform: translateX(40px); }
  100% { transform: translateX(-40px); }
}

@keyframes pulseStar {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
  50% { transform: scale(1.3) rotate(15deg); opacity: 1; }
}

/* Header Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-sm);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
}
.logo-icon { font-size: 2.2rem; animation: bounceSlow 2s infinite; }
.logo .highlight { color: var(--color-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--color-accent-blue); }

.nav-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  color: #fff !important;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.nav-btn:hover { transform: translateY(-2px); }
.btn-yellow { background-color: #ffa502; }
.btn-pink { background-color: #ff78ae; }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.star-counter {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff3bf;
  border: 2px solid #ffd43b;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #d97706;
}
.star-icon { animation: spinStar 6s linear infinite; }
@keyframes spinStar { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Main Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px;
}

/* HERO SECTION */
.hero-section { padding: 32px 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}

.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(90deg, #ff4757, #ffa502, #2ed573, #1e90ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-features-list span {
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: #334155;
}

.hero-pricing-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.price-label { font-size: 1.1rem; color: var(--text-muted); font-weight: 600; }
.price-amount { font-family: var(--font-heading); font-size: 3.2rem; font-weight: 700; color: #16a34a; }
.price-strikethrough { text-decoration: line-through; color: #94a3b8; font-size: 1.6rem; font-weight: 600; }
.discount-pill {
  background: #ffe4e6;
  color: #e11d48;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
}

/* Evergreen Timer Styles */
.cta-timer-box {
  background: #fff;
  border: 2px solid #ff4757;
  padding: 10px 18px;
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.15);
  margin-bottom: 20px;
}

.timer-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #e11d48;
}

.timer-display {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff4757;
  letter-spacing: 1px;
}

.inline-timer {
  display: inline;
  font-size: 0.95rem;
  color: #ffd93d;
}

.sticky-timer {
  font-size: 0.85rem;
  color: #e11d48;
  font-weight: 700;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }

.btn {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-primary { background: linear-gradient(135deg, #ff4757, #ff6b81); color: #fff; box-shadow: 0 8px 20px rgba(255, 71, 87, 0.35); }
.btn-secondary { background: linear-gradient(135deg, #1e90ff, #70a1ff); color: #fff; box-shadow: 0 8px 20px rgba(30, 144, 255, 0.35); }
.btn-outline { background: #fff; border: 3px solid #1e90ff; color: #1e90ff; }
.btn-bounce:hover { transform: translateY(-4px) scale(1.03); }

.guarantee-text { font-size: 0.9rem; color: #64748b; font-weight: 600; }

.image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}
.image-frame:hover { transform: rotate(0deg) scale(1.02); }
.hero-img { width: 100%; height: auto; display: block; }

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.badge-top-right { top: 16px; right: 16px; color: #e11d48; }
.badge-bottom-left { bottom: 16px; left: 16px; color: #16a34a; }

/* Ribbon Bar */
.ribbon-bar {
  background: #2196f3;
  color: #fff;
  padding: 16px 0;
  margin: 32px 0;
}
.ribbon-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

/* Generic Section Card Style */
.card-section {
  background: var(--card-bg);
  padding: 44px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 3px solid rgba(255, 255, 255, 0.9);
  margin-bottom: 44px;
}

.section-header { text-align: center; margin-bottom: 36px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  background: #f1f5f9;
  color: #475569;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.section-header h2 { font-family: var(--font-heading); font-size: 2.4rem; color: var(--text-dark); margin-bottom: 8px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); }

/* CREATOR STORY */
.creator-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; }
.video-preview-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.creator-img { width: 100%; height: 320px; object-fit: cover; display: block; }
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  transition: background 0.3s ease;
}
.video-preview-card:hover .play-overlay { background: rgba(0,0,0,0.2); }
.play-btn-circle {
  width: 64px;
  height: 64px;
  background: #ff4757;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 8px;
  box-shadow: 0 4px 16px rgba(255, 71, 87, 0.5);
}
.story-lead { font-size: 1.15rem; font-weight: 600; color: #334155; margin-top: 12px; margin-bottom: 12px; }
.creator-quote {
  margin-top: 16px;
  padding: 16px;
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
  border-radius: 8px;
  font-style: italic;
  color: #166534;
  font-size: 1.05rem;
}

/* INSIDE GRID PREVIEW IMAGES (1:1 SQUARE FORMAT) */
.inside-preview-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  border: 2px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}
.inside-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.inside-card:hover .inside-preview-img {
  transform: scale(1.05);
}

/* REAL PRODUCT PREVIEWS GALLERY (1:1 SQUARE FORMAT) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.gallery-card {
  background: #fff;
  border: 3px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.gallery-card:hover {
  transform: translateY(-6px);
  border-color: #ff4757;
  box-shadow: var(--shadow-md);
}
.gallery-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8fafc;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-card:hover .gallery-img {
  transform: scale(1.06);
}
.gallery-caption {
  padding: 18px 16px;
}
.gallery-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.gallery-caption p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* COMPARISON TABLE */
.table-responsive { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
  font-size: 1rem;
}
.comparison-table th {
  background: #f8fafc;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #334155;
}
.col-highlight {
  background: #eff6ff !important;
  font-weight: 700;
  color: #1d4ed8;
}

/* STATS SECTION */
.stats-section {
  background: linear-gradient(135deg, #1e90ff, #3b82f6);
  color: #fff;
  padding: 44px 0;
  margin-bottom: 44px;
}
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; }
.stat-label { font-size: 1.1rem; font-weight: 600; opacity: 0.9; }

/* ROUTINE TABS */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tab-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 2px solid #cbd5e1;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab-btn.active, .tab-btn:hover {
  background: #9b59b6;
  color: #fff;
  border-color: #9b59b6;
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-card {
  background: #faf5ff;
  border: 3px solid #e9d5ff;
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.day-badge {
  display: inline-block;
  background: #c084fc;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

/* ROADMAP GRID */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.roadmap-card {
  background: #fff;
  border: 3px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.roadmap-card:hover { transform: translateY(-4px); border-color: #3b82f6; }
.phase-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.buddies-tag { display: block; margin-top: 12px; font-size: 0.85rem; color: #64748b; font-weight: 600; }

/* 26 ANIMAL BUDDIES WALL */
.character-wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}
.buddy-card {
  position: relative;
  background: #fff;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.buddy-card:hover { transform: scale(1.08); border-color: #ff4757; box-shadow: var(--shadow-md); }
.letter-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ff4757;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.buddy-emoji { font-size: 2.8rem; margin: 8px 0; }
.buddy-card h4 { font-family: var(--font-heading); font-size: 0.95rem; color: #334155; }

/* COMMERCIAL SECTION */
.commercial-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; }
.commercial-text .story-lead { font-size: 1.2rem; font-weight: 700; color: #1e293b; margin: 12px 0; }

/* STEPS GRID */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step-card {
  background: #fff;
  border: 3px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
}
.step-number {
  width: 48px;
  height: 48px;
  background: #1e90ff;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px auto;
}

/* PRICING CARD */
.pricing-card {
  background: #fff;
  border: 3px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.pricing-card.featured {
  border-color: #ff4757;
  box-shadow: var(--shadow-lg);
  background: #fff5f5;
}
.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff4757;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
}
.pack-name { display: block; font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; margin-bottom: 4px; }
.weeks-tag { display: block; font-size: 1rem; color: var(--text-muted); font-weight: 600; margin-bottom: 16px; }
.price-box { margin-bottom: 16px; font-family: var(--font-heading); }
.curr-symbol { font-size: 1.8rem; vertical-align: top; font-weight: 700; }
.price-val { font-size: 3.2rem; font-weight: 700; color: var(--text-dark); }
.old-price { text-decoration: line-through; color: #94a3b8; margin-left: 8px; font-size: 1.4rem; }
.pages-badge {
  display: inline-block;
  background: #f1f5f9;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.pages-badge.highlight { background: #dcfce7; color: #15803d; }
.pricing-list { list-style: none; text-align: left; margin-bottom: 24px; font-size: 0.95rem; display: flex; flex-direction: column; gap: 8px; }
.pricing-list td { padding: 4px 0; border: none; display: block; }

/* FAQ ACCORDION */
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer { padding: 0 20px 20px 20px; display: none; font-size: 1.05rem; line-height: 1.6; color: var(--text-muted); }
.faq-item.open .faq-answer { display: block; }

/* MODALS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal-overlay.hidden { display: none; }
.modal-content {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: #f1f5f9; border: none;
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-weight: 700;
}
.checkout-form label { display: block; margin-top: 12px; margin-bottom: 4px; font-weight: 600; font-size: 0.95rem; }
.checkout-form input {
  width: 100%; padding: 12px; border-radius: 8px; border: 2px solid #cbd5e1; font-size: 1rem;
}
.btn-full { width: 100%; margin-top: 20px; }

/* STICKY MOBILE BOTTOM BAR (HIGH CONVERTING) */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 2px solid #e2e8f0;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}

.mobile-sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.sticky-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #16a34a;
}

/* FOOTER */
.footer { background: #0f172a; color: #94a3b8; padding: 48px 0 24px 0; margin-top: 48px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-col h4 { color: #fff; font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #cbd5e1; text-decoration: none; }
.footer-bottom { text-align: center; border-top: 1px solid #334155; padding-top: 20px; font-size: 0.9rem; }

/* Hamburger Toggle Button */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 42px;
  height: 40px;
  background: #fff;
  border: 2px solid #cbd5e1;
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  z-index: 101;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.hamburger-bar {
  width: 100%;
  height: 3px;
  background-color: #334155;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .hamburger-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 12px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid #cbd5e1;
    display: none;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.25s ease forwards;
  }

  .nav-link {
    padding: 12px 16px;
    border-radius: 12px;
    background: #f8fafc;
    text-align: center;
    border: 1px solid #e2e8f0;
  }

  .hero-grid, .creator-grid, .commercial-grid, .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: 2.2rem; }
  .navbar { flex-direction: row; gap: 8px; padding: 10px 12px; justify-content: space-between; overflow: hidden; }
  .logo { font-size: 1.4rem; gap: 4px; flex-shrink: 0; }
  .logo-icon { font-size: 1.6rem; }
  .star-counter { font-size: 0.85rem; padding: 4px 8px; flex-shrink: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .header-right { flex-shrink: 1; min-width: 0; }
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}
