/* ===== PARAS PATHOLOGY — DESIGN SYSTEM v3 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --navy:        #0D2B6B;
  --navy-mid:    #1A3A7A;
  --navy-light:  #2A4A8A;
  --blue:        #2471C8;
  --blue-d:      #1A5BA8;
  --blue-dd:     #0F4A8F;
  --blue-l:      #EBF3FC;
  --blue-ll:     #EDF4FC;
  /* Text */
  --ink:         #111827;
  --ink2:        #1F2937;
  --ink3:        #5A6A7A;
  --ink4:        #94A3B8;
  /* Surfaces */
  --warm:        #F8FAFC;
  --line:        #E2E8F0;
  --line2:       #CBD5E0;
  --white:       #FFFFFF;
  /* Accents */
  --green:       #059669;
  --amber:       #D97706;
  --red:         #DC2626;
  --gold:        #F6AD55;
  /* Legacy compat — inner pages use these */
  --teal:        #2471C8;
  --teal-light:  #1A5BA8;
  --teal-pale:   #EBF3FC;
  --teal-pale2:  #BDD6F5;
  --slate:       #4A5568;
  --muted:       #5A6A7A;
  --border:      #E2E8F0;
  --bg:          #EDF4FC;
  /* Spacing scale */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 72px;
  /* Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  /* Shadow */
  --sh-sm:  0 1px 4px rgba(0,0,0,.06);
  --sh-md:  0 4px 16px rgba(13,43,107,.07);
  --sh-lg:  0 8px 28px rgba(13,43,107,.1);
  /* Safe areas */
  --safe-top:    env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ── BASE ── */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px; color: var(--ink); background: #fff;
  line-height: 1.8; -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { transition: color .18s; }

/* ── TOPBAR ── */
.topbar { background: var(--navy); color: rgba(255,255,255,.65); font-size: 12px; padding: 7px 0; }
.topbar-inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--sp-lg); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.topbar span { display: flex; align-items: center; gap: 5px; }
.topbar i { color: rgba(255,255,255,.45); font-size: 11px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-badge { background: var(--blue); color: #fff; border-radius: 4px; padding: 2px 9px; font-size: 10.5px; font-weight: 700; letter-spacing: .05em; }
.topbar-divider { width: 1px; height: 12px; background: rgba(255,255,255,.18); display: inline-block; }

/* ── NAV ── */
nav { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 200; box-shadow: var(--sh-sm); transition: box-shadow .2s; }
nav.scrolled { box-shadow: var(--sh-md); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--sp-lg); display: flex; align-items: center; justify-content: space-between; height: 64px; gap: var(--sp-md); }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.logo-name { font-size: 17px; font-weight: 700; color: var(--navy); display: block; line-height: 1.2; letter-spacing: -.01em; }
.logo-sub { font-size: 10px; color: var(--ink3); margin-top: 1px; letter-spacing: .03em; }
.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links a { text-decoration: none; font-size: 13.5px; font-weight: 500; color: var(--ink2); padding: 7px 12px; border-radius: var(--r-sm); white-space: nowrap; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--blue); background: var(--blue-l); }
.nav-links a.active { color: var(--blue); font-weight: 600; background: var(--blue-l); border-bottom: 2px solid var(--blue); border-radius: var(--r-sm) var(--r-sm) 0 0; }
.nav-book {
  background: var(--navy) !important; color: #fff !important;
  padding: 9px 22px !important; border-radius: var(--r-sm) !important;
  font-weight: 600 !important; font-size: 14px !important;
  margin-left: 8px; min-height: 40px;
  transition: background .18s, transform .1s !important;
}
.nav-book:hover { background: var(--navy-mid) !important; border-bottom: none !important; }
.nav-book:active { transform: scale(.97) !important; }
.nav-search-btn {
  width: 36px; height: 36px; border: 1px solid var(--line); background: var(--warm);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: var(--ink3); cursor: pointer; text-decoration: none; flex-shrink: 0;
  transition: border-color .15s, color .15s;
}
.nav-search-btn:hover { border-color: var(--blue); color: var(--blue); }
.nav-lang-btn {
  display: flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 500;
  color: var(--ink2); background: var(--warm); border: 1px solid var(--line2);
  border-radius: var(--r-sm); padding: 6px 10px; cursor: pointer; font-family: inherit;
  transition: border-color .15s;
}
.nav-lang-btn:hover { border-color: var(--blue); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px; border-radius: var(--r-sm); background: none; border: none; flex-shrink: 0; }
.hamburger:hover { background: var(--warm); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: calc(100% + 6px); left: 0; background: white; border: 1px solid var(--line); border-radius: var(--r-md); min-width: 200px; box-shadow: var(--sh-lg); z-index: 300; padding: 6px 0; }
.has-dropdown:hover .dropdown { display: block; }
.has-dropdown:hover > a { color: var(--blue); background: var(--blue-l); }
.has-dropdown::after { content:''; position:absolute; top:100%; left:0; right:0; height:8px; }
.dropdown li { list-style: none; }
.dropdown li a { display: block; padding: 10px 16px; font-size: 13.5px; color: var(--ink2); text-decoration: none; white-space: nowrap; transition: background .12s; }
.dropdown li a:hover { background: var(--blue-l); color: var(--blue); padding-left: 20px; }

/* Mobile drawer */
.nav-drawer { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 199; flex-direction: column; padding: var(--sp-lg) 20px; overflow-y: auto; }
.nav-drawer.open { display: flex; }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.nav-drawer ul li a { display: flex; align-items: center; gap: 12px; padding: 15px 16px; color: rgba(255,255,255,.72); font-size: 16px; font-weight: 500; text-decoration: none; border-radius: var(--r-sm); min-height: 52px; transition: background .15s, color .15s; }
.nav-drawer ul li a:hover, .nav-drawer ul li a.active { background: rgba(255,255,255,.08); color: #fff; }
.nav-drawer ul li a i { width: 20px; text-align: center; color: rgba(255,255,255,.4); font-size: 15px; }
.nav-drawer-cta { margin-top: 18px; background: var(--blue); color: white; padding: 16px; border-radius: var(--r-md); text-align: center; font-size: 15px; font-weight: 600; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; }
.nav-drawer-contact { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 10px; }
.nav-drawer-contact a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.45); font-size: 14px; text-decoration: none; min-height: 44px; }
.nav-drawer-contact i { color: var(--blue); width: 18px; }

/* ── PAGE BANNER ── */
.page-banner { background: linear-gradient(135deg,var(--navy) 0%,#1a3a8a 60%,var(--blue-dd) 100%); padding: 48px 20px; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,.018) 79px, rgba(255,255,255,.018) 80px); }
.page-banner::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), transparent); }
.page-banner-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(22px, 3.5vw, 34px); color: white; font-weight: 700; margin-bottom: 10px; letter-spacing: -.025em; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.4); flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ── LAYOUT ── */
.section { padding: 64px 20px; }
.section-sm { padding: 48px 20px; }
.section-alt { background: var(--blue-ll); }
.container { max-width: 1240px; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.section-heading { font-size: clamp(22px, 2.8vw, 30px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 10px; letter-spacing: -.025em; }
.section-sub { font-size: 15px; color: var(--ink3); max-width: 580px; line-height: 1.8; margin-bottom: 32px; }

/* ── CARDS ── */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--sp-lg); box-shadow: 0 2px 8px rgba(13,43,107,.05);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.card:hover { border-color: var(--blue); box-shadow: 0 10px 32px rgba(13,43,107,.1); transform: translateY(-5px); }

/* ── ICON BOX ── */
.icon-box { width: 52px; height: 52px; background: linear-gradient(135deg,var(--blue-l) 0%,#dbeeff 100%); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 22px; margin-bottom: 16px; transition: background .25s, color .25s, transform .25s; }
.icon-box-sm { width: 38px; height: 38px; background: var(--teal-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 16px; }
.card:hover .icon-box { background: linear-gradient(135deg,var(--navy),var(--blue)); color: #fff; transform: scale(1.08); }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--ink2); line-height: 1.65; }
.check-dot { width: 22px; height: 22px; background: var(--teal-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 9px; flex-shrink: 0; margin-top: 2px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--navy); color: #fff; border: none;
  padding: 12px 26px; border-radius: var(--r-sm); font-family: inherit;
  font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px; min-height: 46px;
  transition: background .18s, transform .12s, box-shadow .18s;
  box-shadow: 0 4px 14px rgba(13,43,107,.18);
}
.btn-primary:hover { background: var(--navy-mid); box-shadow: 0 6px 20px rgba(13,43,107,.28); transform: translateY(-2px); }
.btn-primary:active { transform: scale(.97); }
.btn-primary:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.btn-secondary {
  background: transparent; color: var(--navy); border: 1.5px solid var(--navy);
  padding: 11px 22px; border-radius: var(--r-sm); font-family: inherit;
  font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  transition: background .18s, color .18s, transform .1s;
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-secondary:active { transform: scale(.97); }
.btn-secondary:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.btn-blue {
  background: var(--blue); color: #fff; border: none;
  padding: 12px 24px; border-radius: var(--r-sm); font-family: inherit;
  font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  transition: background .18s, transform .1s;
}
.btn-blue:hover { background: var(--blue-d); }
.btn-blue:active { transform: scale(.97); }

/* Legacy button aliases */
.btn-navy { background: var(--navy); color: #fff; border: none; padding: 12px 24px; border-radius: var(--r-sm); font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; transition: background .18s, transform .1s; }
.btn-navy:hover { background: var(--navy-mid); }
.btn-navy:active { transform: scale(.97); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); padding: 11px 22px; border-radius: var(--r-sm); font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; transition: background .18s, color .18s, transform .1s; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline:active { transform: scale(.97); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); padding: 11px 22px; border-radius: var(--r-sm); font-family: inherit; font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; transition: background .18s, color .18s, transform .1s; }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost:active { transform: scale(.97); }

/* ── TRUST BAR ── */
.trustbar { background: var(--blue-ll); border-bottom: 1px solid var(--line); padding: 13px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.trustbar-inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--sp-lg); display: flex; align-items: center; justify-content: space-around; gap: 20px; white-space: nowrap; min-width: max-content; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--blue); font-weight: 500; }
.trust-item i { font-size: 15px; }

/* ── FORM CONTROLS ── */
.form-group { margin-bottom: 20px; position: relative; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: .01em; }
.form-ctrl {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: inherit; font-size: 14.5px; color: var(--navy); outline: none;
  background: white; transition: border-color .18s, box-shadow .18s; min-height: 48px;
}
.form-ctrl:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,113,200,.1); }
.form-ctrl::placeholder { color: var(--ink4); }
textarea.form-ctrl { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--navy); color: white; border: none;
  border-radius: var(--r-sm); font-family: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; transition: background .18s, transform .1s;
}
.form-submit:hover { background: var(--navy-mid); }
.form-submit:active { transform: scale(.99); }
.form-submit.loading { opacity: .7; pointer-events: none; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg,var(--navy) 0%,#1a3a8a 50%,var(--blue-dd) 100%); padding: 72px 20px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.03); }
.cta-banner::after { content: ''; position: absolute; bottom: -80px; left: -40px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.025); }
.cta-banner h2 { font-size: clamp(22px, 3vw, 32px); color: white; margin-bottom: 14px; font-weight: 700; letter-spacing: -.025em; position: relative; z-index: 1; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,.65); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.8; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── NEWSLETTER ── */
.newsletter-strip { background: linear-gradient(135deg, #0a2055 0%, var(--blue-dd) 100%); padding: 44px 20px; }
.newsletter-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.newsletter-strip h3 { font-size: 20px; color: white; font-weight: 700; margin-bottom: 5px; letter-spacing: -.01em; }
.newsletter-strip p { color: rgba(255,255,255,.6); font-size: 13.5px; }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; min-width: 340px; }
.newsletter-form input { padding: 12px 16px; border: none; border-radius: var(--r-sm); font-size: 14px; font-family: inherit; outline: none; color: var(--ink); flex: 1; min-width: 160px; min-height: 48px; }
.newsletter-form button { background: var(--blue); color: white; border: none; padding: 12px 20px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap; min-height: 48px; transition: background .18s; }
.newsletter-form button:hover { background: var(--blue-d); }

/* ── FOOTER ── */
footer { background: linear-gradient(160deg,#070F1C 0%,#0A1628 100%); color: rgba(255,255,255,.55); padding: 52px 20px 32px; }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 40px; }
.footer-logo-wrap { margin-bottom: 14px; }
.footer-logo-wrap img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.38); margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.35); font-size: 13px; text-decoration: none; transition: background .18s, color .18s, padding-left .18s; }
.footer-social a:hover { background: rgba(36,113,200,.2); color: var(--blue); border-color: rgba(36,113,200,.3); }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,.38); font-size: 13.5px; transition: color .15s, padding-left .18s; display: inline-block; }
.footer-col ul li a:hover { color: var(--blue); padding-left: 4px; }
.footer-col .contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 13px; line-height: 1.55; }
.footer-col .contact-item i { color: var(--blue); margin-top: 2px; flex-shrink: 0; font-size: 13px; width: 14px; }
.footer-col .contact-item a { color: rgba(255,255,255,.38); text-decoration: none; transition: color .15s; }
.footer-col .contact-item a:hover { color: var(--blue); }
.footer-bottom { max-width: 1240px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }
.footer-bottom span { color: rgba(255,255,255,.28); }
.footer-bottom a { color: rgba(255,255,255,.28); text-decoration: none; margin-left: 16px; transition: color .15s; }
.footer-bottom a:hover { color: var(--blue); }

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed; bottom: 32px; right: 84px; width: 42px; height: 42px;
  background: var(--navy); color: #fff; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: 16px; z-index: 248; opacity: 0; transform: translateY(12px);
  transition: opacity .25s, transform .25s, background .18s;
  box-shadow: 0 4px 14px rgba(13,43,107,.25);
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--blue); }

/* ── MOBILE CTA BAR ── */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; padding: 10px 14px calc(10px + var(--safe-bottom)); background: white; border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(0,0,0,.09); gap: 10px; }
.mobile-cta-call { flex: 1; background: var(--navy); color: white; border: none; padding: 14px; border-radius: var(--r-sm); font-size: 15px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 9px; text-decoration: none; min-height: 52px; transition: background .18s; }
.mobile-cta-call:hover { background: var(--navy-mid); }
.mobile-cta-wa { width: 52px; height: 52px; background: #25D366; color: white; border: none; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; text-decoration: none; transition: background .18s; }
.mobile-cta-wa:hover { background: #20B858; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-blue { color: var(--blue); }
.text-muted { color: var(--ink3); }
.font-bold { font-weight: 700; }
.font-semi { font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 60px 20px; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links { display: none !important; }
  .nav-search-btn { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 62px; padding: 0 16px; }
  .nav-drawer { top: 62px; }
  .section { padding: 44px 16px; }
  .section-sm { padding: 40px 16px; }
  .page-banner { padding: 44px 16px; }
  .cta-banner { padding: 52px 16px; }
  footer { padding: 44px 16px calc(88px + var(--safe-bottom)); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .mobile-cta-bar { display: flex; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions a, .cta-actions button { width: 100%; max-width: 320px; justify-content: center; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { min-width: 0; width: 100%; }
  .trustbar-inner { justify-content: flex-start; }
  #backToTop { bottom: 76px; right: 68px; }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  .nav-inner { height: 58px; }
  .nav-drawer { top: 58px; }
  .mobile-cta-bar { padding: 10px 12px calc(10px + var(--safe-bottom)); }
  .section { padding: 36px 14px; }
  .section-sm { padding: 32px 14px; }
  .logo-sub { display: none; }
  .page-banner h1 { font-size: clamp(20px, 6vw, 28px); }
}
