/* ============================================================
   NG Food Trailers — Sales Page
   Edit prices & cash discount in :root AND in script.js CONFIG
   ============================================================ */

:root {
  /* --- EDITABLE BUSINESS CONFIG (keep in sync with script.js) --- */
  --price-starter: 32000;
  --price-money-maker: 37000;
  --price-custom: 42000;
  --cash-discount-pct: 10;

  /* --- Color palette --- */
  --color-bg-dark: #0f1729;
  --color-bg-dark-alt: #1a2332;
  --color-bg-light: #f8f9fa;
  --color-bg-white: #ffffff;
  --color-accent: #d4a012;
  --color-accent-hover: #e8b413;
  --color-accent-light: #fef3c7;
  --color-text-light: #ffffff;
  --color-text-dark: #1a1a2e;
  --color-text-muted: #6b7280;
  --color-success: #22c55e;
  --color-whatsapp: #25d366;
  --color-compare-strike: #9ca3af;

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --header-h: 64px;
  --container: 1120px;
  --radius: 4px;
  --transition: 0.2s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background: var(--color-bg-dark);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
s { text-decoration-thickness: 2px; color: var(--color-compare-strike); }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.container-narrow { width: min(100% - 2rem, 760px); }

/* Typography */
h1, h2, h3, .nav-logo, .stat-number, .price-card-price {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-text-light);
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 2rem;
}
.section-title-dark { color: var(--color-text-dark); }
.section-title-light { color: var(--color-text-dark); }
.section-sub {
  text-align: center;
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  margin: -1rem auto 2rem;
  font-size: 1.05rem;
}
.section-sub-dark { color: var(--color-text-muted); }
.section-cta { text-align: center; margin-top: 2.5rem; }
.accent-text { color: var(--color-accent); font-weight: 700; }

.section-dark { background: var(--color-bg-dark); padding: 4.5rem 0; }
.section-alt { background: var(--color-bg-light); padding: 4.5rem 0; }
.section-light { background: var(--color-bg-white); padding: 4.5rem 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}
.btn-accent:hover { background: var(--color-accent-hover); }
.btn-outline {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid rgba(255,255,255,0.85);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-lg { padding: 1rem 1.75rem; font-size: 1.1rem; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* ========== NAV ========== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.is-solid {
  background: rgba(15, 23, 41, 0.97);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav {
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-light);
  letter-spacing: -0.02em;
  z-index: 2;
}
.nav-menu {
  display: none;
  gap: 1.25rem;
  justify-content: center;
}
.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-menu a:hover { color: var(--color-accent); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
  z-index: 2;
}
.lang-toggle {
  display: flex;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang-btn {
  padding: 0.35rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}
.lang-btn.is-active {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}
.nav-cta { display: none; }
.nav-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--color-bg-dark);
  padding: calc(var(--header-h) + 2rem) 1.5rem 2rem;
  gap: 1.5rem;
  align-items: flex-start;
}
.nav-menu.is-open a { font-size: 1.35rem; font-family: var(--font-display); font-weight: 600; }

@media (min-width: 769px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }
  .nav-menu {
    display: flex;
    position: static;
    background: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
  }
  .nav-toggle { display: none; }
  .nav-cta { display: inline-flex; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 3rem;
  overflow: hidden;
}
.hero-bg, .final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 22, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.hero-ribbon {
  display: inline-block;
  background: rgba(212, 160, 18, 0.15);
  border: 1px solid rgba(212, 160, 18, 0.45);
  color: var(--color-accent-light);
  font-size: clamp(0.72rem, 2.2vw, 0.9rem);
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  animation: ribbon-pulse 4s ease-in-out infinite;
}
@keyframes ribbon-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 160, 18, 0); }
  50% { box-shadow: 0 0 0 6px rgba(212, 160, 18, 0.12); }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ========== STATS ========== */
.stats {
  background: var(--color-bg-dark);
  border-block: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
@media (min-width: 769px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ========== ROI / MATH ========== */
.math-board {
  background: var(--color-bg-dark-alt);
  border: 1px solid rgba(212, 160, 18, 0.25);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  max-width: 640px;
  margin-inline: auto;
  font-family: var(--font-display);
}
.math-heading {
  color: var(--color-accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}
.math-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-family: var(--font-body);
}
.math-list li strong {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.math-highlight strong { font-size: 1.35rem; }
.math-aside {
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  font-family: var(--font-body);
  line-height: 1.55;
  max-width: 680px;
}
@media (min-width: 600px) {
  .math-list li {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
  }
  .math-board { padding: 2.25rem 2rem; }
}

/* ========== PRICING ========== */
.price-anchor {
  background: var(--color-bg-dark);
  color: #fff;
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}
.price-anchor-us {
  color: var(--color-compare-strike);
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}
.price-anchor-us-alt {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
}
.price-anchor-us-alt .accent-text {
  display: inline;
  font-size: 1.15em;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  background: var(--color-bg-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card-featured {
  border: 2px solid var(--color-accent);
  box-shadow: 0 12px 40px rgba(212, 160, 18, 0.18);
  transform: none;
  order: -1;
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-ribbon {
  text-align: center;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}
.price-card-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}
.price-card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
}
.price-card-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.price-card-price .currency { font-size: 1.5rem; vertical-align: top; }
.price-card-price .currency-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-left: 0.25rem;
}
.from-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
  font-family: var(--font-body);
}
.price-card-size {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}
.price-card-includes {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.price-card-features {
  margin-bottom: 1.25rem;
  flex: 1;
}
.price-card-features li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.35rem;
  font-size: 0.92rem;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}
.price-card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}
.price-card-blurb {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.pricing-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin: 2.5rem 0;
}
.note-pill {
  display: inline-block;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  color: var(--color-text-dark);
  font-weight: 500;
}
.note-pill-success {
  background: #ecfdf5;
  border-color: var(--color-success);
  color: #166534;
  font-weight: 700;
  font-size: 0.95rem;
}

.compare-wrap { margin-top: 1rem; }
.compare-title {
  text-align: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}
.compare-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.95rem;
  min-width: 480px;
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}
.compare-table th {
  background: var(--color-bg-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
}
.compare-table th:nth-child(2) { color: var(--color-accent); }
.compare-table td:nth-child(2) { color: var(--color-text-dark); }
.compare-table tr:nth-child(even) td { background: #f9fafb; }

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 1.25rem;
  }
  .price-card-featured {
    order: 0;
    transform: scale(1.04);
    z-index: 1;
  }
}

/* ========== HOW IT WORKS ========== */
.steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
}
.step {
  position: relative;
  text-align: center;
  max-width: 280px;
  margin-inline: auto;
}
.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  color: var(--color-accent);
}
.step-icon svg { width: 100%; height: 100%; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.step h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.step p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.how-photo {
  margin-top: 3rem;
  border-radius: 8px;
  overflow: hidden;
  max-width: 900px;
  margin-inline: auto;
}
.how-photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.step-photo {
  margin-top: 1rem;
  border-radius: 6px;
  overflow: hidden;
}
.step-photo img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
  }
  .steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.4;
  }
  .step { max-width: none; }
}

/* ========== GALLERY ========== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-btn.is-active,
.filter-btn:hover {
  background: var(--color-bg-dark);
  color: #fff;
  border-color: var(--color-bg-dark);
}
.gallery-grid {
  columns: 1;
  column-gap: 0.85rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.85rem;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;
  display: block;
  background: #e5e7eb;
}
.gallery-item.is-hidden { display: none; }
.gallery-item img {
  width: 100%;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

@media (min-width: 481px) { .gallery-grid { columns: 2; } }
@media (min-width: 900px) { .gallery-grid { columns: 3; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox-img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  padding: 0.5rem;
  z-index: 1;
}
.lightbox-close { top: 0.75rem; right: 1rem; font-size: 2.75rem; }
.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }
@media (min-width: 769px) {
  .lightbox-prev { left: 1.5rem; }
  .lightbox-next { right: 1.5rem; }
}

/* ========== DELIVERED ========== */
.delivered-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.delivery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--color-bg-dark-alt);
}
.delivery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
.delivery-item figcaption {
  padding: 0.75rem 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.delivered-close {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin: 1.75rem auto 0;
  max-width: 520px;
}
@media (min-width: 600px) {
  .delivered-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .delivered-grid { grid-template-columns: repeat(3, 1fr); }
  .delivery-item:nth-child(4),
  .delivery-item:nth-child(5) {
    /* keep last two balanced on wide screens */
  }
}

/* ========== FAQ ========== */
.faq-group { margin-bottom: 2rem; }
.faq-cat {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--color-text-dark);
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-accent);
}
.accordion details {
  border-bottom: 1px solid #e5e7eb;
}
.accordion summary {
  padding: 1rem 2rem 1rem 0;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--color-text-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--color-accent);
  font-weight: 400;
}
.accordion details[open] summary::after { content: "−"; }
.accordion details p {
  padding: 0 0 1.15rem;
  color: var(--color-text-muted);
  max-width: 680px;
  font-size: 0.98rem;
}

/* ========== FINAL CTA ========== */
.final-cta {
  position: relative;
  padding: 5rem 1.25rem;
  text-align: center;
  overflow: hidden;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 22, 0.75);
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta h2 {
  color: #fff;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  max-width: 720px;
  margin: 0 auto 1rem;
}
.final-cta-content > p {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}
.final-contact {
  margin-top: 2.5rem;
  color: rgba(255,255,255,0.8);
}
.final-contact a:hover { color: var(--color-accent); }
.final-hours {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

/* ========== FOOTER ========== */
.site-footer {
  background: #0a101c;
  padding: 3rem 0 1.5rem;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { margin-bottom: 0.75rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-links a:hover { color: var(--color-accent); }
.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

@media (min-width: 769px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-whatsapp);
  color: #fff;
  padding: 0.85rem;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  animation: wa-pulse 5s ease-in-out infinite;
  font-weight: 600;
  font-size: 0.9rem;
}
.wa-float-icon { width: 28px; height: 28px; flex-shrink: 0; }
.wa-float-text { display: none; max-width: 0; overflow: hidden; }
@keyframes wa-pulse {
  0%, 85%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); transform: scale(1); }
  90% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.65); transform: scale(1.06); }
  95% { transform: scale(1); }
}

@media (min-width: 769px) {
  .wa-float {
    padding: 0.85rem;
    transition: padding 0.2s ease;
  }
  .wa-float-text {
    display: inline-block;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.25s ease, opacity 0.2s ease, margin 0.2s ease;
    margin-left: 0;
  }
  .wa-float:hover {
    padding: 0.85rem 1.2rem 0.85rem 0.95rem;
  }
  .wa-float:hover .wa-float-text {
    max-width: 140px;
    opacity: 1;
    margin-left: 0.35rem;
  }
}

/* ========== CAPACITY BADGE ========== */
/* ========== INSPECTION READY ========== */
.inspection-ready {
  background: var(--color-bg-dark);
  color: #fff;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  margin: 2.5rem 0 2rem;
  border: 1px solid rgba(212, 160, 18, 0.35);
}
.inspection-ready h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.25rem;
  color: #fff;
}
.inspection-list {
  display: grid;
  gap: 0.65rem;
  max-width: 640px;
  margin: 0 auto 1.25rem;
}
.inspection-list li {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.35rem 0;
}
.inspection-close {
  text-align: center;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.98rem;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.45;
}

/* ========== PAYMENT FLOW ========== */
.payment-flow {
  background: var(--color-bg-dark);
  color: #fff;
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  margin: 0 0 2rem;
  border: 1px solid rgba(212, 160, 18, 0.35);
}
.payment-flow h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fff;
}
.payment-steps {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin: 0 0 1.25rem;
  padding: 0;
}
.payment-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}
.payment-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.payment-steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: #fff;
}
.payment-steps p {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}
.payment-close {
  text-align: center;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.45;
}
@media (min-width: 800px) {
  .payment-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .payment-steps li {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* ========== STOCK ========== */
.stock { padding: 4.5rem 0; }
.stock-grid {
  display: grid;
  gap: 1.25rem;
}
.stock-card {
  background: var(--color-bg-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.stock-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #e5e7eb;
}
.stock-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stock-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-success);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}
.stock-card-body {
  padding: 1.25rem 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.stock-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
}
.stock-specs {
  margin: 0 0 1rem;
  flex: 1;
}
.stock-specs li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: 0.92rem;
  color: #374151;
}
.stock-specs li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}
.stock-price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1;
}
.stock-price .currency { font-size: 1.15rem; vertical-align: top; }
.stock-price .currency-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-left: 0.2rem;
}
.stock-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.95rem;
}
.stock-empty {
  display: none;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.stock-empty p {
  color: var(--color-text-dark);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.stock--empty .stock-grid,
.stock--empty .stock-note { display: none; }
.stock--empty .stock-empty { display: block; }

@media (min-width: 700px) {
  .stock-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .stock-grid { grid-template-columns: repeat(3, 1fr); }
}

.hero-ribbon a {
  color: var(--color-accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.hero-ribbon a:hover { color: #fff; }

.faq-featured {
  background: var(--color-accent-light);
  border: 1px solid rgba(212, 160, 18, 0.45);
  border-radius: 8px;
  margin-top: 0.75rem;
  padding: 0 0.85rem;
}
.faq-featured summary {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
.faq-new-badge {
  display: inline-block;
  flex-shrink: 0;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  margin-top: 0.2rem;
}
.faq-featured p {
  color: #374151 !important;
}

.capacity-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 1.75rem;
  padding: 0.7rem 1.15rem;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(0.8rem, 2.4vw, 0.95rem);
  text-align: center;
  font-family: var(--font-display);
}

/* ========== CALCULATOR ========== */
.calc-board {
  display: grid;
  gap: 1.75rem;
  background: var(--color-bg-dark-alt);
  border: 1px solid rgba(212, 160, 18, 0.25);
  border-radius: 8px;
  padding: 1.5rem;
  max-width: 960px;
  margin-inline: auto;
}
.calc-controls { display: grid; gap: 1.25rem; }
.calc-field { display: block; }
.calc-label {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.calc-packages { border: 0; padding: 0; margin: 0; }
.calc-slider-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem;
  align-items: center;
}
.calc-slider-row input[type="range"] {
  width: 100%;
  accent-color: var(--color-accent);
  height: 0.45rem;
}
.calc-slider-row output {
  min-width: 2.5rem;
  text-align: right;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-accent);
  font-size: 1.15rem;
}
.calc-pkg-grid {
  display: grid;
  gap: 0.55rem;
}
.calc-pkg {
  text-align: left;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.03);
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color var(--transition), background var(--transition);
}
.calc-pkg.is-active {
  border-color: var(--color-accent);
  background: rgba(212, 160, 18, 0.12);
  color: #fff;
}
.calc-results {
  display: grid;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(255,255,255,0.12);
}
.calc-metric-label {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}
.calc-metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
}
.calc-note {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
}
.calc-summary {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
  margin: 0.5rem 0 0.25rem;
}
.calc-disclaimer {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0.35rem;
}
@media (min-width: 800px) {
  .calc-board {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    padding: 2rem;
  }
  .calc-results {
    border-top: 0;
    border-left: 1px dashed rgba(255,255,255,0.12);
    padding-top: 0;
    padding-left: 1.75rem;
  }
  .calc-pkg-grid { gap: 0.65rem; }
}

/* ========== VIDEO ========== */
.walkthrough { padding-top: 1rem; }
.walkthrough .section-title { margin-bottom: 1.5rem; }
.video-wrap {
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}
.video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.video-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ========== WHY NOT TABLE ========== */
.why-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.25rem;
}
.why-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
}
.why-table th,
.why-table td {
  padding: 0.85rem 0.75rem;
  border: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}
.why-table thead th {
  background: var(--color-bg-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
}
.why-table tbody th[scope="row"] {
  background: #f9fafb;
  font-weight: 600;
  color: var(--color-text-dark);
  white-space: nowrap;
}
.why-table .why-ng {
  background: var(--color-accent-light);
  color: var(--color-text-dark);
  font-weight: 700;
}
.why-table thead .why-ng {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}
.why-close {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-dark);
  max-width: 640px;
  margin-inline: auto;
}

/* ========== QUALIFY MODAL ========== */
.qualify-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.qualify-modal[hidden] { display: none !important; }
.qualify-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}
.qualify-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: 100svh;
  overflow-y: auto;
  background: var(--color-bg-dark);
  color: #fff;
  border-radius: 16px 16px 0 0;
  padding: 1.25rem 1.25rem 1.75rem;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
  animation: qualify-in 0.25s ease;
}
@keyframes qualify-in {
  from { transform: translateY(24px); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}
.qualify-x {
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  font-size: 1.75rem;
  line-height: 1;
  color: rgba(255,255,255,0.7);
  z-index: 2;
}
.qualify-progress {
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  margin: 0.5rem 1.75rem 1.25rem 0;
  overflow: hidden;
}
.qualify-progress-bar {
  height: 100%;
  width: 20%;
  background: var(--color-accent);
  border-radius: inherit;
  transition: width 0.3s ease;
}
.qualify-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.15rem;
  padding-right: 1.5rem;
  line-height: 1.25;
}
.qualify-options {
  display: grid;
  gap: 0.65rem;
}
.qualify-opt {
  width: 100%;
  text-align: left;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: var(--color-bg-dark-alt);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.qualify-opt:hover,
.qualify-opt:focus-visible {
  border-color: var(--color-accent);
  outline: none;
}
.qualify-opt.is-best {
  border-color: var(--color-accent);
  background: rgba(212, 160, 18, 0.14);
  box-shadow: 0 0 0 1px rgba(212, 160, 18, 0.35);
}
.qualify-opt.is-selected {
  border-color: var(--color-accent);
  background: rgba(212, 160, 18, 0.2);
}
.qualify-opt-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.qualify-states {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 0.25rem;
}
.qualify-note {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(212, 160, 18, 0.12);
  border: 1px solid rgba(212, 160, 18, 0.3);
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.45;
}
.qualify-capacity {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fecaca;
  background: rgba(153, 27, 27, 0.25);
  border: 1px solid rgba(254, 202, 202, 0.35);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
}
.qualify-links {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}
.qualify-links a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: var(--color-bg-dark-alt);
  border: 1px solid rgba(255,255,255,0.15);
  font-weight: 600;
  color: #fff;
}
.qualify-links a:hover { border-color: var(--color-accent); color: var(--color-accent); }
.qualify-ghost {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.qualify-ghost:hover { color: #fff; }
.qualify-text {
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}
.qualify-name-input {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: var(--color-bg-dark-alt);
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.qualify-name-input:focus {
  outline: none;
  border-color: var(--color-accent);
}
.qualify-wa-btn {
  width: 100%;
  background: var(--color-whatsapp) !important;
  color: #fff !important;
  font-size: 1.05rem;
  padding: 1.05rem 1.25rem;
}
.qualify-wa-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.qualify-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

@media (min-width: 481px) {
  .qualify-modal { align-items: center; padding: 1rem; }
  .qualify-dialog {
    border-radius: 12px;
    max-height: min(92vh, 720px);
  }
  .qualify-states { grid-template-columns: repeat(3, 1fr); max-height: 42vh; }
}

@media (max-width: 480px) {
  .qualify-dialog {
    height: 100svh;
    max-height: 100svh;
    border-radius: 0;
    max-width: none;
  }
}

.wa-float {
  border: none;
  cursor: pointer;
  font: inherit;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .gallery-item:hover img { transform: none; }
}
