/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream-light: #FCF4E6;
  --cream:       #F5E6D3;
  --gold:        #D4AF37;
  --gold-dark:   #A88A23;
  --choco-dark:  #2C1810;
  --choco:       #3E2723;
  --white:       #FFFFFF;
  --text-muted:  #7A5C44;

  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Poppins', system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 12px 48px rgba(44, 24, 16, 0.18);

  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream-light);
  color: var(--choco-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(252, 244, 230, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--choco-dark);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--gold-dark); }

.nav-cta {
  background: var(--gold);
  color: var(--choco-dark) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--choco-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===================== HERO ===================== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--cream-light) 60%, var(--cream) 100%);
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--choco-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--choco-dark);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}

.store-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--choco-dark);
  background: var(--choco-dark);
  color: var(--white);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.store-badge:hover { background: var(--choco); border-color: var(--choco); transform: translateY(-2px); }

.store-badge-text small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.75;
  line-height: 1;
}
.store-badge-text strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.phone-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===================== AUDIENCE ===================== */
.audience {
  padding: 100px 0;
  background: var(--cream);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  color: var(--choco-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 56px;
}

.section-title--light { color: var(--cream-light); }
.section-subtitle--light { color: rgba(252, 244, 230, 0.75); }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.audience-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.audience-icon {
  width: 68px; height: 68px;
  background: var(--cream-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-dark);
}

.audience-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--choco-dark);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream);
  font-size: 0.93rem;
  color: var(--text-muted);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ===================== HOW IT WORKS ===================== */
.how-it-works {
  padding: 100px 0;
  background: var(--cream-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-dark));
  opacity: 0.4;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--choco-dark);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin-bottom: 16px;
  color: var(--gold-dark);
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--choco-dark);
}

.step p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================== SCREENSHOTS ===================== */
.screenshots {
  padding: 100px 0;
  background: var(--choco);
}

.screenshots-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
}

.screenshot-item {
  text-align: center;
  flex: 1;
  max-width: 220px;
  transition: transform var(--transition);
}
.screenshot-item:hover { transform: translateY(-8px); }

.screenshot-item img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.screenshot-item--featured {
  max-width: 260px;
  transform: translateY(-20px);
}
.screenshot-item--featured:hover { transform: translateY(-28px); }

.screenshot-item p {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(252, 244, 230, 0.65);
  font-weight: 500;
}

/* ===================== NOTIFY ===================== */
.notify {
  padding: 100px 0;
  background: var(--cream-light);
}

.notify-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}

.notify-icon img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow);
}

.notify-card h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--choco-dark);
}

.notify-card > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group input {
  padding: 14px 18px;
  border: 2px solid var(--cream);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--choco-dark);
  background: var(--cream-light);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus { border-color: var(--gold); }
.form-group input::placeholder { color: var(--text-muted); opacity: 0.7; }

.btn-primary {
  padding: 15px 28px;
  background: var(--gold);
  color: var(--choco-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 4px;
}

.notify-success {
  color: var(--choco-dark);
}
.notify-success svg { color: var(--gold-dark); margin: 0 auto 16px; }
.notify-success h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.notify-success p { color: var(--text-muted); }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--choco-dark);
  color: var(--cream);
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.footer-logo img { height: 32px; width: auto; opacity: 0.9; }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(252, 244, 230, 0.6);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(252, 244, 230, 0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(252, 244, 230, 0.1);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(252, 244, 230, 0.4); }

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--cream-light);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .store-badges { justify-content: center; }
  .hero-image { order: -1; }
  .phone-mockup { width: 200px; }

  .audience-grid { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }

  .screenshots-grid { flex-direction: column; align-items: center; }
  .screenshot-item, .screenshot-item--featured { max-width: 240px; transform: none !important; }

  .notify-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .store-badges { flex-direction: column; align-items: stretch; }
  .store-badge { justify-content: center; }
}
