/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: #FFFDF7;
  color: #1A1207;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, p { margin: 0; }

/* ===== Containers / Utility ===== */
.container-narrow { max-width: 768px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1024px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mb-12 { margin-bottom: 48px; }
.mb-14 { margin-bottom: 56px; }

/* ===== Fade-in animation ===== */
[data-fade] { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
[data-fade].in-view { opacity: 1; transform: translateY(0); }

/* ===== Floating WhatsApp button ===== */
.float-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  opacity: 0; transform: scale(.9) translateY(16px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.float-btn.visible { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.float-btn .float-ping {
  position: absolute; inset: 0; border-radius: 9999px; background: #25D366;
  opacity: .4; animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
.float-link {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; font-weight: 700; font-size: 14px;
  padding: 14px 20px; border-radius: 9999px;
  box-shadow: 0 0 24px 6px rgba(37,211,102,0.4), 0 10px 25px rgba(0,0,0,0.15);
  transition: background .2s, transform .2s;
}
.float-link:hover { background: #1ebe5e; transform: scale(1.05); }

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: transparent; transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 1024px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 8px; }
.nav-logo { width: 36px; height: 36px; border-radius: 9999px; object-fit: cover; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.nav-title { font-weight: 800; font-size: 18px; color: #7B3F00; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: none; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: #7B3F00; transition: color .2s;
}
.nav-phone:hover { color: #5C3D11; }
@media (min-width: 640px) { .nav-phone { display: flex; } }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; font-weight: 700; font-size: 14px;
  padding: 10px 16px; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: #1ebe5e; transform: scale(1.05); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  padding: 96px 24px 80px;
  background: linear-gradient(135deg, #FFF8EC 0%, #FFFDF7 50%, #FFF3D6 100%);
}
.hero-blob { position: absolute; border-radius: 9999px; filter: blur(48px); pointer-events: none; }
.hero-blob-1 { top: -80px; right: -80px; width: 400px; height: 400px; background: rgba(245,158,11,0.10); }
.hero-blob-2 { bottom: -60px; left: -60px; width: 300px; height: 300px; background: rgba(123,63,0,0.08); }
.hero-inner { position: relative; max-width: 768px; margin: 0 auto; text-align: center; }
.hero-logo-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.hero-logo {
  width: 80px; height: 80px; border-radius: 9999px; object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  outline: 4px solid rgba(245,158,11,0.30); outline-offset: 0;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,211,102,0.10); border: 1px solid rgba(37,211,102,0.30);
  color: #166534; font-size: 14px; font-weight: 600;
  padding: 8px 16px; border-radius: 9999px; margin-bottom: 24px;
}
.hero-pill-dot { width: 8px; height: 8px; border-radius: 9999px; background: #25D366; animation: pulse 2s ease-in-out infinite; }
.hero-title { font-size: clamp(36px, 5vw, 48px); font-weight: 800; color: #1A1207; line-height: 1.1; margin-bottom: 16px; }
.hero-title-accent { color: #7B3F00; }
.hero-subtitle { font-size: 18px; color: rgba(92,61,17,0.80); margin-bottom: 12px; max-width: 576px; margin-left: auto; margin-right: auto; }
.hero-desc { font-size: 16px; color: #6B7280; margin-bottom: 40px; max-width: 512px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; margin-bottom: 24px; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.hero-trust { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px; font-size: 14px; color: #6B7280; }
.trust-item { display: inline-flex; align-items: center; gap: 6px; }
.trust-check { color: #25D366; font-weight: 700; }

/* ===== Hero CTA (big pulsing) ===== */
.hero-cta-wrap { position: relative; display: inline-block; }
.hero-cta-ping {
  position: absolute; inset: 0; border-radius: 16px; background: #25D366; opacity: .3;
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}
.hero-cta {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff; font-weight: 800; font-size: 20px;
  padding: 20px 40px; border-radius: 16px;
  box-shadow: 0 0 32px 8px rgba(37,211,102,0.35), 0 25px 50px -12px rgba(0,0,0,0.25);
  transition: background .2s, transform .2s;
}
.hero-cta:hover { background: #1ebe5e; transform: scale(1.05); }
.hero-cta:active { transform: scale(.95); }

/* ===== Phone pill ===== */
.phone-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 2px solid #25D366; color: #166534;
  font-weight: 700; font-size: 16px; padding: 12px 24px; border-radius: 16px;
  transition: background .2s, transform .2s;
}
.phone-pill:hover { background: #f0fdf4; transform: scale(1.05); }

/* ===== Big CTA ===== */
.big-cta-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; }
.big-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff; font-weight: 700; font-size: 18px;
  padding: 16px 32px; border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border-bottom: 4px solid #1aad4f;
  transition: background .2s, transform .2s;
}
.big-cta:hover { background: #20c05c; transform: scale(1.05); }
.big-cta:active { transform: scale(.95); }
.big-cta-sub { font-size: 12px; color: #6B7280; margin: 0; }

/* ===== Inline CTA ===== */
.inline-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; font-weight: 700; font-size: 16px;
  padding: 14px 28px; border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  transition: background .2s, transform .2s;
}
.inline-cta:hover { background: #1ebe5e; transform: scale(1.05); }
.inline-cta:active { transform: scale(.95); }

/* ===== Social proof bar ===== */
.social-bar { background: #1A1207; color: #fff; padding: 12px 24px; }
.social-bar-inner {
  max-width: 896px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 24px; font-size: 14px; font-weight: 500;
}
.social-bar-inner > span { display: inline-flex; align-items: center; gap: 8px; }
.social-dot-green { color: #25D366; }
.social-stars { color: #F59E0B; }
.social-sep { color: rgba(255,255,255,0.20); display: none; }
@media (min-width: 640px) { .social-sep { display: inline; } }

/* ===== Sections ===== */
.section-white { padding: 80px 24px; background: #fff; border-top: 1px solid #F3EDE0; }
.section-cream { padding: 80px 24px; background: #FFFDF7; }
.section-amber { padding: 64px 24px; background: #FFF8EC; border-top: 1px solid rgba(245,158,11,0.20); }

.eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #F59E0B; }
.section-title { margin-top: 12px; font-size: 30px; font-weight: 800; color: #1A1207; line-height: 1.25; }
.section-desc { margin-top: 16px; color: #6B7280; font-size: 16px; max-width: 512px; margin-left: auto; margin-right: auto; }

/* ===== Problem card ===== */
.problem-card {
  display: inline-block; background: #FFF8EC; border: 1px solid rgba(245,158,11,0.30);
  border-radius: 16px; padding: 24px 32px; text-align: left;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05); max-width: 448px; width: 100%;
}
.problem-title { color: #7B3F00; font-weight: 600; font-size: 18px; margin-bottom: 12px; }
.problem-list { display: flex; flex-direction: column; gap: 8px; color: #6B7280; font-size: 14px; margin-bottom: 20px; }
.problem-list li { display: flex; align-items: center; gap: 8px; }
.cross { color: #f87171; font-weight: 700; }
.problem-divider { border-top: 1px solid rgba(245,158,11,0.20); padding-top: 16px; }
.problem-solution { color: #166534; font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 8px; margin: 0; }
.check-green { color: #25D366; }

/* ===== Interrupt banner ===== */
.interrupt { position: relative; overflow: hidden; padding: 40px 24px; background: #25D366; }
.interrupt-blob { position: absolute; border-radius: 9999px; background: rgba(255,255,255,0.10); filter: blur(32px); pointer-events: none; }
.interrupt-blob-1 { top: -40px; right: -40px; width: 192px; height: 192px; }
.interrupt-blob-2 { bottom: -40px; left: -40px; width: 192px; height: 192px; }
.interrupt-inner {
  position: relative; max-width: 768px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 24px; text-align: center;
}
@media (min-width: 640px) {
  .interrupt-inner { flex-direction: row; text-align: left; }
}
.interrupt-text { color: #fff; font-weight: 800; font-size: 20px; line-height: 1.3; }
.interrupt-sub { color: rgba(255,255,255,0.80); font-size: 14px; margin-top: 4px; }
.interrupt-btn {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  background: #fff; color: #166534; font-weight: 800; font-size: 16px;
  padding: 14px 28px; border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: background .2s, transform .2s;
}
.interrupt-btn:hover { background: #f0fdf4; transform: scale(1.05); }
.interrupt-btn:active { transform: scale(.95); }

/* ===== Categories ===== */
.categories-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
.category-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid #F3EDE0; border-radius: 16px; padding: 24px;
  transition: background .2s, border-color .2s, box-shadow .2s;
  height: 100%; cursor: pointer;
}
.category-card:hover {
  background: #F0FDF4; border-color: rgba(37,211,102,0.40);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.category-icon { font-size: 30px; margin-bottom: 12px; }
.category-label { font-weight: 700; color: #1A1207; font-size: 16px; margin-bottom: 4px; }
.category-sub { font-size: 14px; color: #6B7280; margin-bottom: 16px; }
.category-action {
  margin-top: auto; display: flex; align-items: center; gap: 6px;
  color: #25D366; font-size: 14px; font-weight: 700;
  opacity: 0; transition: opacity .2s;
}
.category-card:hover .category-action { opacity: 1; }

/* ===== Steps ===== */
.steps-grid {
  display: grid; gap: 32px; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; background: #7B3F00; color: #fff;
  font-weight: 800; font-size: 20px;
  border-radius: 9999px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.step-title { font-weight: 700; color: #1A1207; font-size: 16px; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: #6B7280; }

/* ===== High demand ===== */
.demand-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.40);
  color: #92400E; font-weight: 600; font-size: 14px;
  padding: 8px 16px; border-radius: 9999px; margin-bottom: 24px;
}
.demand-pill-dot { width: 8px; height: 8px; border-radius: 9999px; background: #F59E0B; animation: pulse 2s ease-in-out infinite; }
.demand-title { font-size: 24px; font-weight: 800; color: #1A1207; margin-bottom: 24px; }
.demand-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 16px; }
.demand-tag {
  background: #fff; border: 1px solid rgba(245,158,11,0.30); color: #7B3F00;
  font-weight: 500; font-size: 14px; padding: 8px 16px; border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.demand-note { font-size: 12px; color: #9CA3AF; margin-bottom: 32px; }

/* ===== Why us / Reasons ===== */
.reasons-grid {
  display: grid; gap: 16px; grid-template-columns: 1fr;
  max-width: 672px; margin: 0 auto 40px;
}
@media (min-width: 640px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
.reason {
  display: flex; align-items: flex-start; gap: 12px;
  background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 12px;
  padding: 16px 20px;
}
.reason-check { color: #16A34A; font-weight: 700; font-size: 18px; margin-top: 2px; }
.reason-text { color: #1A1207; font-size: 14px; font-weight: 500; }

/* ===== Audiences ===== */
.audiences-grid {
  display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr);
  max-width: 672px; margin: 0 auto 40px;
}
@media (min-width: 640px) { .audiences-grid { grid-template-columns: repeat(4, 1fr); } }
.audience {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: #fff; border: 1px solid #F3EDE0; border-radius: 16px; padding: 24px;
  transition: border-color .2s, box-shadow .2s;
}
.audience:hover { border-color: rgba(37,211,102,0.40); box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.audience-icon { font-size: 30px; margin-bottom: 12px; }
.audience-label { font-size: 14px; font-weight: 600; color: #1A1207; }

/* ===== Delivery ===== */
.delivery-title { margin-top: 12px; font-size: 24px; font-weight: 800; color: #1A1207; margin-bottom: 24px; }
.city-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 24px; }
.city-tag {
  background: #FFF8EC; border: 1px solid rgba(245,158,11,0.25); color: #7B3F00;
  font-size: 14px; font-weight: 500; padding: 6px 16px; border-radius: 9999px;
}
.delivery-note { font-size: 14px; color: #6B7280; margin-bottom: 32px; }

/* ===== Final CTA ===== */
.final-cta { position: relative; overflow: hidden; padding: 96px 24px; background: #7B3F00; }
.final-blob { position: absolute; border-radius: 9999px; filter: blur(48px); pointer-events: none; }
.final-blob-1 { top: -60px; right: -60px; width: 300px; height: 300px; background: rgba(255,255,255,0.05); }
.final-blob-2 { bottom: -60px; left: -60px; width: 300px; height: 300px; background: rgba(245,158,11,0.10); }
.final-inner { position: relative; max-width: 672px; margin: 0 auto; text-align: center; }
.final-eyebrow { color: #FDE68A; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; }
.final-title { font-size: clamp(36px, 5vw, 48px); font-weight: 800; color: #fff; margin-bottom: 20px; line-height: 1.1; }
.final-desc { color: rgba(253,230,138,0.80); font-size: 18px; margin-bottom: 40px; }
.final-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
@media (min-width: 640px) { .final-actions { flex-direction: row; } }
.final-call { color: rgba(255,255,255,0.80); font-weight: 600; font-size: 14px; text-decoration: underline; text-underline-offset: 4px; transition: color .2s; }
.final-call:hover { color: #fff; }

/* ===== Footer ===== */
.footer { padding: 40px 24px; background: #1A1207; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
.footer-logo { width: 36px; height: 36px; border-radius: 9999px; object-fit: cover; }
.footer-title { color: #fff; font-weight: 800; font-size: 18px; }
.footer-trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; font-size: 14px; color: #9CA3AF; margin-bottom: 16px; }
.footer-trust > span { display: inline-flex; align-items: center; gap: 6px; }
.footer-check { color: #25D366; }
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  color: #25D366; font-weight: 700; font-size: 14px; margin-bottom: 16px;
  transition: color .2s;
}
.footer-wa:hover { color: #1ebe5e; }
.footer-copy { font-size: 12px; color: #6B7280; }
