/* =============================================
   H&R FRUITS — style.css
   Dark luxury theme · Organic meets editorial
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,700&family=Cabinet+Grotesk:wght@400;500;700;800&display=swap');

/* ── VARIABLES ── */
:root {
  --bg:        #0b1a0f;
  --bg2:       #0f2414;
  --surface:   #152b1a;
  --surface2:  #1c3822;
  --border:    rgba(255,255,255,0.07);
  --green:     #3db862;
  --lime:      #8fd95b;
  --yellow:    #f5c842;
  --orange:    #f07830;
  --red:       #e84040;
  --wa:        #25d366;
  --white:     #ffffff;
  --off:       rgba(255,255,255,0.72);
  --muted:     rgba(255,255,255,0.4);
  --radius:    18px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Cabinet Grotesk', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
strong { font-weight: 700; }

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 14px; height: 14px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 40px; height: 40px; background: var(--yellow);
}

/* ── FRUIT CANVAS (background) ── */
#fruitCanvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 500;
  transition: background 0.4s, backdrop-filter 0.4s;
}
#navbar.scrolled {
  background: rgba(11,26,15,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  max-width: 1300px; margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.7rem; font-weight: 900;
  color: var(--yellow); letter-spacing: 0.5px;
}
.nav-logo span { color: var(--lime); }
.nav-logo em { font-style: italic; font-weight: 300; }
.nav-links { display: flex; gap: 32px; }
.nav-link {
  font-size: 0.88rem; font-weight: 500;
  color: var(--off); letter-spacing: 0.5px;
  position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--lime);
  transition: width 0.3s;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-wa {
  display: flex; align-items: center; gap: 8px;
  background: var(--wa); color: #fff;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem;
  transition: all 0.25s;
  box-shadow: 0 0 20px rgba(37,211,102,0.3);
}
.nav-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,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(--white); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 0;
}
.mobile-menu a {
  padding: 16px 28px; font-size: 1rem; font-weight: 500;
  color: var(--off); border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: #fff; background: var(--surface); }
.mobile-wa-btn {
  margin: 16px 28px; padding: 14px 24px !important;
  background: var(--wa) !important; color: #fff !important;
  border-radius: 50px; text-align: center; font-weight: 700 !important;
  border-bottom: none !important;
}
.mobile-menu.open { display: flex; }

/* ── REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }
[data-delay="7"] { transition-delay: 0.7s; }
[data-delay="8"] { transition-delay: 0.8s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding: 130px 48px 80px;
  overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.5;
}
.hero-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(61,184,98,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,184,98,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 680px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--lime);
  margin-bottom: 28px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(143,217,91,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(143,217,91,0); }
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900; line-height: 1.02;
  color: #fff; margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-h1 .hl {
  color: var(--yellow);
  position: relative; display: inline-block;
}
.hero-h1 .hl::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  border-radius: 2px;
  animation: underlineGrow 1.2s ease 0.8s both;
}
@keyframes underlineGrow { from{transform:scaleX(0);transform-origin:left} to{transform:scaleX(1)} }
.hero-h1 em {
  font-style: italic; font-weight: 300;
  color: var(--off); font-size: 90%;
}
.hero-p {
  font-size: 1.1rem; color: var(--off);
  line-height: 1.8; margin-bottom: 24px;
  max-width: 500px; font-weight: 400;
}
.hero-p strong { color: #fff; }
.hero-notice {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(245,200,66,0.08);
  border: 1px dashed rgba(245,200,66,0.35);
  color: var(--yellow); padding: 12px 22px; border-radius: 50px;
  font-size: 0.84rem; font-weight: 500;
  margin-bottom: 32px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow); flex-shrink: 0;
  animation: blink 1.5s infinite;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa); color: #fff;
  padding: 15px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.97rem;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.5); }
.btn-wa.inline { padding: 12px 26px; font-size: 0.88rem; margin-top: 24px; display: inline-flex; }
.btn-wa.large { padding: 20px 44px; font-size: 1.1rem; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.25); color: var(--off);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 500; font-size: 0.94rem;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.06); }

/* Big hero fruit */
.hero-big-fruit {
  position: absolute; right: 6%; top: 50%;
  transform: translateY(-50%);
  font-size: clamp(160px, 22vw, 280px);
  z-index: 5; user-select: none;
  animation: floatFruit 6s ease-in-out infinite;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
}
@keyframes floatFruit {
  0%,100% { transform: translateY(-50%) rotate(-4deg); }
  50% { transform: translateY(calc(-50% - 18px)) rotate(4deg); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px; left: 48px; z-index: 10;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.75rem; color: var(--muted);
  letter-spacing: 2px; text-transform: uppercase;
}
.scroll-line {
  width: 60px; height: 1px; background: var(--muted);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--lime);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%{left:-100%} 100%{left:100%} }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 0; position: relative; z-index: 10;
}
.ticker { display: flex; overflow: hidden; }
.ticker-track {
  display: flex; align-items: center; gap: 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ti {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 14px 22px;
  font-size: 0.84rem; font-weight: 600; color: rgba(255,255,255,0.8);
}
.ti s { opacity: 0.4; font-weight: 400; text-decoration: line-through; }
.ti b { color: var(--lime); font-size: 0.95rem; }
.ti em { color: var(--yellow); font-style: normal; font-size: 0.76rem; font-weight: 800; }
.ts { color: var(--lime); padding: 0 8px; font-size: 0.7rem; }

/* ── ABOUT ── */
.about-section {
  padding: 100px 48px;
  position: relative; z-index: 10;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.about-wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.s-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--lime); margin-bottom: 16px;
}
.s-tag.light { color: var(--yellow); }
.s-heading {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 24px;
}
.s-heading em { font-style: italic; font-weight: 300; color: var(--lime); }
.s-heading.light em { color: var(--yellow); }
.about-left p {
  color: var(--off); line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem;
}
.about-left p strong { color: #fff; }
.promise-list {
  list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px;
}
.promise-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.94rem; color: var(--off);
  padding: 12px 18px;
  background: var(--surface);
  border-radius: 12px; border: 1px solid var(--border);
  transition: all 0.25s;
}
.promise-list li:hover {
  background: var(--surface2); border-color: rgba(143,217,91,0.2);
  color: #fff;
}
.promise-list li span { font-size: 1.3rem; }

/* About card stack */
.about-right { position: relative; height: 420px; }
.acard-back {
  position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
  background: var(--surface2);
  border: 1px solid rgba(143,217,91,0.2);
  border-radius: 24px; padding: 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transform: rotate(3deg);
}
.acard-fruit { font-size: 4rem; display: block; margin-bottom: 16px; }
.acard-back p { font-size: 1.2rem; font-style: italic; color: var(--off); line-height: 1.5; }
.acard-back small { color: var(--muted); font-size: 0.8rem; margin-top: 8px; display: block; }
.acard-front {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid rgba(143,217,91,0.25);
  border-radius: 24px; padding: 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.astats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px;
}
.astat {
  background: var(--bg); border-radius: 14px; padding: 18px 16px; text-align: center;
  border: 1px solid var(--border);
}
.an {
  display: block;
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 900;
  color: var(--yellow);
}
.al { font-size: 0.72rem; color: var(--muted); margin-top: 4px; display: block; }
.apromise {
  background: rgba(143,217,91,0.08); border: 1px solid rgba(143,217,91,0.2);
  border-radius: 14px; padding: 16px 18px;
  font-size: 0.85rem; color: var(--off); line-height: 1.65;
}
.apromise strong { color: var(--lime); }

/* ── FRUITS SECTION ── */
.fruits-section {
  padding: 100px 48px;
  position: relative; z-index: 10;
  background: linear-gradient(180deg, var(--bg2) 0%, #0e2219 50%, var(--bg) 100%);
}
.fruits-wrap { max-width: 1240px; margin: 0 auto; }
.fruits-hdr { text-align: center; margin-bottom: 16px; }
.fruits-note {
  text-align: center; margin-bottom: 52px;
  background: rgba(245,200,66,0.08); border: 1px solid rgba(245,200,66,0.2);
  border-radius: 12px; padding: 12px 24px; display: inline-block;
  font-size: 0.83rem; color: rgba(245,200,66,0.85); font-weight: 500;
  max-width: 600px;
}
.fruits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.fc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s cubic-bezier(.2,.8,.4,1), box-shadow 0.35s, border-color 0.35s;
}
.fc:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5);
  border-color: rgba(143,217,91,0.3);
}
.fc.featured {
  border-color: rgba(245,200,66,0.4);
  box-shadow: 0 0 30px rgba(245,200,66,0.1);
}
.fc-img {
  position: relative; height: 180px; overflow: hidden;
  background: var(--bg);
}
.fc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(.2,.8,.4,1);
}
.fc:hover .fc-img img { transform: scale(1.1); }
.fc-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(11,26,15,0.85); color: rgba(255,255,255,0.85);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 5px 11px; border-radius: 50px; backdrop-filter: blur(4px);
}
.fc-best {
  position: absolute; top: 12px; right: 12px;
  background: var(--yellow); color: var(--bg);
  font-size: 0.66rem; font-weight: 800;
  padding: 5px 11px; border-radius: 50px;
}
.fc-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.fc-body h3 {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.fc-body p { font-size: 0.8rem; color: var(--muted); line-height: 1.55; flex: 1; margin-bottom: 14px; }
.fc-pr {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg); border-radius: 12px; padding: 11px 14px;
  border: 1px solid var(--border);
}
.fc-ours {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 900;
  color: var(--lime);
}
.fc-ours small { font-family: var(--font-body); font-size: 0.72rem; font-weight: 400; color: var(--muted); }
.fc-mkt {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.fc-mkt s { font-size: 0.78rem; color: var(--muted); }
.sp {
  background: var(--red); color: white;
  font-size: 0.66rem; font-weight: 800;
  padding: 3px 9px; border-radius: 50px;
}
.sp.big { background: var(--orange); font-size: 0.72rem; }

/* ── HOW ── */
.how-section {
  padding: 100px 48px;
  position: relative; z-index: 10;
  background: var(--bg);
}
.how-wrap { max-width: 1100px; margin: 0 auto; }
.how-hdr { text-align: center; margin-bottom: 60px; }
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.how-steps::before {
  content: '';
  position: absolute; top: 42px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}
.hs { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.hs-circle {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(143,217,91,0.3);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 0 0 0 rgba(143,217,91,0.3);
}
.hs:hover .hs-circle {
  background: var(--surface2);
  border-color: var(--lime);
  box-shadow: 0 0 0 10px rgba(143,217,91,0.06);
}
.hs-emoji { font-size: 2rem; position: relative; z-index: 1; }
.hs-num {
  position: absolute; top: -6px; right: -6px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--lime); color: var(--bg);
  font-size: 0.64rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.hs-line {
  display: none;
}
.hs h4 {
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.hs p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }
.hs p strong { color: var(--off); }

/* ── TIMINGS ── */
.timings-section {
  padding: 100px 48px;
  position: relative; z-index: 10;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.timings-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.timings-left .s-heading { margin-bottom: 20px; }
.timings-left p { color: var(--off); line-height: 1.8; margin-bottom: 10px; font-size: 0.96rem; }
.timings-left p strong { color: #fff; }
.timings-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.tc {
  border-radius: 16px; padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.tc:hover { transform: translateY(-3px); }
.tc-green { background: rgba(61,184,98,0.12); border-color: rgba(61,184,98,0.2); }
.tc-dark  { background: var(--surface); }
.tc-wa    { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.2); }
.tc-loc   { background: var(--surface); }
.tc-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.tc-lbl { font-size: 0.68rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--lime); margin-bottom: 4px; }
.tc-val { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.tc-note { font-size: 0.76rem; color: var(--muted); line-height: 1.5; }

/* ── CTA SECTION ── */
.cta-section {
  position: relative; overflow: hidden;
  min-height: 600px; display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, #1a5c2a 0%, var(--bg) 70%);
}
#ctaCanvas {
  position: absolute; inset: 0; z-index: 0;
}
.cta-inner {
  position: relative; z-index: 10; padding: 80px 40px;
}
.cta-ring {
  font-size: 2.2rem; margin-bottom: 32px;
  display: block; letter-spacing: 10px;
  animation: ringRotate 12s linear infinite;
}
@keyframes ringRotate {
  0% { letter-spacing: 8px; }
  50% { letter-spacing: 20px; }
  100% { letter-spacing: 8px; }
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 18px;
}
.cta-inner h2 em { font-style: italic; font-weight: 300; color: var(--lime); }
.cta-inner p { color: var(--off); font-size: 1.05rem; margin-bottom: 36px; }

/* ── FOOTER ── */
footer {
  background: #060f08;
  border-top: 1px solid var(--border);
  padding: 48px;
  position: relative; z-index: 10;
}
.footer-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.f-logo {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900;
  color: var(--yellow); margin-bottom: 16px;
}
.f-logo span { color: var(--lime); }
.f-logo em { font-style: italic; font-weight: 300; }
.footer-inner p { color: var(--muted); font-size: 0.85rem; margin-bottom: 6px; }
.f-copy { margin-top: 24px !important; font-size: 0.78rem !important; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 16px 24px; }
  .hero { padding: 100px 28px 80px; }
  .hero-big-fruit { right: -5%; font-size: 140px; opacity: 0.35; top: 40%; }
  .hero-h1 { font-size: clamp(2.6rem, 8vw, 4rem); }
  .about-wrap, .timings-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-right { height: 380px; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 30px; }
  .how-steps::before { display: none; }
  .fruits-section, .about-section, .how-section, .timings-section { padding: 72px 24px; }
  .timings-right { grid-template-columns: 1fr; }
  .scroll-hint { left: 28px; }
}
@media (max-width: 600px) {
  .hero { padding: 90px 20px 70px; }
  .hero-big-fruit { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .fruits-grid { grid-template-columns: 1fr; }
  .fruits-section, .about-section, .how-section, .timings-section { padding: 60px 18px; }
  .hero-btns { flex-direction: column; }
  .btn-wa, .btn-ghost { justify-content: center; }
}
.footer {
  background: #111;
  color: #eee;
  padding: 40px 20px 20px;
  font-family: 'DM Sans', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: #ff4d4d;
}

.tagline {
  margin-top: 8px;
  font-size: 14px;
  color: #bbb;
}

.footer-info p,
.footer-links a {
  font-size: 14px;
  margin: 6px 0;
  color: #ccc;
}

.footer-links h4 {
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff4d4d;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 25px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.note {
  margin-top: 5px;
}