:root {
  --bg: #F5EFE2;
  --card: #fff;
  --text: #2A3547;
  --muted: #7a8a8e;
  --accent: #6B8866;
  --navy: #2A3547;
  --border: #D8D2C4;
  --section-y: 120px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--bg); color: var(--text); }
.container { max-width: 1200px; margin-inline: auto; padding-inline: 32px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,239,226,.93); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 80px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.nav-logo-text { font-size: .92rem; font-weight: 800; letter-spacing: -.3px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: .82rem; font-weight: 600; color: var(--muted); text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: flex; gap: 0; border: 1px solid var(--border); border-radius: 7px; overflow: hidden;
}
.lang-btn {
  padding: 5px 11px; font-size: .72rem; font-weight: 700; letter-spacing: .5px;
  cursor: pointer; border: none; background: transparent; color: rgba(42,53,71,.7);
  transition: background .15s, color .15s;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { background: var(--navy); color: #F5EFE2; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px;
}
.store-btn-nav {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  border-radius: 9px; padding: 8px 16px;
  text-decoration: none; font-size: .78rem; font-weight: 600;
  transition: opacity .15s;
  border: 1px solid transparent;
}
.store-btn-nav:hover { opacity: .88; }

/* ── HERO ── */
.hero { padding-block-start: var(--section-y); padding-block-end: 64px; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.hero-eyebrow {
  display: inline-block;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 99px; padding: 5px 16px;
  font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -.5px;
  margin-bottom: 16px; text-wrap: balance;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-size: .95rem; color: color-mix(in srgb, var(--text) 90%, transparent);
  line-height: 1.65; margin-bottom: 32px; max-width: 440px;
}
/* Waitlist form */
.waitlist-form { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.waitlist-input {
  flex: 1; min-width: 220px;
  padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); background: #fff;
  font-size: .9rem; color: var(--text); outline: none;
  transition: border-color .15s;
}
.waitlist-input:focus { border-color: var(--accent); }
.waitlist-input.error { border-color: #c0392b; }
.waitlist-submit {
  padding: 12px 22px; border-radius: 10px;
  background: var(--accent); color: #fff;
  border: none; font-size: .9rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: opacity .15s ease-out;
}
.waitlist-submit:hover { opacity: .88; }
.waitlist-submit:disabled { opacity: .6; cursor: default; }
.waitlist-error { font-size: .8rem; color: #c0392b; margin-top: -12px; margin-bottom: 8px; display: none; }
.waitlist-success {
  font-size: .9rem; color: var(--accent); font-weight: 600;
  padding: 12px 0; display: none;
}

.store-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 10px;
  background: transparent; color: var(--navy);
  border-radius: 10px; padding: 9px 16px;
  text-decoration: none; font-size: .75rem; font-weight: 600;
  transition: opacity .15s; min-width: 150px;
  border: 1.5px solid var(--navy); opacity: .7;
}
.store-btn-text { display: flex; flex-direction: column; }
.store-btn-sub { font-size: .55rem; font-weight: 400; opacity: .65; margin-bottom: 1px; }

/* Phones */
.hero-phones {
  display: flex; gap: 16px; align-items: center; justify-content: center;
}
.phone-frame {
  position: relative; overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(42,53,71,.12);
  box-shadow: 0 24px 64px rgba(42,53,71,.18), 0 4px 12px rgba(42,53,71,.08);
  flex-shrink: 0;
}
.phone-frame img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: top;
}
.phone-main { width: 220px; height: 476px; }
.phone-side { width: 190px; height: 412px; opacity: .85; }

/* ── FEATURES ── */
.features { padding-block: var(--section-y); }
.section-label {
  font-size: .68rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.features h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  margin-bottom: 48px; max-width: 560px; text-wrap: balance;
}
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; grid-auto-rows: 1fr;
}
.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(42,53,71,.05);
  display: flex; flex-direction: column;
}
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}
.feat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feat-card p { font-size: .85rem; color: var(--muted); line-height: 1.55; }

/* ── STATS ── */
.stats { background: var(--navy); color: #F5EFE2; padding-block: 80px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; text-align: center;
}
.stat-num { font-size: 2.6rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-label { font-size: .8rem; opacity: .55; margin-top: 8px; }

/* ── RESTAURATEURS ── */
.restaurant-section { padding-block: var(--section-y); }
.restaurant-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.restaurant-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; text-wrap: balance; }
.restaurant-section p { font-size: .9rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.cta-card { background: var(--navy); border-radius: 20px; padding: 36px 32px; color: #F5EFE2; }
.cta-card .price { font-size: 2.4rem; font-weight: 900; color: var(--accent); line-height: 1; }
.cta-card .price-sub { font-size: .78rem; opacity: .55; margin-bottom: 20px; margin-top: 4px; }
.cta-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.cta-card li { font-size: .84rem; display: flex; align-items: center; gap: 10px; opacity: .85; }
.cta-card li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.btn-accent {
  display: inline-block; background: var(--accent); color: #fff;
  border-radius: 9px; padding: 13px 28px; font-size: .9rem; font-weight: 700;
  text-decoration: none; transition: background .15s;
}
.btn-accent:hover { background: #557055; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding-block: 32px; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.copy { font-size: .75rem; color: var(--muted); }
.flinks { display: flex; gap: 24px; }
.flinks a { font-size: .75rem; color: var(--muted); text-decoration: none; }
.flinks a:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { align-items: center; }
  .hero-sub { max-width: 100%; }
  .store-btns { justify-content: center; }
  .hero-phones { margin-top: 40px; }
  .phone-main { width: 180px; height: 390px; }
  .phone-side { width: 155px; height: 335px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .restaurant-inner { grid-template-columns: 1fr; }
  .stats-grid { gap: 32px; }
}
@media (max-width: 600px) {
  .container { padding-inline: 20px; }
  .nav-inner { padding-inline: 20px; }
  .nav-links { display: none; }
  .hero { padding-block: 64px; }
  .features, .restaurant-section { padding-block: 80px; }
  .feat-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .phone-side { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Inline styles extraits ── */
.nav-logo-img { height: 120px; width: auto; }
.btn-accent--cta { margin-top: 8px; }
.price-period { font-size: 1rem; font-weight: 400; opacity: .5; }
.btn-accent--block { display: block; text-align: center; }
