/* ============================================
   Garden Match — Marketing Website Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --green-dark: #0d2818;
  --green-deep: #1a472a;
  --green-mid: #2d6a4f;
  --green-bright: #00b894;
  --green-light: #55efc4;
  --green-lime: #8bc34a;
  --gold: #ffd93d;
  --gold-dark: #f0c000;
  --white: #ffffff;
  --white-soft: #f0f7f4;
  --gray-light: #e8f5e9;
  --text: #1a1a2e;
  --text-muted: #4a6741;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --font: 'Fredoka', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--green-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Sections --- */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 12px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-bright), var(--green-lime));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span { color: var(--green-deep); }
.nav.scrolled .nav-logo span { color: var(--green-deep); }
.nav:not(.scrolled) .nav-logo span { color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, 0.85); }
.nav:not(.scrolled) .nav-links a:hover { color: var(--gold); }
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--green-bright); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255, 217, 61, 0.4); }

/* Nav Toggle (Mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; border-radius: 2px;
  transition: var(--transition);
}
.nav:not(.scrolled) .nav-toggle span { background: var(--white); }
.nav.scrolled .nav-toggle span { background: var(--text); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 40, 24, 0.97);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 120px 24px 80px;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-deep) 40%, #1a5c35 70%, var(--green-mid) 100%);
  overflow: hidden;
}
.hero-bg-tiles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-tiles .float-tile {
  position: absolute;
  font-size: 2rem;
  opacity: 0.12;
  animation: floatTile linear infinite;
  will-change: transform;
}
@keyframes floatTile {
  0% { transform: translateY(110vh) rotate(0deg); }
  100% { transform: translateY(-10vh) rotate(360deg); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 217, 61, 0.15);
  border: 1px solid rgba(255, 217, 61, 0.3);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 4px 24px rgba(255, 217, 61, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 217, 61, 0.5);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.btn-icon { font-size: 0.85em; }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-size: 1.2rem;
  color: var(--gold);
}
.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

/* Phone Mockup */
.hero-phone {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.phone-frame {
  width: 280px;
  background: #111;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.phone-screen {
  background: linear-gradient(180deg, var(--green-deep), #0d3320);
  border-radius: 26px;
  padding: 16px 12px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  padding: 0 4px;
}
.phone-board {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 3px;
  flex: 1;
  align-content: center;
}
.phone-board .tile {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: default;
}
.phone-board .tile.matched {
  animation: tileMatch 0.4s ease forwards;
}
@keyframes tileMatch {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); }
  100% { transform: scale(0); opacity: 0; }
}
.phone-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  padding: 0 4px;
}

/* --- TILE STRIP MARQUEE --- */
.tile-strip {
  background: var(--green-deep);
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.tile-strip-inner {
  display: flex;
  gap: 40px;
  animation: marquee 12s linear infinite;
  width: max-content;
}
.tile-strip-inner span { font-size: 2rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- FEATURES --- */
.features { background: var(--white-soft); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--green-bright);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-card h3 {
  font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; color: var(--green-deep);
}
.feature-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* --- GAMEPLAY --- */
.gameplay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gameplay-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 32px; }
.gameplay-steps { display: flex; flex-direction: column; gap: 24px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-lime));
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.step h4 { font-size: 1.05rem; margin-bottom: 4px; color: var(--green-deep); }
.step p { font-size: 0.9rem; color: var(--text-muted); }

/* Match Demo */
.match-demo {
  background: linear-gradient(160deg, var(--green-deep), #0d3320);
  border-radius: var(--radius-lg);
  padding: 40px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.demo-board {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 6px; width: 100%; max-width: 300px;
}
.demo-board .tile {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}


/* --- WORLDS --- */
.worlds { background: var(--green-dark); color: var(--white); }
.worlds .section-header p { color: rgba(255, 255, 255, 0.6); }
.worlds .section-tag { background: rgba(255, 255, 255, 0.1); color: var(--gold); }
.worlds-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.world-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.world-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.world-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.world-emoji { font-size: 3rem; margin-bottom: 16px; }
.world-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.world-card p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); line-height: 1.5; margin-bottom: 16px; }
.world-meta {
  display: flex; justify-content: center; gap: 12px;
}
.world-meta span {
  font-size: 0.75rem; background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px; border-radius: 100px; color: rgba(255, 255, 255, 0.7);
}

/* --- GARDEN --- */
.garden { background: var(--white-soft); }
.garden-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.garden-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.garden-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 12px;
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.garden-item:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow);
  border-color: var(--green-bright);
}
.garden-item span { font-size: 2rem; display: block; margin-bottom: 8px; }
.garden-item small { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.garden-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.garden-text > p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.garden-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.garden-perks li { font-size: 0.95rem; color: var(--text-muted); }

/* --- BOOSTERS --- */
.boosters { background: var(--white); }
.boosters-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.booster-card {
  background: linear-gradient(160deg, var(--green-deep), #1a5c35);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
}
.booster-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 40, 20, 0.3);
}
.booster-emoji { font-size: 3rem; margin-bottom: 16px; }
.booster-card h4 { font-size: 1.2rem; margin-bottom: 8px; }
.booster-card p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 16px; line-height: 1.5; }
.booster-cost {
  display: inline-block;
  background: rgba(255, 217, 61, 0.15);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* --- SEASON PASS --- */
.season { background: var(--white-soft); }
.season-banner {
  background: linear-gradient(135deg, #ff6b81, #ff9ff3, #feca57, #48dbfb);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.season-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.season-banner h2 { font-size: 2rem; margin-bottom: 12px; }
.season-banner p { max-width: 560px; margin: 0 auto 24px; font-size: 1rem; color: rgba(255, 255, 255, 0.9); }
.season-tiers { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.tier {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.tier small { font-size: 0.7rem; color: rgba(255, 255, 255, 0.8); }

/* --- COLLECTIONS & DAILY --- */
.collections { background: var(--white); }
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.duo-card {
  background: var(--white-soft);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--gray-light);
}
.duo-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--green-deep); }
.duo-card p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.collection-row { display: flex; flex-direction: column; gap: 10px; }
.coll-item { font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.coll-item small { font-size: 0.85rem; color: var(--text-muted); }
.daily-row { display: flex; gap: 8px; flex-wrap: wrap; }
.day {
  flex: 1; min-width: 60px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--gray-light);
}
.day span { display: block; font-size: 1.3rem; margin: 4px 0; }
.day small { display: block; font-size: 0.65rem; }
.day.highlight {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold-dark);
}

/* --- FAQ --- */
.faq { background: var(--white-soft); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] { border-color: var(--green-bright); box-shadow: 0 4px 20px rgba(0, 184, 148, 0.1); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green-deep);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green-bright);
  transition: var(--transition);
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { padding: 0 24px 20px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* --- DOWNLOAD CTA --- */
.download { background: var(--white); }
.download-box {
  background: linear-gradient(160deg, var(--green-dark), var(--green-deep), #1a5c35);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.download-bg-emojis span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: 2.5rem;
  opacity: 0.15;
  animation: floatEmoji var(--d) ease-in-out infinite alternate;
}
@keyframes floatEmoji {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-20px) rotate(15deg); }
}
.download-box h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 12px; position: relative; }
.download-box p { max-width: 480px; margin: 0 auto 32px; color: rgba(255, 255, 255, 0.75); font-size: 1.05rem; position: relative; }
.download-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--white);
  color: var(--text);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
.store-btn small { display: block; font-size: 0.65rem; color: var(--text-muted); text-align: left; }
.store-btn strong { display: block; font-size: 1rem; text-align: left; }

/* --- FOOTER --- */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.5); line-height: 1.6; }
.footer-col h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; color: var(--gold); }
.footer-col a {
  display: block; font-size: 0.85rem; color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px; transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.35); }

/* --- SCROLL ANIMATIONS (data-aos) --- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding: 140px 24px 60px; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .gameplay-grid { grid-template-columns: 1fr; gap: 40px; }
  .garden-split { grid-template-columns: 1fr; gap: 40px; }
  .garden-visual { order: 2; }
  .garden-text { order: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .worlds-carousel { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .duo-grid { grid-template-columns: 1fr; }
  .garden-grid { grid-template-columns: repeat(3, 1fr); }
  .phone-frame { width: 240px; }
  .phone-screen { min-height: 360px; }
  .phone-board .tile { font-size: 0.8rem; }
  .download-box { padding: 48px 24px; }
  .season-banner { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
  .garden-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .daily-row { gap: 4px; }
  .day { min-width: 44px; padding: 8px 4px; }
  .store-btn { padding: 12px 20px; }
  .download-buttons { flex-direction: column; align-items: center; }
}