*, *::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: 40px;
  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); }

.pricing-card .btn-primary {
  width: 100%;
  text-align: center;
  display: block;
}

/* 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); }

/* WORKFLOW */
.workflow {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.workflow-intro {
  text-align: center;
  margin-bottom: 64px;
}
.workflow-intro .section-title {
  margin-bottom: 12px;
}
.workflow-intro p {
  color: var(--text2);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  justify-items: center;
}
.workflow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.workflow-item:hover .workflow-phone {
  border-color: rgba(232,184,109,0.45);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(232,184,109,0.15);
  transform: translateY(-6px) scale(1.02);
}
.workflow-phone {
  width: 160px;
  background: var(--bg2);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 14px 12px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
  transition: all 0.3s ease;
  height: 260px;
  position: relative;
  overflow: hidden;
}
.workflow-phone-notch {
  width: 40px;
  height: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  margin: 0 auto 12px;
}
.workflow-phone-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}
.workflow-phone-sub {
  font-size: 9px;
  color: var(--text2);
  text-align: center;
  margin-bottom: 10px;
}
.workflow-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  gap: 6px;
}
.workflow-row-name { font-size: 10px; font-weight: 500; }
.workflow-row-val { font-size: 10px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.workflow-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.workflow-badge-green { background: rgba(76,175,125,0.15); color: #4caf7d; }
.workflow-badge-orange { background: rgba(232,184,109,0.12); color: #e8b86d; }
.workflow-badge-red { background: rgba(224,85,85,0.12); color: #e05555; }
.workflow-cat {
  font-size: 9px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 8px 0 4px;
}
.workflow-kanban {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.workflow-kanban-col {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 5px 4px;
  min-height: 80px;
}
.workflow-kanban-title {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  text-align: center;
}
.workflow-kanban-title.red { color: #e05555; }
.workflow-kanban-title.yellow { color: #e8b86d; }
.workflow-kanban-title.green { color: #4caf7d; }
.workflow-ticket {
  background: rgba(255,255,255,0.07);
  border-radius: 5px;
  padding: 4px 5px;
  margin-bottom: 4px;
  font-size: 8px;
  line-height: 1.4;
}
.workflow-admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.workflow-admin-name { font-size: 10px; }
.workflow-admin-edit {
  font-size: 9px;
  color: var(--accent);
  border: 1px solid rgba(232,184,109,0.3);
  border-radius: 100px;
  padding: 1px 7px;
}
.workflow-item-info {
  text-align: center;
}
.workflow-item-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.workflow-item-desc {
  font-size: 12px;
  color: var(--text2);
}
.workflow-tap-hint {
  font-size: 11px;
  color: var(--accent);
  margin-top: 4px;
  opacity: 0.75;
}

@media (min-width: 768px) {
  .workflow-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .workflow-phone {
    width: 175px;
  }
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}
.footer-logo { height: 80px; 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; }
}
/* CONTACT */
.contact {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.contact-sub {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 40px;
  max-width: 500px;
  font-weight: 300;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px) {
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.contact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.contact-field { margin-bottom: 16px; }
.contact-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text2);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.contact-input:focus { border-color: rgba(232,184,109,0.5); }
select.contact-input option { background: var(--bg2); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.contact-info-value {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}
a.contact-info-value:hover { color: var(--accent); }

/* ── LANGUAGE SWITCHER ─────────────────────────────────── */
.nav-lang {
  position: relative;
}
.nav-lang-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  padding: 6px 12px;
  font-size: 18px;
  line-height: 1;
  display: flex; align-items: center; gap: 6px;
  color: var(--text2);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
}
.nav-lang-btn:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.nav-lang-btn .flag { font-size: 18px; line-height: 1; }
.nav-lang-btn .chevron { font-size: 9px; opacity: 0.6; transition: transform 0.2s; }
.nav-lang.open .nav-lang-btn .chevron { transform: rotate(180deg); }

.nav-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  min-width: 160px;
  z-index: 200;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.nav-lang.open .nav-lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text2);
  transition: background 0.12s, color 0.12s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.nav-lang-option:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.nav-lang-option.active { color: var(--accent); background: rgba(232,184,109,0.08); }
.nav-lang-option .flag { font-size: 20px; line-height: 1; }
.nav-lang-option .lang-name { font-weight: 500; }
.nav-lang-option .lang-native { font-size: 12px; color: var(--text2); margin-left: auto; }

/* LANGUAGE HINT BUBBLE */
.lang-hint {
  position: absolute;
  top: calc(100% + 14px);
  right: -8px;
  background: #1c1c1c;
  border: 1px solid rgba(232,184,109,0.45);
  border-radius: 10px;
  padding: 9px 14px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  pointer-events: none;
  z-index: 300;
  box-shadow: 0 8px 28px rgba(0,0,0,0.55);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.lang-hint.visible {
  opacity: 1;
  transform: translateY(0);
}
/* upward-pointing arrow */
.lang-hint::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 20px;
  width: 10px; height: 10px;
  background: #1c1c1c;
  border-left: 1px solid rgba(232,184,109,0.45);
  border-top: 1px solid rgba(232,184,109,0.45);
  transform: rotate(45deg);
}
/* gold left accent line */
.lang-hint::after {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* nav right group */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}