/* ============================================
   ZEOMENU MARKETING — STYLE v2
   ============================================ */

:root {
  --navy: #09264a;
  --navy-deep: #061b36;
  --blue: #1973d1;
  --blue-light: #4da3ff;
  --pale: #edf5ff;
  --ink: #12243a;
  --ink-light: #60758a;
  --line: #dbe3ec;
  --surface: #f8fafc;
  --white: #ffffff;
  --accent-gold: #d2a354;
  --orange: #e8793a;
  --green: #3dba6f;
  --purple: #7c5fd4;
  --red: #e04040;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
em { font-style: italic; font-family: 'Playfair Display', Georgia, serif; }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: 0.18s; }

/* ============ SECTION TAG ============ */
.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-tag.light { color: var(--blue-light); }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
}
.btn-primary:hover {
  background: #1565b8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 115, 209, 0.3);
}

.btn-lg { padding: 18px 34px; font-size: 14px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-link:hover { border-color: var(--blue-light); }

/* ============ NAVBAR ============ */
.nav {
  position: fixed;
  z-index: 100;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(20px, 5vw, 80px);
  color: #fff;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(9, 38, 74, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.nav-icon {
  width: 28px; height: 28px;
  padding: 4px;
  border-radius: 7px;
  background: #fff;
  color: var(--blue);
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 7px;
  background: #fff;
  color: var(--navy) !important;
  font-size: 11px;
  font-weight: 800;
  transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 100px clamp(20px, 5vw, 80px) 60px;
  background: linear-gradient(145deg, #0e3a6b 0%, #0a2850 35%, #071e3d 70%, #091d38 100%);
  color: #fff;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  right: 20%;
  top: 25%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.18), transparent 55%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 121, 58, 0.08), transparent 55%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 3; max-width: 640px; }

.hero h1 {
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.hero h1 em {
  background: linear-gradient(135deg, #fff, #8ec5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  max-width: 520px;
  margin-top: 20px;
  color: #b8cfe5;
  font-size: 15px;
  line-height: 1.7;
}

/* Hero Points — Minimal */
.hero-points {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.hero-point {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual { position: relative; z-index: 2; min-height: 620px; }
.phone-glow {
  position: absolute;
  left: 50%; top: 50%;
  width: 520px; height: 520px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,0.012);
}
.phone-mockup {
  position: absolute;
  z-index: 3;
  padding: 14px 6px 6px;
  border: 6px solid #0a1520;
  border-radius: 36px;
  background: #0a1520;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
  overflow: hidden;
}
.phone-mockup iframe {
  width: 390px; height: 844px;
  border: 0;
  background: #0f100e;
  transform-origin: top left;
  pointer-events: none;
}
.phone-island {
  position: absolute;
  z-index: 5;
  top: 7px; left: 50%;
  width: 68px; height: 15px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: #0a1520;
}
.phone-main {
  left: 38%; top: 3%;
  width: 270px; height: 565px;
  transform: rotate(2deg);
  animation: phoneFloat 6s ease-in-out infinite;
}
.phone-main iframe { transform: scale(0.645); }
.phone-secondary {
  z-index: 1;
  left: 10%; top: 14%;
  width: 240px; height: 510px;
  transform: rotate(-7deg);
  filter: brightness(0.72);
}
.phone-secondary iframe { transform: scale(0.565); }

@keyframes phoneFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-10px); }
}

/* Float Cards — Prominent */
.float-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 13px;
  background: rgba(6, 24, 48, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: cardFloat 5s ease-in-out infinite;
  transition: var(--transition);
}
.float-card:hover {
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  transform: translateY(-4px) !important;
}
.float-card small { color: #8eb3d4; font-size: 10px; display: block; }
.float-card strong { color: #fff; font-size: 12px; font-weight: 700; display: block; }
.float-card-icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 9px;
  flex-shrink: 0;
}
.float-card-icon.orange { background: rgba(232,121,58,0.22); color: #ffb074; }
.float-card-icon.green { background: rgba(61,186,111,0.22); color: #6dd89a; }
.float-card-icon.blue { background: rgba(77,163,255,0.22); color: var(--blue-light); }
.float-card-icon.gold { background: rgba(210,163,84,0.22); color: #ffc56e; }
.float-card-icon.purple { background: rgba(124,95,212,0.22); color: #b8a4f0; }

.float-allergen { left: -2%; top: 24%; animation-delay: 0s; }
.float-calorie { right: 0; bottom: 28%; animation-delay: 0.8s; }
.float-ingredient { left: -4%; bottom: 12%; animation-delay: 1.6s; }
.float-design { right: 2%; top: 8%; animation-delay: 2.4s; }
.float-custom { left: 8%; top: 55%; animation-delay: 3.2s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4dff91;
  animation: pulse 2s infinite;
}
.pulse-dot-sm {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4dff91;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(77,255,145,0.4); }
  70% { box-shadow: 0 0 0 6px rgba(77,255,145,0); }
  100% { box-shadow: 0 0 0 0 rgba(77,255,145,0); }
}

/* ============ REGULATION SECTION ============ */
.regulation {
  padding: 110px clamp(20px, 5vw, 80px) 90px;
  background: linear-gradient(180deg, #f0f5fa, #f8fafc);
}
.reg-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.reg-header h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.reg-header > p {
  margin-top: 16px;
  color: var(--ink-light);
  font-size: 15px;
  line-height: 1.7;
}

.reg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.reg-card {
  position: relative;
  padding: 30px 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.reg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.reg-card-number {
  position: absolute;
  top: 16px; right: 18px;
  color: #e2e8ef;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.reg-card-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 13px;
  margin-bottom: 18px;
}
.reg-card-icon svg { width: 22px; height: 22px; }
.orange-bg { background: rgba(232,121,58,0.1); color: var(--orange); }
.green-bg { background: rgba(61,186,111,0.1); color: var(--green); }
.blue-bg { background: rgba(25,115,209,0.1); color: var(--blue); }
.purple-bg { background: rgba(124,95,212,0.1); color: var(--purple); }

.reg-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.reg-card p { color: var(--ink-light); font-size: 12px; line-height: 1.65; }

.reg-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
}
.reg-card-status.active {
  background: rgba(61,186,111,0.1);
  color: #2a9d5a;
}
.reg-card-status.deadline-status {
  background: rgba(232,121,58,0.1);
  color: var(--orange);
}
.reg-card-status svg { flex-shrink: 0; }

/* Regulation Bottom — Solution */
.reg-bottom { max-width: 1100px; margin: 55px auto 0; }
.reg-solution {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}
.reg-solution-left h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.reg-solution-left p {
  color: var(--ink-light);
  font-size: 13px;
  line-height: 1.7;
}

/* Mini Phone Mockup */
.reg-mini-phone {
  width: 280px;
  margin: 0 auto;
  border: 5px solid #151a1e;
  border-radius: 26px;
  background: #0f1210;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.reg-mini-screen { padding: 20px 14px; }
.reg-mini-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 10px;
}
.reg-mini-img {
  width: 60px; height: 60px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2a2520, #1a1715);
  background-image: url('/demo/steak.webp');
  background-size: cover;
}
.reg-mini-img.img2 {
  background-image: url('/demo/risotto.webp');
}
.reg-mini-info strong { color: #f0ede5; font-size: 13px; display: block; }
.reg-mini-info small { color: #8a8880; font-size: 10px; }
.kcal-badge {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(61,186,111,0.15);
  color: #6dd89a;
  font-size: 9px;
  font-weight: 700;
}
.reg-mini-tags {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.allergen-tag {
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(232,121,58,0.12);
  color: #d4956a;
  font-size: 8px;
  font-weight: 600;
}
.allergen-tag.green-tag {
  background: rgba(61,186,111,0.12);
  color: #6dd89a;
}

/* ============ AUDIENCE BAR ============ */
.audience-bar {
  padding: 30px clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.audience-bar p {
  margin-bottom: 16px;
  color: var(--ink-light);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.audience-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: #7b8fa3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.audience-list i {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #c3d0dc;
}

/* ============ CATALOG ============ */
.catalog { padding: 100px clamp(20px, 5vw, 80px); }
.catalog-header { max-width: 600px; margin-bottom: 50px; }
.catalog-header h2 {
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.catalog-header p {
  margin-top: 16px;
  color: var(--ink-light);
  font-size: 14px;
  line-height: 1.7;
}
.catalog-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.catalog-scroll::-webkit-scrollbar { display: none; }

.catalog-card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  background: var(--card-bg, #111);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.22);
}
.catalog-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.catalog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.catalog-card:hover .catalog-card-img img { transform: scale(1.06); }
.catalog-badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent, var(--blue));
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.catalog-badge.soon {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.catalog-card-body {
  padding: 22px 20px 24px;
  color: #fff;
}
.catalog-card-body.dark-text { color: var(--ink); }
.catalog-type {
  display: block;
  margin-bottom: 5px;
  color: var(--accent, var(--blue));
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.catalog-card-body h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.catalog-card-body > p {
  margin-top: 6px;
  opacity: 0.7;
  font-size: 11px;
  line-height: 1.6;
}
.catalog-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.catalog-features span {
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 9px;
  font-weight: 600;
}
.catalog-features.dark span {
  background: rgba(0,0,0,0.06);
  color: var(--ink-light);
}
.catalog-price-tag {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--accent, var(--blue));
  font-size: 11px;
  font-weight: 700;
}
.catalog-price-tag.dark {
  border-color: rgba(0,0,0,0.08);
  color: var(--ink);
}

/* ============ DIGITAL WAITER ============ */
.waiter-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 750px;
  background: linear-gradient(145deg, #0c3462, #071e3d 60%, #09264a);
  color: #fff;
  overflow: hidden;
}
.waiter-content {
  align-self: center;
  padding: 80px clamp(20px, 5vw, 80px) 80px clamp(24px, 6vw, 100px);
  max-width: 620px;
}
.waiter-content h2 {
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.waiter-content > p {
  margin-top: 20px;
  color: #9db8d4;
  font-size: 14px;
  line-height: 1.75;
}
.waiter-features { margin-top: 28px; display: grid; gap: 14px; }
.waiter-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d0dfe9;
  font-size: 13px;
  font-weight: 500;
}
.waiter-features svg { color: var(--blue-light); flex-shrink: 0; }

.waiter-visual {
  display: grid;
  place-items: center;
  padding: 60px 40px;
  background: radial-gradient(circle at 50% 50%, rgba(77,163,255,0.07), transparent 55%);
}
.waiter-phone {
  width: 310px;
  border: 6px solid #0a1520;
  border-radius: 32px;
  background: #0a1520;
  box-shadow: 0 28px 65px rgba(0,0,0,0.35);
  overflow: hidden;
  transform: rotate(1deg);
}
.waiter-phone-screen { background: #0f1210; }
.waiter-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.waiter-avatar {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #c49540);
  color: #fff;
}
.waiter-chat-header strong { color: #f0ede5; font-size: 12px; display: block; }
.waiter-chat-header small { color: #6bb585; font-size: 9px; display: block; }
.waiter-chat-body { padding: 14px; display: grid; gap: 8px; }
.chat-msg {
  max-width: 85%;
  padding: 9px 12px;
  border-radius: 13px;
  font-size: 10.5px;
  line-height: 1.5;
  color: #e8e5dc;
}
.chat-msg.bot {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
}
.chat-msg.user {
  justify-self: end;
  background: rgba(210,163,84,0.12);
  border: 1px solid rgba(210,163,84,0.18);
}
.chat-msg strong { color: var(--accent-gold); }
.chat-msg em { color: #e88; font-style: normal; font-weight: 600; font-family: 'Inter', sans-serif; }
.waiter-chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 14px 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 11px;
  background: rgba(255,255,255,0.025);
}
.waiter-chat-input span { color: #5a6b5e; font-size: 10px; }
.waiter-chat-input svg { color: var(--accent-gold); }

/* ============ FEATURES ============ */
.features {
  padding: 100px clamp(20px, 5vw, 80px);
  background: var(--surface);
}
.features-header { text-align: center; margin-bottom: 50px; }
.features-header h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1050px;
  margin: 0 auto;
}
.feature-card {
  padding: 32px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}
.feature-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--pale);
  color: var(--blue);
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { color: var(--ink-light); font-size: 12px; line-height: 1.6; }

/* ============ SHOWCASE ============ */
.showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 720px;
  background: var(--navy);
  color: #fff;
}
.showcase-text {
  align-self: center;
  padding: 80px clamp(20px, 5vw, 80px) 80px clamp(24px, 6vw, 100px);
  max-width: 600px;
}
.showcase-text h2 {
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.showcase-text > p {
  margin: 20px 0 28px;
  color: #9db8d4;
  font-size: 13px;
  line-height: 1.75;
}
.showcase-visual {
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #1a4f82, #0d3360 50%, var(--navy) 80%);
}
.showcase-phone {
  position: relative;
  z-index: 3;
  width: 270px; height: 570px;
  padding: 14px 6px 6px;
  border: 6px solid #0a1520;
  border-radius: 36px;
  background: #0a1520;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  overflow: hidden;
}
.showcase-phone iframe {
  width: 390px; height: 844px;
  border: 0;
  background: #0f100e;
  transform: scale(0.645);
  transform-origin: top left;
  pointer-events: none;
}
.showcase-food {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}
.showcase-food img { width: 100%; height: 100%; object-fit: cover; }
.showcase-food-a { left: -2%; bottom: 5%; width: 200px; height: 200px; }
.showcase-food-b { right: 0; top: 8%; width: 170px; height: 170px; }

/* ============ ADMIN ============ */
.admin-section {
  padding: 100px clamp(20px, 5vw, 80px);
  background: var(--surface);
}
.admin-header {
  max-width: 660px;
  margin: 0 auto 50px;
  text-align: center;
}
.admin-header h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.admin-header p {
  margin-top: 14px;
  color: var(--ink-light);
  font-size: 14px;
}
.admin-mockup {
  display: grid;
  grid-template-columns: 195px 1fr;
  max-width: 1020px;
  min-height: 430px;
  margin: 0 auto;
  border: 1px solid #d0dce7;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 22px 55px rgba(20,50,80,0.09);
  overflow: hidden;
}
.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 20px 13px;
  background: #0c2340;
  color: #9eb1c5;
}
.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.admin-sidebar-brand svg { color: var(--blue-light); }
.admin-menu-item {
  padding: 9px 11px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 500;
}
.admin-menu-item.active { background: #17497d; color: #fff; font-weight: 700; }
.admin-main { padding: 32px; }
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.admin-topbar small {
  display: block;
  color: #4a7dae;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.admin-topbar strong { font-size: 22px; }
.admin-add-btn {
  padding: 9px 14px;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.admin-search {
  display: flex;
  justify-content: space-between;
  padding: 10px 13px;
  border: 1px solid #dfe6ed;
  border-radius: 6px;
  color: #9ba6b1;
  font-size: 10px;
  margin-bottom: 5px;
}
.admin-row {
  display: grid;
  grid-template-columns: 46px 1fr auto 76px;
  align-items: center;
  gap: 12px;
  padding: 11px 4px;
  border-bottom: 1px solid #eaeff4;
}
.admin-row img { width: 46px; height: 46px; border-radius: 6px; object-fit: cover; }
.admin-row b { display: block; font-size: 10px; }
.admin-row small { color: #8e9ba8; font-size: 8px; }
.admin-row > strong { font-size: 10px; }
.admin-status {
  padding: 4px 8px;
  border-radius: 20px;
  background: var(--pale);
  color: #3471ac;
  font-size: 7px;
  font-style: normal;
  font-weight: 600;
}

/* ============ PROCESS ============ */
.process { padding: 100px clamp(20px, 5vw, 80px); }
.process-header { text-align: center; margin-bottom: 55px; }
.process-header h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}
.process-step {
  padding: 34px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.step-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
}
.process-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.process-step p { color: var(--ink-light); font-size: 12px; line-height: 1.6; }

/* ============ FAQ ============ */
.faq {
  padding: 100px clamp(20px, 5vw, 80px);
  max-width: 750px;
  margin: 0 auto;
}
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-header h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--ink-light);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--blue); }
.faq-item p {
  padding: 0 0 18px;
  color: var(--ink-light);
  font-size: 13px;
  line-height: 1.7;
  animation: faqIn 0.3s ease;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ============ CTA ============ */
.cta-section {
  padding: 100px clamp(20px, 5vw, 80px);
  background: linear-gradient(135deg, #0c3462, #081f3d);
  text-align: center;
  color: #fff;
}
.cta-content h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 780px;
  margin: 0 auto;
}
.cta-content p {
  margin: 16px auto 30px;
  color: #8eb3d8;
  font-size: 15px;
  max-width: 480px;
}
.cta-content .btn-primary {
  background: #fff;
  color: var(--navy);
}
.cta-content .btn-primary:hover {
  box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

/* ============ FOOTER ============ */
.site-footer {
  background: #061a30;
  color: #fff;
  padding: 38px clamp(20px, 5vw, 80px) 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 800;
}
.footer-brand svg { color: var(--blue-light); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #8aa3ba; font-size: 10px; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 20px; }
.footer-bottom small { color: #4c6980; font-size: 9px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .reg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 120px; }
  .hero-visual { min-height: 620px; margin-top: 40px; }
  .waiter-section { grid-template-columns: 1fr; }
  .waiter-visual { min-height: 550px; }
  .showcase { grid-template-columns: 1fr; }
  .showcase-text { max-width: none; }
  .showcase-visual { min-height: 600px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; max-width: 480px; }
  .admin-mockup { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .reg-solution { grid-template-columns: 1fr; gap: 30px; padding: 30px; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 72px 0 0;
    flex-direction: column;
    gap: 0;
    background: rgba(9, 38, 74, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
    color: #fff;
  }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 110px 18px 40px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 14px; }
  .hero-points { flex-wrap: wrap; gap: 8px 12px; }
  .hero-point { font-size: 11px; }
  .hero-visual { min-height: 500px; }
  .phone-main { left: 26%; width: 225px; height: 475px; }
  .phone-main iframe { transform: scale(0.535); }
  .phone-secondary { left: 0; width: 195px; height: 420px; }
  .phone-secondary iframe { transform: scale(0.46); }
  .float-card { padding: 10px 14px; }
  .float-card strong { font-size: 11px; }
  .float-card small { font-size: 9px; }
  .float-card-icon { width: 30px; height: 30px; }
  .float-allergen { left: -6px; top: 20%; }
  .float-calorie { right: -6px; }
  .float-ingredient { left: -4px; bottom: 4%; }
  .float-design { right: -4px; top: 5%; }
  .float-custom { left: 2%; top: 50%; }

  .regulation { padding: 70px 18px; }
  .reg-grid { grid-template-columns: 1fr; }
  .reg-header h2 { font-size: 30px; }
  .reg-solution { padding: 22px; }
  .reg-mini-phone { width: 250px; }

  .catalog { padding: 70px 18px; }
  .catalog-header h2 { font-size: 32px; }
  .catalog-card { flex: 0 0 260px; }

  .waiter-content { padding: 60px 18px; }
  .waiter-content h2 { font-size: 30px; }

  .features { padding: 70px 18px; }
  .features-grid { grid-template-columns: 1fr; }

  .showcase-text { padding: 60px 18px; }
  .showcase-text h2 { font-size: 30px; }
  .showcase-visual { min-height: 520px; }
  .showcase-phone { width: 235px; height: 495px; }
  .showcase-phone iframe { transform: scale(0.565); }
  .showcase-food-a { width: 130px; height: 130px; }
  .showcase-food-b { width: 110px; height: 110px; }

  .admin-section { padding: 70px 18px; }
  .admin-header h2 { font-size: 30px; }
  .admin-main { padding: 18px 12px; }
  .admin-row { grid-template-columns: 40px 1fr auto; }
  .admin-row img { width: 40px; height: 40px; }
  .admin-status { display: none; }

  .process { padding: 70px 18px; }
  .faq { padding: 70px 18px; }
  .cta-section { padding: 70px 18px; }
  .cta-content h2 { font-size: 28px; }

  .footer-top { flex-direction: column; gap: 18px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .audience-list { gap: 10px; font-size: 10px; }
}
