/* ============================================
   FARMASI JESSICA CDMX — Design System
   Mobile-first | SEO-optimized | No frameworks
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --rosa-light: #F5E6E0;
  --rosa: #E8C4C4;
  --white: #FFFFFF;
  --gold: #D4A574;
  --sage: #4A5D4A;
  --text-dark: #2D2D2D;
  --text-secondary: #666666;
  --text-light: #999999;
  --border: #E5E5E5;
  --bg-light: #FAFAFA;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --max-width: 1200px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.25s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
  color: var(--text-dark);
}

h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.625rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

strong { color: var(--text-dark); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3rem 0;
}

.section--rosa {
  background: var(--rosa-light);
}

.section--sage {
  background: var(--sage);
  color: var(--white);
}

.section--sage h2,
.section--sage h3,
.section--sage p {
  color: var(--white);
}

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

/* --- Navigation --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

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

.navbar__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.navbar__logo span {
  color: var(--rosa);
}

.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

.navbar__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 1rem 0;
}

.navbar__menu.active {
  display: block;
}

.navbar__menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-dark);
  font-weight: 500;
  min-height: 44px;
  line-height: 44px;
}

.navbar__menu a:hover,
.navbar__menu a.active {
  color: var(--gold);
  background: var(--rosa-light);
}

/* --- Breadcrumbs --- */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-light);
}

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

.breadcrumb__separator {
  margin: 0 0.5rem;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--rosa-light) 0%, var(--white) 100%);
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.hero h1 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 48px;
  text-decoration: none;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background: #C49563;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}

.btn--outline:hover {
  background: var(--sage);
  color: var(--white);
}

.btn--rosa {
  background: var(--rosa);
  color: var(--text-dark);
}

.btn--rosa:hover {
  background: #D9B0B0;
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* --- Cards --- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rosa-light);
  border-radius: 50%;
  padding: 10px;
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

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

/* --- Value Props (3 columns) --- */
.value-props {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}

.value-prop {
  padding: 2rem 1.25rem;
}

.value-prop__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rosa-light);
  border-radius: 50%;
  padding: 12px;
}

.value-prop__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-prop__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

/* --- Product Cards --- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card__img {
  position: relative;
  width: 100%;
  height: 240px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__img svg {
  width: 64px;
  height: 64px;
  stroke: var(--rosa);
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform var(--transition);
}

.product-card:hover .product-card__img img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--rosa);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.product-card__badge--new {
  background: var(--sage);
}

.product-card__price-old {
  display: inline-block;
  margin-left: 0.5rem;
  text-decoration: line-through;
  color: var(--text-muted, #999);
  font-weight: 400;
  font-size: 0.95rem;
}

.product-card__sku {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted, #999);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card__body {
  padding: 1.25rem;
}

.product-card__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-card__name {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.product-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

/* --- Steps (How it Works) --- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  counter-reset: step;
}

.step {
  counter-increment: step;
  position: relative;
  padding: 1.5rem 1rem;
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* --- Testimonials --- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.testimonial__text {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.testimonial__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  font-family: var(--font);
  min-height: 44px;
  gap: 1rem;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-item__question::after,
details.faq-item[open] > .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-item__answer,
details.faq-item[open] > .faq-item__answer {
  display: block;
}

/* Hide default <details> marker/triangle */
details.faq-item > summary {
  list-style: none;
}

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

/* --- Skin Quiz --- */
.quiz {
  max-width: 640px;
  margin: 0 auto;
}

.quiz__progress {
  height: 6px;
  background: var(--border);
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  overflow: hidden;
}

.quiz__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--rosa), var(--gold));
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

.quiz__question {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.quiz__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz__option {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font);
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  min-height: 48px;
}

.quiz__option:hover {
  border-color: var(--rosa);
  background: var(--rosa-light);
}

.quiz__option.selected {
  border-color: var(--gold);
  background: rgba(212, 165, 116, 0.1);
}

.quiz__result {
  text-align: center;
  padding: 2rem 0;
}

.quiz__result-type {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.quiz__counter {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 0.5rem;
}

.quiz__step {
  display: none;
}

.quiz__step.active {
  display: block;
}

/* Quiz Results */
.quiz__result-header {
  margin-bottom: 1.5rem;
}

.quiz__result-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rosa-light);
  border-radius: 50%;
  padding: 14px;
}

.quiz__result-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quiz__result-title {
  font-size: 1.5rem;
  color: var(--gold);
}

.quiz__result-desc {
  max-width: 540px;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.quiz__products {
  background: var(--rosa-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.quiz__products-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.quiz__product {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.quiz__product:last-child {
  margin-bottom: 0;
}

.quiz__product-name {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--sage);
}

.quiz__product-reason {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.quiz__result-ctas {
  margin-bottom: 1.5rem;
}

.quiz__result-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.quiz__restart {
  margin-top: 1rem;
}

.quiz__restart-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: underline;
}

.quiz__restart-btn:hover {
  color: var(--gold);
}

/* --- Blog Article --- */
.article {
  max-width: 760px;
  margin: 0 auto;
}

.article__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.article h2 {
  margin-top: 2.5rem;
}

.article h3 {
  margin-top: 2rem;
}

.article p {
  margin-bottom: 1.25rem;
}

.article ul,
.article ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  list-style: disc;
}

.article ol li {
  list-style: decimal;
}

.article blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--rosa-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article blockquote p {
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 0;
}

/* --- Contact Page --- */
.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rosa-light);
  border-radius: 50%;
  padding: 12px;
}

.contact-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Coverage Areas --- */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.coverage-grid span {
  padding: 0.5rem 0.75rem;
  background: var(--rosa-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  text-align: center;
}

/* --- Section Headers --- */
.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section__header p {
  font-size: 1.05rem;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* --- Footer --- */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

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

.footer__title {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255,255,255,0.7);
  display: block;
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

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

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.footer__social a svg {
  width: 20px;
  height: 20px;
  fill: rgba(255,255,255,0.7);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer__social a:hover svg {
  fill: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* --- Blog Preview Card --- */
.blog-preview {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.blog-preview__body {
  padding: 1.5rem;
}

.blog-preview__tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  font-weight: 600;
}

.blog-preview__title {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.blog-preview__excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.blog-preview__link {
  font-weight: 600;
  color: var(--sage);
  font-size: 0.9rem;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--rosa) 0%, var(--gold) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
}

.cta-banner h2,
.cta-banner p {
  color: var(--white);
}

.cta-banner p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================
   RESPONSIVE — Tablet (640px+)
   ============================================ */
@media (min-width: 640px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .hero h1 { font-size: 2.5rem; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .value-props { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-methods { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }

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

/* ============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  h1 { font-size: 3rem; }

  .hero { padding: 5rem 0 4rem; }
  .hero h1 { font-size: 3rem; }
  .section { padding: 4.5rem 0; }

  /* Desktop nav */
  .navbar__toggle { display: none; }

  .navbar__menu {
    display: flex;
    position: static;
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    gap: 0.25rem;
  }

  .navbar__menu a {
    padding: 0.5rem 1rem;
    line-height: normal;
    min-height: auto;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
  }

  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .value-props { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .contact-methods { grid-template-columns: repeat(3, 1fr); }
  .coverage-grid { grid-template-columns: repeat(4, 1fr); }

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

/* --- Print Styles --- */
@media print {
  .navbar, .whatsapp-float, .footer { display: none; }
  body { font-size: 12pt; }
  a { color: var(--text-dark); }
}
