:root {
  --bg: #f2f7f8;
  --bg-2: #e9f1f3;
  --text: #0c1e2a;
  --muted: #557081;
  --line: #d4e1e8;
  --primary: #0a7c86;
  --primary-deep: #065a61;
  --accent: #1b9aaa;
  --secondary: #c26a1b;
  --surface: #ffffff;
  --surface-soft: #f7fafc;
  --success: #0b8f55;
  --radius: 16px;
  --shadow: 0 24px 48px rgba(11, 29, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Archivo", "Manrope", sans-serif;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.bg-glow {
  position: fixed;
  z-index: -2;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
}

.bg-glow-a {
  width: 580px;
  height: 580px;
  top: -220px;
  right: -130px;
  background: radial-gradient(circle at center, rgba(10, 124, 134, 0.28), transparent 67%);
}

.bg-glow-b {
  width: 620px;
  height: 620px;
  left: -260px;
  top: 35%;
  background: radial-gradient(circle at center, rgba(194, 106, 27, 0.15), transparent 70%);
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.top-ribbon {
  background: linear-gradient(90deg, #083f45, #0a7c86 55%, #1b9aaa);
  color: #e7f5f6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ribbon-row {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}

.ribbon-row p {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.ribbon-row a {
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 247, 248, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 225, 232, 0.9);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(10, 124, 134, 0.26);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: #3a5867;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--primary);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-deep));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav a:hover::after,
.nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav a.active {
  color: var(--primary-deep);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(212, 225, 232, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(16, 45, 63, 0.08);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #527080;
  min-width: 42px;
  padding: 8px 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-btn:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 10px 18px rgba(10, 124, 134, 0.22);
}

.menu-toggle {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  width: 42px;
  height: 42px;
  display: none;
  cursor: pointer;
  color: #28404e;
  font-size: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 15px 28px rgba(10, 124, 134, 0.26);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-light {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 12px 24px rgba(16, 45, 63, 0.14);
}

.btn-app {
  color: var(--primary-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(10, 124, 134, 0.33);
  box-shadow: none;
}

.hero {
  padding: 78px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

.hero h1 {
  margin: 14px 0;
  font-size: clamp(34px, 4.9vw, 58px);
  line-height: 1.04;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 650px;
}

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

.download-card {
  margin-top: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 124, 134, 0.15);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(27, 154, 170, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(194, 106, 27, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 250, 0.95));
  box-shadow: 0 28px 48px rgba(9, 41, 55, 0.12);
  padding: 26px;
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 124, 134, 0), rgba(10, 124, 134, 0.35), rgba(10, 124, 134, 0));
}

.download-card-head {
  display: grid;
  gap: 22px;
}

.download-head-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.download-head-copy {
  display: grid;
  align-content: start;
}

.download-head-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.download-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(10, 124, 134, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #184e58;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 16px 26px rgba(10, 124, 134, 0.08);
}

.download-badge i {
  color: var(--primary);
  font-size: 16px;
}

.download-card-head h3 {
  margin: 8px 0 8px;
  max-width: 18ch;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.08;
}

.download-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 800;
}

.download-note {
  color: #587180;
  font-size: 15px;
  line-height: 1.75;
  max-width: 60ch;
}

.download-steps {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.download-steps span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10, 124, 134, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: #365968;
  font-size: 12px;
  font-weight: 800;
}

.download-steps i {
  color: var(--primary);
}

.download-preview {
  position: relative;
  border: 1px solid rgba(10, 124, 134, 0.14);
  border-radius: 24px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(27, 154, 170, 0.18), transparent 34%),
    linear-gradient(160deg, rgba(248, 252, 253, 0.98), rgba(236, 245, 248, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.download-preview::before {
  content: "";
  position: absolute;
  inset: auto auto 18px 18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 106, 27, 0.14), transparent 72%);
  pointer-events: none;
}

.download-preview-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.download-preview-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(10, 124, 134, 0.12);
  color: #335c68;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(10, 31, 45, 0.05);
}

.download-preview-chip i {
  color: var(--primary);
}

.download-preview-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.download-preview-screen {
  border-radius: 22px;
  padding: 16px;
  background: linear-gradient(160deg, #0f2734, #133949 65%, #185164);
  box-shadow: 0 24px 40px rgba(9, 41, 55, 0.18);
}

.download-preview-window {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.download-preview-window span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.download-preview-window span:first-child {
  background: #ff8f86;
}

.download-preview-window span:nth-child(2) {
  background: #ffd878;
}

.download-preview-window span:nth-child(3) {
  background: #60d89a;
}

.download-preview-flow {
  display: grid;
  gap: 10px;
}

.download-preview-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.download-preview-step b {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(27, 154, 170, 0.28), rgba(27, 154, 170, 0.08));
  color: #dff7fa;
  font-size: 13px;
}

.download-preview-step strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.download-preview-step p {
  margin: 4px 0 0;
  color: rgba(226, 242, 247, 0.8);
  font-size: 12px;
  line-height: 1.5;
}

.download-preview-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.download-preview-metrics div {
  border: 1px solid rgba(212, 225, 232, 0.7);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 24px rgba(10, 31, 45, 0.06);
}

.download-preview-metrics span {
  display: block;
  color: #64808f;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.download-preview-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
}

.download-links {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.download-link {
  position: relative;
  text-decoration: none;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid rgba(212, 225, 232, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  padding: 18px 20px;
  gap: 18px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.download-link:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 124, 134, 0.34);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 36px rgba(10, 124, 134, 0.12);
}

.download-link-cert {
  border-color: rgba(194, 106, 27, 0.22);
  background: linear-gradient(135deg, rgba(255, 247, 239, 0.96), rgba(255, 255, 255, 0.94));
}

.download-link-admin {
  border-color: rgba(10, 124, 134, 0.22);
  background:
    linear-gradient(135deg, rgba(230, 248, 250, 0.92), rgba(255, 255, 255, 0.95)),
    #fff;
}

.download-link-seller {
  border-color: rgba(11, 55, 88, 0.18);
  background:
    linear-gradient(135deg, rgba(237, 244, 250, 0.98), rgba(255, 255, 255, 0.95)),
    #fff;
}

.download-link-cert:hover {
  border-color: rgba(194, 106, 27, 0.36);
  box-shadow: 0 22px 36px rgba(194, 106, 27, 0.12);
}

.download-link-admin:hover {
  border-color: rgba(10, 124, 134, 0.38);
  box-shadow: 0 22px 36px rgba(10, 124, 134, 0.14);
}

.download-link-seller:hover {
  border-color: rgba(11, 55, 88, 0.28);
  box-shadow: 0 22px 36px rgba(11, 55, 88, 0.12);
}

.download-link-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(10, 124, 134, 0.14), rgba(10, 124, 134, 0.04));
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.download-link-cert .download-link-icon {
  background: linear-gradient(145deg, rgba(194, 106, 27, 0.14), rgba(194, 106, 27, 0.04));
  color: var(--secondary);
}

.download-link-admin .download-link-icon {
  background: linear-gradient(145deg, rgba(10, 124, 134, 0.2), rgba(27, 154, 170, 0.06));
}

.download-link-seller .download-link-icon {
  background: linear-gradient(145deg, rgba(11, 55, 88, 0.16), rgba(11, 55, 88, 0.05));
  color: #0b3758;
}

.download-link-copy {
  display: grid;
  gap: 6px;
}

.download-link-kicker {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(10, 124, 134, 0.09);
  color: #1a6670;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.download-link-kicker-secondary {
  background: rgba(15, 140, 150, 0.08);
  color: #0f7a83;
}

.download-link-cert .download-link-kicker {
  background: rgba(194, 106, 27, 0.1);
  color: #9a561c;
}

.download-link-admin .download-link-kicker {
  background: rgba(10, 124, 134, 0.12);
  color: #0b6972;
}

.download-link-admin .download-link-kicker-secondary {
  background: rgba(6, 90, 97, 0.1);
  color: #065a61;
}

.download-link-seller .download-link-kicker {
  background: rgba(11, 55, 88, 0.1);
  color: #0b3758;
}

.download-link-copy strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
}

.download-link-copy small {
  color: #5c7483;
  font-size: 13px;
  line-height: 1.6;
}

.download-link-action {
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f8c96, var(--primary-deep));
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  min-width: 188px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 16px 24px rgba(10, 124, 134, 0.22);
}

.download-link-cert .download-link-action {
  background: linear-gradient(135deg, #d17a2c, #9a561c);
  box-shadow: 0 16px 24px rgba(194, 106, 27, 0.2);
}

.download-link-admin .download-link-action {
  background: linear-gradient(135deg, #1196a2, #07606a);
}

.restaurant-teaser {
  padding: 12px 0 8px;
}

.restaurant-teaser-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  border-radius: 28px;
  border: 1px solid rgba(194, 106, 27, 0.18);
  background:
    radial-gradient(circle at top right, rgba(162, 75, 255, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 208, 120, 0.12), transparent 25%),
    linear-gradient(145deg, rgba(255, 251, 246, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 24px 42px rgba(9, 41, 55, 0.08);
}

.restaurant-teaser-copy {
  max-width: 720px;
}

.restaurant-teaser-copy h2 {
  margin: 8px 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.restaurant-teaser-copy p:last-child {
  color: #5b7483;
  line-height: 1.7;
}

.restaurant-page {
  color: #eef4f6;
  background: linear-gradient(180deg, #0b0d18 0%, #12172a 100%);
}

.restaurant-page .container {
  width: min(1180px, 92vw);
}

.restaurant-page-glow {
  position: fixed;
  z-index: -2;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(16px);
}

.restaurant-page-glow-a {
  width: 620px;
  height: 620px;
  top: -220px;
  left: -140px;
  background: radial-gradient(circle at center, rgba(255, 208, 120, 0.22), transparent 64%);
}

.restaurant-page-glow-b {
  width: 640px;
  height: 640px;
  right: -180px;
  top: 10%;
  background: radial-gradient(circle at center, rgba(116, 75, 255, 0.22), transparent 66%);
}

.restaurant-page-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 21, 0.74);
  backdrop-filter: blur(16px);
}

.restaurant-page-nav,
.restaurant-page-actions,
.restaurant-page-chips,
.restaurant-page-tags,
.restaurant-page-module-grid {
  display: grid;
  gap: 14px;
}

.restaurant-page-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-light {
  color: #fff4da;
}

.brand-light img {
  box-shadow: 0 10px 22px rgba(255, 208, 120, 0.26);
}

.restaurant-page-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost-light {
  background: transparent;
  color: #fff4da;
  border: 1px solid rgba(255, 244, 218, 0.18);
  box-shadow: none;
}

.restaurant-page-hero,
.restaurant-page-section {
  padding: 38px 0 22px;
}

.restaurant-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 24px;
  align-items: start;
}

.restaurant-page-copy {
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 208, 120, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(27, 154, 170, 0.12), transparent 32%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.2);
}

.restaurant-page-copy .eyebrow {
  color: #ffd47b;
}

.restaurant-page-copy h1 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  color: #fff;
}

.restaurant-page-copy .lead {
  color: rgba(238, 244, 246, 0.84);
}

.restaurant-page-sublead {
  margin-top: 14px;
  color: rgba(238, 244, 246, 0.7);
  line-height: 1.75;
  max-width: 62ch;
}

.restaurant-page-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.restaurant-page-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f5e8c9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.restaurant-page-tags {
  margin-top: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.restaurant-page-tags span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eef4f6;
  font-size: 13px;
  font-weight: 800;
}

.restaurant-page-tags i {
  color: #ffd47b;
}

.restaurant-page-showcase {
  display: grid;
  gap: 16px;
}

.section-head-light .eyebrow {
  color: #ffd47b;
}

.section-head-light h2,
.section-head-light h3,
.section-head-light p {
  color: #fff;
}

.restaurant-page-module-grid {
  margin-top: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.restaurant-page-proof {
  padding-top: 0;
}

.restaurant-page-proof-grid,
.restaurant-page-audience-grid {
  display: grid;
  gap: 16px;
}

.restaurant-page-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.restaurant-page-proof-grid article,
.restaurant-page-audience-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 208, 120, 0.1), transparent 24%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.14);
}

.restaurant-page-proof-grid span {
  display: block;
  color: #ffd47b;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.restaurant-page-proof-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.restaurant-page-proof-grid p,
.restaurant-page-audience-card p {
  margin-top: 10px;
  color: rgba(238, 244, 246, 0.74);
  line-height: 1.7;
}

.restaurant-page-audience-grid {
  margin-top: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.restaurant-page-audience-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.14;
}

.restaurant-page-module-grid .restaurant-board-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.restaurant-page-module-grid .restaurant-board-card p,
.restaurant-page-cta .lead {
  color: rgba(238, 244, 246, 0.76);
}

.restaurant-page-cta {
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 208, 120, 0.14), transparent 22%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.2);
}

.download-link-seller .download-link-action {
  background: linear-gradient(135deg, #174b7a, #0b3758);
  box-shadow: 0 16px 24px rgba(11, 55, 88, 0.22);
}

.download-tip {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 225, 232, 0.8);
  color: #527081;
  font-size: 13px;
  line-height: 1.6;
}

.hero-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #415f6f;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 12px 22px rgba(13, 37, 51, 0.06);
}

.hero-panel {
  background: linear-gradient(180deg, #ffffff, #f4f9fb);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
  transform-style: preserve-3d;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.panel-head p {
  color: #2d5362;
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.online-dot {
  position: relative;
  overflow: hidden;
  min-width: 112px;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(11, 143, 85, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11, 143, 85, 0.12), rgba(11, 143, 85, 0.04));
  color: var(--success);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.online-ping {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(11, 143, 85, 0.12);
  animation: onlinePulse 1.8s ease-in-out infinite;
}

.online-label {
  letter-spacing: 0.01em;
}

@keyframes onlinePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(11, 143, 85, 0.22);
  }
  50% {
    transform: scale(1.12);
    box-shadow: 0 0 0 7px rgba(11, 143, 85, 0);
  }
}

.kpi-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px dashed #cbdce4;
}

.kpi-row:last-of-type {
  border-bottom: 0;
}

.kpi-label {
  color: #587080;
  font-size: 13px;
}

.kpi-value {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 800;
}

.chip {
  border-radius: 999px;
  background: #ecf3f7;
  color: #406071;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.chip.up {
  color: var(--success);
  background: rgba(11, 143, 85, 0.12);
}

.chart {
  margin-top: 16px;
  position: relative;
  overflow: hidden;
  height: 112px;
  border-radius: 18px;
  padding: 16px 16px 12px;
  background:
    linear-gradient(180deg, rgba(27, 154, 170, 0.18), rgba(27, 154, 170, 0.02)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, transparent, transparent 36px, rgba(255, 255, 255, 0.34) 37px, rgba(255, 255, 255, 0.34) 38px);
  border: 1px solid rgba(201, 224, 230, 0.9);
}

.chart::before {
  content: "";
  position: absolute;
  inset: auto 0 28px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(10, 124, 134, 0), rgba(10, 124, 134, 0.16), rgba(10, 124, 134, 0));
}

.chart-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(10, 124, 134, 0.12);
  color: #2d6670;
  font-size: 11px;
  font-weight: 800;
  z-index: 1;
}

.chart-badge i {
  color: var(--primary);
}

.chart-svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 74px;
  margin-top: 10px;
}

.chart-area {
  fill: url(#sparkFill);
}

.chart-line {
  fill: none;
  stroke: url(#sparkStroke);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 10px rgba(10, 124, 134, 0.16));
}

.chart-point {
  fill: #fff;
  stroke: #0a7c86;
  stroke-width: 2.5;
}

.chart-point.active {
  r: 5.5;
  fill: #dff8fb;
  filter: drop-shadow(0 4px 10px rgba(10, 124, 134, 0.2));
}

.chart-axis {
  position: absolute;
  inset: auto 14px 10px 14px;
  display: flex;
  justify-content: space-between;
  color: #6b8794;
  font-size: 11px;
  font-weight: 700;
}

.mini-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mini-grid div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.mini-grid i {
  color: var(--secondary);
  font-size: 18px;
}

.mini-grid p {
  margin-top: 3px;
  color: #5f7786;
  font-size: 12px;
}

.mini-grid h4 {
  margin: 6px 0 0;
  font-size: 20px;
}

section {
  padding: 62px 0;
}

.section-head {
  margin-bottom: 28px;
  max-width: 760px;
}

.section-head h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
}

.stats {
  position: relative;
  padding-top: 10px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 225, 232, 0.95);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 252, 0.94));
  padding: 22px;
  box-shadow: 0 18px 32px rgba(10, 31, 45, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.stat-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), rgba(27, 154, 170, 0.25));
}

.stat-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 124, 134, 0.24);
  box-shadow: 0 24px 40px rgba(10, 31, 45, 0.11);
}

.stat-grid i {
  color: var(--secondary);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(194, 106, 27, 0.1);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stat-grid h3 {
  margin: 8px 0 0;
  font-size: clamp(28px, 3vw, 38px);
}

.stat-grid p {
  margin-top: 8px;
  color: #5f7684;
  font-size: 14px;
}

.pricing {
  padding-top: 30px;
}

.pricing-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 225, 232, 0.9);
  border-radius: 30px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(27, 154, 170, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(194, 106, 27, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 251, 0.95));
  box-shadow: 0 28px 52px rgba(10, 31, 45, 0.08);
}

.pricing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.pricing-lead {
  max-width: 760px;
}

.pricing-cycle-switch {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.pricing-cycle-btn {
  border: 1px solid rgba(10, 124, 134, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.82);
  color: #335867;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 22px rgba(10, 31, 45, 0.05);
}

.pricing-cycle-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 124, 134, 0.24);
}

.pricing-cycle-btn.active {
  border-color: rgba(10, 124, 134, 0.32);
  background: linear-gradient(135deg, rgba(10, 124, 134, 0.12), rgba(10, 124, 134, 0.04));
  color: var(--primary-deep);
  box-shadow: 0 16px 28px rgba(10, 124, 134, 0.1);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 225, 232, 0.95);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(10, 31, 45, 0.07);
  display: grid;
  gap: 16px;
  min-height: 100%;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 124, 134, 0.22);
  box-shadow: 0 24px 40px rgba(10, 31, 45, 0.11);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(10, 124, 134, 0.75), rgba(10, 124, 134, 0.12));
}

.pricing-card-popular {
  border-color: rgba(10, 124, 134, 0.26);
  background:
    radial-gradient(circle at top right, rgba(27, 154, 170, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(239, 250, 251, 0.98), rgba(255, 255, 255, 0.94));
  transform: translateY(-6px);
}

.pricing-card-lifetime::before {
  background: linear-gradient(90deg, rgba(194, 106, 27, 0.9), rgba(194, 106, 27, 0.16));
}

.pricing-card-lifetime {
  background:
    radial-gradient(circle at top right, rgba(194, 106, 27, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 249, 243, 0.98), rgba(255, 255, 255, 0.94));
}

.pricing-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.pricing-plan-tag,
.pricing-plan-key {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.pricing-plan-tag {
  background: rgba(10, 124, 134, 0.08);
  color: #0f6972;
}

.pricing-plan-key {
  background: rgba(11, 55, 88, 0.08);
  color: #0b3758;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card h3 {
  margin: 0;
  font-size: 28px;
}

.pricing-copy p {
  margin: 10px 0 0;
  color: #607987;
  line-height: 1.7;
}

.pricing-amount strong {
  display: block;
  color: var(--text);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-amount span {
  display: block;
  margin-top: 8px;
  color: #5f7887;
  font-size: 13px;
  font-weight: 700;
}

.pricing-meta {
  display: grid;
  gap: 10px;
}

.pricing-meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 16px;
  background: rgba(244, 249, 251, 0.9);
  border: 1px solid rgba(212, 225, 232, 0.82);
}

.pricing-meta span {
  color: #62808f;
  font-size: 12px;
  font-weight: 700;
}

.pricing-meta strong {
  color: var(--text);
  font-size: 13px;
  text-align: right;
}

.pricing-card .btn {
  justify-content: center;
}

.pricing-card-skeleton {
  pointer-events: none;
}

.pricing-skeleton-line,
.pricing-skeleton-price {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(232, 240, 244, 0.9), rgba(255, 255, 255, 0.95), rgba(232, 240, 244, 0.9));
  background-size: 220% 100%;
  animation: shimmer 1.6s linear infinite;
}

.pricing-skeleton-line.short {
  width: 92px;
  height: 14px;
}

.pricing-skeleton-line.medium {
  width: 160px;
  height: 20px;
}

.pricing-skeleton-line.full {
  width: 100%;
  height: 48px;
  border-radius: 16px;
}

.pricing-skeleton-price {
  width: 70%;
  height: 44px;
}

@keyframes shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -20% 0;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-grid .reveal:nth-child(2),
.module-grid .reveal div:nth-child(2),
.module-grid .reveal div:nth-child(6),
.module-grid .reveal div:nth-child(10) {
  transition-delay: 0.08s;
}

.feature-grid .reveal:nth-child(3),
.module-grid .reveal div:nth-child(3),
.module-grid .reveal div:nth-child(7),
.module-grid .reveal div:nth-child(11) {
  transition-delay: 0.16s;
}

.feature-grid .reveal:nth-child(4),
.module-grid .reveal div:nth-child(4),
.module-grid .reveal div:nth-child(8),
.module-grid .reveal div:nth-child(12) {
  transition-delay: 0.24s;
}

.feature-grid .reveal:nth-child(5),
.module-grid .reveal div:nth-child(5),
.module-grid .reveal div:nth-child(9),
.module-grid .reveal div:nth-child(13) {
  transition-delay: 0.32s;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 225, 232, 0.95);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 252, 0.95));
  padding: 22px;
  box-shadow: 0 18px 34px rgba(10, 31, 45, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 154, 170, 0.12), transparent 70%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 124, 134, 0.22);
  box-shadow: 0 24px 40px rgba(10, 31, 45, 0.11);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(10, 124, 134, 0.16), rgba(10, 124, 134, 0.06));
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.feature-card h3 {
  margin: 12px 0 8px;
}

.feature-card p {
  color: #5a7282;
  line-height: 1.64;
}

.feature-link {
  margin-top: 14px;
  width: fit-content;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 12px 20px rgba(10, 124, 134, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 24px rgba(10, 124, 134, 0.24);
}

.modules {
  padding-top: 32px;
}

.features .section-head::after,
.modules .section-head::after,
.team-section .section-head::after,
.partners-head .section-head::after,
.video-showcase .video-copy::after,
.faq .section-head::after {
  content: "";
  display: block;
  width: 110px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(10, 124, 134, 0.9), rgba(10, 124, 134, 0));
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.module-grid div {
  border: 1px solid rgba(212, 225, 232, 0.9);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 250, 252, 0.94));
  padding: 14px 15px;
  font-size: 13px;
  font-weight: 800;
  color: #405f6f;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 14px 28px rgba(10, 31, 45, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.module-grid div:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 124, 134, 0.22);
  box-shadow: 0 20px 34px rgba(10, 31, 45, 0.08);
}

.module-grid i {
  color: var(--primary);
  font-size: 18px;
}

.team-section {
  padding-top: 34px;
}

.team-shell,
.partners-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 225, 232, 0.92);
  border-radius: 32px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(10, 124, 134, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(194, 106, 27, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 251, 0.96));
  box-shadow: 0 24px 46px rgba(10, 31, 45, 0.08);
}

.team-shell::before,
.partners-shell::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 154, 170, 0.08), transparent 68%);
  pointer-events: none;
}

.team-lead,
.partners-lead {
  max-width: 760px;
}

.team-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.team-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(212, 225, 232, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.95));
  box-shadow: 0 18px 34px rgba(10, 31, 45, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.team-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 154, 170, 0.18), transparent 70%);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 42px rgba(10, 31, 45, 0.12);
  border-color: rgba(10, 124, 134, 0.22);
}

.team-media {
  position: relative;
  min-height: 248px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top left, rgba(10, 124, 134, 0.26), transparent 38%),
    linear-gradient(145deg, #123d57, #0a7c86);
}

.team-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 20, 30, 0.12), rgba(6, 20, 30, 0.34) 60%, rgba(6, 20, 30, 0.62)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 42%);
}

.team-media-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: "Archivo", "Manrope", sans-serif;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(10, 124, 134, 0.95), rgba(12, 66, 92, 0.96));
}

.team-media.show-fallback .team-media-fallback {
  display: flex;
}

.team-card-top {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
}

.team-card-body {
  position: relative;
  z-index: 1;
  padding: 22px 22px 24px;
  display: grid;
  gap: 10px;
}

.team-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.team-card h3 {
  position: relative;
  z-index: 0;
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.team-role {
  position: relative;
  z-index: 0;
  display: block;
  color: #1e6170;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-card p {
  position: relative;
  z-index: 0;
  margin: 0;
  color: #597383;
  line-height: 1.75;
  font-size: 14px;
}

.team-card-teal .team-media {
  background:
    radial-gradient(circle at top left, rgba(83, 218, 230, 0.26), transparent 38%),
    linear-gradient(145deg, #0f4d63, #0a7c86);
}

.team-card-amber .team-media {
  background:
    radial-gradient(circle at top left, rgba(255, 228, 190, 0.24), transparent 36%),
    linear-gradient(145deg, #7a4516, #c07a2f);
}

.team-card-slate .team-media {
  background:
    radial-gradient(circle at top left, rgba(197, 215, 224, 0.2), transparent 36%),
    linear-gradient(145deg, #233b49, #476879);
}

.partners-section {
  padding-top: 30px;
}

.partners-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.partners-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(10, 124, 134, 0.12), rgba(27, 154, 170, 0.08));
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(10, 31, 45, 0.08);
}

.partners-marquee {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.partners-track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  animation: partnersScroll 30s linear infinite;
}

.partners-shell:hover .partners-track {
  animation-play-state: paused;
}

.partner-card {
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(212, 225, 232, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 28px rgba(10, 31, 45, 0.08);
}

.partner-mark {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a7c86, #0d4f66);
  color: #fff;
  font-family: "Archivo", "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  overflow: hidden;
  position: relative;
}

.partner-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.partner-mark-fallback {
  display: none;
}

.partner-mark.show-fallback .partner-mark-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.partner-copy {
  display: grid;
  gap: 4px;
}

.partner-copy strong {
  font-size: 15px;
}

.partner-copy span {
  color: #63808f;
  font-size: 13px;
  line-height: 1.55;
}

@keyframes partnersScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.video-showcase {
  padding-top: 18px;
}

.video-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
}

.video-points {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.video-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 14px;
  color: #405d6d;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(10, 31, 45, 0.05);
}

.video-points i {
  color: var(--secondary);
}

.video-card {
  position: relative;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 20px -10px -10px 20px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(27, 154, 170, 0.18), rgba(194, 106, 27, 0.18));
  filter: blur(12px);
  z-index: 0;
}

.video-shell {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  padding: 14px;
  background: linear-gradient(160deg, #0d232f, #103646 65%, #174b5e);
  box-shadow: 0 30px 60px rgba(11, 29, 42, 0.24);
}

.video-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 2px 14px;
}

.video-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.video-topbar span:first-child {
  background: #ff7b72;
}

.video-topbar span:nth-child(2) {
  background: #ffd866;
}

.video-topbar span:nth-child(3) {
  background: #50d890;
}

.video-topbar p {
  margin-left: 6px;
  color: #d8edf2;
  font-size: 13px;
  font-weight: 700;
}

.video-frame {
  overflow: hidden;
  border-radius: 18px;
  background: #09131a;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(212, 225, 232, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  padding: 16px 18px;
  box-shadow: 0 14px 28px rgba(10, 31, 45, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-list details:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 124, 134, 0.2);
  box-shadow: 0 20px 34px rgba(10, 31, 45, 0.08);
}

.faq-list summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.faq-list p {
  margin-top: 10px;
  color: #5e7583;
  line-height: 1.6;
}

.cta {
  padding-top: 20px;
}

.cta-box {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #054d54, #0a7c86 50%, #1b9aaa);
  box-shadow: 0 28px 54px rgba(4, 52, 58, 0.35);
  color: #fff;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 26px;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: -40px auto auto -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: auto -70px -80px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 72%);
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box .eyebrow {
  color: #c8ebee;
}

.cta-box h2 {
  margin: 10px 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
}

.cta-box p {
  color: #e8f8f9;
  max-width: 620px;
}

.cta-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-meta a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cta-meta a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.44);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-form input {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-form input.invalid,
.lead-form textarea.invalid {
  border-color: rgba(255, 194, 194, 0.85);
  background: rgba(255, 224, 224, 0.14);
}

.lead-form input::placeholder {
  color: #d7eff2;
}

.lead-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  resize: vertical;
  min-height: 88px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.18);
}

.lead-form textarea::placeholder {
  color: #d7eff2;
}

.lead-form button[disabled] {
  opacity: 0.88;
  cursor: wait;
}

.form-status {
  margin: 2px 2px 0;
  min-height: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #d7eff2;
}

.form-status.ok {
  color: #d6ffe8;
}

.form-status.error {
  color: #ffe0e0;
}

.form-success-card {
  display: none;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(214, 255, 232, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(214, 255, 232, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-success-card.show {
  display: flex;
  animation: fadeRise 0.35s ease;
}

.form-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(214, 255, 232, 0.28), rgba(255, 255, 255, 0.12));
  color: #d8ffe8;
  font-size: 24px;
}

.form-success-copy strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.form-success-copy p {
  margin: 5px 0 0;
  color: #e7faf8;
  font-size: 13px;
  line-height: 1.6;
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(212, 225, 232, 0.72);
  background: rgba(255, 255, 255, 0.36);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-row p {
  color: #597483;
  font-size: 14px;
}

.footer-row a {
  color: var(--primary-deep);
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.reveal,
.faq-list .reveal,
.module-grid.reveal div,
.stat-grid .reveal {
  transform: translateY(26px) scale(0.985);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.module-grid.reveal.show div {
  animation: staggerRise 0.55s ease both;
}

.module-grid.reveal.show div:nth-child(2) {
  animation-delay: 0.04s;
}

.module-grid.reveal.show div:nth-child(3) {
  animation-delay: 0.08s;
}

.module-grid.reveal.show div:nth-child(4) {
  animation-delay: 0.12s;
}

.module-grid.reveal.show div:nth-child(5) {
  animation-delay: 0.16s;
}

.module-grid.reveal.show div:nth-child(6) {
  animation-delay: 0.2s;
}

.module-grid.reveal.show div:nth-child(7) {
  animation-delay: 0.24s;
}

.module-grid.reveal.show div:nth-child(8) {
  animation-delay: 0.28s;
}

.module-grid.reveal.show div:nth-child(9) {
  animation-delay: 0.32s;
}

.module-grid.reveal.show div:nth-child(10) {
  animation-delay: 0.36s;
}

.module-grid.reveal.show div:nth-child(11) {
  animation-delay: 0.4s;
}

.module-grid.reveal.show div:nth-child(12) {
  animation-delay: 0.44s;
}

.module-grid.reveal.show div:nth-child(13) {
  animation-delay: 0.48s;
}

.delay-1 {
  transition-delay: 0.14s;
}

.delay-2 {
  transition-delay: 0.28s;
}

@keyframes staggerRise {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-suite,
.restaurant-release {
  padding: 34px 0 20px;
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.suite-card,
.restaurant-brand-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 124, 134, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(27, 154, 170, 0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(194, 106, 27, 0.1), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 251, 0.95));
  box-shadow: 0 22px 42px rgba(9, 41, 55, 0.1);
}

.suite-card {
  padding: 24px;
}

.suite-card-restaurant,
.restaurant-brand-card,
.restaurant-console,
.restaurant-stage-card-accent {
  border-color: rgba(194, 106, 27, 0.2);
  background:
    radial-gradient(circle at top right, rgba(162, 75, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(135, 220, 121, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(12, 13, 23, 0.98), rgba(23, 14, 34, 0.96));
  color: #f7f3ea;
}

.suite-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.suite-badge,
.suite-kicker,
.restaurant-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.suite-badge-live {
  background: rgba(11, 143, 85, 0.1);
  color: var(--success);
}

.suite-badge-soon,
.restaurant-status {
  background: rgba(255, 208, 120, 0.12);
  color: #ffd47b;
  border: 1px solid rgba(255, 212, 123, 0.18);
}

.suite-kicker {
  background: rgba(10, 124, 134, 0.08);
  color: #0b6972;
}

.suite-card-restaurant .suite-kicker {
  background: rgba(255, 255, 255, 0.08);
  color: #fff3d3;
}

.suite-card h3,
.restaurant-copy h2 {
  margin: 0;
  line-height: 1.12;
}

.suite-card p,
.restaurant-visual p {
  color: #5c7483;
  line-height: 1.7;
}

.suite-card-restaurant p,
.suite-card-restaurant h3,
.restaurant-brand-card p,
.restaurant-info-card h3,
.restaurant-info-card li {
  color: #f7f3ea;
}

.suite-list,
.info-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.suite-list li,
.info-list li {
  position: relative;
  padding-left: 18px;
  color: #4a6472;
  line-height: 1.6;
}

.suite-list li::before,
.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #f0b45d);
}

.suite-card-restaurant .suite-list li,
.restaurant-info-card .info-list li {
  color: rgba(247, 243, 234, 0.88);
}

.suite-card .btn,
.restaurant-hero-copy .btn {
  margin-top: 22px;
}

.restaurant-release {
  position: relative;
}

.restaurant-release::before {
  content: "";
  position: absolute;
  inset: 40px 0 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 10%, rgba(162, 75, 255, 0.14), transparent 24%),
    radial-gradient(circle at 15% 22%, rgba(255, 191, 94, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(8, 13, 20, 0.02), rgba(8, 13, 20, 0));
}

.restaurant-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.restaurant-hero-copy {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(10, 124, 134, 0.14);
  background:
    radial-gradient(circle at top left, rgba(194, 106, 27, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(27, 154, 170, 0.14), transparent 30%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 250, 0.95));
  box-shadow: 0 28px 48px rgba(9, 41, 55, 0.11);
}

.restaurant-chip-row,
.restaurant-device-list,
.restaurant-console-metrics,
.restaurant-stage-grid,
.restaurant-board-grid {
  display: grid;
  gap: 14px;
}

.restaurant-chip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.restaurant-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(12, 30, 42, 0.06);
  color: #456574;
  border: 1px solid rgba(12, 30, 42, 0.08);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.restaurant-sublead {
  margin-top: 14px;
  color: #506b79;
  font-size: 15px;
  line-height: 1.75;
  max-width: 60ch;
}

.restaurant-device-list {
  margin-top: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.restaurant-device-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(10, 124, 134, 0.1);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  color: #244554;
}

.restaurant-device-list i {
  color: var(--primary);
  font-size: 18px;
}

.restaurant-showcase {
  display: grid;
  gap: 16px;
}

.restaurant-scene {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.restaurant-brand-card,
.restaurant-console,
.restaurant-stage-card,
.restaurant-board-card,
.restaurant-floor-card,
.restaurant-role-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 44px rgba(9, 41, 55, 0.12);
}

.restaurant-brand-card {
  padding: 20px;
}

.restaurant-brand-card img {
  width: 100%;
  display: block;
  border-radius: 24px;
  background: #060608;
  box-shadow: 0 28px 44px rgba(0, 0, 0, 0.28);
}

.restaurant-brand-card p {
  margin-top: 16px;
  color: rgba(247, 243, 234, 0.82);
}

.restaurant-console {
  padding: 20px;
  color: #f7f3ea;
}

.restaurant-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.restaurant-console-top strong {
  font-size: 18px;
}

.restaurant-console-top span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.restaurant-console-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 14px;
}

.restaurant-console-metrics article {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-console-metrics span {
  display: block;
  color: rgba(247, 243, 234, 0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.restaurant-console-metrics strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.restaurant-console-queue {
  display: grid;
  gap: 10px;
}

.restaurant-queue-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.restaurant-queue-item b {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 208, 120, 0.22), rgba(255, 208, 120, 0.08));
  color: #ffe6af;
  font-size: 13px;
}

.restaurant-queue-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.restaurant-queue-item p {
  margin-top: 5px;
  color: rgba(247, 243, 234, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.restaurant-queue-item span {
  color: #ffd47b;
  font-size: 12px;
  font-weight: 800;
}

.restaurant-stage-grid {
  margin-top: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.restaurant-floor-card,
.restaurant-role-card {
  padding: 24px;
  border: 1px solid rgba(10, 124, 134, 0.12);
  background:
    radial-gradient(circle at top right, rgba(27, 154, 170, 0.1), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 250, 0.95));
}

.restaurant-scene-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.restaurant-scene-head h3 {
  margin: 6px 0 0;
  font-size: 24px;
  line-height: 1.15;
}

.restaurant-mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 124, 134, 0.08);
  color: #0b6972;
  border: 1px solid rgba(10, 124, 134, 0.1);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.restaurant-floor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.restaurant-table-card {
  min-height: 108px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(12, 30, 42, 0.08);
  background: rgba(255, 255, 255, 0.82);
  display: grid;
  align-content: space-between;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.restaurant-table-card strong {
  font-family: "Archivo", "Manrope", sans-serif;
  font-size: 24px;
}

.restaurant-table-card span {
  font-size: 13px;
  font-weight: 800;
}

.restaurant-table-wide {
  grid-column: span 2;
}

.restaurant-table-free {
  background: linear-gradient(145deg, rgba(220, 249, 234, 0.92), rgba(255, 255, 255, 0.95));
}

.restaurant-table-free span {
  color: #0b8f55;
}

.restaurant-table-busy {
  background: linear-gradient(145deg, rgba(255, 241, 222, 0.96), rgba(255, 255, 255, 0.95));
}

.restaurant-table-busy span {
  color: #b46a1c;
}

.restaurant-table-booked {
  background: linear-gradient(145deg, rgba(234, 235, 255, 0.96), rgba(255, 255, 255, 0.95));
}

.restaurant-table-booked span {
  color: #5f53c8;
}

.restaurant-table-cleaning {
  background: linear-gradient(145deg, rgba(229, 246, 249, 0.96), rgba(255, 255, 255, 0.95));
}

.restaurant-table-cleaning span {
  color: #0b7f89;
}

.restaurant-role-list {
  display: grid;
  gap: 12px;
}

.restaurant-role-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(10, 124, 134, 0.08);
}

.restaurant-role-item i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(10, 124, 134, 0.14), rgba(10, 124, 134, 0.04));
  color: var(--primary);
  font-size: 19px;
}

.restaurant-role-item strong {
  display: block;
  font-size: 15px;
}

.restaurant-role-item p {
  margin-top: 5px;
  color: #567280;
  font-size: 13px;
  line-height: 1.6;
}

.restaurant-stage-card {
  padding: 24px;
  border: 1px solid rgba(10, 124, 134, 0.12);
  background:
    radial-gradient(circle at top right, rgba(27, 154, 170, 0.1), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 250, 0.95));
}

.restaurant-stage-card-accent {
  color: #f7f3ea;
}

.restaurant-stage-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(10, 124, 134, 0.1);
  color: #0b6972;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.restaurant-stage-card-accent .restaurant-stage-tag {
  background: rgba(255, 255, 255, 0.08);
  color: #ffe6af;
}

.restaurant-stage-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.14;
}

.restaurant-stage-card .info-list {
  margin-top: 0;
}

.restaurant-board {
  margin-top: 22px;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(10, 124, 134, 0.12);
  background:
    radial-gradient(circle at 15% 0%, rgba(27, 154, 170, 0.12), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(255, 208, 120, 0.12), transparent 18%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 249, 0.95));
  box-shadow: 0 24px 44px rgba(9, 41, 55, 0.1);
}

.restaurant-board .section-head h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.restaurant-board-grid {
  margin-top: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.restaurant-board-card {
  padding: 22px;
  border: 1px solid rgba(10, 124, 134, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.restaurant-board-card .icon {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(10, 124, 134, 0.14), rgba(10, 124, 134, 0.04));
  color: var(--primary);
  font-size: 21px;
}

.restaurant-board-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.restaurant-board-card p {
  color: #54707f;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .nav-wrap {
    flex-wrap: wrap;
  }

  .hero-grid,
  .cta-box,
  .video-grid,
  .suite-grid,
  .restaurant-hero,
  .restaurant-scene,
  .restaurant-page-hero-grid {
    grid-template-columns: 1fr;
  }

  .download-head-main {
    grid-template-columns: 1fr;
  }

  .pricing-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-cycle-switch {
    justify-content: flex-start;
  }

  .feature-grid,
  .pricing-grid,
  .stat-grid,
  .module-grid,
  .restaurant-device-list,
  .restaurant-stage-grid,
  .restaurant-console-metrics,
  .restaurant-board-grid,
  .restaurant-floor-grid,
  .restaurant-page-proof-grid,
  .restaurant-page-audience-grid,
  .restaurant-page-module-grid,
  .restaurant-page-tags {
    grid-template-columns: repeat(2, 1fr);
  }

  .desktop-cta {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 10px);
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    border-radius: 10px;
    padding: 10px;
  }

  .nav a:hover {
    background: var(--surface-soft);
  }

  .nav a::after {
    display: none;
  }

  .nav a.active {
    background: rgba(10, 124, 134, 0.08);
  }
}

@media (max-width: 920px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .top-ribbon {
    display: none;
  }

  .nav-wrap {
    row-gap: 10px;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .lang-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .download-head-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-preview {
    padding: 16px;
  }

  .download-preview-metrics {
    grid-template-columns: 1fr;
  }

  .download-card {
    padding: 20px;
    border-radius: 24px;
  }

  .chart {
    padding: 14px 12px 12px;
  }

  .chart-badge {
    position: static;
    margin-bottom: 8px;
  }

  .download-card-head h3 {
    max-width: none;
  }

  .download-link {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 18px;
  }

  .download-links {
    grid-template-columns: 1fr;
  }

  .download-link-action {
    width: 100%;
    justify-content: center;
    min-width: 0;
  }

  .download-link-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .online-dot {
    min-width: 0;
  }

  .lang-btn {
    flex: 1 1 0;
  }

  .hero {
    padding-top: 42px;
  }

  section {
    padding: 46px 0;
  }

  .lead {
    font-size: 16px;
  }

  .feature-grid,
  .pricing-grid,
  .stat-grid,
  .module-grid,
  .team-grid,
  .restaurant-device-list,
  .restaurant-stage-grid,
  .restaurant-console-metrics,
  .restaurant-board-grid,
  .restaurant-floor-grid,
  .restaurant-page-proof-grid,
  .restaurant-page-audience-grid,
  .restaurant-page-module-grid,
  .restaurant-page-tags {
    grid-template-columns: 1fr;
  }

  .pricing-shell {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .team-shell,
  .partners-shell {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .partners-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .partners-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .partners-track {
    animation-duration: 22s;
  }

  .partner-card {
    min-width: 240px;
  }

  .pricing-card-popular {
    transform: none;
  }

  .cta-box {
    padding: 24px;
  }

  .kpi-value {
    font-size: 18px;
  }

  .suite-card,
  .restaurant-brand-card,
  .restaurant-console,
  .restaurant-stage-card,
  .restaurant-board,
  .restaurant-board-card,
  .restaurant-floor-card,
  .restaurant-role-card {
    border-radius: 24px;
  }

  .restaurant-hero-copy,
  .restaurant-board {
    padding: 22px;
  }

  .restaurant-queue-item {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .restaurant-queue-item span {
    grid-column: 2;
  }
}
