/* ═══════════════════════════════════════════════
   EAT EASY — styles.css
   ═══════════════════════════════════════════════ */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Caveat:wght@600&display=swap');

/* ── TOKENS ── */
:root {
  --brand:       #ff7a00;
  --brand-deep:  #d95f00;
  --brand-light: #ffb366;
  --brand-pale:  #fff3e6;
  --dark:        #1a0a00;
  --dark2:       #2e1500;
  --text:        #3d1f00;
  --muted:       #8a6240;
  --white:       #fffdf9;
  --cream:       #fdf5ec;
  --card-bg:     rgba(255,253,249,0.92);
  --glass:       rgba(255,122,0,0.08);
  --shadow:      0 24px 64px rgba(255,122,0,0.18);
  --radius:      28px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR (desktop) ── */
.cursor {
  width: 14px; height: 14px;
  background: var(--brand); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: multiply;
  transition: transform .15s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid var(--brand); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  opacity: .5;
  transition: transform .4s cubic-bezier(.2,1,.3,1), opacity .3s;
}
@media (max-width: 900px){ .cursor,.cursor-ring{ display:none; } }

/* ── ANIMATED BLOBS ── */
.blob-bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.blob    { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .18;
           animation: blobFloat 12s ease-in-out infinite alternate; }
.blob1   { width: 600px; height: 600px; background: var(--brand); top:-200px; right:-100px; animation-duration:14s; }
.blob2   { width: 400px; height: 400px; background: #ff4500; bottom:-100px; left:-100px; animation-duration:11s; animation-delay:-4s; }
.blob3   { width: 300px; height: 300px; background: #ffb300; top:40%; left:30%; animation-duration:16s; animation-delay:-7s; }
@keyframes blobFloat { from{transform:translate(0,0) scale(1)} to{transform:translate(40px,60px) scale(1.12)} }

/* ═══════════════════════════════════════════════
   NAV — reduced height, legal links only on right
   ═══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 10px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,253,249,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,122,0,0.12);
  transition: box-shadow .3s;
  min-height: 56px;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(255,122,0,0.12); }

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--brand); letter-spacing: -1px;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.nav-logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.nav-logo span { color: var(--dark); }

/* Centre: nav links */
.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links a {
  font-size: .88rem; font-weight: 500; color: var(--text);
  text-decoration: none; position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--brand);
  transition: width .3s;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a:hover::after { width: 100%; }

/* Right: legal links */
.nav-legal {
  display: flex; gap: 18px; align-items: center;
  list-style: none;
}
.nav-legal a {
  font-size: .78rem; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .2s;
}
.nav-legal a:hover { color: var(--brand); }
.nav-legal .nav-cta {
  background: var(--brand); color: #fff;
  border-radius: 50px; padding: 9px 22px;
  font-size: .82rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.nav-legal .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,122,0,.4); }

/* Mobile hamburger */
.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; color: var(--text);
}

/* ═══════════════════════════════════════════════
   HERO — full-screen background image + dark dim
   ═══════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 60vh;
   align-items: center;
  overflow: hidden;
}

/* Background image via Unsplash (royalty-free food spread) */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&q=80');
  background-size: cover; background-position: center;
  filter: brightness(.55);
}
/* Extra dark gradient on the LEFT to highlight text */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20,6,0,.82) 0%,
    rgba(20,6,0,.6)  40%,
    rgba(0,0,0,.1)   75%,
    transparent      100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 140px 48px 80px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,122,0,.18); border: 1px solid rgba(255,179,102,.4);
  color: var(--brand-light); border-radius: 50px;
  padding: 8px 18px; font-size: .8rem; font-weight: 600;
  margin-bottom: 28px;
  animation: fadeSlideUp .7s ease both;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 7px; height: 7px; background: var(--brand-light);
  border-radius: 50%; animation: pulse 1.5s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 900; line-height: 1.08; color: #fff;
  animation: fadeSlideUp .7s .1s ease both;
}
.hero h1 em { font-style: italic; color: var(--brand-light); display: block; }

.hero-sub {
  font-size: 1.08rem; color: rgba(255,253,249,.78); line-height: 1.75;
  margin: 24px 0 40px;
  animation: fadeSlideUp .7s .2s ease both;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeSlideUp .7s .3s ease both;
}
.btn-primary {
  background: var(--brand); color: #fff; border: none; border-radius: 50px;
  padding: 15px 34px; font-family: 'DM Sans', sans-serif; font-size: .98rem; font-weight: 600;
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,122,0,.5); }

.btn-secondary {
  background: rgba(255,255,255,.08); color: #fff;
  border: 2px solid rgba(255,255,255,.35); border-radius: 50px;
  padding: 15px 34px; font-family: 'DM Sans', sans-serif; font-size: .98rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { border-color: var(--brand-light); color: var(--brand-light); background: rgba(255,122,0,.15); }

/* ── STATS STRIP ── */
.stats-strip {
  position: relative; z-index: 2;
  background: var(--brand); padding: 18px 0; overflow: hidden;
}
.stats-strip-inner {
  display: flex; gap: 60px; align-items: center;
  animation: marquee 22s linear infinite; white-space: nowrap;
}
.stat-item { display: flex; align-items: center; gap: 10px; }
.stat-num  { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: #fff; }
.stat-label{ font-size: .82rem; color: rgba(255,255,255,.8); font-weight: 500; }
.stat-sep  { color: rgba(255,255,255,.3); font-size: 1.4rem; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════════ */
section { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-tag {
  display: inline-block; font-family: 'Caveat', cursive;
  font-size: 1.08rem; color: var(--brand); letter-spacing: 1px; margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 900;
  color: var(--dark); line-height: 1.15;
}
.section-sub { font-size: 1.02rem; color: var(--muted); line-height: 1.7; margin-top: 12px; }

/* ═══════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════ */
#features { padding: 96px 0; }
.features-header { text-align: center; margin-bottom: 64px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.feature-card {
  background: var(--card-bg); border: 1px solid rgba(255,122,0,.1);
  border-radius: var(--radius); padding: 44px 36px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: default; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(255,122,0,.14); border-color: rgba(255,122,0,.25); }

.feature-icon {
  width: 56px; height: 56px; margin-bottom: 24px;
  background: var(--brand-pale); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); flex-shrink: 0;
}
.feature-icon svg { width: 28px; height: 28px; }

.feature-title { font-family: 'Playfair Display', serif; font-size: 1.38rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.feature-desc  { font-size: .95rem; color: var(--muted); line-height: 1.7; }
.feature-badge {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-pale); color: var(--brand-deep);
  border-radius: 50px; padding: 6px 16px; font-size: .76rem; font-weight: 600;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════ */
#how { padding: 96px 0; background: var(--dark); }
#how .section-title { color: var(--white); }
#how .section-sub   { color: rgba(255,253,249,.6); }
#how .section-tag   { color: var(--brand-light); }

.steps-wrap { display: flex; gap: 0; margin-top: 64px; position: relative; }
.steps-line {
  position: absolute; top: 40px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--brand-light), transparent);
  opacity: .35;
}
.step { flex: 1; text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-num {
  width: 78px; height: 78px; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; color: #fff;
  box-shadow: 0 8px 28px rgba(255,122,0,.4); transition: transform .3s;
}
.step:hover .step-num { transform: scale(1.1) rotate(5deg); }
.step-icon { color: var(--brand-light); margin-bottom: 12px; display: flex; justify-content: center; }
.step-icon svg { width: 30px; height: 30px; }
.step-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc  { font-size: .88rem; color: rgba(255,253,249,.52); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   DEALS
   ═══════════════════════════════════════════════ */
#deals { padding: 96px 0; }
.deals-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.deals-visual { display: flex; flex-direction: column; gap: 20px; }

.deal-card-main {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  border-radius: var(--radius); padding: 44px 40px; color: #fff;
  position: relative; overflow: hidden;
}
.deal-card-main::before {
  content: ''; position: absolute; top:-60px; right:-60px;
  width: 220px; height: 220px; background: rgba(255,255,255,.1); border-radius: 50%;
  pointer-events: none;
}
.deal-card-main::after {
  content: ''; position: absolute; bottom:-50px; left:-40px;
  width: 160px; height: 160px; background: rgba(0,0,0,.07); border-radius: 50%;
  pointer-events: none;
}
.deal-pct { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 900; line-height: 1; position: relative; z-index:1; }
.deal-pct span { font-size: 1.6rem; }
.deal-card-title { font-size: 1.25rem; font-weight: 600; margin-top: 8px; position: relative; z-index:1; }
.deal-card-sub   { opacity: .8; margin-top: 4px; font-size: .9rem; position: relative; z-index:1; }

/* Tags sit BELOW the card now — no more absolute overflow */
.deal-tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; padding: 4px 0; }
.deal-tag {
  background: var(--card-bg); border-radius: 50px; padding: 10px 18px;
  font-size: .8rem; font-weight: 600; color: var(--brand-deep);
  box-shadow: 0 4px 16px rgba(0,0,0,.08); border: 1px solid rgba(255,122,0,.18);
  display: flex; align-items: center; gap: 6px;
  animation: tagFloat 4s ease-in-out infinite alternate;
}
.deal-tag:nth-child(2){ animation-delay:-1s; }
.deal-tag:nth-child(3){ animation-delay:-2s; }
@keyframes tagFloat { from{transform:translateY(0)} to{transform:translateY(-6px)} }
.deal-tag svg { width: 14px; height: 14px; }

.deals-list { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.deal-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px;
  border-radius: 16px; background: white; border: 1px solid rgba(255,122,0,.1);
  transition: transform .2s, box-shadow .2s;
}
.deal-item:hover { transform: translateX(6px); box-shadow: -4px 0 0 var(--brand), 0 8px 24px rgba(255,122,0,.08); }
.deal-item-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-pale); display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.deal-item-icon svg { width: 22px; height: 22px; }
.deal-item-text h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.deal-item-text p  { font-size: .86rem; color: var(--muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════
   DOWNLOAD
   ═══════════════════════════════════════════════ */
#download {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #1a0800 100%);
  text-align: center; position: relative; overflow: hidden;
}
#download::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,122,0,.2) 0%, transparent 70%);
}
#download .section-title { color: var(--white); }
#download .section-sub   { color: rgba(255,253,249,.6); max-width: 500px; margin: 12px auto 0; }
#download .section-tag   { color: var(--brand-light); }

.store-btns { display: flex; gap: 20px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 18px; padding: 16px 28px; color: #fff; text-decoration: none;
  transition: all .3s; backdrop-filter: blur(8px);
}
.store-btn:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(255,122,0,.4); }
.store-btn svg { width: 32px; height: 32px; flex-shrink: 0; }
.store-btn-text .sub  { font-size: .7rem; opacity: .7; display: block; }
.store-btn-text .name { font-size: 1.02rem; font-weight: 700; display: block; }

/* ═══════════════════════════════════════════════
   MOBILE APP SHOWCASE  — image slideshow
   ═══════════════════════════════════════════════ */
#mobile-showcase { padding: 96px 0; background: var(--cream); }
#mobile-showcase .section-title { color: var(--dark); }
.showcase-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.showcase-text  { }
.showcase-features { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.showcase-feat {
  display: flex; gap: 14px; align-items: flex-start;
  background: white; border-radius: 16px; padding: 16px 20px;
  border: 1px solid rgba(255,122,0,.1); transition: transform .2s;
}
.showcase-feat:hover { transform: translateX(6px); }
.showcase-feat-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  background: var(--brand-pale); display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.showcase-feat-icon svg { width: 20px; height: 20px; }
.showcase-feat h4 { font-family: 'Playfair Display', serif; font-size: .98rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.showcase-feat p  { font-size: .84rem; color: var(--muted); line-height: 1.5; }

/* Phone + slideshow */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-body {
  width: 250px; background: #111; border-radius: 44px;
  border: 6px solid #2a2a2a; overflow: hidden; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.45), 0 0 0 1px #333;
  animation: phoneSway 7s ease-in-out infinite alternate;
}
@keyframes phoneSway { from{transform:rotate(-2.5deg)} to{transform:rotate(2.5deg) translateY(-14px)} }
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 24px; background: #111; border-radius: 0 0 18px 18px; z-index: 10;
}

/* Slideshow inside phone */
.phone-slideshow { width: 100%; height: 520px; position: relative; overflow: hidden; }
.phone-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .8s ease;
}
.phone-slide.active { opacity: 1; }
.phone-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(20,6,0,.75) 100%);
}
.phone-slide-label {
  position: absolute; bottom: 20px; left: 12px; right: 12px;
  color: #fff; text-align: center;
}
.phone-slide-label .meal-name  { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; }
.phone-slide-label .meal-price { font-size: .8rem; color: var(--brand-light); margin-top: 2px; }
.phone-slide-label .meal-time  {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--brand); color: #fff; border-radius: 50px;
  padding: 3px 10px; font-size: .72rem; font-weight: 600; margin-top: 6px;
}
.phone-slide-label .meal-time svg { width: 11px; height: 11px; }

.phone-dots {
  position: absolute; bottom: 5px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px; z-index: 11;
}
.phone-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.4); transition: background .3s, transform .3s; cursor: pointer;
}
.phone-dot.active { background: var(--brand); transform: scale(1.3); }

/* Glow behind phone */
.phone-glow {
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,122,0,.3) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════ */
#reviews { padding: 96px 0; }
.reviews-header { text-align: center; margin-bottom: 60px; }
.reviews-track-wrap { overflow: hidden; }
.reviews-track {
  display: flex; gap: 24px;
  animation: reviewScroll 28s linear infinite; width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.review-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 34px 30px; width: 320px; flex-shrink: 0;
  border: 1px solid rgba(255,122,0,.1);
  box-shadow: 0 8px 32px rgba(255,122,0,.06);
  transition: transform .3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-stars { display: flex; gap: 3px; color: #f59e0b; margin-bottom: 12px; }
.review-stars svg { width: 16px; height: 16px; fill: #f59e0b; }
.review-text { font-size: .95rem; color: var(--text); line-height: 1.7; font-style: italic; }
.review-author { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.review-avatar svg { width: 20px; height: 20px; }
.review-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.review-loc  { font-size: .76rem; color: var(--muted); }

/* ═══════════════════════════════════════════════
   LEGAL
   ═══════════════════════════════════════════════ */
#legal { padding: 96px 0; background: var(--dark); }
#legal .section-title { color: var(--white); text-align: center; }
#legal .section-tag   { display: block; text-align: center; }
.legal-nav { display: flex; gap: 10px; justify-content: center; margin: 36px 0 0; flex-wrap: wrap; }
.legal-tab {
  padding: 9px 22px; border-radius: 50px; font-size: .86rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
  border: 2px solid rgba(255,122,0,.25); background: transparent; color: rgba(255,253,249,.55);
  display: flex; align-items: center; gap: 7px;
}
.legal-tab svg { width: 15px; height: 15px; }
.legal-tab.active,.legal-tab:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.legal-content {
  background: rgba(255,253,249,.05); border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  padding: 48px; margin-top: 32px;
  color: rgba(255,253,249,.72); display: none;
}
.legal-content.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.legal-content h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--white); margin: 26px 0 10px; }
.legal-content h3:first-child { margin-top: 0; }
.legal-content p  { font-size: .93rem; line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 18px; margin-bottom: 12px; }
.legal-content li { font-size: .93rem; line-height: 1.7; margin-bottom: 5px; }
.legal-content a  { color: var(--brand-light); }

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
#contact { padding: 96px 0; text-align: center; }
.contact-inner {
  background: linear-gradient(135deg, var(--brand-pale), #fff);
  border-radius: var(--radius); padding: 72px;
  border: 1px solid rgba(255,122,0,.15);
}
.contact-email {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand); color: #fff; text-decoration: none;
  padding: 15px 30px; border-radius: 50px; font-size: .98rem; font-weight: 600;
  margin-top: 32px; transition: transform .2s, box-shadow .2s;
}
.contact-email:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,122,0,.4); }
.contact-email svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer { background: var(--dark); padding: 56px 48px 28px; color: rgba(255,253,249,.48); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 40px; }
.footer-brand .nav-logo { color: var(--brand); margin-bottom: 12px; }
.footer-brand p { font-size: .86rem; max-width: 280px; line-height: 1.6; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h5 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,253,249,.65); margin-bottom: 16px; }
.footer-col a  { display: block; font-size: .86rem; color: rgba(255,253,249,.48); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--brand-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,253,249,.38); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--brand-light); }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-legal .nav-legal-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 120px 24px 64px; }
  .hero h1 { font-size: clamp(2.4rem,8vw,3.4rem); }
  .hero-sub { font-size: .97rem; }

  .features-grid  { grid-template-columns: 1fr; }
  .deals-inner    { grid-template-columns: 1fr; }
  .showcase-inner { grid-template-columns: 1fr; }
  .showcase-inner .showcase-text { order: 2; }
  .showcase-inner .phone-wrap    { order: 1; }

  .steps-wrap   { flex-direction: column; gap: 40px; }
  .steps-line   { display: none; }
  .container    { padding: 0 20px; }
  .contact-inner{ padding: 40px 22px; }
  .footer-links { flex-direction: column; gap: 28px; }
  .legal-content{ padding: 28px 18px; }
  .legal-tab    { padding: 8px 14px; font-size: .78rem; }

  .phone-body { width: 200px; }
  .phone-slideshow { height: 420px; }
}

@media (max-width: 600px) {
  .hero-btns { flex-direction: column; }
  .btn-primary,.btn-secondary { justify-content: center; }
  .store-btns { flex-direction: column; align-items: center; }
}