@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,700;0,800;0,900;1,700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --orange: #FF9A5C;
  --orange-light: #FFF0E6;
  --orange-dark: #E8824A;
  --cream: #FAF8F5;
  --cream-dark: #F2EDE6;
  --green: #7FB069;
  --green-light: #EAF3DE;
  --text: #1A1A1A;
  --text-mid: #4B5563;
  --text-muted: #9CA3AF;
  --white: #FFFFFF;
  --border: #F0EBE3;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 56px rgba(0,0,0,0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

*, *::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);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 800;
  color: var(--orange);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo svg { width: 24px; height: 24px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: var(--white);
  border: none; border-radius: 24px;
  padding: 10px 22px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,154,92,0.35); color: white; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 24px 32px; flex-direction: column; gap: 20px; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 600; color: var(--text-mid); }

/* BUTTONS */
.btn-primary {
  background: var(--orange); color: var(--white);
  border: none; border-radius: 32px;
  padding: 16px 32px; font-size: 16px; font-weight: 700;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,154,92,0.4); color: white; }
.btn-secondary {
  background: transparent; color: var(--text-mid);
  border: 1.5px solid var(--border); border-radius: 32px;
  padding: 15px 28px; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; text-decoration: none;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

/* BADGE */
.badge {
  display: inline-block;
  background: var(--orange-light); color: #C45A0A;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px;
  border-radius: 20px; margin-bottom: 16px;
}

/* SECTION */
section { padding: 96px 24px; }
.container { max-width: 1080px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(30px, 4vw, 48px); color: var(--text); margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--text-mid); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* CARDS */
.card {
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 28px; transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* APP IMAGE */
.phone-mockup {
  width: 280px; flex-shrink: 0; position: relative;
}
.phone-notch { display: none; }
.phone-screen {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 56px rgba(0,0,0,0.13);
}
.phone-screen img { width: 100%; height: auto; display: block; }

/* TRUST BADGES */
.trust-row { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.trust-item::before { content: '✓'; color: var(--green); font-weight: 700; }

/* STORE BADGES */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--text); color: var(--white);
  border-radius: 14px; padding: 10px 18px;
  font-size: 13px; font-weight: 600;
  transition: transform 0.15s, opacity 0.15s;
  text-decoration: none;
}
.store-badge:hover { transform: translateY(-2px); opacity: 0.88; color: white; }
.store-badge svg { width: 20px; height: 20px; fill: white; }
.store-badge span { display: flex; flex-direction: column; }
.store-badge .store-sub { font-size: 9px; font-weight: 400; opacity: 0.7; }
.store-badge .store-name { font-size: 14px; font-weight: 700; }

/* FOOTER */
footer {
  background: var(--text); color: rgba(255,255,255,0.7);
  padding: 56px 24px 32px;
}
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand { }
.footer-logo { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 800; color: var(--orange); margin-bottom: 12px; }
.footer-tagline { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.5); max-width: 260px; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-langs { display: flex; gap: 12px; }
.footer-langs a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-langs a:hover { color: var(--orange); }

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* LIVE DOT */
.live-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--green);
  animation: liveblink 1.5s infinite; margin-right: 6px;
}
@keyframes liveblink { 0%,100%{opacity:1;} 50%{opacity:0.25;} }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .phone-mockup { width: 260px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
