@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --forest: #0d3d2b;
  --leaf: #1a6b47;
  --lime: #4caf50;
  --amber: #f5a623;
  --sun: #ffd166;
  --cream: #fdf8f0;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-light: #5a6a60;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(13,61,43,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253,248,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,61,43,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 40px; height: 40px; border-radius: 10px; }
.nav-logo span { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--forest); font-weight: 700; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-light); font-weight: 600; font-size: 0.95rem; transition: color .2s; }
.nav-links a:hover { color: var(--leaf); }
.nav-cta {
  background: var(--forest); color: white; padding: 10px 24px;
  border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(13,61,43,0.3); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 80px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(76,175,80,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.15); color: var(--sun);
  padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
  border: 1px solid rgba(245,166,35,0.3);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  color: white; line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero h1 span { color: var(--sun); }
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  line-height: 1.7; max-width: 480px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.3s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: var(--forest);
  padding: 16px 32px; border-radius: 50px;
  font-weight: 800; font-size: 1rem; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 30px rgba(245,166,35,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(245,166,35,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); color: white;
  padding: 16px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 1;
  animation: fadeUp 0.8s ease 0.2s both;
}
.phone-mockup {
  position: relative; width: 280px;
}
.phone-frame {
  background: #111;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
}
.phone-screen {
  border-radius: 30px; overflow: hidden;
  aspect-ratio: 9/19;
  background: #1a1a1a;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.floating-badge {
  position: absolute; background: white; border-radius: 16px;
  padding: 12px 18px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  font-weight: 700; font-size: 0.85rem; color: var(--forest);
}
.floating-badge.top-left { top: 40px; left: -80px; animation: float 3s ease-in-out infinite; }
.floating-badge.bottom-right { bottom: 60px; right: -80px; animation: float 3s ease-in-out 1.5s infinite; }
.floating-badge .badge-icon { font-size: 1.4rem; }

/* ── STATS ── */
.stats {
  background: white; padding: 60px 80px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  border-bottom: 1px solid rgba(13,61,43,0.08);
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900; color: var(--forest);
}
.stat-label { color: var(--text-light); font-weight: 600; font-size: 0.9rem; margin-top: 4px; }

/* ── SECTIONS ── */
section { padding: 100px 80px; }
.section-label {
  display: inline-block;
  background: rgba(26,107,71,0.1); color: var(--leaf);
  padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--forest); line-height: 1.15;
  max-width: 600px;
}
.section-title span { color: var(--leaf); }
.section-sub {
  color: var(--text-light); font-size: 1.05rem; line-height: 1.7;
  max-width: 560px; margin-top: 16px;
}

/* ── FEATURES ── */
.features { background: var(--cream); }
.features-header { text-align: center; margin-bottom: 70px; }
.features-header .section-title { max-width: 100%; }
.features-header .section-sub { max-width: 600px; margin: 16px auto 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: white; border-radius: var(--radius); padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(13,61,43,0.06);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--leaf), var(--lime));
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--leaf), var(--lime));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 24px;
}
.feature-card h3 { font-size: 1.2rem; color: var(--forest); margin-bottom: 12px; font-weight: 800; }
.feature-card p { color: var(--text-light); line-height: 1.65; font-size: 0.95rem; }

/* ── SCREENSHOTS ── */
.screenshots { background: var(--forest); overflow: hidden; }
.screenshots .section-label { background: rgba(245,166,35,0.15); color: var(--sun); }
.screenshots .section-title { color: white; }
.screenshots .section-sub { color: rgba(255,255,255,0.65); }
.screenshots-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; }
.screenshots-text { flex: 0 0 380px; }
.screenshots-scroll {
  display: flex; gap: 20px; overflow-x: auto;
  scrollbar-width: none; padding-bottom: 20px; flex: 1;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }
.screenshot-item {
  flex: 0 0 200px;
  background: #1a1a1a; border-radius: 28px; overflow: hidden;
  padding: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.screenshot-item img {
  width: 100%; border-radius: 22px; display: block;
  aspect-ratio: 9/19; object-fit: cover; background: #222;
}
.screenshots-cta { margin-top: 40px; }

/* ── AUDIENCE ── */
.audience { background: white; }
.audience-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.audience-cards { display: grid; gap: 20px; }
.audience-card {
  background: var(--cream); border-radius: var(--radius); padding: 28px;
  display: flex; align-items: flex-start; gap: 20px;
  transition: transform .2s;
}
.audience-card:hover { transform: translateX(6px); }
.audience-card-icon {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--amber), var(--sun));
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.audience-card h4 { font-size: 1rem; color: var(--forest); margin-bottom: 6px; font-weight: 800; }
.audience-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ── DOWNLOAD ── */
.download {
  background: linear-gradient(135deg, var(--leaf) 0%, var(--forest) 100%);
  text-align: center; padding: 100px 80px; position: relative; overflow: hidden;
}
.download::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.download h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: white; margin-bottom: 20px;
}
.download p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.store-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: white; color: var(--forest);
  padding: 14px 28px; border-radius: 14px;
  text-decoration: none; font-weight: 700;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.store-btn svg { width: 28px; height: 28px; }
.store-btn-text small { display: block; font-size: 0.7rem; font-weight: 600; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.05em; }
.store-btn-text strong { font-size: 1.05rem; }
.free-badge {
  display: inline-block; background: rgba(255,255,255,0.15); color: white;
  padding: 10px 24px; border-radius: 50px; font-size: 0.9rem; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.25); margin-top: 20px;
}

/* ── FOOTER ── */
footer {
  background: var(--forest); color: rgba(255,255,255,0.6);
  padding: 60px 80px 40px;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 50px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px; }
.footer-brand p { line-height: 1.65; font-size: 0.9rem; max-width: 320px; }
.footer-col h4 { color: white; font-weight: 800; margin-bottom: 20px; font-size: 0.95rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color .2s; }
.footer-col a:hover { color: var(--sun); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }

/* ── INNER PAGES ── */
.page-hero {
  background: var(--forest); padding: 140px 80px 80px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(76,175,80,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem); color: white;
  position: relative; z-index: 1;
}
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 16px; font-size: 1.1rem; position: relative; z-index: 1; }
.page-content { max-width: 860px; margin: 0 auto; padding: 80px 40px; }
.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--forest); margin: 48px 0 16px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.page-content ul { padding-left: 24px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.page-content ul li { margin-bottom: 8px; }
.page-content a { color: var(--leaf); }
.contact-card {
  background: var(--forest); border-radius: var(--radius); padding: 40px;
  display: flex; align-items: center; gap: 24px; margin-top: 48px;
}
.contact-icon { font-size: 2.5rem; }
.contact-card h3 { color: white; font-size: 1.2rem; margin-bottom: 6px; }
.contact-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.contact-card a { color: var(--sun); }
.faq-item { border-bottom: 1px solid rgba(13,61,43,0.1); padding: 28px 0; }
.faq-item h3 { color: var(--forest); font-size: 1.05rem; margin-bottom: 12px; }
.faq-item p { color: var(--text-light); line-height: 1.7; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 40px 60px; text-align: center; }
  .hero p { max-width: 100%; }
  .hero-visual { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); padding: 40px; }
  section { padding: 70px 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .screenshots-inner { flex-direction: column; }
  .audience-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .page-hero { padding: 120px 40px 60px; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 24px 60px; }
  .stats { padding: 40px 24px; }
  section { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  footer { padding: 50px 24px 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .download { padding: 70px 24px; }
  .page-hero { padding: 100px 24px 50px; }
  .page-content { padding: 50px 24px; }
}