/* ============================================
   CINTAS CLÁSICAS — Design System Clásico
   Estética: Sala de Proyección Familiar
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors — Paleta Sepia / Dorada */
  --color-bg-deep: #0c0904;
  --color-bg: #120d07;
  --color-bg-card: #1e1509;
  --color-bg-card-hover: #281c0d;

  --color-amber: #c8954a;
  --color-gold: #d4a96a;
  --color-gold-light: #e8c98a;
  --color-burgundy: #8b2020;
  --color-burgundy-hover: #a02828;
  --color-sepia: #5c3d1e;
  --color-green-wa: #25d366;

  --color-text-primary: #f5ead8;
  --color-text-secondary: #b8a485;
  --color-text-muted: #776655;
  --color-border: rgba(200, 149, 74, 0.22);
  --color-border-hover: rgba(200, 149, 74, 0.55);

  /* Gradients */
  --gradient-hero: linear-gradient(180deg, rgba(12, 9, 4, 0.45) 0%, rgba(12, 9, 4, 0.75) 55%, #0c0904 100%);
  --gradient-gold: linear-gradient(135deg, var(--color-amber), var(--color-gold-light));
  --gradient-card: linear-gradient(145deg, rgba(30, 21, 9, 0.9), rgba(18, 13, 7, 0.97));
  --gradient-cta: linear-gradient(135deg, var(--color-burgundy), #6b1717);
  --gradient-amber: linear-gradient(135deg, #c8954a, #a06830);

  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  --font-serif: 'Source Serif 4', 'Georgia', serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Border radius */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3);
  --shadow-amber: 0 6px 30px rgba(200, 149, 74, 0.18);
  --shadow-hover: 0 8px 40px rgba(200, 149, 74, 0.25), 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-cta: 0 4px 20px rgba(139, 32, 32, 0.4);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-deep);
  color: var(--color-text-primary);
  line-height: 1.75;
  overflow-x: hidden;
}

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

a {
  color: var(--color-amber);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-gold-light);
}

ul,
ol {
  list-style: none;
}

/* --- Grain texture overlay (subtle) --- */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-padding {
  padding: var(--space-2xl) 0;
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Icon Utilities --- */
.icon {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.icon-gold {
  color: var(--color-amber);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-brown {
  color: var(--color-text-secondary);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-md {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-lg {
  width: 3.5rem;
  height: 3.5rem;
}

.icon-bullet {
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 8px;
}

.format-icon .icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: var(--space-sm);
}

.step-icon .icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--space-sm);
}

.trust-icon .icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: var(--space-xs);
}

.extra-icon .icon {
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: var(--space-xs);
}

/* --- Section divider (ornamental line) --- */
.section-divider {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-amber), transparent);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(200, 149, 74, 0.07);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 70px;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  background: rgba(12, 9, 4, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(200, 149, 74, 0.12);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-gold);
  letter-spacing: 0.02em;
  transition: color var(--transition-base);
}

.nav-logo:hover {
  color: var(--color-gold-light);
}

.nav-logo span {
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--color-text-secondary);
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-amber);
  transition: width var(--transition-base);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.2rem !important;
  background: var(--color-burgundy);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary) !important;
  box-shadow: var(--shadow-cta);
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--color-burgundy-hover);
  transform: translateY(-1px);
  color: white !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-amber);
  margin: 5px 0;
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--color-bg-deep);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(0.15) contrast(1.1) brightness(0.85);
  /* Slightly brighter for better visibility */
  opacity: 0;
  transition: opacity 1.2s ease-in;
}

.hero-video.loaded {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  /* Solid black with transparency */
  z-index: 1;
}



.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 820px;
  padding: var(--space-2xl) var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(200, 149, 74, 0.1);
  border: 1px solid rgba(200, 149, 74, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.45rem var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-amber);
  animation: blink 2s ease-in-out infinite;
}

/* Classic Serif Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  /* Extra bold for Montserrat */
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
  /* Tighter for sans-serif */
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.hero-title .highlight {
  display: block;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-description {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 32, 32, 0.5);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--color-amber);
  border: 1px solid var(--color-border-hover);
}

.btn-secondary:hover {
  background: rgba(200, 149, 74, 0.08);
  transform: translateY(-2px);
  color: var(--color-gold-light);
  border-color: var(--color-amber);
}

.btn-whatsapp {
  background: var(--color-green-wa);
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  color: #0a0a0a;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
}

.hero-scroll .arrow {
  width: 18px;
  height: 18px;
  border-right: 1px solid var(--color-amber);
  border-bottom: 1px solid var(--color-amber);
  transform: rotate(45deg);
  opacity: 0.7;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  background: var(--color-bg);
  position: relative;
}

.problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-amber) 40%, var(--color-amber) 60%, transparent);
  opacity: 0.35;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.problem-visual {
  position: relative;
}

.vhs-display {
  background: var(--color-bg-deep);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.vhs-display::before {
  content: '● REC';
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: #cc4444;
  animation: blink 1.2s ease-in-out infinite;
}

.decay-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.decay-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.decay-year {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-amber);
  min-width: 80px;
}

.decay-bar {
  flex: 1;
  height: 7px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.decay-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s ease;
  width: 0;
}

.decay-bar-fill.good {
  background: linear-gradient(90deg, #4a9e6b, #6bb88a);
}

.decay-bar-fill.warning {
  background: linear-gradient(90deg, #c8954a, #d4a96a);
}

.decay-bar-fill.danger {
  background: linear-gradient(90deg, #c06020, #cc4444);
}

.decay-bar-fill.critical {
  background: linear-gradient(90deg, #8b2020, #c02020);
}

.decay-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  min-width: 44px;
  text-align: right;
}

.problem-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.problem-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.75;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.stat-item {
  text-align: center;
  padding: var(--space-sm);
  background: rgba(200, 149, 74, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-amber);
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* ============================================
   FORMATS SECTION
   ============================================ */
.formats {
  background: var(--color-bg-deep);
  position: relative;
}

.formats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-amber) 40%, var(--color-amber) 60%, transparent);
  opacity: 0.35;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.format-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-sm);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.format-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-amber);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.format-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-hover);
}

.format-card:hover::before {
  opacity: 1;
}

.format-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.format-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.format-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================
   STEPS SECTION
   ============================================ */
.steps {
  background: var(--color-bg);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-amber) 40%, var(--color-amber) 60%, transparent);
  opacity: 0.25;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  position: relative;
}

/* Connecting line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-amber), var(--color-gold), var(--color-amber));
  opacity: 0.3;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-amber);
  border: 1px solid var(--color-border-hover);
  background: var(--color-bg-card);
  box-shadow: var(--shadow-amber);
  transition: all var(--transition-base);
}

.step-card:hover .step-number {
  background: rgba(200, 149, 74, 0.1);
  box-shadow: var(--shadow-hover);
  transform: scale(1.08);
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-xs);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  background: var(--color-bg-deep);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-amber) 40%, var(--color-amber) 60%, transparent);
  opacity: 0.35;
}

.pricing-table-wrapper {
  max-width: 820px;
  margin: 0 auto;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-table thead th {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-amber);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: var(--space-md) var(--space-sm);
  background: rgba(200, 149, 74, 0.06);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.pricing-table tbody td {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: var(--space-sm);
  border-bottom: 1px solid rgba(200, 149, 74, 0.06);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.pricing-table tbody tr:hover td {
  background: rgba(200, 149, 74, 0.04);
  color: var(--color-text-primary);
}

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

.pricing-value {
  color: var(--color-gold-light) !important;
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.pricing-note strong {
  color: var(--color-amber);
}

.pricing-extras {
  margin-top: var(--space-xl);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.extras-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-md);
}

.extra-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.extra-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-hover);
}

.extra-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.extra-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.extra-price {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-amber);
  margin-bottom: var(--space-sm);
}

.extra-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: var(--color-bg);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-amber) 40%, var(--color-amber) 60%, transparent);
  opacity: 0.25;
}

/* === TESTIMONIALS SLIDER === */
.testimonials-slider {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  animation: testimonials-scroll 45s linear infinite;
}

.testimonials-slider:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: all var(--transition-base);
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
}

.testimonial-card:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.testimonial-tv-header {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

.testimonial-tv-header .channel {
  color: var(--color-amber);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.testimonial-quote::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--color-amber);
  font-style: normal;
  font-family: var(--font-display);
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 4px;
  opacity: 0.8;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-gold);
}

.testimonial-location {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--color-bg-deep);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-amber) 40%, var(--color-amber) 60%, transparent);
  opacity: 0.35;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.contact-info p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  line-height: 1.75;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(200, 149, 74, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-method:hover {
  border-color: var(--color-border-hover);
  background: rgba(200, 149, 74, 0.07);
}

.contact-method-icon {
  font-size: 1.4rem;
  min-width: 40px;
  text-align: center;
}

.contact-method-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.contact-method-text strong {
  display: block;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

/* Form styles */
.contact-form {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.contact-form::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-amber);
}

.form-group {
  margin-bottom: var(--space-md);
  width: 100%;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-amber);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-primary);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-amber);
  box-shadow: 0 0 0 3px rgba(200, 149, 74, 0.12);
  background: rgba(0, 0, 0, 0.45);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c8954a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--color-bg-deep);
  color: var(--color-text-primary);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-submit {
  width: 100%;
  margin-top: var(--space-sm);
}

/* Form success/error states */
.form-message {
  display: none;
  text-align: center;
  padding: var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.form-message.success {
  display: block;
  color: #5fa87a;
}

.form-message.error {
  display: block;
  color: #c04040;
}

/* ============================================
   CITIES — LOCAL SEO
   ============================================ */
.cities {
  background: var(--color-bg);
  position: relative;
}

.cities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-amber) 40%, var(--color-amber) 60%, transparent);
  opacity: 0.2;
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.city-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  background: rgba(200, 149, 74, 0.03);
  border: 1px solid rgba(200, 149, 74, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.9rem;
  transition: all var(--transition-base);
  cursor: default;
}

.city-tag:hover {
  color: var(--color-amber);
  border-color: rgba(200, 149, 74, 0.4);
  background: rgba(200, 149, 74, 0.06);
}

.city-tag:nth-child(-n+6) {
  color: var(--color-text-secondary);
  border-color: rgba(200, 149, 74, 0.25);
}

.city-tag:nth-child(-n+6):hover {
  color: var(--color-gold);
  border-color: var(--color-amber);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  width: 58px;
  height: 58px;
  background: var(--color-green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
  text-decoration: none;
  animation: pulse-whatsapp 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #0a0a0a;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 0.45rem var(--space-sm);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg);
  border-top: 1px solid rgba(200, 149, 74, 0.15);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-gold);
}

.footer-logo span {
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 400;
}

.footer-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}

.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.footer-link:hover {
  color: var(--color-gold);
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(200, 149, 74, 0.08);
  text-align: center;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes testimonials-scroll {
  0% {
    transform: translateX(0);
  }

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

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
  }
}

@keyframes bounce-down {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   NEW SEO SECTIONS (Packs, Trust, Urgency)
   ============================================ */
.hero-bullets {
  list-style: none;
  margin: 0 auto var(--space-lg) auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  text-align: left;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  color: var(--color-text-primary);
  background: rgba(12, 9, 4, 0.5);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 149, 74, 0.2);
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.packs-section {
  margin-bottom: var(--space-xl);
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.pack-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.pack-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-border-hover);
}

.pack-card.popular {
  border-color: var(--color-amber);
  box-shadow: var(--shadow-amber);
  transform: scale(1.03);
}

.pack-card.popular:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pack-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-amber);
  color: var(--color-bg-deep);
  padding: 3px 14px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  white-space: nowrap;
}

.pack-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.pack-card.popular .pack-name {
  color: var(--color-amber);
}

.pack-desc {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  min-height: 40px;
}

.pack-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.trust-item {
  background: rgba(200, 149, 74, 0.03);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-base);
}

.trust-item:hover {
  border-color: var(--color-border-hover);
}

.trust-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.trust-item p {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-primary);
  line-height: 1.4;
}

/* Urgency Banner — Rojo Borgoña */
.urgency-banner {
  background: linear-gradient(135deg, #6b1717 0%, #8b2020 50%, #6b1717 100%);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      rgba(0, 0, 0, 0.08) 0px,
      rgba(0, 0, 0, 0.08) 10px,
      transparent 10px,
      transparent 20px);
}

.urgency-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 149, 74, 0.5), transparent);
}

.urgency-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.urgency-time {
  display: inline-block;
  background: rgba(0, 0, 0, 0.35);
  color: var(--color-gold-light);
  padding: 4px 14px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(200, 149, 74, 0.3);
}

.urgency-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
  line-height: 1.35;
}

.urgency-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(12, 9, 4, 0.98);
    backdrop-filter: blur(20px);
    padding: 5rem var(--space-lg) var(--space-lg);
    border-left: 1px solid var(--color-border);
    z-index: 1000;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .steps-grid::before {
    display: none;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }
}

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

  .formats-grid .format-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .problem-stats {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
  }

  .section-padding {
    padding: var(--space-xl) 0;
  }

  /* Responsive Pricing Table */
  .pricing-table-wrapper {
    overflow-x: hidden;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tr {
    margin-bottom: var(--space-md);
    background: rgba(200, 149, 74, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
  }

  .pricing-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border-bottom: 1px solid rgba(200, 149, 74, 0.06);
    white-space: normal;
  }

  .pricing-table td::before {
    position: absolute;
    top: auto;
    left: var(--space-sm);
    width: 45%;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-amber);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    content: attr(data-label);
  }

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

@media (max-width: 768px) {
  .pack-card.popular {
    transform: none;
  }

  .pack-card.popular:hover {
    transform: translateY(-4px);
  }
}

/* ============================================
   CONFIGURADOR INTERACTIVO
   ============================================ */
.configurator {
  background: radial-gradient(circle at center, var(--color-bg-card) 0%, var(--color-bg-deep) 100%);
  position: relative;
}

.config-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

@media (min-width: 992px) {
  .config-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.config-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.config-card {
  background: rgba(30, 21, 9, 0.4);
  border: 1px solid rgba(200, 149, 74, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.config-card-title {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  border-bottom: 1px solid rgba(200, 149, 74, 0.1);
  padding-bottom: var(--space-sm);
}

.config-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.config-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease;
}

.config-item:hover, .config-item:focus-within {
  border-color: rgba(200, 149, 74, 0.3);
}

.config-item label {
  color: var(--color-text);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.cfg-price-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.cfg-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--color-bg-deep);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(200, 149, 74, 0.2);
}

.cfg-qty-btn {
  background: rgba(200, 149, 74, 0.1);
  color: var(--color-gold);
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.2s;
}

.cfg-qty-btn:hover {
  background: rgba(200, 149, 74, 0.3);
}

.cfg-input-qty {
  width: 48px;
  height: 32px;
  background: transparent;
  border: none;
  color: var(--color-text);
  text-align: center;
  font-family: var(--font-body);
  font-weight: bold;
  -moz-appearance: textfield;
}

.cfg-input-qty::-webkit-inner-spin-button, 
.cfg-input-qty::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

.cfg-input-qty:focus {
  outline: none;
}

.config-item-select {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.cfg-input-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg-deep);
  border: 1px solid rgba(200, 149, 74, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8954a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.cfg-input-select:focus {
  outline: none;
  border-color: var(--color-gold);
}

.config-extras-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 576px) {
  .config-extras-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.config-checkbox {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 1rem 1rem 1rem 2.5rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  user-select: none;
}

.config-checkbox:hover {
  border-color: rgba(200, 149, 74, 0.3);
  background: rgba(0, 0, 0, 0.3);
}

.config-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.cfg-checkmark {
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  height: 18px;
  width: 18px;
  background-color: transparent;
  border: 2px solid rgba(200, 149, 74, 0.5);
  border-radius: 4px;
  transition: all 0.2s;
}

.config-checkbox:hover input ~ .cfg-checkmark {
  border-color: var(--color-gold);
}

.config-checkbox input:checked ~ .cfg-checkmark {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
}

.cfg-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.config-checkbox input:checked ~ .cfg-checkmark:after {
  display: block;
}

.config-checkbox .cfg-checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--color-bg-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cfg-checkbox-text {
  display: flex;
  flex-direction: column;
}

.cfg-checkbox-title {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
}

.cfg-checkbox-price {
  color: var(--color-amber);
  font-size: 0.8rem;
  font-weight: bold;
}

.config-summary-card {
  background: rgba(20, 15, 8, 0.8);
  border: 1px solid rgba(200, 149, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: sticky;
  top: 100px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.config-summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  min-height: 100px;
}

.cfg-empty-state {
  color: var(--color-text-muted);
  font-style: italic;
  text-align: center;
  margin: auto;
  font-size: 0.9rem;
}

.cfg-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--color-text);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.config-pack-alert {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #4ade80;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
  animation: fadeIn 0.3s ease;
}

.config-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 2px solid rgba(200, 149, 74, 0.2);
  margin-bottom: var(--space-lg);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-text);
}

.cfg-total-price {
  color: var(--color-gold-light);
  font-size: 1.8rem;
  font-family: var(--font-heading);
}

.config-submit-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: 1.1rem;
}

.config-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--color-bg-card);
  color: var(--color-text-muted);
  border-color: rgba(255,255,255,0.1);
}
/* --- FAQ Section --- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.faq-item {
  background: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.faq-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-amber);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

/* --- Local SEO Section --- */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.city-tag {
  background: rgba(200, 149, 74, 0.1);
  color: var(--color-text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.city-tag:hover {
  background: var(--color-amber);
  color: var(--color-bg-deep);
  border-color: var(--color-amber);
}
