/* ===========================
   THE BAKING BOUTIQUE — CSS
   =========================== */

:root {
  --rose-gold: #c9956a;
  --rose-light: #e8b99a;
  --cream: #fdf6ef;
  --cream-dark: #f5e6d8;
  --brown-deep: #2c1a0e;
  --brown-mid: #5a3825;
  --brown-light: #8b5e3c;
  --text-dark: #1e1208;
  --text-mid: #5a3825;
  --text-light: #9a7a65;
  --white: #ffffff;
  --gold: #d4a843;
  --green-wa: #25d366;
  --inter-purple: #7c4daa;
  --inter-light: #b08ad4;
  --pro-dark: #2c1a0e;
  --shadow-soft: 0 8px 32px rgba(44,26,14,0.12);
  --shadow-card: 0 16px 48px rgba(44,26,14,0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }
p  { color: var(--text-mid); }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--rose-gold), var(--brown-light));
  color: var(--white); padding: 14px 32px; border-radius: 50px;
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.5px; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,149,106,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,149,106,0.5); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 2px solid rgba(255,255,255,0.5); padding: 13px 28px;
  border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  backdrop-filter: blur(8px); transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.25); border-color: var(--white); transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--brown-deep);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

.wa-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== SECTION HEADERS ===== */
.sec-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.sec-header h2 { margin: 12px 0 16px; color: var(--brown-deep); }
.sec-header p  { font-size: 1.05rem; color: var(--text-light); }

.sec-tag {
  display: inline-block; background: linear-gradient(135deg, var(--cream-dark), #f0d8c4);
  color: var(--rose-gold); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px;
  border-radius: 50px; border: 1px solid rgba(201,149,106,0.3);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 24px rgba(44,26,14,0.08);
  border-bottom: 1px solid #ede0d4;
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 24px rgba(44,26,14,0.12);
}
.nav-container {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo  {
  height: 52px; width: auto; object-fit: contain;
}
.nav-brand-text {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  font-weight: 700; color: var(--brown-deep);
}

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links li a.nav-link {
  font-weight: 600; font-size: 0.9rem; color: var(--text-dark);
  padding: 8px 14px; border-radius: 8px; transition: var(--transition);
}
.navbar.scrolled .nav-links li a.nav-link { color: var(--text-dark); }
.nav-links li a.nav-link:hover { background: rgba(201,149,106,0.15); color: var(--rose-gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--rose-gold), var(--brown-light));
  color: var(--white) !important; padding: 10px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.88rem; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201,149,106,0.4);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,149,106,0.5); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--brown-deep); border-radius: 2px; transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--brown-deep); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2c1a0e 0%, #5a3825 40%, #8b5e3c 70%, #c9956a 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,149,106,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,168,67,0.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9956a' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1; max-width: 820px; margin: 0 auto;
  padding: 120px 24px 80px; text-align: center;
  animation: fadeUp 1s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2); padding: 8px 20px;
  border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  backdrop-filter: blur(8px); margin-bottom: 28px; letter-spacing: 0.5px;
}
.badge-dot {
  width: 8px; height: 8px; background: var(--green-wa);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.6; transform:scale(1.3); } }

.hero-title {
  color: var(--white); margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--rose-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 580px;
  margin: 0 auto 40px; line-height: 1.8;
}
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-n { display: block; font-family: 'Playfair Display',serif; font-size: 1.8rem; font-weight: 700; color: var(--white); }
.stat-l { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.scroll-dot {
  width: 28px; height: 44px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px; position: relative; margin: 0 auto;
}
.scroll-dot::after {
  content: ''; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 8px;
  background: rgba(255,255,255,0.7); border-radius: 2px;
  animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown { 0% { opacity:1; top:6px; } 100% { opacity:0; top:20px; } }

/* ===== COURSES ===== */
.courses-section { background: var(--cream); }

.courses-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; align-items: stretch;
}

.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); position: relative; overflow: visible;
  transition: var(--transition); display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }

.card-featured {
  background: linear-gradient(145deg, var(--brown-deep) 0%, var(--brown-mid) 100%);
  transform: scale(1.03);
  box-shadow: 0 24px 64px rgba(44,26,14,0.3);
}
.card-featured:hover { transform: scale(1.03) translateY(-8px); }
.card-featured h3 { color: var(--white) !important; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.card-featured .card-desc { color: rgba(255,255,255,0.75); }
.card-featured .card-list li { color: rgba(255,255,255,0.8); }
.card-featured .card-list li::before { color: var(--rose-light); }
.card-featured .card-meta span { color: rgba(255,255,255,0.7); }
.card-featured .price { color: var(--rose-light); }
.card-featured .price-sub { color: rgba(255,255,255,0.5); }

.card-inner-content { padding: 36px 28px; display: flex; flex-direction: column; flex: 1; }
.card-inner-content, .card { padding: 36px 28px; }

.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #e8a820);
  color: var(--brown-deep); font-weight: 700; font-size: 0.8rem;
  padding: 6px 20px; border-radius: 50px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212,168,67,0.4); letter-spacing: 0.5px;
}

.card-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px;
  border-radius: 50px; margin-bottom: 20px; width: fit-content;
}
.tag-basic { background: #fff0e8; color: var(--rose-gold); }
.tag-inter { background: rgba(124,77,170,0.15); color: var(--inter-light); }
.tag-pro   { background: rgba(212,168,67,0.15); color: var(--gold); }

.card-emoji { font-size: 2.8rem; margin-bottom: 12px; line-height: 1; }
.card h3    { color: var(--brown-deep); margin-bottom: 12px; }

.card-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
  font-size: 0.85rem; color: var(--text-light);
}
.card-level {
  padding: 3px 12px; border-radius: 50px; font-weight: 700; font-size: 0.75rem;
}
.level-basic { background: #fff0e8; color: var(--rose-gold); }
.level-inter { background: rgba(124,77,170,0.15); color: var(--inter-light); }
.level-pro   { background: rgba(212,168,67,0.15); color: var(--gold); }

.card-desc { font-size: 0.92rem; color: var(--text-light); margin-bottom: 20px; }

.card-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; flex: 1; }
.card-list li {
  font-size: 0.9rem; color: var(--text-mid); padding-left: 20px; position: relative;
}
.card-list li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--rose-gold); font-size: 0.7rem; top: 3px;
}

.card-price { margin-bottom: 24px; }
.price     { font-family:'Playfair Display',serif; font-size: 2rem; font-weight: 700; color: var(--brown-deep); }
.price-sub { font-size: 0.85rem; color: var(--text-light); margin-left: 4px; }

.card-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 50px; font-weight: 700;
  font-size: 0.9rem; transition: var(--transition); margin-top: auto;
}
.btn-basic {
  background: linear-gradient(135deg, var(--rose-gold), var(--brown-light));
  color: var(--white); box-shadow: 0 4px 16px rgba(201,149,106,0.35);
}
.btn-basic:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,149,106,0.5); }
.btn-inter {
  background: linear-gradient(135deg, #9b6bbf, #7c4daa);
  color: var(--white); box-shadow: 0 4px 16px rgba(124,77,170,0.35);
}
.btn-inter:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,77,170,0.5); }
.btn-pro {
  background: linear-gradient(135deg, var(--gold), #b8882a);
  color: var(--brown-deep); box-shadow: 0 4px 16px rgba(212,168,67,0.35);
}
.btn-pro:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,67,0.5); }

/* ===== WHY US ===== */
.why-section {
  background: linear-gradient(135deg, #2c1a0e, #5a3825);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c9956a' fill-opacity='0.05'%3E%3Ccircle cx='40' cy='40' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why-section .sec-header h2 { color: var(--white); }
.why-section .sec-header p  { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.why-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 36px 24px; text-align: center;
  backdrop-filter: blur(8px); transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); }
.why-ico { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h4 { color: var(--white); margin-bottom: 12px; }
.why-card p  { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ===== ABOUT ===== */
.about-section { background: var(--cream-dark); }
.about-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 72px; align-items: center;
}
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.about-blob {
  width: 320px; height: 320px; border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--brown-light));
  opacity: 0.25; position: absolute;
  animation: blobMorph 8s ease-in-out infinite;
}
@keyframes blobMorph {
  0%,100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
  50%      { border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%; }
}
.about-emoji-stack {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; position: relative; z-index: 1;
}
.about-emoji-stack span {
  font-size: 4rem; display: flex; align-items: center; justify-content: center;
  background: var(--white); width: 100px; height: 100px; border-radius: 24px;
  box-shadow: var(--shadow-soft); transition: var(--transition); cursor: default;
}
.about-emoji-stack span:hover { transform: scale(1.1) rotate(5deg); box-shadow: var(--shadow-card); }
.about-float-badge {
  position: absolute; bottom: 24px; right: 0;
  background: linear-gradient(135deg, var(--rose-gold), var(--brown-light));
  color: var(--white); padding: 10px 20px; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem; box-shadow: 0 8px 24px rgba(201,149,106,0.4);
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.about-text .sec-tag { margin-bottom: 20px; display: inline-block; }
.about-text h2 { color: var(--brown-deep); margin: 12px 0 20px; }
.about-text p  { margin-bottom: 16px; font-size: 1rem; }

.about-points { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.about-pt {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--text-mid); font-weight: 500;
}
.about-pt span:first-child { font-size: 1.3rem; }

/* ===== TESTIMONIALS ===== */
.testi-section { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-soft);
  transition: var(--transition); position: relative; overflow: hidden;
}
.testi-card::before {
  content: '\201C'; position: absolute; top: -16px; left: 20px;
  font-family:'Playfair Display',serif; font-size: 7rem;
  color: var(--cream-dark); line-height: 1; pointer-events: none;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 0.95rem; color: var(--text-mid); font-style: italic; margin-bottom: 24px; position: relative; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--rose-gold), var(--brown-light));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; font-family:'Playfair Display',serif;
}
.testi-author strong { color: var(--brown-deep); font-size: 0.95rem; display: block; }
.testi-author small  { color: var(--text-light); font-size: 0.8rem; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--rose-gold) 0%, var(--brown-light) 50%, var(--brown-mid) 100%);
  padding: 72px 24px;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-inner h2 { color: var(--white); margin-bottom: 8px; }
.cta-inner p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* ===== FOOTER ===== */
.footer { background: #ffffff; padding-top: 64px; border-top: 2px solid #e8d5c4; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid #e8d5c4;
}
.footer-logo { height: 150px; width: auto; object-fit: contain; display: block; margin-bottom: 8px; }
.footer-brand-text {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  font-weight: 700; color: var(--rose-gold); margin-bottom: 12px; display: block;
}
.footer-tagline { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; }
.soc-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cream-dark); border: 1px solid #e0c8b0;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-mid); transition: var(--transition);
}
.soc-link svg { width: 18px; height: 18px; }
.soc-link:hover { background: var(--rose-gold); border-color: var(--rose-gold); color: var(--white); transform: translateY(-2px); }

.footer-col h5 {
  font-family: 'Playfair Display',serif; color: var(--brown-deep);
  margin-bottom: 20px; font-size: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text-light); font-size: 0.9rem; transition: var(--transition);
}
.footer-links a:hover { color: var(--rose-gold); padding-left: 4px; }

.contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-mid); font-size: 0.9rem; margin-bottom: 12px;
}
.contact-row a { color: var(--text-mid); transition: var(--transition); }
.contact-row a:hover { color: var(--rose-gold); }
.contact-row span:first-child { font-size: 1rem; flex-shrink: 0; }

.footer-bottom {
  text-align: center; padding: 24px;
  background: #ffffff;
  color: var(--text-light); font-size: 0.82rem;
  border-top: 1px solid #e8d5c4;
}

/* ===== FLOATING WA BUTTON ===== */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green-wa); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  transition: var(--transition); animation: waPop 0.6s 1.5s both;
}
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,0.6); }
@keyframes waPop { from { transform: scale(0); opacity:0; } to { transform: scale(1); opacity:1; } }

/* ===== SCROLL ANIMATIONS ===== */
.anim {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .card-featured { transform: scale(1); }
  .card-featured:hover { transform: translateY(-8px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { min-height: 280px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(253,246,239,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 24px; gap: 4px;
    box-shadow: 0 8px 32px rgba(44,26,14,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links li a.nav-link { color: var(--text-dark); padding: 12px 16px; display: block; border-radius: 8px; }
  .hamburger { display: flex; }
  .hero-stats { gap: 20px; }
  .stat-div  { height: 30px; }
  .why-grid  { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-emoji-stack span { width: 80px; height: 80px; font-size: 3rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats   { flex-direction: column; gap: 16px; }
  .stat-div     { display: none; }
  h1 { font-size: 2.2rem; }
}
