/* =========================================================
   MamaiMenu · Landing
   Temas: claro (por defecto) y oscuro vía [data-theme]
   ========================================================= */

/* ---------- Tokens · Tema claro ---------- */
:root,
:root[data-theme="light"] {
  color-scheme: light;

  --bg: #FFF4F7;
  /* fondo rosado muy claro */
  --surface: #FFFFFF;
  /* tarjetas */
  --surface-2: #FBE7EF;
  /* chips, rellenos suaves */
  --text: #17121A;
  /* negro principal */
  --muted: #5F5260;
  --line: #F1D9E3;
  --line-soft: #F5E1EA;

  --accent: #D6246E;
  /* rosado de fondo (texto blanco encima 6.5:1) */
  --accent-hover: #B81B5C;
  --on-accent: #FFFFFF;
  --accent-text: #C21E63;
  /* rosado para texto/detalles sobre fondo */
  --accent-soft: #FCE1EC;
  --accent-soft-text: #8E1548;
  --on-accent-muted: #FFE3EF;

  --inverse-bg: #17121A;
  /* botones oscuros, chip activo, avisos */
  --inverse-text: #FFFFFF;
  --inverse-hover: #3A2E3B;

  --block-bg: #17121A;
  /* secciones negras (Cómo funciona, equipo, footer) */
  --block-bg-2: #251D27;
  --block-text: #FFFFFF;
  --block-muted: #D9CCD6;
  --block-accent: #FF8FBD;
  --block-line: #3A2E3B;

  --icon-2-bg: #17121A;
  --icon-2-fg: #FF8FBD;

  --tag-neutral-bg: #F3E8EE;
  --tag-neutral-text: #4A3A47;

  --hero-circle: #F9D3E2;
  --phone-frame: #17121A;
  --header-bg: rgba(255, 244, 247, 0.92);
  --input-border: #E6C5D4;
  --placeholder: #8C7A88;
  --focus-ring: rgba(214, 36, 110, 0.25);
  --shadow: rgba(23, 18, 26, 0.12);
  --shadow-strong: rgba(23, 18, 26, 0.18);
  --error: #B3261E;
  --logo-bg: transparent;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 10vw, 120px);
  --radius-lg: clamp(24px, 3vw, 36px);
  --radius-md: 24px;
}

/* ---------- Tokens · Tema oscuro ---------- */
:root[data-theme="dark"] {
  color-scheme: dark;

  --bg: #0F0B10;
  --surface: #1B141C;
  --surface-2: #2A1F2B;
  --text: #F8EEF3;
  --muted: #BFAFBA;
  --line: #33262F;
  --line-soft: #2E232F;

  --accent: #D6246E;
  --accent-hover: #B81B5C;
  --on-accent: #FFFFFF;
  --accent-text: #FF7AB2;
  --accent-soft: #3A1627;
  --accent-soft-text: #FFB3D1;
  --on-accent-muted: #FFE3EF;

  --inverse-bg: #F8EEF3;
  --inverse-text: #17121A;
  --inverse-hover: #FFFFFF;

  --block-bg: #1B141C;
  --block-bg-2: #2A1F2B;
  --block-text: #F8EEF3;
  --block-muted: #CDBDC8;
  --block-accent: #FF8FBD;
  --block-line: #3A2E3B;

  --icon-2-bg: #2A1F2B;
  --icon-2-fg: #FF8FBD;

  --tag-neutral-bg: #2E232F;
  --tag-neutral-text: #E6D6E0;

  --hero-circle: #2A1522;
  --phone-frame: #000000;
  --header-bg: rgba(15, 11, 16, 0.9);
  --input-border: #4A3A47;
  --placeholder: #9C8A98;
  --focus-ring: rgba(255, 122, 178, 0.35);
  --shadow: rgba(0, 0, 0, 0.4);
  --shadow-strong: rgba(0, 0, 0, 0.55);
  --error: #FF8A80;
  --logo-bg: #FFF4F7;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color .25s ease, color .25s ease;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
}

h3 {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
}

a {
  color: var(--accent-text);
}

a:hover {
  color: var(--accent-hover);
}

:focus-visible {
  outline: 3px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--inverse-bg);
  color: var(--inverse-text);
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
  color: var(--inverse-text);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.btn-sm {
  min-height: 44px;
  padding: 0 22px;
  font-size: 16px;
}

.btn-lg {
  min-height: 60px;
  padding: 0 32px;
  font-size: 18px;
}

.btn-block {
  width: 100%;
  min-height: 56px;
}

.btn-accent {
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: var(--on-accent);
}

.btn-dark {
  background: var(--inverse-bg);
  color: var(--inverse-text);
}

.btn-dark:hover {
  background: var(--inverse-hover);
  color: var(--inverse-text);
}

.btn-outline {
  border-color: var(--text);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

.btn[disabled] {
  opacity: .6;
  cursor: progress;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 80px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  margin-right: auto;
}

.brand:hover {
  color: var(--text);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--logo-bg);
}

:root[data-theme="dark"] .brand-logo {
  padding: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 16px;
  font-weight: 500;
}

.site-nav a:not(.btn) {
  color: var(--text);
  text-decoration: none;
}

.site-nav a:not(.btn):hover {
  color: var(--accent-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background-color .15s ease;
}

.icon-btn:hover {
  background: var(--surface-2);
}

.nav-toggle {
  display: none;
}

/* Sol en tema oscuro (para pasar a claro), luna en tema claro */
.theme-toggle .icon-sun {
  display: none;
}

:root[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

:root[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(56px, 8vw, 96px) clamp(72px, 9vw, 112px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-text);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(44px, 6.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.lead {
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checks li::before,
.team-list li::before {
  content: "";
  flex-shrink: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.checks li::before {
  width: 18px;
  height: 18px;
  background: var(--accent-text);
}

/* Phone mockup */
.hero-visual {
  position: relative;
  height: 680px;
  display: grid;
  place-items: center;
}

.hero-circle {
  position: absolute;
  width: min(520px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--hero-circle);
}

.phone {
  position: relative;
  width: 320px;
  height: 650px;
  padding: 12px;
  border-radius: 48px;
  background: var(--phone-frame);
  box-shadow: 0 30px 60px var(--shadow-strong);
}

:root[data-theme="dark"] .phone {
  box-shadow: 0 0 0 1px var(--block-line), 0 30px 60px var(--shadow-strong);
}

.phone-screen {
  height: 100%;
  border-radius: 38px;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 36px 20px 16px;
  border-bottom: 1px solid var(--line-soft);
}

.phone-table {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
}

.phone-hello {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.phone-chips {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 13px;
  font-weight: 600;
}

.chip.is-active {
  background: var(--inverse-bg);
  color: var(--inverse-text);
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 20px;
}

.dish {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
}

.dish-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--img);
  flex-shrink: 0;
}

.dish-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}

.dish-info strong {
  font-size: 14px;
}

.dish-info span {
  font-size: 12px;
  color: var(--muted);
}

.dish-info em {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-text);
}

.dish-add {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 20px;
  font-weight: 600;
}

.phone-cart {
  margin: auto 20px 24px;
  height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--inverse-bg);
  color: var(--inverse-text);
  font-size: 14px;
  font-weight: 700;
}

.float-card {
  position: absolute;
  border-radius: 20px;
}

.float-tracking {
  right: 0;
  top: 96px;
  width: 240px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px var(--shadow);
}

.float-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .06em;
}

.float-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}

.float-status .dot {
  width: 10px;
  height: 10px;
}

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

.progress span {
  height: 6px;
  border-radius: 3px;
  background: var(--line);
}

.progress span.on {
  background: var(--accent-text);
}

.float-waiter {
  left: 0;
  bottom: 96px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--inverse-bg);
  color: var(--inverse-text);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 18px 40px var(--shadow-strong);
}

@media (prefers-reduced-motion: no-preference) {
  .float-tracking {
    animation: pop-in .6s .5s both cubic-bezier(.2, .8, .2, 1);
  }

  .float-waiter {
    animation: pop-in .6s .9s both cubic-bezier(.2, .8, .2, 1);
  }

  @keyframes pop-in {
    from {
      opacity: 0;
      transform: translateY(12px) scale(.96);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }
}

/* ---------- Sections ---------- */
.section {
  padding-block: var(--section-y);
}

.section-flush {
  padding-top: 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-head.split {
  max-width: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 64px;
}

.section-head.split h2 {
  max-width: 640px;
}

.section-head.split p {
  max-width: 440px;
  font-size: 19px;
  color: var(--block-muted);
}

.eyebrow {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-text);
  letter-spacing: .04em;
}

.eyebrow-light {
  color: var(--block-accent);
}

.section-dark {
  background: var(--block-bg);
  color: var(--block-text);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px;
  border-radius: 28px;
  background: var(--block-bg-2);
}

.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  color: var(--block-accent);
}

.step h3 {
  font-size: 24px;
}

.step p {
  color: var(--block-muted);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
}

.feature p {
  font-size: 16px;
  color: var(--muted);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon.warm {
  background: var(--accent-soft);
  color: var(--accent-text);
}

.feature-icon.green {
  background: var(--icon-2-bg);
  color: var(--icon-2-fg);
}

/* Team */
.team {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--block-bg);
  color: var(--block-text);
}

:root[data-theme="dark"] .team {
  border: 1px solid var(--line);
}

.team-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: clamp(36px, 6vw, 72px);
}

.team-copy h2 {
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.1;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
  line-height: 1.5;
}

.team-list li {
  display: flex;
  gap: 14px;
}

.team-list li::before {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background: var(--block-accent);
}

.team-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(28px, 6vw, 72px);
  background: var(--block-bg-2);
}

.ticket {
  padding: 22px 24px;
  border-radius: 20px;
  background: var(--surface);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.ticket-row strong {
  font-size: 18px;
}

.ticket-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
  color: var(--muted);
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.tag-green {
  background: var(--accent-soft);
  color: var(--accent-soft-text);
}

.tag-warm {
  background: var(--inverse-bg);
  color: var(--inverse-text);
}

.tag-neutral {
  background: var(--tag-neutral-bg);
  color: var(--tag-neutral-text);
}

.team-caption {
  font-size: 13px;
  color: var(--block-muted);
}

/* FAQ */
.faq-title {
  margin-bottom: 48px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: transparent;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg) translateY(-4px);
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg) translateY(-2px);
}

.faq-item summary:focus-visible {
  outline-offset: -3px;
  border-radius: var(--radius-md);
}

.faq-item p {
  padding: 0 32px 28px;
  font-size: 16px;
  color: var(--muted);
}

/* CTA / form */
.cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
  padding: clamp(32px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: var(--on-accent);
}

.cta-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-copy h2 {
  line-height: 1.05;
}

.cta-copy p {
  font-size: 19px;
  color: var(--on-accent-muted);
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field .optional { font-weight: 500; color: var(--muted); }
.field label {
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field textarea {
  height: 52px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1.5px solid var(--input-border);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 16px;
}

.field textarea { height: auto; min-height: 96px; padding: 14px 16px; line-height: 1.5; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder {
  color: var(--placeholder);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  font-size: 14px;
  color: var(--error);
}

.field-error:empty {
  display: none;
}

.form-status {
  font-size: 15px;
  font-weight: 600;
}

.form-status:empty {
  display: none;
}

.form-status.is-ok {
  color: var(--accent-text);
}

.form-status.is-error {
  color: var(--error);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Footer */
.site-footer {
  background: var(--block-bg);
  color: var(--block-muted);
  padding-block: 56px;
  font-size: 15px;
}

:root[data-theme="dark"] .site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 40px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand .brand-name {
  color: var(--block-text);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  padding: 4px;
  border-radius: 12px;
  background: #FFF4F7;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.footer-nav a {
  color: var(--block-muted);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--block-text);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--block-line);
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px var(--gutter) 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.btn) {
    padding: 14px 4px;
    font-size: 18px;
  }

  .site-nav .btn {
    margin-top: 8px;
    min-height: 52px;
  }

  .section-head.split {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team {
    grid-template-columns: 1fr;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .brand-name {
    font-size: 21px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    height: 600px;
  }

  .phone {
    transform: scale(.9);
  }

  .float-tracking {
    top: 40px;
    width: 210px;
  }

  .float-waiter {
    bottom: 40px;
    font-size: 14px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature,
  .step {
    padding: 28px;
  }

  .faq-item summary {
    padding: 22px 24px;
    font-size: 18px;
  }

  .faq-item p {
    padding: 0 24px 22px;
  }

  .demo-form {
    padding: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .hero-visual {
    height: 540px;
  }

  .phone {
    transform: scale(.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}