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

:root {
  --brand:     #D85A30;
  --brand-dark:#B84820;
  --dark:      #1C1C1E;
  --bg:        #FAFAF8;
  --text:      #1C1C1E;
  --muted:     #6B7280;
  --border:    #E5E7EB;
  --radius:    16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 10px 20px; border-radius: 100px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: all .15s; cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary  { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover { border-color: #9CA3AF; }
.btn-ghost    { background: transparent; color: var(--brand); }
.btn-ghost:hover { background: #FFF4F0; }
.btn-lg       { padding: 14px 28px; font-size: 16px; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,248,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner  { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo       { font-size: 20px; font-weight: 900; text-decoration: none; color: var(--text); display: flex; align-items: center; }
.nav-logo-img  { height: 28px; width: auto; display: block; }
.footer-logo-img { height: 24px; width: auto; display: block; margin-bottom: 8px; }
.nav-links  { display: flex; align-items: center; gap: 12px; }
.nav-links a:not(.btn) {
  font-size: 14px; font-weight: 600; color: var(--muted);
  text-decoration: none; transition: color .15s;
}
.nav-links a:not(.btn):hover { color: var(--text); }

/* ── Hero ── */
.hero { padding: 80px 0 60px; overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FFF4F0; color: var(--brand);
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 700; margin-bottom: 20px;
}
h1 { font-size: clamp(40px, 5vw, 64px); font-weight: 900; line-height: 1.05; margin-bottom: 20px; }
.accent { color: var(--brand); }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 480px; margin-bottom: 32px; line-height: 1.7; }
.hero-cta  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; align-items: center; gap: 0; }
.stat { text-align: center; padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-num   { display: block; font-size: 22px; font-weight: 900; color: var(--text); }
.stat-label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ── Phone mockup ── */
.hero-phone { display: flex; justify-content: center; }
.phone-shell {
  width: 280px; background: var(--dark);
  border-radius: 40px; padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.08);
}
.phone-screen {
  background: #F5F2EE; border-radius: 30px; overflow: hidden;
  min-height: 500px; display: flex; flex-direction: column;
}
.mock-header {
  background: #1C1C1E; padding: 14px 14px 10px;
}
.mock-logo { color: #fff; font-weight: 900; font-size: 14px; display: block; margin-bottom: 10px; }
.mock-tabs { display: flex; gap: 6px; }
.mock-tab  { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.4); padding: 4px 8px; border-radius: 100px; }
.mock-tab.active { background: var(--brand); color: #fff; }
.mock-card {
  margin: 10px 10px 0; background: #fff;
  border-radius: 16px; padding: 12px; display: flex; gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.mock-card-2 { opacity: .7; }
.mock-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--brand);
  color: #fff; font-weight: 900; font-size: 14px;
  display: flex; align-items: center; justify-content: center; shrink: 0;
  flex-shrink: 0;
}
.mock-avatar-2 { background: #6366F1; }
.mock-card-body { flex: 1; min-width: 0; }
.mock-card-top  { display: flex; justify-content: space-between; margin-bottom: 8px; }
.mock-user  { font-size: 11px; font-weight: 800; color: #1C1C1E; }
.mock-time  { font-size: 10px; color: #9CA3AF; }
.mock-product { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.mock-emoji { font-size: 22px; }
.mock-product-name { font-size: 11px; font-weight: 700; color: #1C1C1E; }
.mock-venue        { font-size: 10px; color: #9CA3AF; margin-top: 1px; }
.mock-stars { font-size: 13px; color: #F59E0B; margin-bottom: 4px; }
.star-empty { opacity: .25; }
.mock-note  { font-size: 10px; color: #6B7280; font-style: italic; }
.mock-nav {
  margin-top: auto; background: #1C1C1E;
  display: flex; justify-content: space-around; padding: 10px 0 14px;
  font-size: 16px;
}
.mock-nav-cta {
  width: 34px; height: 34px; background: var(--brand); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; font-weight: 700; margin-top: -4px;
}

/* ── Features ── */
.features { padding: 100px 0; background: #fff; }
.section-label {
  font-size: 12px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 12px;
}
.features h2, .how h2, .cta-section h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 900; margin-bottom: 48px;
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.feature-card {
  padding: 28px; background: var(--bg); border-radius: var(--radius);
  border: 1px solid var(--border);
}
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── How it works ── */
.how { padding: 100px 0; }
.steps {
  display: flex; align-items: flex-start; gap: 0;
}
.step { flex: 1; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.step p   { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 220px; }
.step-arrow {
  flex-shrink: 0; font-size: 28px; color: var(--border);
  padding: 0 24px; margin-top: 10px;
}

/* ── CTA section ── */
.cta-section {
  background: var(--dark); padding: 100px 0; text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-emoji { font-size: 56px; margin-bottom: 24px; }
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.55); font-size: 16px; margin-bottom: 36px; }

/* ── Footer ── */
.footer { background: #111; padding: 60px 0 0; }
.footer-inner {
  display: flex; justify-content: space-between; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 8px; max-width: 220px; }
.footer-links { display: flex; gap: 48px; }
.footer-col  { display: flex; flex-direction: column; gap: 10px; }
.footer-heading { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 24px; font-size: 12px; color: rgba(255,255,255,.25);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-phone { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; gap: 32px; }
  .step-arrow { display: none; }
  .footer-inner { flex-direction: column; }
  .hide-mobile { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
