/* =====================================================
   SALUD DIGNA INFO – Design System Global
   salud-digna-info.com.mx
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── TOKENS ── */
:root {
  --red:         #E31E24;
  --red-dark:    #B5181D;
  --red-light:   #FFF0F0;
  --navy:        #1A2B4B;
  --navy-light:  #243A62;
  --accent:      #F5A623;
  --accent-dark: #D48B10;
  --green:       #27AE60;
  --bg:          #F8F9FA;
  --surface:     #FFFFFF;
  --border:      #E5E7EB;
  --text:        #1A1A1A;
  --muted:       #6B7280;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --radius:      10px;
  --radius-lg:   16px;
  --transition:  .25s ease;
  --max-w:       1200px;
}

/* ── RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:'Inter',sans-serif;background:var(--bg);color:var(--text);line-height:1.5;overflow-x:hidden}
.container{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 1.5rem}
a{text-decoration:none !important;color:inherit;transition:color var(--transition)}
img{max-width:100%;display:block}
h1,h2,h3,h4{color:var(--navy);line-height:1.2;margin-bottom:1rem}
p{margin-bottom:1.2rem}
.section, section{padding:4rem 0}
.section--alt{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.full-width{width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}

/* ── TYPOGRAPHY ── */
h1{font-size:clamp(1.75rem,4vw,2.6rem);font-weight:800;line-height:1.2;color:var(--text)}
h2{font-size:clamp(1.4rem,3vw,2rem);font-weight:700;line-height:1.3;color:var(--navy)}
h3{font-size:clamp(1.1rem,2vw,1.35rem);font-weight:600;line-height:1.35;color:var(--navy)}
h4{font-size:1rem;font-weight:600;color:var(--navy)}
p{margin-bottom:1rem}
.lead{font-size:1.125rem;color:var(--muted);line-height:1.7}
.text-center{text-align:center}
.text-white{color:#fff}
.text-muted{color:var(--muted)}

/* ── BUTTONS ── */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 1.5rem;border-radius:var(--radius);font-weight:600;font-size:.95rem;cursor:pointer;border:none;transition:background var(--transition),transform var(--transition),box-shadow var(--transition);text-decoration:none;white-space:nowrap}
.btn:hover{transform:translateY(-2px);text-decoration:none}
.btn-primary{background:var(--red);color:#fff;box-shadow:0 4px 14px rgba(227,30,36,.35)}
.btn-primary:hover{background:var(--red-dark);color:#fff;box-shadow:0 6px 20px rgba(227,30,36,.45)}
.btn-secondary{background:var(--navy);color:#fff}
.btn-secondary:hover{background:var(--navy-light);color:#fff}
.btn-outline{background:transparent;color:var(--red);border:2px solid var(--red)}
.btn-outline:hover{background:var(--red);color:#fff}
.btn-accent{background:var(--accent);color:#fff;box-shadow:0 4px 14px rgba(245,166,35,.35)}
.btn-accent:hover{background:var(--accent-dark);color:#fff}
.btn-lg{padding:1rem 2rem;font-size:1.05rem}
.btn-sm{padding:.5rem 1rem;font-size:.85rem}
.btn-block{width:100%;justify-content:center}

/* ── HERO ── */
.hero{background:linear-gradient(135deg,var(--red-dark) 0%,var(--red) 50%,#FF4444 100%);color:#fff;padding:72px 0 56px;width:100%}
.hero--navy{background:linear-gradient(135deg,var(--navy) 0%,var(--navy-light) 100%)}
.hero__badge{display:inline-flex;align-items:center;gap:.4rem;background:rgba(255,255,255,.15);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.25);color:#fff;padding:.35rem .9rem;border-radius:50px;font-size:.8rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;margin-bottom:1.25rem}
.hero__title{color:#fff;margin-bottom:1rem}
.hero__subtitle{font-size:1.1rem;color:rgba(255,255,255,.88);margin-bottom:2rem;max-width:680px}
.hero__stats{display:flex;flex-wrap:wrap;gap:1.5rem;margin-top:2rem}
.hero__stat{background:rgba(255,255,255,.12);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.2);border-radius:var(--radius);padding:.875rem 1.25rem;text-align:center;min-width:120px}
.hero__stat-value{font-size:1.5rem;font-weight:800;color:#fff;display:block}
.hero__stat-label{font-size:.75rem;color:rgba(255,255,255,.75);text-transform:uppercase;letter-spacing:.05em}
.hero__ctas{display:flex;flex-wrap:wrap;gap:1rem;margin-top:1.5rem}
.btn-hero-secondary{background:rgba(255,255,255,.2);color:#fff;border:2px solid rgba(255,255,255,.4);backdrop-filter:blur(4px)}
.btn-hero-secondary:hover{background:rgba(255,255,255,.3);border-color:#fff}
.btn svg{flex-shrink:0}

/* ── CARDS ── */
.card{
  display:flex;
  flex-direction:column;
  background:var(--surface);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-sm);
  border:1px solid var(--border);
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  text-decoration:none !important;
  color:inherit;
  position:relative;
  margin:10px;
  overflow:visible !important;
  z-index:1;
}

.card:hover{
  box-shadow:0 15px 35px rgba(0,0,0,.15);
  transform:translateY(-10px);
  border-color:var(--red);
  background:var(--red-light);
  z-index:10;
}

.card__body{
  padding:2rem 1.5rem;
  flex:1;
  display:flex;
  flex-direction:column;
}

.card__title{
  font-size:1.2rem;
  font-weight:700;
  color:var(--navy);
  margin-bottom:.75rem;
  transition:color var(--transition);
  flex-shrink:0;
}

.card:hover .card__title{
  color:var(--red);
}

.card__text{
  font-size:.95rem;
  color:var(--muted);
  margin-bottom:1.5rem;
  line-height:1.6;
  flex-grow:1;
}

.card-grid{
  display:grid;
  gap:1rem;
  padding:10px;
  margin-left:-10px;
  margin-right:-10px;
}

.card-grid--2{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.card-grid--3{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.card-grid--4{grid-template-columns:repeat(auto-fit,minmax(200px,1fr))}

/* Remove underlines from any link inside card without removing borders */
.card,
.card *,
a.card,
a.card *{
  text-decoration:none !important;
  outline:none !important;
}

/* ── TABLES ── */
.table-wrap{width:100%;overflow-x:auto;border-radius:var(--radius);box-shadow:var(--shadow-sm)}
table{width:100%;border-collapse:collapse;background:var(--surface)}
thead{background:var(--navy);color:#fff}
thead th{padding:.875rem 1rem;font-size:.85rem;font-weight:600;text-align:left;white-space:nowrap}
tbody tr{border-bottom:1px solid var(--border)}
tbody tr:last-child{border-bottom:none}
tbody tr:hover{background:#F9FAFB}
tbody td{padding:.8rem 1rem;font-size:.9rem;color:var(--text);vertical-align:top}
.table-price{text-align:right;font-weight:700;color:var(--red)}
.table-badge{display:inline-block;padding:.2rem .6rem;border-radius:50px;font-size:.75rem;font-weight:600}
.badge-green{background:#DCFCE7;color:#166534}
.badge-red{background:#FEE2E2;color:#991B1B}
.badge-blue{background:#DBEAFE;color:#1E40AF}
.badge-orange{background:#FEF3C7;color:#92400E}

/* ── FAQ ACCORDION ── */
.faq{max-width:860px;margin:0 auto}
.faq__item{border:1px solid var(--border);border-radius:var(--radius);margin-bottom:.75rem;overflow:hidden;background:var(--surface)}
.faq__question{width:100%;text-align:left;padding:1.1rem 1.25rem;font-weight:600;font-size:1rem;color:var(--navy);background:none;border:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1rem;transition:background var(--transition),color var(--transition)}
.faq__question:hover{background:var(--red-light)}
.faq__question.active{background:var(--red);color:#fff}
.faq__icon{width:24px;height:24px;border-radius:50%;background:var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:transform var(--transition),background var(--transition)}
.faq__question.active .faq__icon{background:rgba(255,255,255,.25);transform:rotate(45deg)}
.faq__icon svg{width:14px;height:14px;fill:currentColor}
.faq__answer{max-height:0;overflow:hidden;transition:max-height .35s ease,padding .3s ease}
.faq__answer.open{max-height:600px}
.faq__answer-inner{padding:1rem 1.25rem 1.25rem;font-size:.95rem;color:var(--muted);line-height:1.7;border-top:1px solid var(--border)}

/* ── BREADCRUMB ── */
.breadcrumb{padding:.75rem 0;font-size:.85rem;color:var(--muted)}
.breadcrumb ol{list-style:none;padding:0;display:flex;flex-wrap:wrap;gap:.45rem;align-items:center}
.breadcrumb li+li::before{content:"/";color:var(--border);margin-right:.45rem}
.breadcrumb a{color:var(--muted);transition:color var(--transition)}
.breadcrumb a:hover{color:var(--red);text-decoration:none}
.breadcrumb [aria-current="page"]{color:var(--text);font-weight:600}

/* Breadcrumb Contrast on Dark/Hero */
.hero .breadcrumb{color:rgba(255,255,255,.7)}
.hero .breadcrumb a{color:rgba(255,255,255,.85)}
.hero .breadcrumb a:hover{color:#fff}
.hero .breadcrumb [aria-current="page"]{color:#fff}
.hero .breadcrumb li+li::before{color:rgba(255,255,255,.35)}

/* ── NOTICE / ALERT ── */
.notice{padding:1rem 1.25rem;border-radius:var(--radius);margin:1.5rem 0;font-size:.9rem;display:flex;gap:.75rem;align-items:flex-start}
.notice--info{background:#EFF6FF;border-left:4px solid #3B82F6;color:#1E40AF}
.notice--warning{background:#FFFBEB;border-left:4px solid var(--accent);color:#92400E}
.notice--success{background:#F0FDF4;border-left:4px solid var(--green);color:#166534}
.notice--error{background:#FEF2F2;border-left:4px solid var(--red);color:#991B1B}

/* ── SECTION ALT ── */
.section--alt{background:rgba(0,0,0,.02);margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);padding:3rem calc(50vw - 50% + 1rem);width:100vw}

/* ── CITY LINKS ── */
.city-links{display:flex;flex-wrap:wrap;gap:1rem;margin-top:1.5rem}
.city-link{padding:.6rem 1.2rem;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);text-decoration:none;color:var(--text);font-weight:500;transition:all var(--transition)}
.city-link:hover{border-color:var(--red);color:var(--red);transform:translateY(-2px);box-shadow:var(--shadow-sm)}

.text-center{text-align:center}

/* ── STAT BOX ── */
.stat-box{background:var(--surface);border-radius:var(--radius-lg);padding:1.5rem;text-align:center;border:1px solid var(--border)}
.stat-box__value{font-size:2rem;font-weight:800;color:var(--red);display:block}
.stat-box__label{font-size:.85rem;color:var(--muted);margin-top:.25rem}

/* ── STEPS ── */
.steps{counter-reset:step;display:flex;flex-direction:column;gap:1.25rem}
.step{display:flex;gap:1rem;align-items:flex-start}
.step__number{counter-increment:step;width:36px;height:36px;border-radius:50%;background:var(--red);color:#fff;font-weight:700;font-size:.9rem;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.step__number::before{content:counter(step)}
.step__body h4{margin-bottom:.25rem}
.step__body p{font-size:.9rem;color:var(--muted);margin:0}

/* ── CITY LINKS GRID ── */
.city-links{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:.75rem}
.city-link{display:flex;align-items:center;gap:.6rem;padding:.7rem 1rem;border-radius:var(--radius);border:1px solid var(--border);background:var(--surface);color:var(--navy);font-size:.9rem;font-weight:500;transition:all var(--transition);text-decoration:none}
.city-link:hover{border-color:var(--red);color:var(--red);text-decoration:none;box-shadow:var(--shadow-sm)}
.city-link svg{width:16px;height:16px;fill:var(--red);flex-shrink:0}

/* ── MAP ── */
.map-wrap{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);width:100%}
.map-wrap iframe{width:100%;height:380px;border:none;display:block}

/* Bloques de anuncios eliminados */
.ad-slot{display:none !important}

/* ── CONTENT GRID (main + sidebar) ── */
.content-grid{display:grid;gap:3rem;grid-template-columns:2fr 1fr;align-items:start}
.sidebar{position:sticky;top:80px}
.sidebar .card{margin-bottom:1.5rem}
.sidebar .card:last-child{margin-bottom:0}

/* ── HEADER / NAV ── */
.site-header{background:var(--surface);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:100;box-shadow:var(--shadow-sm)}
.site-header .container{display:flex;align-items:center;justify-content:space-between;height:64px;gap:1rem}
.site-logo{display:flex;align-items:center;gap:.6rem;text-decoration:none}
.site-logo__icon{width:38px;height:38px;background:var(--red);border-radius:8px;display:flex;align-items:center;justify-content:center}
.site-logo__icon svg{width:22px;height:22px;fill:#fff}
.site-logo__text{font-size:1.1rem;font-weight:800;color:var(--navy);line-height:1}
.site-logo__text span{color:var(--red)}
.site-nav{display:flex;align-items:center;gap:.5rem}
.site-nav > .nav-item{position:relative;display:flex;align-items:center}
.site-nav .nav-link{padding:.6rem .9rem;border-radius:6px;font-size:.88rem;font-weight:600;color:var(--text);transition:all var(--transition);display:flex;align-items:center;gap:.35rem}
.site-nav .nav-link:hover{background:var(--red-light);color:var(--red);text-decoration:none}
.site-nav .nav-link svg.chevron{width:12px;height:12px;transition:transform var(--transition);opacity:.6}
.site-nav .nav-item:hover .nav-link svg.chevron{transform:rotate(180deg);opacity:1}

/* Dropdown Menu Desktop */
.dropdown-menu{position:absolute;top:100%;left:0;width:220px;background:rgba(255,255,255,.98);backdrop-filter:blur(10px);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-lg);padding:.75rem;opacity:0;visibility:hidden;transform:translateY(10px);transition:all var(--transition);z-index:1000}
.nav-item:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown-menu a{display:block;padding:.6rem .8rem;border-radius:6px;font-size:.85rem;color:var(--text);font-weight:500;transition:all var(--transition)}
.dropdown-menu a:hover{background:var(--red-light);color:var(--red);text-decoration:none;padding-left:1.1rem}

/* Mobile Nav Base (Hidden on Desktop) */
.nav-mobile{display:none}

.nav-toggle{display:none;background:none;border:1px solid var(--border);border-radius:6px;padding:.4rem .6rem;cursor:pointer;color:var(--text)}

/* Mobile Adjustments for Header */
@media(max-width:768px){
  .site-nav{display:none}
  .nav-toggle{display:flex;align-items:center}
  .nav-mobile{display:none;flex-direction:column;padding:1rem 20px;background:var(--surface);border-top:1px solid var(--border);max-height:80vh;overflow-y:auto}
  .nav-mobile.open{display:flex}
  .nav-mobile .nav-link{display:flex;justify-content:space-between;align-items:center;padding:.8rem 0;font-weight:700;border-bottom:1px solid #f0f0f0;color:var(--navy);cursor:pointer}
  .nav-mobile .mobile-submenu{padding-left:1rem;margin-bottom:.5rem;display:none;flex-direction:column}
  .nav-mobile .mobile-item.active .mobile-submenu{display:flex}
  .nav-mobile .mobile-submenu a{padding:.5rem 0;font-size:.9rem;color:var(--muted)}
}

/* ── FOOTER ── */
.site-footer{background:var(--navy);color:rgba(255,255,255,.7);padding:4rem 0 0;font-size:.9rem}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-brand__logo{font-size:1.5rem;font-weight:800;color:#fff;margin-bottom:1rem;display:flex;align-items:center;gap:.5rem}
.footer-brand__logo span{color:var(--red)}
.footer-brand p{line-height:1.7;margin-bottom:1.5rem;font-size:.85rem}
.footer-contact{display:flex;flex-direction:column;gap:.75rem}
.footer-contact a svg{width:20px !important;height:20px !important;min-width:20px;fill:currentColor;flex-shrink:0}
.footer-contact a{display:flex;align-items:center;gap:.75rem;color:rgba(255,255,255,.8);margin-bottom:.5rem;text-decoration:none !important}

.footer-col h4{font-size:.95rem;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:.08em;margin-bottom:1.5rem;position:relative;padding-bottom:.5rem}
.footer-col h4::after{content:'';position:absolute;bottom:0;left:0;width:30px;height:2px;background:var(--red)}
.footer-col ul{list-style:none;padding:0;display:flex;flex-direction:column;gap:.75rem}
.footer-col ul a{color:rgba(255,255,255,.65);transition:all var(--transition);display:inline-block;text-decoration:none !important}
.footer-col ul a:hover{color:#fff;text-decoration:none;transform:translateX(5px)}

.footer-disclaimer{background:rgba(255,255,255,.03);padding:1.5rem;border-radius:var(--radius);border:1px solid rgba(255,255,255,.05);margin-bottom:3rem}
.footer-disclaimer p{font-size:.75rem;line-height:1.6;margin:0;color:rgba(255,255,255,.45)}

.footer-bottom{background:rgba(0,0,0,.3);padding:1.5rem 0}
.footer-bottom .container{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-bottom p{margin:0;font-size:.8rem}
.footer-legal-links{display:flex;gap:1.5rem}
.footer-legal-links a{font-size:.8rem;color:rgba(255,255,255,.5);transition:color var(--transition)}
.footer-legal-links a:hover{color:#fff;text-decoration:none}

@media(max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:2.5rem}
}

@media(max-width:600px){
  .footer-grid{grid-template-columns:1fr;gap:2rem}
  .footer-bottom .container{flex-direction:column;text-align:center}
  .footer-legal-links{justify-content:center;gap:1rem}
}

/* ── COOKIE BANNER ── */
#cookie-banner{position:fixed;bottom:0;left:0;right:0;background:var(--navy);color:#fff;z-index:9999;padding:1rem;display:none;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;box-shadow:0 -4px 20px rgba(0,0,0,.2)}
#cookie-banner.show{display:flex}
#cookie-banner p{font-size:.85rem;color:rgba(255,255,255,.85);margin:0;max-width:700px}
#cookie-banner a{color:#FF8B8B}
.cookie-btns{display:flex;gap:.75rem;flex-shrink:0}

/* ── PRICE TAG ── */
.price-highlight{display:inline-flex;align-items:baseline;gap:.3rem;font-size:2rem;font-weight:800;color:var(--red)}
.price-highlight .currency{font-size:1.1rem;font-weight:600}
.price-highlight .note{font-size:.8rem;color:var(--muted);font-weight:400}
.price-note{font-size:.8rem;color:var(--muted);font-style:italic;margin-top:.25rem}

/* ── SECTION HEADINGS ── */
.section-header{text-align:center;margin-bottom:2.5rem}
.section-header h2{margin-bottom:.6rem}
.section-header p{color:var(--muted);max-width:600px;margin:0 auto}
.section-divider{width:48px;height:4px;background:var(--red);border-radius:2px;margin:.75rem auto}

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════ */

/* ── Tablet landscape ── */
@media(max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr}
  .content-grid{grid-template-columns:1fr;gap:2rem}
  .sidebar{position:static}
}

/* ── Tablet portrait / large mobile ── */
@media(max-width:768px){
  .section{padding:40px 0}
  .hero{padding:52px 0 40px}
  .hero h1,.hero__title{font-size:clamp(1.4rem,5vw,2rem)}
  .hero__subtitle{font-size:.95rem}
  .hero__stats{gap:.75rem;flex-wrap:wrap}
  .hero__stat{min-width:100px;padding:.65rem 1rem}
  .hero__stat-value{font-size:1.2rem}
  .site-nav{display:none}
  .nav-toggle{display:flex;align-items:center;gap:.4rem}
  .footer-grid{grid-template-columns:1fr}
  .hero__ctas{flex-direction:column}
  .hero__ctas .btn{width:100%;justify-content:center}
  .card-grid--4{grid-template-columns:repeat(2,1fr)}
  .card-grid--3{grid-template-columns:1fr 1fr}
  .map-wrap iframe{height:300px}
  .content-grid{grid-template-columns:1fr;gap:2rem}
  .sidebar{order:2;position:static}
  .sidebar .card{position:static}
  .faq{max-width:100%}
  .faq__question{font-size:.9rem;padding:.9rem 1rem}
  .steps{gap:1rem}
  .step{gap:.75rem}
  .step__number{width:32px;height:32px;font-size:.8rem}
  .breadcrumb{font-size:.8rem}
}

/* ── Mobile ── */
@media(max-width:600px){
  .container{padding:0 16px}
  .section{padding:32px 0}
  .hero{padding:40px 0 32px}
  h2{font-size:1.25rem}
  h3{font-size:1.05rem}
  .card-grid--4{grid-template-columns:1fr}
  .card-grid--3{grid-template-columns:1fr}
  .card-grid--2{grid-template-columns:1fr}
  .card__body{padding:1.15rem}
  .hero__stats{flex-direction:column;align-items:stretch;gap:.5rem}
  .hero__stat{min-width:auto;padding:.5rem .75rem;display:flex;align-items:center;justify-content:center;gap:.5rem}
  .hero__stat-value{font-size:1.1rem;display:inline}
  .hero__stat-label{font-size:.7rem;display:inline}
  .table-wrap{border-radius:var(--radius);margin:0 -4px}
  thead th{font-size:.75rem;padding:.6rem .65rem}
  tbody td{font-size:.82rem;padding:.6rem .65rem}
  .notice{padding:.85rem 1rem;font-size:.85rem;flex-direction:column;gap:.5rem}
  .footer-grid{gap:1.5rem}
  .map-wrap iframe{height:220px}
  .steps{gap:.75rem}
  .step__body h4{font-size:.9rem}
  .step__body p{font-size:.82rem}
}

/* ── Very small screens ── */
@media(max-width:400px){
  .container{padding:0 12px}
  .hero{padding:32px 0 24px}
  h1,.hero__title{font-size:1.25rem !important}
  .hero__subtitle{font-size:.85rem}
  .hero__badge{font-size:.7rem;padding:.25rem .7rem}
  .btn-lg{padding:.75rem 1.25rem;font-size:.9rem}
  .faq__question{font-size:.85rem;padding:.75rem .85rem}
  .faq__answer-inner{padding:.75rem .85rem;font-size:.85rem}
}

/* ── CITY LINKS ── */
.city-links{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:1rem;margin-top:1.5rem}
.city-link{display:flex;align-items:center;justify-content:center;padding:.85rem;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);font-weight:600;font-size:.9rem;color:var(--navy);transition:all var(--transition);text-align:center;text-decoration:none !important}
.city-link:hover{border-color:var(--red);color:var(--red);box-shadow:var(--shadow-sm);transform:translateY(-2px)}

/* HERO ICON FIXES */
.hero__ctas svg{width:20px;height:20px;fill:currentColor}
.btn-hero-secondary svg{color:var(--red)}

/* FOOTER LOGO FIX */
.footer-brand__logo svg{width:32px;height:32px;fill:currentColor;flex-shrink:0}