*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --accent: #e8b86d;
  --accent2: #d4a054;
  --text: #f0ede8;
  --text2: #9a9590;
  --border: rgba(255,255,255,0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 40px; display: block; }
.nav-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.nav-brand-21 {
  font-size: 22px;
  color: var(--accent);
}
.nav-cta {
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent2); }

/* HERO */
.hero {
  min-height: 100vh;
  display: block;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,184,109,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 80px;
}
.hero-tag {
  display: inline-block;
  background: rgba(232,184,109,0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(232,184,109,0.25);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--accent); }
.hero-sub {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 300;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* PHONE MOCK — shown below hero text on mobile */
.hero-visual {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.phone-mock {
  width: 220px;
  background: var(--bg2);
  border-radius: 28px;
  border: 1px solid var(--border);
  padding: 18px 14px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.mock-logo-dot {
  width: 24px; height: 24px;
  background: var(--accent);
  border-radius: 6px;
}
.mock-restaurant-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}
.mock-category {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 10px 0 6px;
}
.mock-dish {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.mock-dish-name { font-size: 11px; font-weight: 500; margin-bottom: 2px; }
.mock-dish-desc { font-size: 9px; color: var(--text2); }
.mock-dish-price { font-size: 11px; font-weight: 700; color: var(--accent); white-space: nowrap; margin-left: 8px; }
.mock-lang-bar {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  justify-content: center;
}
.mock-lang {
  font-size: 9px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text2);
}
.mock-lang.active { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--accent); color: #0a0a0a; }
.btn-primary:hover { background: var(--accent2); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(232,184,109,0.4);
  width: 100%;
  text-align: center;
  display: block;
}
.btn-outline:hover { background: rgba(232,184,109,0.08); }

/* SECTIONS */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

/* FEATURES */
.features {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.feature-card {
  background: var(--bg2);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-card:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.feature-card:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.feature-card:hover { background: var(--bg3); }
.feature-icon { font-size: 24px; margin-bottom: 12px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p { color: var(--text2); font-size: 14px; line-height: 1.6; }

/* PRICING */
.pricing {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(232,184,109,0.4);
  background: linear-gradient(135deg, rgba(232,184,109,0.06) 0%, var(--bg2) 60%);
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  font-family: var(--font-display);
}
.plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.plan-desc { font-size: 13px; color: var(--text2); margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li { font-size: 14px; padding: 7px 0; border-bottom: 1px solid var(--border); }
.plan-features li.muted { color: var(--text2); }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}
.footer-logo { height: 30px; margin: 0 auto 14px; display: block; }
.footer p { color: var(--text2); font-size: 13px; }
.footer-copy { margin-top: 6px; font-size: 12px; }

/* TABLET AND UP */
@media (min-width: 640px) {
  .hero-title { font-size: 56px; }
  .hero-visual {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  display: flex;
  width: auto;
}
  .hero .container { max-width: 520px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:first-child { border-radius: var(--radius) 0 0 0; }
  .feature-card:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
  .feature-card:nth-last-child(2) { border-radius: 0 0 0 var(--radius); }
  .feature-card:last-child { border-radius: 0 0 var(--radius) 0; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
  .section-title { font-size: 40px; }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .hero-title { font-size: 68px; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card:nth-child(2) { border-radius: 0; }
  .feature-card:nth-last-child(2) { border-radius: 0; }
  .feature-card:first-child { border-radius: var(--radius) 0 0 0; }
  .feature-card:nth-child(3) { border-radius: 0 var(--radius) 0 0; }
  .feature-card:nth-last-child(3) { border-radius: 0 0 0 var(--radius); }
  .feature-card:last-child { border-radius: 0 0 var(--radius) 0; }
}