/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:   #F97316;
  --orange-d: #ea6005;
  --yellow:   #EAB308;
  --cream:    #FFFAF0;
  --cream-d:  #FFF3D6;
  --ink:      #1F2937;
  --ink-mid:  #4B5563;
  --ink-soft: #9CA3AF;
  --white:    #ffffff;
  --shadow-sm: 0 1px 4px rgba(31,41,55,.06), 0 4px 16px rgba(31,41,55,.07);
  --shadow-md: 0 4px 12px rgba(31,41,55,.08), 0 12px 40px rgba(31,41,55,.10);
  --radius:   14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── Typography ── */
.label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: 1.1rem; font-weight: 700; }

/* ── Layout ── */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
section { padding: 96px 0; }

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 20px;
  height: 64px;
  display: flex; align-items: center;
  background: rgba(255,250,240,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249,115,22,.10);
  transition: box-shadow .25s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(31,41,55,.08); }
.nav-inner { max-width: 1120px; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; }
.nav-logo-text { font-size: 1.2rem; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 9px 18px; border-radius: 10px;
  font-size: .85rem; font-weight: 700;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--orange-d); transform: translateY(-1px); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font); font-size: .95rem; font-weight: 700;
  border: none; cursor: pointer;
  padding: 14px 24px; border-radius: var(--radius);
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--ink); color: var(--white); box-shadow: 0 4px 14px rgba(31,41,55,.25); }
.btn-primary:hover { background: #111827; box-shadow: 0 6px 20px rgba(31,41,55,.35); }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid rgba(31,41,55,.18); }
.btn-outline:hover { border-color: var(--ink); background: rgba(31,41,55,.04); }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 4px 14px rgba(249,115,22,.35); }
.btn-orange:hover { background: var(--orange-d); box-shadow: 0 6px 20px rgba(249,115,22,.45); }

/* ── Hero ── */
#hero {
  min-height: 100svh;
  padding-top: 64px;
  display: flex; align-items: center;
  background: var(--cream);
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.13) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,179,8,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-text { display: flex; flex-direction: column; gap: 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.10); border: 1px solid rgba(249,115,22,.25);
  color: var(--orange); font-size: .8rem; font-weight: 700;
  padding: 6px 14px; border-radius: 100px; width: fit-content;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.8); } }
.hero-sub { font-size: 1.15rem; color: var(--ink-mid); max-width: 440px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--white);
  padding: 13px 22px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 600;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s;
  box-shadow: 0 4px 14px rgba(31,41,55,.22);
}
.hero-store-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(31,41,55,.30); }
.hero-store-btn svg { flex-shrink: 0; }
.hero-store-sub { font-size: .68rem; font-weight: 500; opacity: .7; display: block; line-height: 1; }
.hero-store-name { font-size: 1rem; font-weight: 800; display: block; }
.hero-note { font-size: .82rem; color: var(--ink-soft); }

/* Phone Mockup */
.phone-wrap {
  display: flex; justify-content: center; align-items: flex-end;
  position: relative;
}
.phone-float {
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(249,115,22,.20)) drop-shadow(0 10px 30px rgba(31,41,55,.15));
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(.5deg); }
  50% { transform: translateY(-14px) rotate(-.5deg); }
}

/* ── How it works ── */
#how { background: var(--white); }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .label { margin-bottom: 12px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.steps::before {
  content: '';
  position: absolute; top: 44px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 20px);
  opacity: .35;
}
.step-card {
  background: var(--white);
  border: 1.5px solid rgba(31,41,55,.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute; top: -14px; left: 28px;
  background: var(--orange); color: var(--white);
  font-size: .75rem; font-weight: 800;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.step-icon svg { width: 28px; height: 28px; }
.step-card p { font-size: .9rem; color: var(--ink-mid); line-height: 1.6; }

/* ── Benefits ── */
#benefits { background: var(--cream); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s, box-shadow .25s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(234,179,8,.10));
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card p { font-size: .9rem; color: var(--ink-mid); }

/* ── Cafe block ── */
#cafe {
  background: var(--ink);
  color: var(--white);
}
.cafe-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cafe-text { display: flex; flex-direction: column; gap: 24px; }
.cafe-text .label { color: var(--yellow); }
.cafe-text h2 { color: var(--white); }
.cafe-text p { color: rgba(255,255,255,.65); font-size: 1rem; }
.cafe-perks { display: flex; flex-direction: column; gap: 14px; }
.cafe-perk {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.cafe-perk-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(249,115,22,.2);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.cafe-perk-icon svg { width: 18px; height: 18px; }
.cafe-perk h4 { font-size: .95rem; font-weight: 700; color: var(--white); }
.cafe-perk p { font-size: .83rem; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ── Stats ── */
#stats { background: var(--orange); color: var(--white); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-num { font-size: clamp(3rem, 6vw, 5rem); font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.stat-label { font-size: .95rem; opacity: .8; margin-top: 8px; }
.stat-divider { width: 1px; background: rgba(255,255,255,.2); align-self: stretch; display: none; }

/* ── FAQ ── */
#faq { background: var(--cream); }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item { border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--white);
  padding: 20px 24px;
  font-size: .95rem; font-weight: 700; color: var(--ink);
  border: none; cursor: pointer; text-align: left; font-family: var(--font);
  border: 1.5px solid rgba(31,41,55,.06);
  border-radius: var(--radius);
  transition: background .18s, border-color .18s;
}
.faq-q:hover { background: rgba(249,115,22,.04); border-color: rgba(249,115,22,.2); }
.faq-q.open { border-radius: var(--radius) var(--radius) 0 0; border-color: rgba(249,115,22,.25); background: rgba(249,115,22,.04); }
.faq-chevron { flex-shrink: 0; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  background: rgba(249,115,22,.03);
  border: 1.5px solid rgba(249,115,22,.2);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0 24px;
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s;
  font-size: .9rem; color: var(--ink-mid); line-height: 1.7;
}
.faq-a.open { max-height: 300px; padding: 16px 24px 20px; }

/* ── Footer ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 60px 0 40px;
}
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-text { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.footer-brand p { font-size: .85rem; line-height: 1.6; max-width: 240px; }
.footer-col h4 { font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: .85rem; }
.footer-col a { color: rgba(255,255,255,.55); transition: color .18s; }
.footer-col a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; }
.footer-contact-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; opacity: .5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.4); transition: color .18s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.footer-entity { font-size: .75rem; color: rgba(255,255,255,.3); margin-top: 6px; }

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ── Legal pages ── */
.legal-page { max-width: 740px; margin: 0 auto; padding: 100px 20px 80px; }
.legal-page h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-date { font-size: .85rem; color: var(--ink-soft); margin-bottom: 48px; display: block; }
.legal-page h2 { font-size: 1.1rem; font-weight: 700; margin: 36px 0 10px; }
.legal-page p { font-size: .95rem; color: var(--ink-mid); line-height: 1.75; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; margin-bottom: 12px; }
.legal-page li { font-size: .95rem; color: var(--ink-mid); line-height: 1.75; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-weight: 600; font-size: .9rem; margin-bottom: 40px; }
.legal-back:hover { opacity: .8; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { align-items: center; }
  .hero-sub { text-align: center; }
  .phone-wrap { order: -1; }
  .cafe-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  section { padding: 72px 0; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-store-btn { justify-content: center; }
  h1 { font-size: 2.2rem; }
}

@media (max-width: 375px) {
  .container { padding: 0 16px; }
  .hero-store-btn { padding: 12px 18px; }
}
