/* ===================================================================
   NJ Air Pros — shared site styles
   =================================================================== */

/* ─── TOKENS ───────────────────────────────────────── */
:root {
  --lime:        #D7DF23;
  --lime-dk:     #c2c916;
  --red:         #E61C24;
  --blue:        #01A9E8;
  --blue-deep:   #0673A0;
  --blue-deeper: #055c81;

  --ink:    #0e1626;
  --s50:  #f8fafc;
  --s100: #f1f5f9;
  --s200: #e2e8f0;
  --s300: #cbd5e1;
  --s400: #94a3b8;
  --s500: #64748b;
  --s600: #475569;
  --s700: #334155;
  --s800: #1e293b;
  --s900: #0f172a;

  --radius: 12px;
  --maxw: 1200px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ─── RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--s900);
  background: var(--s50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; }
.sprite { display: none; }
.ic { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ic-fill { fill: currentColor; stroke: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ─── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 14px 22px; border-radius: 10px; border: 2px solid transparent;
  cursor: pointer; transition: all .18s ease; white-space: nowrap;
}
.btn-primary { background: var(--blue-deep); color: #fff; }
.btn-primary:hover { background: var(--blue-deeper); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-dk); }
.btn-outline { background: transparent; color: var(--s700); border-color: var(--s300); }
.btn-outline:hover { background: var(--s100); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-white { background: #fff; color: var(--blue-deep); }
.btn-white:hover { background: var(--s100); }
.btn-lg { padding: 17px 30px; font-size: 17px; }
.btn-block { width: 100%; }

/* ─── UTILITY BAR ──────────────────────────────────── */
.util { background: var(--ink); color: var(--s300); font-size: 13.5px; }
.util .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.util-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.util-item { display: inline-flex; align-items: center; gap: 7px; }
.util-item .ic { width: 16px; height: 16px; color: var(--blue); }
.util-item strong { color: var(--lime); font-weight: 600; }
.util-sep { color: var(--s700); }
.util a { color: var(--s300); font-weight: 500; transition: color .15s; }
.util a:hover { color: #fff; }

/* ─── HEADER ───────────────────────────────────────── */
header.site { position: sticky; top: 0; z-index: 900; background: #fff; border-bottom: 1px solid var(--s200); box-shadow: 0 1px 10px rgba(15,23,42,.05); }
header.site > .container { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand img { height: 66px; width: auto; max-width: none; }
.nav-right { display: flex; align-items: center; gap: 20px; }

/* primary nav + mega menu */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: 14.5px; font-weight: 600; color: var(--s700);
  padding: 10px 8px; border-radius: 8px; cursor: pointer; background: none; border: 0; font-family: inherit;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--blue-deep); background: var(--s100); }
.nav-item.current > .nav-link { color: var(--blue-deep); }
.nav-link:focus-visible, .mega-link:focus-visible, .mega-ind:focus-visible,
.mega-foot a:focus-visible, .mega-cta .btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.nav-chevron { width: 14px; height: 14px; transition: transform .2s; }
.nav-item:hover .nav-chevron, .nav-item:focus-within .nav-chevron { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--s200); border-radius: 16px;
  box-shadow: 0 24px 60px -20px rgba(15,23,42,.35);
  padding: 22px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 950;
}
.mega::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }

.mega-services { width: 720px; display: grid; grid-template-columns: 1fr 232px; gap: 22px; }
.mega-label { font-size: 11.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--s400); margin-bottom: 12px; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega-link { display: flex; gap: 12px; align-items: flex-start; padding: 11px 12px; border-radius: 10px; transition: background .15s; }
.mega-link:hover { background: var(--s100); }
.mega-ico { flex-shrink: 0; width: 38px; height: 38px; border-radius: 9px; background: rgba(1,169,232,.12); color: var(--blue-deep); display: flex; align-items: center; justify-content: center; }
.mega-ico .ic { width: 20px; height: 20px; }
.mega-link strong { display: block; font-size: 14px; font-weight: 600; color: var(--s900); margin-bottom: 2px; }
.mega-link span { display: block; font-size: 12.5px; color: var(--s500); line-height: 1.4; }
.mega-cta { background: var(--ink); border-radius: 12px; padding: 22px; color: #fff; display: flex; flex-direction: column; }
.mega-cta h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.mega-cta p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; margin-bottom: 16px; }
.mega-cta .btn { width: 100%; }
.mega-cta .mega-phone { margin-top: 10px; font-size: 13px; color: rgba(255,255,255,.7); text-align: center; }
.mega-cta .mega-phone strong { color: var(--lime); font-weight: 700; }

.mega-industries { width: 560px; }
.mega-ind-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; }
.mega-ind { display: flex; flex-direction: column; gap: 8px; padding: 14px 12px; border-radius: 10px; transition: background .15s; }
.mega-ind:hover { background: var(--s100); }
.mega-ind .ic { width: 24px; height: 24px; color: var(--blue-deep); }
.mega-ind strong { font-size: 13.5px; font-weight: 600; color: var(--s900); }
.mega-foot { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--s200); display: flex; align-items: center; justify-content: space-between; }
.mega-foot span { font-size: 13px; color: var(--s500); }
.mega-foot a { font-size: 13px; font-weight: 600; color: var(--blue-deep); }
.mega-foot a:hover { text-decoration: underline; }

/* header CTA */
.nav-cta { display: flex; align-items: center; gap: 14px; padding-left: 16px; border-left: 1px solid var(--s200); }
.call { text-align: right; line-height: 1.25; }
.call span { display: block; font-size: 12px; color: var(--s500); font-weight: 500; }
.call strong { font-size: 18px; font-weight: 700; color: var(--s900); white-space: nowrap; }
.nav-phone { display: none; }

/* mobile nav toggle + drawer */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--s800); }
.nav-toggle .ic { width: 26px; height: 26px; }
.mobile-nav { display: none; }

/* ─── FOOTER ───────────────────────────────────────── */
footer.site { background: #0a1120; color: var(--s400); padding: 64px 0 0; border-top: 1px solid var(--s800); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 44px; }
.foot-logo { display: inline-flex; background: #fff; border-radius: 8px; padding: 8px 16px; margin-bottom: 20px; text-decoration: none; }
.foot-logo img { height: 52px; width: auto; max-width: none; display: block; }
.foot-brand p { font-size: 14.5px; line-height: 1.7; margin-bottom: 18px; max-width: 280px; }
.foot-brand .lic { font-size: 14px; font-weight: 600; color: var(--s500); }
footer.site h3 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 18px; }
footer.site .links li, footer.site .areas li { font-size: 14.5px; margin-bottom: 12px; }
footer.site .links a, footer.site .areas a { transition: color .15s; }
footer.site .links a:hover, footer.site .areas a:hover { color: var(--blue); }
footer.site .contact li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; margin-bottom: 13px; }
footer.site .contact .ic { width: 17px; height: 17px; color: var(--s500); flex-shrink: 0; margin-top: 3px; }
footer.site .contact .ph { color: #fff; font-weight: 600; }
.foot-bottom { margin-top: 52px; border-top: 1px solid var(--s800); padding: 26px 0; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; font-size: 13.5px; color: var(--s600); }
.foot-bottom nav { display: flex; flex-wrap: wrap; gap: 18px; }
.foot-bottom a:hover { color: var(--s300); }

/* ─── HERO (home) ──────────────────────────────────── */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; padding: 80px 0 110px; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .22; mix-blend-mode: overlay; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--ink) 8%, rgba(14,22,38,.82) 55%, rgba(14,22,38,.55)); }
.hero-inner { position: relative; text-align: center; }
.badge { display: inline-block; margin-bottom: 22px; padding: 6px 16px; border-radius: 999px; background: rgba(1,169,232,.16); color: #9ad9f4; border: 1px solid rgba(1,169,232,.35); font-size: 13.5px; font-weight: 600; }
.hero h1 { font-size: clamp(34px, 5.4vw, 60px); font-weight: 800; max-width: 880px; margin: 0 auto 22px; }
.hero-sub { font-size: clamp(16px, 2vw, 20px); color: var(--s300); font-weight: 400; max-width: 640px; margin: 0 auto 44px; }

.ptype-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; max-width: 1040px; margin: 0 auto; }
.ptype { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 22px 10px; border-radius: 14px; border: 2px solid var(--s700); background: rgba(30,41,59,.55); color: var(--s400); cursor: pointer; font-family: inherit; transition: all .2s ease; }
.ptype .ic { width: 38px; height: 38px; }
.ptype span { font-size: 14px; font-weight: 600; line-height: 1.2; color: inherit; }
.ptype:hover { background: rgba(30,41,59,.9); border-color: var(--s500); color: var(--s200); }
.ptype.active { background: var(--lime); border-color: var(--lime); color: var(--ink); box-shadow: 0 12px 26px -8px rgba(215,223,35,.5); transform: translateY(-4px); }
.ptype:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ─── INDUSTRY DETAIL ──────────────────────────────── */
.detail { background: #fff; border-bottom: 1px solid var(--s200); padding: 84px 0; }
.panel { display: none; }
.panel.active { display: block; animation: fade .45s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: var(--s100); color: var(--s700); font-size: 13.5px; font-weight: 600; margin-bottom: 22px; }
.eyebrow .ic { width: 16px; height: 16px; }
.panel h3 { font-size: clamp(24px, 3vw, 30px); font-weight: 700; color: var(--s900); margin-bottom: 26px; }
.cs-card { position: relative; padding: 22px 24px; border-radius: 14px; overflow: hidden; margin-bottom: 18px; }
.cs-card .bar { position: absolute; top: 0; left: 0; width: 4px; height: 100%; }
.cs-card h4 { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.cs-card p { color: var(--s700); font-size: 15.5px; }
.cs-card .pill { width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.challenge { background: #fef2f2; border: 1px solid #fee2e2; }
.challenge .bar { background: var(--red); }
.challenge h4 { color: #991b1b; }
.challenge .pill { background: #fee2e2; color: var(--red); }
.solution { background: #eff8fd; border: 1px solid #d6eefb; }
.solution .bar { background: var(--blue); }
.solution h4 { color: #075985; }
.solution .pill { background: #d6eefb; color: var(--blue-deep); }
.svc-head { font-size: 12.5px; font-weight: 700; color: var(--s400); text-transform: uppercase; letter-spacing: .08em; margin: 30px 0 14px; }
.svc-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--s700); margin-bottom: 11px; }
.svc-list .ic { width: 20px; height: 20px; color: var(--lime-dk); flex-shrink: 0; }
.svc-list a { color: var(--s700); }
.svc-list a:hover { color: var(--blue-deep); }
.panel-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.detail-media { position: relative; }
.detail-media .frame { position: absolute; inset: 0; transform: translate(16px, 16px); border-radius: 18px; background: var(--blue); opacity: .12; }
.detail-media img { position: relative; border-radius: 18px; box-shadow: 0 24px 50px -18px rgba(15,23,42,.35); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.stat-card { position: absolute; left: -22px; bottom: -26px; background: #fff; padding: 20px 22px; border-radius: 14px; box-shadow: 0 18px 40px -14px rgba(15,23,42,.3); border: 1px solid var(--s100); display: flex; align-items: center; gap: 14px; }
.stat-card .ico { width: 48px; height: 48px; border-radius: 50%; background: rgba(215,223,35,.18); display: flex; align-items: center; justify-content: center; color: var(--lime-dk); }
.stat-card .num { font-size: 24px; font-weight: 800; color: var(--s900); line-height: 1; }
.stat-card .lbl { font-size: 13.5px; color: var(--s500); font-weight: 500; max-width: 130px; }

/* ─── WHY / DIFFERENTIATORS ────────────────────────── */
.why { background: var(--s50); padding: 92px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 700; color: var(--s900); margin-bottom: 14px; }
.section-head p { font-size: 18px; color: var(--s600); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card { background: #fff; border: 1px solid var(--s200); border-radius: 16px; padding: 32px; box-shadow: 0 1px 3px rgba(15,23,42,.04); transition: box-shadow .2s, transform .2s; }
.why-card:hover { box-shadow: 0 14px 30px -16px rgba(15,23,42,.25); transform: translateY(-3px); }
.why-card .ico { width: 50px; height: 50px; border-radius: 12px; background: rgba(215,223,35,.16); color: var(--lime-dk); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.why-card h3 { font-size: 19px; font-weight: 700; color: var(--s900); margin-bottom: 10px; }
.why-card p { color: var(--s600); font-size: 15.5px; }
.trust { margin-top: 70px; border-top: 1px solid var(--s200); border-bottom: 1px solid var(--s200); padding: 30px 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 52px; }
.trust div { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--s500); }
.trust .ic { width: 24px; height: 24px; }

/* ─── REVIEWS ──────────────────────────────────────── */
.reviews { background: #fff; padding: 92px 0; }
.reviews-head { display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; }
.reviews-head h2 { font-size: clamp(26px, 3.4vw, 34px); font-weight: 700; color: var(--s900); margin-bottom: 12px; }
.reviews-head p { font-size: 18px; color: var(--s600); max-width: 560px; }
.rating { display: inline-flex; align-items: center; gap: 10px; background: #fffbeb; border: 1px solid #fef3c7; padding: 9px 18px; border-radius: 999px; white-space: nowrap; }
.stars { display: inline-flex; color: #facc15; }
.stars .ic { width: 19px; height: 19px; }
.rating b { color: #a16207; font-weight: 700; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review { background: var(--s50); border: 1px solid var(--s100); border-radius: 18px; padding: 32px; }
.review .quote { color: var(--blue); opacity: .5; margin-bottom: 20px; }
.review .quote svg { width: 34px; height: 34px; fill: currentColor; }
.review p { color: var(--s700); font-style: italic; margin-bottom: 26px; }
.review .name { font-weight: 700; color: var(--s900); }
.review .role { font-size: 14px; color: var(--s500); font-weight: 500; }

/* ─── CTA BAND ─────────────────────────────────────── */
.cta { background: var(--blue-deep); color: #fff; text-align: center; padding: 82px 0; }
.cta h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 700; margin-bottom: 18px; }
.cta p { color: rgba(255,255,255,.85); font-size: 18px; max-width: 620px; margin: 0 auto 38px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ─── PAGE HEADER (inner pages) ────────────────────── */
.page-hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; padding: 56px 0 64px; }
.page-hero .hero-bg { opacity: .14; }
.page-hero-inner { position: relative; max-width: 780px; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13.5px; color: var(--s400); margin-bottom: 20px; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { color: var(--s600); }
.crumbs span[aria-current] { color: var(--lime); }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: clamp(16px, 2vw, 19px); color: var(--s300); max-width: 640px; }
.page-hero .page-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ─── GENERIC SECTIONS ─────────────────────────────── */
.section { padding: 80px 0; }
.section.alt { background: #fff; border-top: 1px solid var(--s200); border-bottom: 1px solid var(--s200); }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(24px, 3vw, 30px); color: var(--s900); margin: 0 0 16px; }
.prose h3 { font-size: 20px; color: var(--s900); margin: 34px 0 12px; }
.prose p { color: var(--s600); font-size: 16.5px; margin-bottom: 16px; }
.prose ul.bullets { margin: 8px 0 20px; }
.prose ul.bullets li { display: flex; gap: 12px; align-items: flex-start; color: var(--s700); margin-bottom: 12px; font-size: 16px; }
.prose ul.bullets .ic { width: 20px; height: 20px; color: var(--lime-dk); flex-shrink: 0; margin-top: 3px; }

.split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.aside-card { background: #fff; border: 1px solid var(--s200); border-radius: 16px; padding: 28px; box-shadow: 0 1px 3px rgba(15,23,42,.05); position: sticky; top: 100px; }
.aside-card h3 { font-size: 18px; color: var(--s900); margin-bottom: 8px; }
.aside-card p { color: var(--s600); font-size: 14.5px; margin-bottom: 18px; }
.aside-card .call-lg { font-size: 24px; font-weight: 800; color: var(--blue-deep); display: block; margin-bottom: 16px; }
.aside-card .btn { width: 100%; margin-bottom: 10px; }

/* card grids (services overview, areas, about) */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.s-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--s200); border-radius: 16px; padding: 30px; box-shadow: 0 1px 3px rgba(15,23,42,.04); transition: box-shadow .2s, transform .2s; }
.s-card:hover { box-shadow: 0 16px 34px -18px rgba(15,23,42,.28); transform: translateY(-3px); }
.s-card .ico { width: 52px; height: 52px; border-radius: 12px; background: rgba(1,169,232,.12); color: var(--blue-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.s-card h3 { font-size: 19px; color: var(--s900); margin-bottom: 10px; }
.s-card p { color: var(--s600); font-size: 15px; margin-bottom: 18px; flex-grow: 1; }
.s-card .more { font-size: 14.5px; font-weight: 600; color: var(--blue-deep); display: inline-flex; align-items: center; gap: 6px; }
.s-card .more .ic { width: 16px; height: 16px; }
.s-card:hover .more .ic { transform: translateX(3px); transition: transform .15s; }

/* stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-strip .item { text-align: center; padding: 8px; }
.stat-strip .num { font-size: clamp(30px, 4vw, 42px); font-weight: 800; color: var(--blue-deep); line-height: 1; margin-bottom: 8px; }
.stat-strip .lbl { font-size: 14.5px; color: var(--s600); font-weight: 500; }

/* ─── FAQ ──────────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--s200); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; font-size: 16.5px; color: var(--s900); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform .2s; }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--blue-deep); border-radius: 2px; }
.faq summary .plus::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq summary .plus::after { left: 10px; top: 2px; bottom: 2px; width: 2px; transition: opacity .2s; }
.faq details[open] summary .plus::after { opacity: 0; }
.faq details[open] summary { color: var(--blue-deep); }
.faq .faq-body { padding: 0 24px 22px; color: var(--s600); font-size: 15.5px; }

/* ─── CONTACT ──────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--s700); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--s900);
  padding: 12px 14px; border: 1.5px solid var(--s300); border-radius: 10px; background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(1,169,232,.15); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 13px; color: var(--s500); margin-top: 6px; }
.contact-info .info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info .info-item .ico { width: 44px; height: 44px; border-radius: 11px; background: rgba(1,169,232,.12); color: var(--blue-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info .info-item h3 { font-size: 16px; color: var(--s900); margin-bottom: 3px; }
.contact-info .info-item p, .contact-info .info-item a { color: var(--s600); font-size: 15px; }
.contact-info .info-item a:hover { color: var(--blue-deep); }
.map-wrap { margin-top: 8px; border-radius: 14px; overflow: hidden; border: 1px solid var(--s200); }
.map-wrap iframe { display: block; width: 100%; height: 300px; border: 0; }

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .main-nav, .nav-cta .call, .nav-cta .btn-primary:not(.nav-phone) { display: none; }
  .nav-cta { padding-left: 0; border-left: 0; gap: 10px; }
  .nav-cta .nav-phone { display: inline-flex; }
  .nav-toggle { display: inline-flex; }
  .ptype-grid { grid-template-columns: repeat(3, 1fr); }
  .detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .detail-media { margin-bottom: 30px; }
  .why-grid, .card-grid, .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .foot-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .aside-card { position: static; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 30px; }

  /* mobile drawer */
  .mobile-nav { display: block; position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); background: #fff; z-index: 1000; transform: translateX(100%); transition: transform .28s ease; box-shadow: -20px 0 60px -20px rgba(15,23,42,.4); overflow-y: auto; padding: 20px 22px 40px; visibility: hidden; }
  .mobile-nav.open { transform: translateX(0); visibility: visible; }
  .mobile-nav .m-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
  .mobile-nav .m-head img { height: 52px; max-width: none; }
  .mobile-nav .m-close { background: none; border: 0; cursor: pointer; padding: 6px; color: var(--s700); }
  .mobile-nav .m-close .ic { width: 26px; height: 26px; }
  .m-section { border-top: 1px solid var(--s200); }
  .m-toplink { display: block; padding: 15px 4px; font-size: 16px; font-weight: 600; color: var(--s800); }
  .m-group > summary { list-style: none; cursor: pointer; padding: 15px 4px; font-size: 16px; font-weight: 600; color: var(--s800); display: flex; justify-content: space-between; align-items: center; }
  .m-group > summary::-webkit-details-marker { display: none; }
  .m-group > summary .ic { width: 18px; height: 18px; transition: transform .2s; }
  .m-group[open] > summary .ic { transform: rotate(180deg); }
  .m-sub { padding: 0 4px 14px; }
  .m-sub a { display: block; padding: 9px 0 9px 14px; font-size: 14.5px; color: var(--s600); border-left: 2px solid var(--s200); }
  .m-sub a:hover { color: var(--blue-deep); border-color: var(--blue); }
  .mobile-nav a:focus-visible, .mobile-nav summary:focus-visible,
  .mobile-nav button:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
  .mobile-nav .m-cta { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(10,17,32,.5); z-index: 999; opacity: 0; visibility: hidden; transition: opacity .28s; }
  .nav-scrim.open { opacity: 1; visibility: visible; }
}
@media (max-width: 600px) {
  .util-left { gap: 10px; font-size: 12.5px; }
  .ptype-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .card-grid, .card-grid.cols-2 { grid-template-columns: 1fr; }
  .stat-card { left: 12px; right: 12px; bottom: -20px; }
  .panel-actions .btn, .cta-actions .btn, .page-hero-actions .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
}
