/* =============================================================================
   INATIVE RESERVATIONS — Marketing Website
   style.css
   Dark premium SaaS — deep red / graphite / black palette
   ============================================================================= */

/* ─── Custom Properties ────────────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --red:           #c8102e;
  --red-dark:      #8b0d1f;
  --red-bright:    #e8142e;
  --red-glow:      rgba(200, 16, 46, 0.35);
  --red-subtle:    rgba(200, 16, 46, 0.08);

  /* Background scale */
  --bg-base:       #0a0a0b;
  --bg-surface:    #111114;
  --bg-card:       #16161a;
  --bg-card-hover: #1b1b21;
  --bg-elevated:   #1e1e26;

  /* Borders */
  --border:        rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.12);
  --border-red:    rgba(200,16,46,0.3);

  /* Text */
  --text-primary:  #f0f0f2;
  --text-secondary:#9090a2;
  --text-muted:    #55555f;

  /* UI tokens */
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     18px;
  --radius-xl:     24px;

  --shadow-card:   0 4px 24px rgba(0,0,0,0.45);
  --shadow-glow:   0 0 40px var(--red-glow);
  --shadow-panel:  0 8px 48px rgba(0,0,0,0.6);

  --transition:    0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.12s ease;

  --max-width:     1200px;
  --container-pad: clamp(1.25rem, 5vw, 2.5rem);
  --font-sans:     'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Container ────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 0 20px var(--red-glow);
}

.btn-outline {
  border: 1.5px solid var(--border-strong);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-bright);
  background: var(--red-subtle);
}

.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
}
.btn-ghost:hover { color: var(--text-primary); }

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-glow:hover {
  box-shadow: 0 0 32px var(--red-glow), 0 4px 16px rgba(0,0,0,0.4);
}

/* ─── Section shared ───────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.badge-soon {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.15rem 0.55rem;
  vertical-align: middle;
  margin-left: 0.35rem;
}

/* ─── Navigation ───────────────────────────────────────────────────────────── */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), border-color var(--transition),
              backdrop-filter var(--transition);
}
.nav-header.scrolled {
  background: rgba(10, 10, 11, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
}
.logo-img--sm { height: 32px; }
.logo-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-mark {
  color: var(--red);
  font-size: 1.25rem;
  line-height: 1;
}
.logo-text {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  text-transform: lowercase;
}
.logo-text-light {
  font-weight: 400;
  color: var(--text-secondary);
}
.logo-wordmark {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  white-space: nowrap;
  line-height: 1;
}
.logo-wordmark-dim {
  font-weight: 300;
  color: var(--text-muted);
}
.footer-logo .logo-wordmark {
  font-size: 1.3rem;
}
@media (max-width: 400px) {
  .logo-wordmark { font-size: 1rem; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.45rem 0.8rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem var(--container-pad) 1.5rem;
  background: rgba(10,10,11,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-cta { margin-top: 1rem; align-self: flex-start; }

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: clamp(7rem, 14vw, 11rem);
  padding-bottom: 0;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,16,46,0.45) 0%, transparent 70%);
  top: -200px;
  left: -150px;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,13,31,0.3) 0%, transparent 70%);
  top: 100px;
  right: -100px;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.5) 70%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.hero-headline {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 820px;
  margin: 0 auto 1.5rem;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--red-bright) 0%, #ff4d6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-strong);
}

/* Hero mockup */
.hero-mockup-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding-bottom: 0;
}
.hero-mockup-wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--bg-base), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-panel), 0 -4px 60px rgba(200,16,46,0.08);
  max-width: 960px;
  margin: 0 auto;
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}
.mockup-dot:first-child { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
  flex: 1;
  text-align: center;
}

.mockup-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 320px;
}

.mockup-sidebar {
  background: var(--bg-surface);
  border-right: 1px solid var(--border);
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.sidebar-item {
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: default;
}
.sidebar-item.active {
  background: var(--red-subtle);
  color: var(--red-bright);
  border-left: 2px solid var(--red);
}

.mockup-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.mockup-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
}
.mockup-card.mc-red {
  border-color: var(--border-red);
  background: rgba(200,16,46,0.06);
}
.mc-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.mc-value {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.mc-value.mc-warn { color: #f59e0b; }
.mc-value.mc-ok   { color: #22c55e; }
.mc-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.mockup-bookings {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.mb-header {
  display: grid;
  grid-template-columns: 50px 1fr 120px 40px 90px;
  padding: 0.5rem 1rem;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  gap: 0.5rem;
}
.mb-h-title { grid-column: 1 / 3; font-size: 0.7rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.mb-h-zone, .mb-h-covers, .mb-h-status { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.mb-row {
  display: grid;
  grid-template-columns: 50px 1fr 120px 40px 90px;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
}
.mb-row:last-child { border-bottom: none; }
.mb-time { color: var(--text-secondary); font-weight: 600; font-variant-numeric: tabular-nums; }
.mb-name { color: var(--text-primary); font-weight: 500; }
.mb-zone { color: var(--text-muted); font-size: 0.75rem; }
.mb-covers { color: var(--text-secondary); font-weight: 600; text-align: center; }
.mb-status {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}
.status-confirmed {
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.2);
}
.status-pending {
  background: rgba(245,158,11,0.12);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.2);
}

/* ─── Trust strip ───────────────────────────────────────────────────────────── */
.trust-strip {
  padding: 5rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-intro {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.trust-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), transform var(--transition);
}
.trust-card:hover {
  border-color: var(--border-red);
  transform: translateY(-2px);
}

.tc-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  color: var(--red-bright);
}
.tc-icon svg { width: 18px; height: 18px; }

.tc-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.tc-text strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}
.tc-text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── Features grid ─────────────────────────────────────────────────────────── */
.features {
  padding: 6rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  padding: 2rem;
  background: var(--bg-card);
  transition: background var(--transition);
}
.feature-card:hover {
  background: var(--bg-card-hover);
}
.feature-card--highlight {
  background: linear-gradient(135deg, rgba(200,16,46,0.08) 0%, var(--bg-card) 60%);
}
.feature-card--highlight:hover {
  background: linear-gradient(135deg, rgba(200,16,46,0.12) 0%, var(--bg-card-hover) 60%);
}

.fc-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1rem;
}
.fc-icon svg { width: 28px; height: 28px; }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Real restaurants ──────────────────────────────────────────────────────── */
.real-restaurants {
  padding: 6rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.real-restaurants-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.real-restaurants-text .section-title,
.real-restaurants-text .section-sub { text-align: left; }
.real-restaurants-text .section-header { text-align: left; margin-bottom: 2rem; }
.real-restaurants-text .section-tag { }

.real-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.real-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.rl-icon {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 1px;
}
.rl-icon svg { width: 16px; height: 16px; }
.real-list li strong {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.1rem;
}

/* Zone panel */
.zone-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 1rem;
}
.zone-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.zone-panel-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.zone-panel-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 100px;
  padding: 0.15rem 0.55rem;
}

.zone-rows { padding: 0.5rem 1.25rem; }
.zone-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.zone-row:last-child { border-bottom: none; }
.zone-info {
  width: 140px;
  flex-shrink: 0;
}
.zone-name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}
.zone-cap {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.zone-bar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.zone-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.zone-bar-fill {
  height: 100%;
  width: var(--fill, 0%);
  background: var(--red);
  border-radius: 100px;
  transition: width 0.8s ease;
}
.zone-bar-fill--full { background: #ef4444; }
.zone-pct {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  width: 34px;
  text-align: right;
}
.zone-pct--full { color: #ef4444; }
.zone-pct--free { color: #22c55e; }

.zone-panel-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.zone-footer-cta {
  color: var(--red);
  font-weight: 600;
  cursor: default;
}

/* Block panel */
.block-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.block-panel-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.block-panel-row:last-child { border-bottom: none; }
.bp-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-sm);
  color: #ef4444;
}
.bp-icon--ok {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.2);
  color: #22c55e;
}
.bp-icon svg { width: 18px; height: 18px; }
.bp-content {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.bp-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ef4444;
}
.bp-label--ok { color: #22c55e; }
.bp-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}
.bp-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Booking experience ────────────────────────────────────────────────────── */
.booking-exp {
  padding: 6rem 0;
}

.booking-flow {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
  margin-top: 1rem;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
  cursor: default;
  position: relative;
}
.booking-step::before {
  content: '';
  position: absolute;
  left: 2.05rem;
  top: 100%;
  width: 1px;
  height: calc(100% - 0px);
  background: var(--border);
  z-index: 0;
}
.booking-step:last-child::before { display: none; }

.booking-step.active,
.booking-step:hover {
  background: var(--bg-card);
  border-color: var(--border);
}
.booking-step.active { border-color: var(--border-red); }

.bs-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
.booking-step.active .bs-num {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.bs-content strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}
.bs-content span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Phone mockup */
.booking-phone-mockup {
  display: flex;
  justify-content: center;
}
.phone-shell {
  width: 300px;
  background: #1a1a22;
  border-radius: 36px;
  border: 1.5px solid var(--border-strong);
  box-shadow: var(--shadow-panel), inset 0 0 0 1px rgba(255,255,255,0.04);
  padding: 14px;
  position: relative;
}
.phone-shell::before {
  content: '';
  display: block;
  width: 90px;
  height: 8px;
  background: #111;
  border-radius: 100px;
  margin: 0 auto 12px;
}

.phone-inner {
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.phone-logo {
  height: 22px;
  width: auto;
}
.phone-logo-fallback {
  color: var(--red);
  font-size: 1rem;
}
.phone-restaurant-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.phone-step-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.phone-calendar { }
.cal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.cal-nav span:first-child,
.cal-nav span:last-child {
  color: var(--text-muted);
  font-size: 1rem;
  cursor: default;
}

.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.35rem;
}
.cal-days-header span {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cd, .cd-empty {
  text-align: center;
  font-size: 0.75rem;
  padding: 0.3rem 0;
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: default;
}
.cd:hover { background: var(--bg-elevated); }
.cd-closed { color: var(--text-muted); opacity: 0.4; }
.cd-selected {
  background: var(--red);
  color: #fff;
  font-weight: 700;
}

.phone-time-slots { }
.pts-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.pts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}
.pts-slot {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}
.pts-sel {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.pts-full {
  color: var(--text-muted);
  opacity: 0.4;
  cursor: default;
}

.phone-cta {
  background: var(--red);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.7rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: default;
  width: 100%;
}

/* ─── Staff experience ──────────────────────────────────────────────────────── */
.staff-exp {
  padding: 6rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.staff-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.staff-card:hover {
  border-color: var(--border-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.sc-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  color: var(--red-bright);
  margin-bottom: 1rem;
}
.sc-icon-wrap svg { width: 22px; height: 22px; }

.staff-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.staff-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Roadmap ───────────────────────────────────────────────────────────────── */
.roadmap {
  padding: 6rem 0;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.roadmap-card {
  padding: 1.75rem;
  background: var(--bg-card);
  transition: background var(--transition);
}
.roadmap-card:hover { background: var(--bg-card-hover); }

.rm-status {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.85rem;
}
.rm-status--dev {
  background: rgba(200,16,46,0.12);
  color: var(--red-bright);
  border: 1px solid var(--border-red);
}
.rm-status--soon {
  background: rgba(245,158,11,0.1);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.25);
}
.rm-status--future {
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.roadmap-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}
.roadmap-card p {
  font-size: 0.8375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ─── CTA band ──────────────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}
.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.45) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139,13,31,0.4) 0%, transparent 70%);
  bottom: -100px;
  right: 10%;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-band-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.cta-band-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}
.cta-band-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--red-bright) 0%, #ff4d6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-band-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.cta-band-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand { }
.footer-logo { margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.5rem;
  max-width: 280px;
}
.footer-group {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.footer-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.footer-link:hover { color: var(--text-primary); }
.footer-link--muted { color: var(--text-muted); }
.footer-cta-btn {
  margin-top: 0.5rem;
  align-self: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
}
.footer-cta-btn:hover { border-color: var(--red); color: var(--red-bright); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Scroll-reveal animations ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Screenshot slot — shows real PNG when available, falls back to synthetic mockup ── */
.screenshot-slot { position: relative; }
.screenshot-slot.has-screenshot .screenshot-fallback { display: none !important; }
.screenshot-slot img.screenshot-real {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  display: none;
}

/* ─── Para quién es ─────────────────────────────────────────────────────────── */
.for-who {
  padding: 6rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.fw-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}
.fw-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.fw-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--red-bright);
  flex-shrink: 0;
}
.fw-icon svg { width: 20px; height: 20px; }

.fw-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}
.fw-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ─── Qué evita ─────────────────────────────────────────────────────────────── */
.what-avoids {
  padding: 6rem 0;
  background: var(--bg-base);
}

.avoids-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.avoid-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: border-color var(--transition), background var(--transition);
}
.avoid-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  border-left-color: var(--red-bright);
}

.avoid-x {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.12);
  color: var(--red-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.avoid-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.avoid-text span {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.55;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .for-who-grid { grid-template-columns: repeat(2, 1fr); }
  .avoids-grid  { grid-template-columns: repeat(2, 1fr); }

  .real-restaurants-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }

  .booking-flow {
    grid-template-columns: 1fr;
  }
  .booking-phone-mockup { display: none; }
}

@media (max-width: 860px) {
  .mockup-cards { grid-template-columns: repeat(2, 1fr); }
  .mb-header { display: none; }
  .mb-row { grid-template-columns: 50px 1fr 60px 70px; }
  .mb-zone { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  .hero-mockup-wrapper .hero-mockup { display: none; }

  .mockup-body { grid-template-columns: 1fr; }
  .mockup-sidebar { display: none; }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 560px) {
  .hero-stats { gap: 1.25rem; }
  .hero-stat-divider { display: none; }
  .trust-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .cta-band-title br { display: none; }
  .hero-headline br { display: none; }
  .for-who-grid  { grid-template-columns: 1fr; }
  .avoids-grid   { grid-template-columns: 1fr; }
  .what-avoids .section-title br { display: none; }
}

@media (max-width: 480px) {
  .hero-ctas,
  .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn,
  .cta-band-actions .btn {
    text-align: center;
    justify-content: center;
  }
}

/* ─── Legal pages ────────────────────────────────────────────────────────────── */
.legal-page {
  padding-top: 88px; /* clear fixed nav */
}

.legal-hero {
  background: linear-gradient(160deg, var(--bg-surface) 0%, var(--bg-base) 100%);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0 2.5rem;
}

.legal-hero-inner {
  max-width: 800px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  margin-bottom: 1.5rem;
}
.legal-back:hover { color: var(--text-primary); }
.legal-back svg { flex-shrink: 0; }

.legal-page-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 100px;
  padding: 0.25rem 0.8rem;
  margin-bottom: 0.9rem;
}

.legal-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.legal-updated {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.legal-body {
  padding: 3rem 0 5rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-review-notice {
  background: rgba(200, 16, 46, 0.07);
  border: 1px solid var(--border-red);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.legal-review-notice strong { color: var(--text-primary); }

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.legal-subsection-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 1.5rem 0 0.5rem;
}
.legal-section-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  background: var(--red-subtle);
  border: 1px solid var(--border-red);
  border-radius: 100px;
  padding: 0.15rem 0.55rem;
  flex-shrink: 0;
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.legal-content p:last-child { margin-bottom: 0; }

.legal-content a {
  color: var(--red-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--text-primary); }

.legal-content ul,
.legal-content ol {
  margin: 0.5rem 0 0.85rem 1.25rem;
  list-style: disc;
}
.legal-content ol { list-style: decimal; }
.legal-content li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

.legal-content strong { color: var(--text-primary); font-weight: 600; }

.legal-placeholder {
  color: var(--red);
  font-style: italic;
  font-weight: 500;
}

/* Cookie table */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.cookie-table th {
  background: var(--bg-card);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-strong);
  white-space: nowrap;
}
.cookie-table td {
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table td.pending {
  color: var(--text-muted);
  font-style: italic;
}
.cookie-table td strong { color: var(--text-primary); font-weight: 600; }

/* ─── Cookie consent banner ─────────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(18,18,22,0.97);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0.625rem var(--container-pad);
  box-shadow: 0 -4px 28px rgba(0,0,0,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-banner-text {
  flex: 1;
  min-width: 0;
}
.cookie-banner-text p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--red-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
#cookie-banner .btn {
  padding: 0.5rem 0.9rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.btn-cookie-accept {
  background: var(--red);
  color: #fff;
  border: 1.5px solid var(--red);
}
.btn-cookie-accept:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  box-shadow: 0 0 16px var(--red-glow);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid rgba(255,255,255,0.16);
}
.btn-cookie-reject:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.32);
}

.btn-cookie-configure {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  padding: 0.5rem 0.875rem;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.btn-cookie-configure:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.28);
}

/* ─── Cookie preferences panel ──────────────────────────────────────────────── */
/* IMPORTANT: #cookie-panel has NO display property here.
   display:flex is set via :not([hidden]) so CSS cannot override the hidden attribute. */
#cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 9100;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1.5rem;
}
#cookie-panel:not([hidden]) {
  display: flex;
}

.cookie-panel-box {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-panel);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.cookie-panel-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.cookie-panel-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.cookie-panel-close-btn:hover { color: var(--text-primary); background: var(--bg-elevated); }

.cookie-panel-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.cookie-panel-desc a {
  color: var(--red-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-toggle-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}
.cookie-toggle-row:last-of-type { border-bottom: 1px solid var(--border); }

.cookie-toggle-info {}
.cookie-toggle-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.cookie-toggle-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Toggle switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-switch-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.cookie-switch-slider:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cookie-switch input:checked + .cookie-switch-slider {
  background: var(--red);
  border-color: var(--red);
}
.cookie-switch input:checked + .cookie-switch-slider:before {
  transform: translateY(-50%) translateX(18px);
  background: #fff;
}
.cookie-switch input:disabled + .cookie-switch-slider {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-switch input:focus-visible + .cookie-switch-slider {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* Panel action buttons — row on desktop, reversed column on mobile */
.cookie-panel-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.cookie-panel-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-size: 0.8125rem;
  padding: 0.6rem 0.75rem;
}

/* Prevent body scroll when panel open */
body.cookie-panel-open { overflow: hidden; }

/* ─── Cookie responsive ──────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .cookie-banner-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .cookie-banner-actions .btn,
  .cookie-banner-actions .btn-cookie-configure {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  #cookie-panel { padding: 0.75rem; }
  .cookie-panel-box { padding: 1.25rem 1rem; }
  /* column-reverse: DOM order Save→Reject→Accept becomes visual Accept→Reject→Save */
  .cookie-panel-actions {
    flex-direction: column-reverse;
    flex-wrap: nowrap;
  }
  .cookie-panel-actions .btn {
    flex: unset;
    width: 100%;
    white-space: normal;
    padding: 0.7rem 1rem;
  }
}

/* ─── Reduced motion ─────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  .zone-bar-fill {
    transition: none !important;
  }
  .badge-dot {
    animation: none !important;
  }
}


/* =============================================================================
   CONTACT METHODS
============================================================================= */

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 860px;
  margin: 2.5rem auto 0;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.125rem 1.25rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
}
.contact-method-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}
.cmc-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: var(--accent);
}
.cmc-icon svg { width: 1.15rem; height: 1.15rem; }
.cmc-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}
.cmc-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.cmc-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cmc-arrow {
  color: var(--text-muted);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.15s;
}
.contact-method-card:hover .cmc-arrow { transform: translateX(3px); }

/* =============================================================================
   CONTACT FORM
============================================================================= */

.contact-form-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 3rem auto 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg, 16px);
  padding: 2.5rem 2.5rem 2rem;
}
.contact-form-title {
  font-family: var(--font-sans);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cf-row {
  display: flex;
  gap: 1rem;
}
.cf-row--2 { flex-direction: row; }
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}
.cf-field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.cf-req { color: var(--accent); margin-left: 1px; }
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.875rem;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.18s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--text-muted); }
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: var(--accent); }
.cf-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}
.cf-field select option { background: #0f0f10; color: var(--text-primary); }
.cf-field textarea { resize: vertical; min-height: 7rem; }

.cf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.cf-privacy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.cf-privacy a { color: var(--text-secondary); text-decoration: underline; text-underline-offset: 2px; }

.cf-result {
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.5rem;
}
.cf-result.cf-success {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: #34d399;
}
.cf-result.cf-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

/* Honeypot — visually hidden, not clickable */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

/* ─── Contact responsive ──────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .contact-methods { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.5rem 1.125rem 1.25rem; }
  .cf-row--2 { flex-direction: column; }
  .cf-footer { flex-direction: column; align-items: stretch; }
  .cf-footer .btn { width: 100%; justify-content: center; }
}

/* ─── Pricing Section ─────────────────────────────────────────────────────── */
.pricing {
  padding: 6rem 0 5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
  align-items: start;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.plan-card:hover {
  border-color: var(--border-strong);
}

.plan-card--featured {
  background: var(--bg-elevated);
  border-color: var(--border-red);
  box-shadow: 0 0 40px rgba(200, 16, 46, 0.1);
}

.plan-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.plan-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 2.125rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.plan-price small {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 0.15rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.plan-vat {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.plan-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.plan-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.plan-features li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
}

.plan-features li::before {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  margin-top: 0.2rem;
}

.plan-features li.pf-strong {
  color: var(--text-primary);
}

.plan-features li.pf-strong::before {
  background: var(--red);
  border-color: var(--red-dark);
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition), box-shadow var(--transition),
              border-color var(--transition), color var(--transition);
  margin-top: auto;
}

.plan-card--featured .plan-cta {
  background: var(--red);
  color: #fff;
}

.plan-card--featured .plan-cta:hover {
  background: var(--red-bright);
  box-shadow: 0 0 20px var(--red-glow);
}

.plan-card:not(.plan-card--featured) .plan-cta {
  border: 1.5px solid var(--border-strong);
  color: var(--text-primary);
}

.plan-card:not(.plan-card--featured) .plan-cta:hover {
  border-color: var(--border-red);
  color: var(--red-bright);
  background: var(--red-subtle);
}

.pricing-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pricing-callout {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.pricing-callout-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.pricing-callout ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pricing-callout li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.pricing-callout li strong {
  color: var(--text-primary);
}

.pricing-addons {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
}

.pricing-addons-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.pricing-addons ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.4rem 2rem;
}

.pricing-addons li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-addons li strong {
  color: var(--text-primary);
}

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.pricing-table th,
.pricing-table td {
  padding: 0.7rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.pricing-table th {
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-primary);
  background: var(--bg-surface);
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
}

.pricing-table td.col-featured {
  background: rgba(200, 16, 46, 0.04);
}

.pricing-table th.col-featured {
  background: rgba(200, 16, 46, 0.08);
  color: var(--red-bright);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table .check { color: var(--red); font-weight: 700; }
.pricing-table .dash  { color: var(--text-muted); }

.pricing-callout p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pricing-callout-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.pricing-addons-body {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.pricing-addons-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-callouts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-callouts { grid-template-columns: 1fr; }
}
