:root {
  --yellow: #F5C518;
  --gold: #E8A800;
  --red: #C0392B;
  --dark-red: #8B1A10;
  --cream: #FFF8E1;
  --parchment: #F5E6C3;
  --dark: #1C0A00;
  --brown: #4A2500;
  --mid-brown: #7A3E1A;
  --tile-light: #FAECD0;
  --tile-dark: #F0D9A8;
}

/* ── THEME: ROCKO'S 90s ── */
[data-theme="rocko"] {
  --yellow: #00E5FF;
  --gold: #00BCD4;
  --red: #FF4081;
  --dark-red: #C51162;
  --cream: #E0F7FA;
  --parchment: #B2EBF2;
  --dark: #1A0033;
  --brown: #4A148C;
  --mid-brown: #7B1FA2;
  --tile-light: #CE93D8;
  --tile-dark: #BA68C8;
}

/* ── THEME: LOS HERMANOS POLLOS ── */
[data-theme="hermanos"] {
  --yellow: #FFD600;
  --gold: #FFAB00;
  --red: #D50000;
  --dark-red: #B71C1C;
  --cream: #FFF9C4;
  --parchment: #FFF176;
  --dark: #1B5E20;
  --brown: #2E7D32;
  --mid-brown: #388E3C;
  --tile-light: #A5D6A7;
  --tile-dark: #81C784;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Libre Baskerville', serif;
  overflow-x: hidden;
  transition: background 0.5s, color 0.5s;
}

/* Theme transition for key elements */
header, nav, footer, .hero-left, .features, .pricing, .cta, .stats, .ribbon,
.testimonials, .how, .retro-tv-section, .feature-card, .plan, .btn-primary,
.btn-secondary, .nav-cta, .footer-top, .footer-bottom {
  transition: background 0.5s, color 0.5s, border-color 0.5s;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ── CHECKERBOARD TILE HELPER ── */
.checker {
  background-image:
    repeating-conic-gradient(var(--tile-light) 0% 25%, var(--tile-dark) 0% 50%);
  background-size: 40px 40px;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: var(--dark);
  border-bottom: 4px solid var(--yellow);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo .chicken {
  font-size: 28px;
  filter: drop-shadow(0 0 6px var(--yellow));
  animation: flap 3s ease-in-out infinite;
  cursor: pointer;
  transition: filter 0.3s;
}

.nav-logo .chicken:hover {
  filter: drop-shadow(0 0 12px var(--yellow)) brightness(1.2);
}

@keyframes flap {

  0%,
  100% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(4deg);
  }
}

.nav-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--yellow);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2.5px;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}

.nav-links a:hover {
  color: var(--yellow);
  opacity: 1;
}

.nav-cta {
  background: var(--yellow);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 700;
  opacity: 1 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
}

.nav-cta-short { display: none; }

@media (max-width: 1630px) {
  .nav-cta-full { display: none; }
  .nav-cta-short { display: inline; }
}

/* ── NAV MUSIC PLAYER ── */
.nav-music {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-music-label {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  color: var(--yellow);
  text-shadow: 0 0 8px rgba(245, 197, 24, 0.6), 0 0 20px rgba(245, 197, 24, 0.3);
  animation: musicPulse 2s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes musicPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(1.05); }
}

.nav-music-btn {
  width: 32px;
  height: 32px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  background: transparent;
  color: var(--yellow);
  font-size: 14px;
  line-height: 1;
  padding: 0 0 0 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-music-btn:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: scale(1.1);
}

.nav-music-prev,
.nav-music-next {
  width: 26px;
  height: 26px;
  font-size: 11px;
  border-width: 1.5px;
  padding: 0;
}

.nav-music-track {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--cream);
  opacity: 0.6;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-music-vol {
  width: 70px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(245, 197, 24, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.nav-music-vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(245, 197, 24, 0.5);
}

.nav-music-vol::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  cursor: pointer;
}

/* ── MOBILE MUSIC BUTTON ── */
.nav-music-mobile-btn {
  display: none;
  width: 36px;
  height: 36px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  background: transparent;
  color: var(--yellow);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
  line-height: 1;
}

.nav-music-mobile-btn:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: scale(1.1);
}

.nav-music-mobile-btn.playing {
  animation: musicBtnPulse 1.5s ease-in-out infinite;
}

@keyframes musicBtnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(245, 197, 24, 0); }
}

/* ── MUSIC MODAL ── */
.music-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 10, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 20000;
  justify-content: center;
  align-items: center;
}

.music-modal-backdrop.open {
  display: flex;
}

.music-modal {
  background: linear-gradient(145deg, #2a1400, #1c0a00);
  border: 2px solid var(--yellow);
  border-radius: 16px;
  padding: 32px 28px;
  width: 90%;
  max-width: 320px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 40px rgba(245, 197, 24, 0.15);
}

.music-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
}

.music-modal-close:hover {
  opacity: 1;
}

.music-modal-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  color: var(--yellow);
  margin-bottom: 8px;
}

.music-modal-track {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--cream);
  opacity: 0.6;
  margin-bottom: 24px;
}

.music-modal-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.music-modal-controls .nav-music-btn {
  width: 44px;
  height: 44px;
  font-size: 18px;
}

.music-modal-controls .nav-music-prev,
.music-modal-controls .nav-music-next {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.music-modal-vol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.music-modal-vol-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--cream);
  opacity: 0.5;
}

.music-modal-vol .nav-music-vol {
  width: 120px;
}

@media (max-width: 1400px) {
  .nav-music { display: none; }
  .nav-music-mobile-btn { display: flex; align-items: center; justify-content: center; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6% 80px 8%;
  position: relative;
  z-index: 1;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  width: 120px;
  background: var(--dark);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 2;
}

.eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 5px;
  font-size: 13px;
  color: var(--yellow);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}

.hero-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 110px);
  line-height: 0.9;
  letter-spacing: 4px;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 0.7s 0.25s forwards;
}

.hero-brand .accent {
  color: var(--yellow);
}

.hero-brand .red-accent {
  color: var(--red);
  font-size: 0.3em;
  vertical-align: top;
  position: relative;
  top: 0.15em;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--parchment);
  margin-top: 24px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
  max-width: 440px;
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

.hero-sub {
  font-size: 14px;
  color: rgba(255, 248, 225, 0.6);
  margin-top: 12px;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s forwards;
  max-width: 92%;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 0.7s 0.7s forwards;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  padding: 14px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s, box-shadow 0.15s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 197, 24, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  padding: 13px 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  border: 2px solid rgba(255, 248, 225, 0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.platform-badges {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp 0.7s 0.85s forwards;
  align-items: center;
}

.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 3px;
  font-size: 12px;
  color: rgba(255, 248, 225, 0.7);
  letter-spacing: 1px;
  font-family: 'Bebas Neue', sans-serif;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-right .checker {
  position: absolute;
  inset: 0;
}

/* App window mockup */
.app-window {
  position: relative;
  z-index: 2;
  width: 88%;
  max-width: 480px;
  background: #fff;
  border-radius: 10px;
  box-shadow:
    0 40px 120px rgba(28, 10, 0, 0.35),
    0 0 0 1px rgba(28, 10, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  animation: slideIn 0.8s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transform-origin: center bottom;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(40px) rotate(-1deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.window-bar {
  background: var(--dark);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #FF5F57;
}

.dot-yellow {
  background: #FEBC2E;
}

.dot-green {
  background: #28C840;
}

.window-title {
  margin-left: auto;
  margin-right: auto;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 3px;
}

.window-body {
  background: #FFFDF7;
}

.invoice-header {
  background: var(--dark);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.inv-logo {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--yellow);
  font-size: 22px;
  letter-spacing: 3px;
  line-height: 1;
}

.inv-logo small {
  display: block;
  font-size: 8px;
  color: rgba(245, 197, 24, 0.5);
  letter-spacing: 4px;
}

.inv-badge {
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 2px;
}

.invoice-meta {
  padding: 20px 24px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-bottom: 2px dashed #E8D9B0;
}

.meta-block label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  display: block;
  margin-bottom: 3px;
}

.meta-block p {
  font-size: 13px;
  color: var(--dark);
  font-weight: 700;
}

.invoice-items {
  padding: 16px 24px;
}

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #F0E4C0;
  font-size: 12px;
}

.item-row:last-child {
  border-bottom: none;
}

.item-name {
  color: var(--brown);
  font-weight: 600;
}

.item-qty {
  color: #999;
  font-size: 11px;
}

.item-price {
  font-weight: 700;
  color: var(--dark);
}

.invoice-total {
  background: var(--dark);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-family: 'Bebas Neue', sans-serif;
  color: rgba(255, 248, 225, 0.6);
  letter-spacing: 3px;
  font-size: 13px;
}

.total-amount {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--yellow);
  font-size: 28px;
  letter-spacing: 2px;
}

.send-btn {
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

.send-btn:hover {
  background: var(--gold);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RIBBON ── */
.ribbon {
  background: var(--yellow);
  color: var(--dark);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.ribbon-inner {
  display: inline-flex;
  gap: 0;
  animation: scroll 25s linear infinite;
}

.ribbon-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 3px;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.ribbon-sep {
  color: var(--dark-red);
  font-size: 18px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── SECTIONS SHARED ── */
section {
  padding: 100px 8%;
}

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 4px;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--brown);
  max-width: 600px;
}

/* ── FEATURES ── */
.features {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '🍗';
  position: absolute;
  font-size: 320px;
  opacity: 0.04;
  right: -40px;
  top: -40px;
  transform: rotate(15deg);
  pointer-events: none;
}

.features .section-title {
  color: var(--cream);
}

.features .section-body {
  color: rgba(255, 248, 225, 0.55);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--yellow);
  transition: width 0.4s ease;
}

.feature-card:hover {
  background: rgba(245, 197, 24, 0.05);
}

.feature-card:hover::before {
  width: 100%;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 18px;
  display: block;
}

.feature-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 248, 225, 0.5);
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}

.how::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(192, 57, 43, 0.07);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 48px;
  right: 48px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 12px, transparent 12px, transparent 24px);
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--yellow);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--yellow);
  position: relative;
  z-index: 1;
  transition: transform 0.2s;
}

.step:hover .step-num {
  transform: scale(1.1);
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--mid-brown);
}

/* ── PRICING ── */
.pricing {
  background: var(--cream);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: start;
}

.plan {
  border: 2px solid #E8D9B0;
  padding: 40px 36px;
  position: relative;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28, 10, 0, 0.1);
}

.plan.featured {
  border-color: var(--yellow);
  background: var(--dark);
  transform: scale(1.04);
}

.plan.featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 24px 70px rgba(245, 197, 24, 0.25);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  padding: 5px 16px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--dark);
  margin-bottom: 4px;
}

.plan.featured .plan-name {
  color: var(--yellow);
}

.plan-sub {
  font-style: italic;
  font-size: 13px;
  color: var(--mid-brown);
  margin-bottom: 28px;
}

.plan.featured .plan-sub {
  color: rgba(255, 248, 225, 0.5);
}

.plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 4px;
}

.plan.featured .plan-price {
  color: var(--cream);
}

.plan-period {
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.plan-features {
  list-style: none;
  margin-bottom: 36px;
}

.plan-features li {
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(232, 217, 176, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
}

.plan.featured .plan-features li {
  color: rgba(255, 248, 225, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
}

.plan-features li::before {
  content: '✦';
  color: var(--yellow);
  font-size: 10px;
  flex-shrink: 0;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2.5px;
  border: 2px solid var(--dark);
  color: var(--dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: transparent;
  width: 100%;
}

.plan-btn:hover {
  background: var(--dark);
  color: var(--yellow);
}

.plan.featured .plan-btn {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

.plan.featured .plan-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.testi-bg {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(rgba(245, 197, 24, 0.02) 0% 25%, transparent 0% 50%);
  background-size: 60px 60px;
}

.testimonials .section-title {
  color: var(--cream);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 32px;
  position: relative;
}

.testi-quote {
  font-size: 60px;
  line-height: 0.6;
  color: var(--yellow);
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}

.testi-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 248, 225, 0.75);
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 2px solid var(--yellow);
}

.testi-name {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 2px;
}

.testi-role {
  font-size: 11px;
  color: rgba(255, 248, 225, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── STATS ── */
.stats {
  background: var(--yellow);
  padding: 60px 8%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--dark);
  line-height: 1;
  letter-spacing: 2px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--brown);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── FAQ ── */
.faq {
  background: var(--dark);
  padding: 100px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245,197,24,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 90%, rgba(192,57,43,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(245,197,24,0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* ── FAQ floating background glyphs ── */
.faq-bg-glyphs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.faq-bg-glyphs span {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  color: rgba(245,197,24,0.04);
  line-height: 1;
  user-select: none;
}

/* Drumstick shapes — SVG-based via CSS */
.faq-glyph {
  position: absolute;
  pointer-events: none;
  opacity: 0.035;
}

.faq-glyph svg {
  width: 100%;
  height: 100%;
}

/* Glyph: drumstick 1 — top left, large, rotated */
.faq-glyph-1 {
  top: 3%;
  left: -2%;
  width: 220px;
  height: 220px;
  transform: rotate(-25deg);
  opacity: 0.07;
}

/* Glyph: drumstick 2 — right side, mid */
.faq-glyph-2 {
  top: 18%;
  right: 2%;
  width: 160px;
  height: 160px;
  transform: rotate(40deg) scaleX(-1);
  opacity: 0.06;
}

/* Glyph: flame — left mid — boosted glow */
.faq-glyph-3 {
  top: 40%;
  left: 1%;
  width: 140px;
  height: 160px;
  transform: rotate(-10deg);
  opacity: 0.14;
  filter: blur(0.5px);
}

/* Glyph: drumstick 3 — bottom right */
.faq-glyph-4 {
  bottom: 8%;
  right: -1%;
  width: 200px;
  height: 200px;
  transform: rotate(70deg);
  opacity: 0.06;
}

/* Glyph: fork — bottom left */
.faq-glyph-5 {
  bottom: 5%;
  left: 3%;
  width: 100px;
  height: 180px;
  transform: rotate(15deg);
  opacity: 0.03;
}

/* Glyph: pepper — top right area */
.faq-glyph-6 {
  top: 6%;
  right: 12%;
  width: 90px;
  height: 90px;
  transform: rotate(-35deg);
  opacity: 0.04;
}

/* Glyph: spatula — mid right */
.faq-glyph-7 {
  top: 60%;
  right: 4%;
  width: 80px;
  height: 160px;
  transform: rotate(-20deg);
  opacity: 0.03;
}

/* Glyph: star/spark — scattered */
.faq-glyph-star {
  opacity: 0.07;
}

.faq-glyph-star-1 { top: 12%; left: 15%; width: 40px; height: 40px; }
.faq-glyph-star-2 { top: 55%; left: 8%; width: 30px; height: 30px; transform: rotate(30deg); }
.faq-glyph-star-3 { top: 30%; right: 8%; width: 35px; height: 35px; transform: rotate(-15deg); }
.faq-glyph-star-4 { bottom: 18%; right: 15%; width: 28px; height: 28px; transform: rotate(45deg); }
.faq-glyph-star-5 { bottom: 30%; left: 6%; width: 24px; height: 24px; }
.faq-glyph-star-6 { top: 75%; right: 18%; width: 32px; height: 32px; transform: rotate(20deg); }

/* Subtle float animation for glyphs */
@keyframes faqFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes faqFloatSlow {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--r, 0deg)); }
}
@keyframes faqSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.faq-glyph-1 { animation: faqFloatSlow 9s ease-in-out infinite; --r: -25deg; }
.faq-glyph-2 { animation: faqFloatSlow 11s ease-in-out 1s infinite; --r: 40deg; }
.faq-glyph-3 { animation: faqFloatSlow 8s ease-in-out 0.5s infinite; --r: -10deg; }
.faq-glyph-4 { animation: faqFloatSlow 10s ease-in-out 2s infinite; --r: 70deg; }
.faq-glyph-5 { animation: faqFloatSlow 12s ease-in-out 1.5s infinite; --r: 15deg; }
.faq-glyph-6 { animation: faqFloatSlow 7s ease-in-out 0.8s infinite; --r: -35deg; }
.faq-glyph-7 { animation: faqFloatSlow 13s ease-in-out 3s infinite; --r: -20deg; }
.faq-glyph-star { animation: faqFloat 6s ease-in-out infinite; }
.faq-glyph-star-2 { animation-delay: 1s; }
.faq-glyph-star-3 { animation-delay: 2s; }
.faq-glyph-star-4 { animation-delay: 0.5s; }
.faq-glyph-star-5 { animation-delay: 3s; }
.faq-glyph-star-6 { animation-delay: 1.8s; }

/* Ensure FAQ content sits above glyphs */
.faq .section-label,
.faq .section-title,
.faq .section-body,
.faq .faq-grid {
  position: relative;
  z-index: 1;
}

.faq .section-label {
  color: var(--yellow);
}

.faq .section-title {
  color: var(--cream);
}

.faq .section-body {
  color: rgba(255,248,225,0.6);
  max-width: 640px;
  margin: 0 auto 60px;
}

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(245,197,24,0.12);
  text-align: left;
}

.faq-item:first-child {
  border-top: 1px solid rgba(245,197,24,0.12);
}

.faq-question {
  padding: 22px 48px 22px 0;
  font-family: 'Libre Baskerville', 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.25s;
}

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

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 400;
  color: var(--yellow);
  transition: transform 0.3s, color 0.3s;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1;
  width: 32px;
  text-align: center;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(0deg);
  color: var(--red);
}

.faq-question:hover {
  color: var(--yellow);
}

.faq-answer {
  padding: 0 48px 24px 0;
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,248,225,0.55);
  animation: faqSlide 0.3s ease;
}

.faq-answer a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--cream);
}

.faq-answer code {
  background: rgba(245,197,24,0.1);
  color: var(--yellow);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 13px;
  word-break: break-all;
}

.faq-answer em {
  color: rgba(255,248,225,0.7);
  font-style: italic;
}

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

@media (max-width: 700px) {
  .faq { padding: 70px 6%; }
  .faq-question { font-size: 15px; padding: 18px 40px 18px 0; }
  .faq-answer { font-size: 14px; }
}

/* ── CTA ── */
.cta {
  background: var(--dark);
  text-align: center;
  padding: 120px 8%;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 197, 24, 0.08) 0%, transparent 70%);
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 7vw, 96px);
  color: var(--cream);
  line-height: 1;
  letter-spacing: 3px;
  position: relative;
  margin-bottom: 10px;
}

.cta-title span {
  color: var(--yellow);
}

.cta-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(255, 248, 225, 0.55);
  margin-bottom: 48px;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: #0D0500;
  padding: 48px 8% 32px;
  border-top: 3px solid var(--yellow);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 4px;
  color: var(--yellow);
}

.footer-tagline {
  font-style: italic;
  font-size: 13px;
  color: rgba(255, 248, 225, 0.3);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255, 248, 225, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 248, 225, 0.25);
  letter-spacing: 1px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255, 248, 225, 0.15);
  font-style: italic;
  text-align: right;
  max-width: 360px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── FEATURES HEADER LAYOUT ── */
.features-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  width: 80%;
  justify-self: center;
}

.features-header-text {
  flex: 1;
}

.features-header-img {
  flex-shrink: 0;
}

.pollo-img {
  width: 300px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(245, 197, 24, 0.18));
}

@media (max-width: 900px) {
  .features-header {
    flex-direction: column;
    gap: 36px;
  }

  .pollo-img {
    width: 220px;
  }
}

@media (max-width: 600px) {
  .pollo-img {
    width: 180px;
  }
}

/* ── MOBILE HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  height: 70%;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 10, 0, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 4px solid var(--yellow);
  z-index: 10000;
  padding: 32px 8%;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--cream);
  text-decoration: none;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--yellow);
}

.mobile-menu a.nav-cta {
  margin-top: 24px;
  background: var(--yellow);
  color: var(--dark);
  text-align: center;
  padding: 20px;
  border-bottom: none;
  font-size: 24px;
  border-radius: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 60px 7% 56px;
    order: 1;
  }

  .hero-left::after {
    display: none;
  }

  .hero-right {
    order: 2;
    min-height: 480px;
    padding: 48px 7%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .app-window {
    width: 100%;
    max-width: 420px;
  }

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

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

  .steps::before {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .plan.featured {
    transform: none;
  }

  .plan.featured:hover {
    transform: translateY(-4px);
  }

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

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-links {
    gap: 36px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-disclaimer {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  section {
    padding: 72px 6%;
  }

  .hero-left {
    padding: 52px 6% 48px;
  }

  .hero-right {
    padding: 40px 6%;
    min-height: auto;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .hero-brand {
    font-size: clamp(52px, 16vw, 80px);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .platform-badges {
    flex-wrap: wrap;
    gap: 10px;
  }

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

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-num {
    font-size: 44px;
  }

  .section-title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .cta-title {
    font-size: clamp(40px, 12vw, 72px);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-buttons a {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    font-size: 17px !important;
    padding: 16px 24px !important;
  }

  .footer-links {
    flex-direction: column;
    gap: 28px;
  }

  .invoice-meta {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .item-price {
    align-self: flex-end;
  }

  .window-title {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .plan-badge {
    font-size: 9px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    top: -22px;
  }
}

.bucket-chicken {
  position: absolute;
  top: -22px;
  right: -18px;
  width: 230px;
  height: auto;
  transform: rotate(15deg);
  filter: drop-shadow(0 8px 20px rgba(28, 10, 0, 0.4));
  z-index: 3;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bucket-chicken:hover {
  animation: bucketWiggle 0.5s ease;
}

@keyframes bucketWiggle {
  0% {
    transform: rotate(15deg) scale(1);
  }

  20% {
    transform: rotate(5deg) scale(1.12);
  }

  40% {
    transform: rotate(22deg) scale(1.12);
  }

  60% {
    transform: rotate(10deg) scale(1.08);
  }

  80% {
    transform: rotate(18deg) scale(1.04);
  }

  100% {
    transform: rotate(15deg) scale(1);
  }
}

@media (max-width: 900px) {
  .bucket-chicken {
    width: 120px;
    top: -35px;
    right: -15px;
  }
}

@media (max-width: 600px) {
  .bucket-chicken {
    width: 95px;
    top: -30px;
    right: -8px;
  }
}

/* ── BUCKET CALLOUT ── */
.bucket-callout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 28px;
  position: relative;
}

.bucket-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 1px;
  color: var(--yellow);
  display: inline-block;
  transform: rotate(-2deg);
  text-shadow:
    1px 1px 0 var(--dark),
    0 0 10px rgba(245, 197, 24, 0.6),
    0 0 30px rgba(245, 197, 24, 0.3);
  animation: textWobble 4s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes textWobble {

  0%,
  100% {
    transform: rotate(-2deg) scale(1);
  }

  33% {
    transform: rotate(1deg) scale(1.02);
  }

  66% {
    transform: rotate(-3deg) scale(0.98);
  }
}

.bucket-price-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bucket-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(42px, 5vw, 64px);
  color: var(--red);
  display: inline-block;
  transform: rotate(-3deg);
  margin-top: 2px;
  letter-spacing: -1px;
  text-shadow:
    2px 2px 0 var(--dark),
    0 0 20px rgba(192, 57, 43, 0.5),
    0 0 40px rgba(192, 57, 43, 0.2);
  animation: priceWobble 3s ease-in-out infinite;
}

@keyframes priceWobble {

  0%,
  100% {
    transform: rotate(-3deg) scale(1);
  }

  25% {
    transform: rotate(-1deg) scale(1.03);
  }

  50% {
    transform: rotate(-4deg) scale(1.06);
  }

  75% {
    transform: rotate(-2deg) scale(1.02);
  }
}

.bucket-chicken-hero {
  position: relative;
  top: 23px;
  left: 30px;
  width: 140px;
  height: auto;
  transform: rotate(12deg) translateY(-12px);
  filter: drop-shadow(0 8px 20px rgba(28, 10, 0, 0.5));
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.bucket-chicken-hero:hover {
  animation: heroWiggle 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes heroWiggle {
  0% {
    transform: rotate(12deg) translateY(-12px) scale(1);
  }

  15% {
    transform: rotate(6deg) translateY(-16px) scale(1.06);
  }

  30% {
    transform: rotate(16deg) translateY(-14px) scale(1.08);
  }

  45% {
    transform: rotate(8deg) translateY(-13px) scale(1.06);
  }

  60% {
    transform: rotate(14deg) translateY(-12px) scale(1.04);
  }

  75% {
    transform: rotate(10deg) translateY(-12px) scale(1.02);
  }

  100% {
    transform: rotate(12deg) translateY(-12px) scale(1);
  }
}

@media (max-width: 900px) {
  .bucket-chicken-hero {
    width: 100px;
  }

  .bucket-text {
    font-size: 20px;
  }

  .bucket-price {
    font-size: 38px;
  }

  .bucket-price-row {
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .bucket-callout {
    align-items: flex-start;
  }

  .bucket-chicken-hero {
    width: 80px;
  }

  .bucket-text {
    font-size: 17px;
  }

  .bucket-price-row {
    gap: 14px;
  }

  .bucket-price {
    font-size: 32px;
  }
}

.pollos-logo-img {
  max-width: 30px;
  margin-top: 5px;
}

.pollo-video-wrapper {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.pollo-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.pollo-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(28, 10, 0, 0.7);
  border: 3px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.pollo-play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--yellow);
  margin-left: 4px;
}

.pollo-video-wrapper:hover .pollo-play-btn {
  transform: scale(1.1);
  background: rgba(28, 10, 0, 0.85);
}

.video-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-backdrop video {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(245, 197, 24, 0.3);
  cursor: default;
}

/* ── LOADING / BUFFERING SPINNER ── */
@keyframes mediaSpinner {
  to { transform: rotate(360deg); }
}

.media-loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(245, 197, 24, 0.25);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: mediaSpinner 0.7s linear infinite;
  flex-shrink: 0;
}

.media-loading-spinner.visible {
  display: inline-block;
}

/* Music mobile modal spinner */
.music-modal-spinner {
  display: none;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(245, 197, 24, 0.25);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: mediaSpinner 0.7s linear infinite;
  margin: 8px auto 0;
}

.music-modal-spinner.visible {
  display: block;
}

/* Video backdrop spinner */
.video-backdrop .video-loading-spinner {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: mediaSpinner 0.7s linear infinite;
}

.video-backdrop .video-loading-spinner.hidden {
  display: none;
}

/* TV screen buffering spinner */
.tv-buffering-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border: 3px solid rgba(245, 197, 24, 0.2);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: mediaSpinner 0.7s linear infinite;
  z-index: 5;
  pointer-events: none;
}

.tv-buffering-spinner.visible {
  display: block;
}

/* ── SCREENSHOT GALLERY ── */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.screenshot-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(245, 197, 24, 0.15);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}

.screenshot-card:hover img {
  transform: scale(1.03);
}

.screenshot-info {
  padding: 20px 24px;
}

.screenshot-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 6px;
}

.screenshot-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 248, 225, 0.5);
}

.img-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.img-backdrop img {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(245, 197, 24, 0.25);
  cursor: default;
}

@media (max-width: 900px) {
  .screenshot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .screenshot-grid {
    grid-template-columns: 1fr;
  }
}

/* ── SCREENSHOT SHOW MORE ── */
.screenshot-gallery-wrap {
  position: relative;
}

.screenshot-show-more-fade {
  display: none;
  position: relative;
  height: 180px;
  margin-top: -180px;
  background: linear-gradient(to bottom, transparent, var(--dark));
  pointer-events: none;
  z-index: 2;
}

.screenshot-gallery-wrap.collapsed .screenshot-show-more-fade {
  display: block;
}

.screenshot-show-more-btn {
  display: none;
  position: relative;
  z-index: 3;
  margin: 0 auto;
  margin-top: 16px;
  padding: 14px 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--dark);
  background: var(--yellow);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.screenshot-gallery-wrap.collapsed .screenshot-show-more-btn,
.screenshot-gallery-wrap.expanded .screenshot-show-more-btn {
  display: block;
}

.screenshot-show-more-btn:hover {
  background: var(--gold);
  transform: scale(1.04);
}

/* ── SCREENSHOT SUBSECTION ── */
.screenshot-subsection {
  margin-top: 72px;
  position: relative;
}

.screenshot-subsection-header {
  margin-bottom: 36px;
}

.screenshot-subsection-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}

.screenshot-subsection-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--cream);
  margin-bottom: 12px;
}

.screenshot-subsection-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 248, 225, 0.5);
  max-width: 560px;
}

/* ── RETRO TV SECTION ── */
.retro-tv-section {
  position: relative;
  padding: 100px 8% 120px;
  background: var(--dark);
  text-align: center;
  overflow: hidden;
}

.retro-tv-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 197, 24, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(192, 57, 43, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.retro-tv-bg-squiggles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.retro-tv-bg-squiggles::before,
.retro-tv-bg-squiggles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 3px solid;
  opacity: 0.06;
  animation: squiggleFloat 12s ease-in-out infinite;
}

.retro-tv-bg-squiggles::before {
  width: 300px;
  height: 300px;
  top: 5%;
  left: -5%;
  border-color: var(--yellow);
  transform: rotate(-15deg);
}

.retro-tv-bg-squiggles::after {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: -3%;
  border-color: var(--red);
  animation-delay: -4s;
  animation-direction: reverse;
}

@keyframes squiggleFloat {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  50% { transform: rotate(15deg) translateY(-20px); }
}

.retro-tv-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.9;
  letter-spacing: 6px;
  color: var(--cream);
  margin-bottom: 16px;
}

.retro-tv-title-accent {
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--yellow);
  text-shadow:
    4px 4px 0 var(--red),
    -2px -2px 0 rgba(245, 197, 24, 0.3);
  letter-spacing: 10px;
  animation: titleWobble 4s ease-in-out infinite;
}

@keyframes titleWobble {
  0%, 100% { transform: rotate(-1deg) scale(1); }
  25% { transform: rotate(0.5deg) scale(1.01); }
  50% { transform: rotate(1deg) scale(1); }
  75% { transform: rotate(-0.5deg) scale(0.99); }
}

.retro-tv-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  perspective: 800px;
}

/* ── THE TV ITSELF ── */
.retro-tv {
  position: relative;
  width: clamp(340px, 75vw, 1000px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  transition: filter 0.4s;
}

.retro-tv.tv-on {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6))
          drop-shadow(0 0 40px rgba(245, 197, 24, 0.15));
}

/* ── ANTENNA ── */
.tv-antenna {
  position: relative;
  height: 70px;
  display: flex;
  justify-content: center;
}

.tv-antenna-left,
.tv-antenna-right {
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 70px;
  background: linear-gradient(to top, #666, #aaa);
  border-radius: 2px;
  transform-origin: bottom center;
}

.tv-antenna-left {
  left: calc(50% - 40px);
  transform: rotate(-20deg);
  --base-rotate: -20deg;
}

.tv-antenna-right {
  right: calc(50% - 40px);
  transform: rotate(20deg);
  --base-rotate: 20deg;
}

.tv-antenna-ball {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--yellow), var(--gold));
  box-shadow: 0 0 6px rgba(245, 197, 24, 0.4);
  top: 0;
}

.tv-antenna-ball-left {
  left: calc(50% - 62px);
}

.tv-antenna-ball-right {
  right: calc(50% - 62px);
}

.tv-playing .tv-antenna-ball-left {
  animation: antennaBob 3s ease-in-out infinite;
}

.tv-playing .tv-antenna-ball-right {
  animation: antennaBob 3s ease-in-out infinite 1.5s;
}

.tv-playing .tv-antenna-left {
  animation: antennaWiggle 4s ease-in-out infinite;
}

.tv-playing .tv-antenna-right {
  animation: antennaWiggle 4s ease-in-out infinite 2s;
}

@keyframes antennaWiggle {
  0%, 100% { transform: rotate(var(--base-rotate, -20deg)); }
  50% { transform: rotate(calc(var(--base-rotate, -20deg) + 5deg)); }
}

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

/* ── TV BODY ── */
.tv-body {
  background: linear-gradient(145deg, #e8c96a, #c49a2e 30%, #a07820 70%, #886418);
  border-radius: 24px 24px 18px 18px;
  padding: 20px;
  border: 4px solid #7a5c10;
  position: relative;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    inset 0 -3px 0 rgba(0, 0, 0, 0.2),
    0 8px 0 #6b4e0d,
    0 12px 0 #5a4009;
}

.tv-body::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  border-radius: 20px 20px 50% 50%;
  pointer-events: none;
}

/* ── SCREEN BEZEL ── */
.tv-screen-bezel {
  background: #2a1a00;
  border-radius: 16px;
  padding: 12px;
  box-shadow:
    inset 0 4px 12px rgba(0, 0, 0, 0.7),
    inset 0 0 0 3px rgba(0, 0, 0, 0.3),
    0 2px 0 rgba(255, 255, 255, 0.1);
}

/* ── SCREEN ── */
.tv-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.tv-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── SCREEN EFFECTS ── */
.tv-scanlines {
  display: none;
  z-index: 2;
}

.tv-static {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 47% 53%, transparent 0, rgba(150, 150, 150, 0.1) 1px, transparent 2px),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23s)' opacity='0.5'/%3E%3C/svg%3E");
  animation: staticFlicker 0.15s steps(3) infinite;
  opacity: 1;
  transition: opacity 0.6s;
}

.tv-static.clearing {
  opacity: 0.3;
}

.tv-static.hidden {
  opacity: 0;
}

@keyframes staticFlicker {
  0% { background-position: 0 0, 0 0; }
  33% { background-position: -30px 10px, 50px -30px; }
  66% { background-position: 20px -20px, -40px 20px; }
  100% { background-position: -10px 30px, 30px 10px; }
}

.tv-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-radius: 10px;
  pointer-events: none;
  z-index: 4;
}

/* ── TV CONTROLS PANEL ── */
.tv-controls-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px 6px;
}

.tv-brand-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
  color: #5a4009;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}

.tv-brand-badge span {
  font-size: 13px;
  letter-spacing: 6px;
  color: #7a5c10;
  display: block;
  margin-top: -4px;
}

.tv-knobs {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tv-knob-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tv-knob-label {
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: #5a4009;
  text-align: center;
  display: block;
  margin-top: 6px;
}

/* ── POWER KNOB ── */
.tv-power-knob {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #5a4009;
  background: radial-gradient(circle at 40% 35%, #d4a830, #8a6518 70%, #6b4e0d);
  cursor: pointer;
  position: relative;
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.2),
    inset 0 -2px 3px rgba(0, 0, 0, 0.3),
    0 3px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tv-power-knob::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
}

.tv-power-knob.active::after {
  background: #4cff4c;
  box-shadow: 0 0 8px rgba(76, 255, 76, 0.6), inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.tv-power-knob:hover {
  transform: scale(1.05);
}

.tv-power-knob:active {
  transform: scale(0.95) rotate(10deg);
}

/* ── FULLSCREEN KNOB ── */
.tv-fullscreen-knob {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid #5a4009;
  background: radial-gradient(circle at 40% 35%, #d4a830, #8a6518 70%, #6b4e0d);
  cursor: pointer;
  position: relative;
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.2),
    inset 0 -2px 3px rgba(0, 0, 0, 0.3),
    0 3px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.tv-fullscreen-knob::after {
  content: '⛶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #5a4009;
  line-height: 1;
}

.tv-fullscreen-knob:hover {
  transform: scale(1.1);
}

.tv-fullscreen-knob:active {
  transform: scale(0.95);
}

/* ── VOLUME SLIDER (TV) ── */
.tv-vol-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tv-vol-slider {
  width: 80px;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #5a4009, #c49a2e);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  border: 1px solid #4a3308;
}

.tv-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #e8c96a, #a07820);
  border: 2px solid #6b4e0d;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tv-vol-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #e8c96a, #a07820);
  border: 2px solid #6b4e0d;
  cursor: pointer;
}

/* ── TV LEGS ── */
.tv-legs {
  display: flex;
  justify-content: center;
  gap: 55%;
  position: relative;
  height: 40px;
}

.tv-leg {
  width: 12px;
  height: 40px;
  background: linear-gradient(to bottom, #886418, #6b4e0d);
  border-radius: 0 0 4px 4px;
  position: relative;
}

.tv-leg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  right: -4px;
  height: 6px;
  background: #5a4009;
  border-radius: 0 0 3px 3px;
}

.tv-leg-left {
  transform: rotate(4deg);
  transform-origin: top center;
}

.tv-leg-right {
  transform: rotate(-4deg);
  transform-origin: top center;
}

/* ── TV FULLSCREEN ── */
.tv-screen:fullscreen,
.tv-screen:-webkit-full-screen {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-screen:fullscreen video,
.tv-screen:-webkit-full-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tv-screen:fullscreen .tv-scanlines,
.tv-screen:-webkit-full-screen .tv-scanlines,
.tv-screen:fullscreen .tv-static,
.tv-screen:-webkit-full-screen .tv-static,
.tv-screen:fullscreen .tv-glare,
.tv-screen:-webkit-full-screen .tv-glare {
  display: none;
}

/* ── RETRO TV RESPONSIVE ── */
@media (max-width: 600px) {
  .retro-tv {
    width: 95vw;
  }

  .tv-antenna { height: 45px; }
  .tv-antenna-left, .tv-antenna-right { height: 45px; }

  .tv-brand-badge { font-size: 16px; }
  .tv-vol-slider { width: 55px; }
  .tv-power-knob { width: 34px; height: 34px; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  border-bottom: 2px solid rgba(245, 197, 24, 0.15);
  padding: 20px 5%;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  font-size: 18px;
}

.trust-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--cream);
  opacity: 0.85;
}

@media (max-width: 768px) {
  .trust-bar-inner {
    gap: 20px 30px;
    justify-content: center;
  }
  .trust-text { font-size: 13px; }
}

/* ── WHY LOCAL-FIRST ── */
.why-local {
  background: var(--dark);
  padding: 100px 8%;
  text-align: center;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 60px auto 0;
}

.local-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 28px;
  text-align: left;
  transition: background 0.3s;
}

.local-card:hover {
  background: rgba(245, 197, 24, 0.05);
}

.local-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.local-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 10px;
}

.local-card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 248, 225, 0.55);
}

.why-local .section-label,
.why-local .section-title,
.why-local .section-body {
  color: var(--cream);
}

.why-local .section-label {
  color: var(--yellow);
}

.why-local .section-body {
  color: rgba(255, 248, 225, 0.55);
}

/* ── WHO IT'S FOR ── */
.who-for {
  background: var(--parchment);
  padding: 100px 8%;
  text-align: center;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 60px auto 0;
}

.who-card {
  background: var(--cream);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(28, 10, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(28, 10, 0, 0.1);
}

.who-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.who-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 12px;
}

.who-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--brown);
}

@media (max-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ── LANDING PAGE STYLES ── */
.landing-page {
  padding: 140px 8% 100px;
  max-width: 900px;
  margin: 0 auto;
}

.landing-page h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 3px;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.landing-page .landing-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 40px;
  max-width: 680px;
}

.landing-page h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--dark);
  margin-top: 56px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 8px;
}

.landing-page h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--dark);
  margin-top: 32px;
  margin-bottom: 10px;
}

.landing-page p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--brown);
  margin-bottom: 16px;
}

.landing-page ul {
  margin: 12px 0 20px 24px;
  list-style: none;
}

.landing-page ul li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--brown);
  padding: 4px 0;
  position: relative;
  padding-left: 20px;
}

.landing-page ul li::before {
  content: '\2726';
  color: var(--yellow);
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 7px;
}

.landing-page a {
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.landing-page a:hover {
  border-bottom-color: var(--red);
}

.landing-cta {
  margin-top: 48px;
  padding: 40px;
  background: var(--dark);
  text-align: center;
}

.landing-cta p {
  color: rgba(255, 248, 225, 0.7);
  margin-bottom: 20px;
}

.landing-cta .btn-primary {
  font-size: 18px;
  padding: 16px 36px;
}

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 32px;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(28, 10, 0, 0.1);
  color: var(--brown);
}

.comparison-table th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--dark);
  background: var(--tile-light);
}

.comparison-table tr:hover {
  background: rgba(245, 197, 24, 0.05);
}

/* Landing FAQ section */
.landing-faq {
  margin-top: 48px;
}

.landing-faq details {
  border-bottom: 1px solid rgba(28, 10, 0, 0.1);
  padding: 16px 0;
}

.landing-faq summary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
}

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

.landing-faq summary::before {
  content: '+';
  color: var(--yellow);
  font-size: 20px;
  font-weight: 700;
  margin-right: 12px;
}

.landing-faq details[open] summary::before {
  content: '\2212';
}

.landing-faq .faq-a {
  padding: 12px 0 4px 28px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--brown);
}

@media (max-width: 600px) {
  .landing-page {
    padding: 120px 6% 72px;
  }
}
