/* ============================================
   EVENTIFY-INSPIRED MODERN DESIGN
   CANDELARIA 2026 - Mobile-First
   ============================================ */

/* ============================================
   CSS VARIABLES & FOUNDATIONS
   ============================================ */
:root {
  /* ============================================
     PALETA HÍBRIDA - CANDELARIA 2026
     Festivo + Moderno (Inspirado en Incalake Tours)
     ============================================ */

  /* Colores Principales (Navy moderno de referencia) */
  --primary-color: #0f172a;          /* Navy oscuro (de referencia) */
  --secondary-color: #1e293b;        /* Navy medio (de referencia) */
  --tertiary-color: #334155;         /* Slate oscuro */

  /* Colores de Acento - Jerarquía Clara */
  --accent-primary: #D4AF37;         /* Dorado real (CTAs principales - mantiene Candelaria) */
  --accent-secondary: #06b6d4;       /* Cyan vibrante (links, info - de referencia) */
  --accent-tertiary: #C41E3A;        /* Rojo carmesí (urgencia, "En Vivo") */
  --accent-gold: #FFD700;            /* Dorado brillante (hover) */

  /* Colores Neutros (Grises modernos de referencia) */
  --text-primary: #0f172a;           /* Navy oscuro */
  --text-secondary: #64748b;         /* Slate gris (de referencia) */
  --text-tertiary: #94a3b8;          /* Slate claro (de referencia) */
  --text-light: #ffffff;             /* Texto sobre oscuro */
  --text-muted: #cbd5e1;             /* Muy sutil (de referencia) */

  /* Fondos (Limpios de referencia) */
  --background-primary: #ffffff;      /* Blanco puro */
  --background-secondary: #f8fafc;    /* Gris muy claro (de referencia) */
  --background-accent: #f0f9ff;       /* Azul muy claro (de referencia) */
  --background-dark: #0f172a;         /* Navy oscuro */
  --background-slate: #f1f5f9;        /* Slate muy claro */

  /* Estados de Color */
  --success: #10B981;                 /* Verde éxito */
  --warning: #F59E0B;                 /* Amarillo advertencia */
  --error: #EF4444;                   /* Rojo error */
  --info: #06b6d4;                    /* Cyan (de referencia) */

  /* Gradientes Mejorados */
  --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
  --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
  --gradient-red: linear-gradient(135deg, #C41E3A 0%, #E63946 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);

  /* Sombras con Colores */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.25);
  --shadow-cyan: 0 8px 24px rgba(6, 182, 212, 0.25);
  --shadow-red: 0 8px 24px rgba(196, 30, 58, 0.25);

  /* Bordes (de referencia) */
  --border-light: #e2e8f0;           /* Slate muy claro */
  --border-medium: #cbd5e1;          /* Slate claro */
  --border-dark: #94a3b8;            /* Slate medio */
  --border-radius-sm: 6px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 24px;

  /* Transiciones */
  --transition-fast: all 0.15s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  /* Compatibilidad con código existente */
  --accent-color: #D4AF37;           /* Alias para accent-primary */
}

/* ============================================
   RESET & BASE - MOBILE FIRST
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent horizontal scroll globally */
html {
  overflow-x: hidden;
  width: 100%;
}

/* Modern Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: #1a1a2e;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
}

/* Links con cyan */
a {
  color: var(--accent-secondary);
  transition: var(--transition-fast);
}

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

/* Headings - Mobile Optimized */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  /* color: var(--text-primary); */ /* Comentado para no afectar colores del modal */
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(1.75rem, 6vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 600;
}

/* ============================================
   BUTTONS - MOBILE FIRST
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  max-width: 280px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-normal);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #1a1a2e;
  box-shadow: var(--shadow-gold);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: var(--accent-gold);
  color: #1a1a2e;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

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

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

/* ============================================
   NAVIGATION - MOBILE FIRST
   ============================================ */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.nav-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  list-style: none;
  gap: 0;
  z-index: 10000;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

.nav-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-menu li {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-menu li:last-child {
  border-bottom: none;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  display: block;
  width: 100%;
  text-align: left;
}

.nav-link:hover {
  color: var(--accent-color);
  background: rgba(255, 215, 0, 0.1);
}

.nav-link.active {
  color: var(--accent-color);
  background: rgba(255, 215, 0, 0.1);
}

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
  padding: 0.5rem;
  z-index: 10000;
  position: relative;
}

/* ============================================
   HERO SECTION - MOBILE FIRST
   ============================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 100%;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.hero-title {
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 3vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/* Next Event Preview */
.next-event-preview {
  text-decoration: none;
  color: #ffffff;
  display: block;
  margin: 1rem auto 0;
  text-align: center;
  transition: opacity 0.3s ease;
}

.next-event-preview:hover {
  opacity: 0.8;
}

.next-event-text {
  font-size: 0.75rem;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 500;
  display: inline-block;
}

#nextEventCountdown {
  font-weight: 700;
}

#nextEventInfo {
  font-weight: 600;
}

@media (max-width: 480px) {
  .nav-menu {
    top: 60px;
    max-height: calc(100vh - 60px);
  }

  .next-event-text {
    font-size: 0.7rem;
  }
}

/* ============================================
   CARDS - MOBILE FIRST
   ============================================ */
.card {
  background: var(--background-primary);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-normal);
  border: 2px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-primary);
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: var(--transition-normal);
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 1.25rem;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.card-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* ============================================
   GRID LAYOUT - MOBILE FIRST
   ============================================ */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  overflow-x: hidden;
}

.section {
  padding: 2.5rem 0;
  background-color: var(--background-primary);
  max-width: 100%;
  overflow-x: hidden;
}

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

.section-gray {
  background: var(--background-secondary);
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

/* ============================================
   SECTION HEADERS - MOBILE FIRST
   ============================================ */
.section-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 2rem;
  padding: 0 1rem;
}

.section-subtitle {
  color: var(--accent-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   FEATURES - MOBILE FIRST
   ============================================ */
.feature {
  text-align: center;
  padding: 1.5rem 1rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ============================================
   STATS SECTION - MOBILE FIRST
   ============================================ */
.stats {
  background: var(--gradient-primary);
  color: var(--text-light);
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
}

/* ============================================
   FOOTER - MOBILE FIRST
   ============================================ */
.footer {
  background: var(--background-dark);
  color: var(--text-light);
  padding: 2.5rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ============================================
   ANIMATIONS - MOBILE FRIENDLY
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: var(--transition-slow);
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: var(--transition-slow);
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   CUSTOM SCROLLBAR - MOBILE OPTIMIZED
   ============================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--background-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

/* ============================================
   TABLET - 576px and up
   ============================================ */
@media (min-width: 576px) {
  .btn {
    width: auto;
    padding: 14px 28px;
    font-size: 1rem;
  }

  .nav-container {
    padding: 0 1.5rem;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-content {
    max-width: 540px;
    padding: 0 1.5rem;
  }

  .hero-cta {
    flex-direction: row;
  }

  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .grid {
    gap: 2rem;
  }

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

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-image {
    height: 200px;
  }

  .card-content {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-header {
    max-width: 540px;
  }
}

/* ============================================
   TABLET LANDSCAPE - 768px and up
   ============================================ */
@media (min-width: 768px) {
  .nav-container {
    height: 70px;
    padding: 0 2rem;
  }

  .nav-logo {
    font-size: 1.35rem;
    gap: 1rem;
  }

  .nav-logo img {
    width: 36px;
    height: 36px;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    gap: 1.5rem;
    background: transparent;
    backdrop-filter: none;
  }

  .nav-menu li {
    border-bottom: none;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    display: inline-block;
    width: auto;
  }

  .mobile-toggle {
    display: none;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-content {
    max-width: 720px;
  }

  .container {
    max-width: 720px;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-header {
    max-width: 600px;
    margin-bottom: 3rem;
  }

  .section-subtitle {
    font-size: 0.875rem;
    letter-spacing: 1px;
  }

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

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

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

  .card-image {
    height: 220px;
  }

  .card-content {
    padding: 2rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-text {
    font-size: 1rem;
  }

  .feature {
    padding: 2rem;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .feature-description {
    font-size: 1rem;
  }

  .stat-item {
    padding: 2rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .stat-label {
    font-size: 1.125rem;
  }

  .footer {
    padding: 3.5rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .footer-section a,
  .footer-contact-item {
    font-size: 1rem;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
  }

  .footer-bottom {
    padding-top: 2rem;
    font-size: 0.9rem;
  }

  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 4px;
  }
}

/* ============================================
   DESKTOP - 992px and up
   ============================================ */
@media (min-width: 992px) {
  .nav-container {
    height: 80px;
    max-width: 960px;
  }

  .nav-logo {
    font-size: 1.5rem;
  }

  .nav-logo img {
    width: 40px;
    height: 40px;
  }

  .nav-menu {
    gap: 2rem;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    max-width: 800px;
    padding: 0 2rem;
  }

  .container {
    max-width: 960px;
  }

  .section {
    padding: 6rem 0;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

/* ============================================
   LARGE DESKTOP - 1200px and up
   ============================================ */
@media (min-width: 1200px) {
  .nav-container {
    max-width: 1140px;
  }

  .container {
    max-width: 1140px;
  }

  .section {
    padding: 8rem 0;
  }

  .footer {
    padding: 4rem 0 2rem;
  }
}

/* ============================================
   EXTRA LARGE DESKTOP - 1400px and up
   ============================================ */
@media (min-width: 1400px) {
  .nav-container {
    max-width: 1200px;
  }

  .container {
    max-width: 1200px;
  }

  .section {
    padding: 10rem 0;
  }
}

/* ============================================
   ACCESSIBILITY & PREFERENCES
   ============================================ */

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in,
  .slide-in-left,
  .slide-in-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* High contrast */
@media (prefers-contrast: high) {
  .btn-primary {
    background: #000;
    border-color: #000;
  }

  .btn-secondary {
    border-width: 3px;
  }

  .nav-link:focus,
  .btn:focus {
    outline: 3px solid #000;
    outline-offset: 2px;
  }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 48px;
    min-width: 48px;
  }

  .nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .card:hover {
    transform: none;
  }

  .feature-icon {
    min-height: 48px;
    min-width: 48px;
  }
}

/* Print */
@media print {
  .navbar,
  .mobile-toggle,
  .hero-cta,
  .btn {
    display: none !important;
  }

  .hero {
    min-height: auto;
    background: white !important;
    color: black !important;
  }

  .section {
    padding: 2rem 0;
    page-break-inside: avoid;
  }

  .card {
    border: 1px solid #ccc;
    box-shadow: none;
    page-break-inside: avoid;
  }

  .footer {
    background: white !important;
    color: black !important;
  }
}
