/* ============================================================
   RDPHosted — main.css  (light theme · teal #03989E)
   ============================================================ */

:root {
  --white: #ffffff;
  --black: #111827;
  --light: #f8fafb;
  --border: #e5e7eb;
  --muted: #6b7280;
  --body-c: #374151;
  --teal: #03989E;
  --teal-dk: #027d82;
  --red: #e53e3e;
  --font: 'Montserrat', sans-serif;
  --r1: 6px; --r2: 10px; --r3: 16px; --r4: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.05);
  --max: 1200px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--body-c); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dk); }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.sec { padding: 72px 0; }
.sec-sm { padding: 48px 0; }
.sec-alt { background: var(--light); }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
h1,h2,h3,h4 { color: var(--black); line-height: 1.25; font-weight: 800; font-family: var(--font); }
h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.sec-tag { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: .5rem; }
.sec-title { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--black); margin-bottom: .5rem; }
.sec-sub { color: var(--muted); font-size: 1rem; max-width: 560px; }
.sec-head { margin-bottom: 48px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-sub { margin: 0 auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 11px 22px; border-radius: var(--r2); font-size: .9rem; font-weight: 600; border: 2px solid transparent; transition: all .2s; white-space: nowrap; cursor: pointer; }
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dk); border-color: var(--teal-dk); color: #fff; }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-dark { background: var(--black); color: #fff; border-color: var(--black); }
.btn-dark:hover { background: #000; color: #fff; }
.btn-ghost { background: transparent; color: var(--body-c); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-white-outline:hover { background: rgba(255,255,255,.15); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 7px 16px; font-size: .82rem; }
.btn-lg { padding: 14px 30px; font-size: 1rem; }

/* Header */
#site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); transition: box-shadow .2s; }
#site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 66px; }
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { height: 42px; width: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list a { display: block; padding: 6px 13px; border-radius: var(--r1); font-size: .88rem; font-weight: 600; color: var(--body-c); transition: color .2s; }
.nav-list a:hover, .nav-list .current-menu-item > a { color: var(--teal); }
.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 0; min-width: 200px; background: #fff; border: 1px solid var(--border); border-radius: var(--r3); padding: 6px; box-shadow: 0 8px 32px rgba(0,0,0,.12); z-index: 50; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: block; }
.dropdown a { display: block; padding: 8px 14px; border-radius: var(--r1); font-size: .85rem; font-weight: 500; color: var(--body-c); }
.dropdown a:hover { background: rgba(3,152,158,.08); color: var(--teal); }
.header-btns { display: flex; gap: 8px; margin-left: auto; flex-shrink: 0; }
.nav-close { display: none; }
/* Mobile-only elements — hidden on desktop */
.mob-nav-footer { display: none; }

/* Hero */
.hero { background: linear-gradient(135deg, #03989E 0%, #027d82 100%); padding: 68px 0 76px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-lead { color: rgba(255,255,255,.88); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-img { display: flex; align-items: center; justify-content: center; }
.hero-img img { max-height: 360px; width: auto; }

/* Trust bar */
.trust-bar { border-bottom: 1px solid var(--border); padding: 14px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .85rem; font-weight: 600; color: var(--body-c); }
.trust-tick { color: var(--teal); font-size: 1rem; }

/* Location cards */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.loc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r3); padding: 1.75rem 1.5rem; text-align: center; position: relative; transition: .2s; box-shadow: var(--shadow); }
.loc-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(3,152,158,.12); }
.loc-flag { font-size: 2.2rem; margin-bottom: .75rem; }
.loc-name { font-size: 1.5rem; font-weight: 900; color: var(--black); line-height: 1.1; margin-bottom: .35rem; }
.loc-from { font-size: .72rem; color: var(--muted); margin-bottom: .25rem; text-transform: uppercase; letter-spacing: .06em; }
.loc-price-wrap { display: flex; align-items: flex-start; justify-content: center; gap: 1px; margin-bottom: 3px; }
.loc-cur { font-size: 1rem; font-weight: 700; color: var(--black); padding-top: 5px; }
.loc-amount { font-size: 2.6rem; font-weight: 900; color: var(--black); line-height: 1; }
.loc-per { font-size: .7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; }
.pop-label { position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--r1); }

/* Features */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r3); padding: 1.75rem; transition: .2s; }
.feat-card:hover { border-color: var(--teal); box-shadow: 0 4px 20px rgba(3,152,158,.1); }
.feat-icon { width: 46px; height: 46px; background: rgba(3,152,158,.1); border-radius: var(--r2); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.3rem; margin-bottom: 1rem; }
.feat-card h3 { font-size: .95rem; color: var(--black); margin-bottom: .4rem; font-weight: 700; }
.feat-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.25rem; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r3); padding: 1.75rem 1.25rem; text-align: center; }
.stat-num { display: block; font-size: 2.1rem; font-weight: 900; color: var(--teal); line-height: 1; }
.stat-lbl { display: block; font-size: .82rem; color: var(--muted); margin-top: .35rem; font-weight: 500; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r3); padding: 1.75rem; }
.testi-stars { color: #f59e0b; margin-bottom: .6rem; font-size: 1rem; }
.testi-text { font-size: .875rem; color: var(--body-c); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.testi-name { font-size: .875rem; font-weight: 700; color: var(--black); }
.testi-role { font-size: .78rem; color: var(--muted); }

/* Payment logos */
.pay-logos { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.pay-logo { background: var(--light); border: 1px solid var(--border); border-radius: var(--r2); padding: 8px 18px; font-size: .82rem; font-weight: 600; color: var(--muted); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.faq-item.open { border-color: var(--teal); }
.faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1rem 1.4rem; font-size: .92rem; font-weight: 600; color: var(--black); background: none; cursor: pointer; gap: 1rem; text-align: left; }
.faq-q:hover { color: var(--teal); }
.faq-icon { flex-shrink: 0; color: var(--teal); font-size: 1.25rem; font-weight: 300; transition: transform .2s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.4rem 1.1rem; font-size: .875rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* CTA banner */
.cta-sec { background: linear-gradient(135deg, #03989E 0%, #027d82 100%); padding: 72px 0; text-align: center; }
.cta-sec h2 { color: #fff; margin-bottom: 1rem; font-size: clamp(1.5rem, 4vw, 2.2rem); }
.cta-sec p { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Breadcrumb */
.breadcrumb { background: var(--light); border-bottom: 1px solid var(--border); padding: 10px 0; }
.bc-list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: .78rem; color: var(--muted); }
.bc-list a { color: var(--muted); }
.bc-list a:hover { color: var(--teal); }
.bc-current { color: var(--teal); font-weight: 600; }
.bc-sep { color: var(--border); }

/* Page hero (inner pages) */
.page-hero { background: linear-gradient(135deg, #03989E 0%, #027d82 100%); padding: 52px 0 60px; }
.ph-inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.ph-badge { display: inline-block; background: rgba(255,255,255,.15); color: #fff; font-size: .78rem; font-weight: 600; padding: 4px 12px; border-radius: 99px; margin-bottom: .9rem; }
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: .75rem; }
.page-hero .lead { color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.75; max-width: 520px; margin-bottom: 1.5rem; }
.ph-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 1.5rem; }
.ph-chip { background: rgba(255,255,255,.15); color: rgba(255,255,255,.92); font-size: .75rem; font-weight: 600; padding: 4px 10px; border-radius: 99px; }
.ph-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.ph-price-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: var(--r4); padding: 1.75rem 2rem; text-align: center; min-width: 175px; backdrop-filter: blur(6px); }
.ph-from { font-size: .72rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.ph-price { font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.ph-per { font-size: .72rem; color: rgba(255,255,255,.7); margin-bottom: 1.25rem; }

/* Pricing cards */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.pricing-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r3); padding: 1.75rem; position: relative; transition: .2s; box-shadow: var(--shadow); }
.pricing-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.pricing-card.popular { border-color: var(--teal); box-shadow: 0 4px 20px rgba(3,152,158,.15); }
.pop-badge { display: inline-block; background: var(--red); color: #fff; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--r1); margin-bottom: .6rem; }
.plan-name { font-size: .95rem; font-weight: 700; color: var(--black); margin-bottom: .5rem; }
.plan-price { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 3px; }
.plan-cur { font-size: .95rem; font-weight: 700; color: var(--black); padding-top: 4px; }
.plan-price .amount { font-size: 2.4rem; font-weight: 900; color: var(--black); line-height: 1; }
.plan-mo { font-size: .75rem; color: var(--muted); align-self: flex-end; padding-bottom: 4px; margin-left: 2px; }
.plan-specs { padding: 0; margin: .9rem 0 1.4rem; display: flex; flex-direction: column; gap: 5px; }
.plan-specs li { font-size: .82rem; color: var(--body-c); display: flex; align-items: center; gap: 6px; }
.plan-specs li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* Use cases */
.use-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.use-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 1.25rem; display: flex; gap: .9rem; align-items: flex-start; }
.use-icon { font-size: 1.5rem; flex-shrink: 0; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: rgba(3,152,158,.08); border-radius: var(--r1); }
.use-card h3 { font-size: .875rem; font-weight: 700; color: var(--black); margin-bottom: .2rem; }
.use-card p { font-size: .78rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* Guarantee chips */
.guar-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
.guar-chip { display: flex; align-items: center; gap: 6px; background: var(--light); border: 1px solid var(--border); border-radius: 99px; padding: 6px 14px; font-size: .8rem; font-weight: 600; color: var(--body-c); }

/* Related location pills */
.related-locs { display: flex; flex-wrap: wrap; gap: 8px; }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.about-body h2 { margin-top: 1.75rem; margin-bottom: .5rem; font-size: 1.4rem; }
.about-body p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.info-card { background: var(--light); border: 1px solid var(--border); border-radius: var(--r3); padding: 1.5rem; margin-bottom: 1.25rem; }
.info-card h3 { color: var(--teal); font-size: 1rem; margin-bottom: .6rem; }
.info-card p { color: var(--muted); font-size: .875rem; line-height: 1.7; margin: 0; }
.info-card ul li { font-size: .875rem; color: var(--muted); padding: .3rem 0; border-bottom: 1px solid var(--border); }
.info-card ul li:last-child { border-bottom: none; }
.info-card ul li::before { content: '✓ '; color: #22c55e; font-weight: 700; }

/* 404 */
.error-wrap { text-align: center; padding: 80px 0; }
.error-num { font-size: 7rem; font-weight: 900; background: linear-gradient(135deg, var(--teal), #04b0b7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.error-wrap h1 { margin-bottom: 1rem; }
.error-wrap p { color: var(--muted); margin-bottom: 2rem; }
.error-locs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 2rem; }

/* Prose */
.prose { color: var(--body-c); line-height: 1.85; max-width: 800px; }
.prose h2,.prose h3 { color: var(--black); margin: 2rem 0 .5rem; }
.prose ul,.prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .35rem; }

/* Footer */
#site-footer { background: #111827; color: rgba(255,255,255,.65); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 48px; }
.footer-brand img { height: 36px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; line-height: 1.75; margin-bottom: 1.25rem; color: rgba(255,255,255,.6); }
#site-footer h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: .9rem; }
#site-footer ul li { margin-bottom: 6px; }
#site-footer ul li a { font-size: .875rem; color: rgba(255,255,255,.6); transition: .2s; }
#site-footer ul li a:hover { color: var(--teal); }
.payment-methods { font-size: .8rem; line-height: 1.85; color: rgba(255,255,255,.5); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--teal); }

/* Animations */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .45s ease, transform .45s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Mobile nav */
body.nav-open { overflow: hidden; }



@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .hero { padding: 48px 0 56px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-lead { font-size: .95rem; }
  .sec { padding: 44px 0; }
  .sec-sm { padding: 32px 0; }
  .loc-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .loc-card { padding: 1.25rem 1rem; }
  .loc-amount { font-size: 2rem; }
  .feat-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 100%; }
  .use-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .cta-sec h2 { font-size: 1.4rem; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; }
  .ph-inner { gap: 1.5rem; }
  .ph-price-card { display: none; }
  .page-hero { padding: 36px 0 44px; }
  .page-hero h1 { font-size: 1.6rem; }
  .about-grid { grid-template-columns: 1fr; }
  .error-num { font-size: 5rem; }
}

@media (max-width: 400px) {
  .loc-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}/* ── HEADER ─────────────────────────────────────────────── */
#site-header { position: sticky; top: 0; z-index: 500; background: #fff; border-bottom: 1px solid var(--border); transition: box-shadow .2s; }
#site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 66px; }
.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { height: 42px; width: auto; display: block; }

/* ── Desktop nav ─────────────────────────────────────────── */
.nav-list { display: flex; align-items: center; gap: 2px; padding: 0; margin: 0; list-style: none; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: block; padding: 8px 13px; border-radius: var(--r1); font-size: .88rem; font-weight: 600; color: var(--body-c); transition: color .2s; white-space: nowrap; }
.nav-list > li > a:hover { color: var(--teal); }
.nav-list > .current-menu-item > a { color: var(--teal); }

/* ── Dropdown — hidden by default, shown via JS .open class ── */
.nav-list .sub-menu,
.nav-list .dropdown {
  display: none !important;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r3);
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  z-index: 600;
  list-style: none;
}
/* Only show when JS adds .open */
.nav-list li.open > .sub-menu,
.nav-list li.open > .dropdown {
  display: block !important;
}
.nav-list .sub-menu li,
.nav-list .dropdown li { list-style: none; }
.nav-list .sub-menu a,
.nav-list .dropdown a { display: block; padding: 9px 14px; border-radius: var(--r1); font-size: .875rem; font-weight: 500; color: var(--body-c); white-space: nowrap; }
.nav-list .sub-menu a:hover,
.nav-list .dropdown a:hover { background: rgba(3,152,158,.08); color: var(--teal); }

/* ── Header buttons ──────────────────────────────────────── */
.header-btns { display: flex; gap: 8px; margin-left: auto; flex-shrink: 0; }

/* ── Mobile hamburger ────────────────────────────────────── */
#mob-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--r1);
  background: #fff;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  gap: 5px;
  transition: border-color .2s;
}
#mob-toggle:hover { border-color: var(--teal); }
#mob-toggle span { display: block; width: 20px; height: 2px; background: var(--black); border-radius: 2px; transition: transform .25s, opacity .2s; transform-origin: center; }
#mob-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#mob-toggle.active span:nth-child(2) { opacity: 0; }
#mob-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav panel ────────────────────────────────────── */
.nav-close { display: none; }
.nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 498; }
body.nav-open .nav-backdrop { display: block; }
body.nav-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-list { display: none; }
  .header-btns { display: none; }
  #mob-toggle { display: flex; }

  #site-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 85vw);
    background: #fff;
    z-index: 499;
    display: flex !important;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 40px rgba(0,0,0,.18);
  }
  #site-nav.open { transform: translateX(0); }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
    font-weight: 700;
    color: var(--black);
    background: none;
    border-top: none; border-left: none; border-right: none;
    width: 100%;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav-close::after { content: '\00d7'; font-size: 1.6rem; color: var(--muted); }

  #site-nav .nav-list {
    display: flex !important;
    flex-direction: column;
    padding: 8px 0;
    flex: 1;
  }
  #site-nav .nav-list > li > a {
    display: block;
    padding: 13px 20px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--black);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  #site-nav .nav-list > li > a:hover { color: var(--teal); }

  /* Mobile sub-menu — collapsed by default */
  #site-nav .sub-menu,
  #site-nav .dropdown {
    display: none !important;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
    background: var(--light);
  }
  #site-nav li.open > .sub-menu,
  #site-nav li.open > .dropdown { display: block !important; }

  #site-nav .sub-menu a,
  #site-nav .dropdown a {
    display: block;
    padding: 11px 20px 11px 36px;
    font-size: .875rem;
    color: var(--body-c);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  #site-nav .sub-menu a:hover { color: var(--teal); }

  /* Dropdown indicator arrow */
  #site-nav .menu-item-has-children > a,
  #site-nav .has-dropdown > a { padding-right: 40px; position: relative; }
  #site-nav .menu-item-has-children > a::after,
  #site-nav .has-dropdown > a::after {
    content: '\25be';
    position: absolute; right: 20px; top: 50%;
    transform: translateY(-50%);
    color: var(--muted); font-size: .7rem;
    transition: transform .2s;
  }
  #site-nav li.open > a::after { transform: translateY(-50%) rotate(180deg); }

  /* Mobile footer CTA buttons */
  .mob-nav-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 10px;
    flex-shrink: 0;
  }
  .mob-nav-footer .btn { justify-content: center; }
}


