/* ===== Viajero Namaste — hoja de estilos principal ===== */

:root {
  --primary: #E8622C;
  --primary-dark: #C64A1B;
  --primary-light: #FF8A50;
  --secondary: #123832;
  --secondary-light: #1F5148;
  --accent: #F4A93D;
  --cream: #FFF8F0;
  --cream-dark: #FCEEE0;
  --text-dark: #2B2118;
  --text-muted: #6B5D52;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(43, 33, 24, 0.12);
  --radius: 16px;
  --max-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.section-cream { background: var(--cream-dark); }

.section-tag {
  display: inline-block;
  color: var(--primary);
  background: rgba(232, 98, 44, 0.1);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-desc {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 1.05rem;
}

.section-header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 700px;
}

.section-header .section-desc { margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(232, 98, 44, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 26px rgba(232, 98, 44, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-dark {
  background: var(--secondary);
  color: var(--white);
}
.btn-dark:hover { background: var(--secondary-light); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-block { width: 100%; justify-content: center; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43,33,24,0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary);
}
.logo-mark {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer .logo-mark { height: 56px; }
.logo span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 500;
  font-size: 0.96rem;
}
.nav-links a { color: var(--text-dark); position: relative; padding: 4px 0; }
.nav-links a:hover { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--secondary); border-radius: 3px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, #0C2521 55%, var(--primary-dark) 130%);
  overflow: hidden;
  color: var(--white);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 30%, var(--accent) 0, transparent 40%),
    radial-gradient(circle at 80% 20%, var(--primary) 0, transparent 35%),
    radial-gradient(circle at 60% 80%, var(--accent) 0, transparent 40%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 169, 61, 0.18);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
}
.hero-stats div span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual svg { width: 78%; height: 78%; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(255,255,255,0.94);
  color: var(--secondary);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.hero-badge .dot {
  width: 10px; height: 10px; border-radius: 50%; background: #25D366;
  box-shadow: 0 0 0 4px rgba(37,211,102,0.25);
}

/* ===== Trust bar ===== */
.trustbar {
  background: var(--secondary);
  color: var(--white);
}
.trustbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 24px;
  text-align: center;
}
.trustbar div strong { display: block; font-size: 1.5rem; color: var(--accent); }
.trustbar div span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ===== Feature cards ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--secondary); }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Package cards ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.package-card:hover { transform: translateY(-6px); }

.package-media {
  height: 190px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.package-media svg { width: 60%; height: 60%; opacity: 0.9; }
.package-media.tone-1 { background: linear-gradient(135deg, #E8622C, #F4A93D); }
.package-media.tone-2 { background: linear-gradient(135deg, #123832, #1F5148); }
.package-media.tone-3 { background: linear-gradient(135deg, #C64A1B, #123832); }

.package-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.package-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.package-body h3 { color: var(--secondary); font-size: 1.2rem; margin-bottom: 8px; }
.package-meta {
  display: flex;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.package-body p.desc { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 18px; flex: 1; }

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cream-dark);
  padding-top: 16px;
}
.package-price { font-weight: 700; color: var(--primary); font-size: 1.15rem; }
.package-price span { font-weight: 400; color: var(--text-muted); font-size: 0.78rem; display: block; }

.packages-cta { text-align: center; margin-top: 46px; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--secondary), var(--secondary-light));
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about-visual svg { width: 55%; height: 55%; }
.about-visual img.about-photo { width: 100%; height: 100%; object-fit: cover; }
.about-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(12,37,33,0.85), transparent);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
}
.about-list { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-dark); }
.about-list .check {
  width: 26px; height: 26px; min-width: 26px;
  border-radius: 50%;
  background: rgba(232,98,44,0.12);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.cert-badge:hover { transform: translateY(-3px); }
.cert-badge img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
  flex-shrink: 0;
}
.cert-badge strong { display: block; color: var(--secondary); font-size: 0.98rem; margin-bottom: 4px; }
.cert-badge span { display: block; font-size: 0.83rem; color: var(--text-muted); }
.cert-badge .cert-link { color: var(--primary); font-weight: 600; margin-top: 6px; }

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p.quote { color: var(--text-dark); font-size: 0.98rem; margin-bottom: 20px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700;
}
.testimonial-person strong { display: block; font-size: 0.92rem; color: var(--secondary); }
.testimonial-person span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--secondary);
  text-align: left;
}
.faq-question .icon { transition: transform 0.25s ease; color: var(--primary); font-size: 1.3rem; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.94rem;
}
.faq-item.open .faq-answer { padding-bottom: 20px; }

/* ===== Contact ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-info {
  background: linear-gradient(160deg, var(--secondary), #0C2521);
  color: var(--white);
  padding: 46px 38px;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 14px; }
.contact-info p { color: rgba(255,255,255,0.78); margin-bottom: 30px; font-size: 0.96rem; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.contact-item .ic {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(244,169,61,0.18);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.contact-item strong { display: block; font-size: 0.95rem; }
.contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.contact-form { padding: 46px 38px; }
.contact-form h3 { color: var(--secondary); font-size: 1.4rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--secondary); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid #E8DCCE;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
}
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; }
.form-status { font-size: 0.9rem; margin-top: 12px; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: #1F7A4C; }
.form-status.err { color: #C64A1B; }

/* ===== Footer ===== */
.footer { background: #0C2521; color: rgba(255,255,255,0.75); padding: 60px 0 26px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .logo { color: var(--white); margin-bottom: 14px; }
.footer p.desc { font-size: 0.9rem; max-width: 280px; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer ul li a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== WhatsApp floating button ===== */
.float-whatsapp {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37,211,102,0.45);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 10px 24px rgba(37,211,102,0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 10px 24px rgba(37,211,102,0.45); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 10px 24px rgba(37,211,102,0.45); }
}

/* ===== Package detail page ===== */
.pkg-hero {
  padding-top: 140px;
  padding-bottom: 70px;
  background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.pkg-hero .hero-pattern { opacity: 0.14; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--accent); }
.pkg-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; max-width: 760px; }
.pkg-tags { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.pkg-tag {
  background: rgba(255,255,255,0.14);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px;
}

.pkg-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 46px;
  align-items: start;
}

.pkg-block { margin-bottom: 46px; }
.pkg-block h2 { color: var(--secondary); font-size: 1.5rem; margin-bottom: 18px; }

.ext-list, .tips-list { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.ext-list li, .tips-list li { font-size: 0.95rem; color: var(--text-dark); line-height: 1.55; padding-left: 4px; }
.ext-list li strong, .tips-list li strong { color: var(--secondary); }
.itinerary-note {
  margin-top: 22px;
  padding: 18px 22px;
  background: var(--cream-dark);
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
}

.itinerary-day {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.itinerary-day:last-child { border-bottom: none; }
.day-badge {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem;
}
.day-badge span { font-size: 1.15rem; }
.itinerary-day h4 { color: var(--secondary); margin-bottom: 6px; font-size: 1.05rem; }
.itinerary-day p { color: var(--text-muted); font-size: 0.94rem; }

.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.incl-list li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.94rem; }
.incl-list.yes li::before { content: "✓"; color: #1F7A4C; font-weight: 700; }
.incl-list.no li::before { content: "✕"; color: #C64A1B; font-weight: 700; }
.incl-list li::before { flex-shrink: 0; }

.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.video-grid video { width: 100%; display: block; border-radius: 14px; background: #000; box-shadow: var(--shadow); aspect-ratio: 9/16; object-fit: cover; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid div {
  aspect-ratio: 1/1; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.gallery-grid .gallery-photo {
  position: relative;
  overflow: hidden;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.gallery-grid .gallery-photo span {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

.pkg-sidebar {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}
.pkg-price-box { text-align: center; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--cream-dark); }
.pkg-price-box span.label { font-size: 0.85rem; color: var(--text-muted); }
.pkg-price-box strong { display: block; font-size: 2.2rem; color: var(--primary); }
.pkg-sidebar-list li {
  display: flex; justify-content: space-between;
  font-size: 0.92rem; padding: 10px 0;
  border-bottom: 1px dashed var(--cream-dark);
  color: var(--text-dark);
}
.pkg-sidebar-list li strong { color: var(--secondary); }
.pkg-sidebar .btn { margin-top: 20px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav-links, .header-actions .btn-dark { display: none; }
  .nav-toggle { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .features-grid, .packages-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-wrap, .pkg-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .incl-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .features-grid, .packages-grid, .testimonial-grid, .footer-grid, .gallery-grid, .video-grid { grid-template-columns: 1fr; }
  .video-grid video { aspect-ratio: 9/12; }
  .form-row { grid-template-columns: 1fr; }
  .trustbar .container { justify-content: center; }
  .hero-stats { gap: 24px; }
  .section { padding: 60px 0; }
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--cream);
  box-shadow: 0 12px 20px rgba(0,0,0,0.1);
  padding: 20px 24px 30px;
  display: none;
  flex-direction: column;
  gap: 18px;
  z-index: 99;
}
.mobile-nav.show { display: flex; }
.mobile-nav a { font-weight: 600; color: var(--text-dark); }
