/* ==========================================================================
   Princeton Service Center — Marketing Stylesheet
   Authorized Lenovo Service Center · Princeton, NJ

   Ported from the standalone marketing site. The reset / base / typography
   rules are scoped under `.psc-site` so they cannot leak into the
   role-dashboard UI (which relies on browser defaults + inline styles).
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy: #0A1628;
  --navy-soft: #122036;
  --red: #E6001A;
  --red-dark: #B8001A;
  --steel: #8FAADC;
  --offwhite: #F5F7FA;
  --gray: #6B7A94;
  --light-gray: #E2E8F0;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 18px 50px rgba(10, 22, 40, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --font-sans: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;
  --header-h: 74px;
}

/* ---------- Reset / base (scoped to the marketing site) ----------
   The element selectors are wrapped in :where(.psc-site) so the scope adds
   ZERO specificity. This reproduces the original site's selector precedence
   exactly (e.g. `.btn-red { color:#fff }` still beats the base `a` color),
   while keeping every rule confined to the marketing wrapper. */
:where(.psc-site), :where(.psc-site) *, :where(.psc-site) *::before, :where(.psc-site) *::after { box-sizing: border-box; margin: 0; padding: 0; }

.psc-site {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

:where(.psc-site) img { display: block; max-width: 100%; height: auto; }

:where(.psc-site) a { color: var(--red); text-decoration: none; }
:where(.psc-site) a:hover { color: var(--red-dark); }

:where(.psc-site) ul, :where(.psc-site) ol { list-style-position: inside; }

:where(.psc-site) h1, :where(.psc-site) h2, :where(.psc-site) h3, :where(.psc-site) h4 { line-height: 1.2; font-weight: 700; color: var(--navy); }
:where(.psc-site) h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.02em; }
:where(.psc-site) h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.015em; }
:where(.psc-site) h3 { font-size: 1.25rem; }

:where(.psc-site) p { color: var(--gray); }

:where(.psc-site) button { font-family: inherit; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section { padding: 84px 0; }
.section.tight { padding: 56px 0; }
.section.alt { background: var(--offwhite); }
.section.dark { background: var(--navy); }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark p { color: var(--steel); }

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.section-head.left { text-align: left; margin-inline: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section.dark .eyebrow { color: var(--steel); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); box-shadow: 0 8px 24px rgba(230, 0, 26, 0.30); }
.btn-red:hover { background: var(--red-dark); color: var(--white); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,0.7); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 18px rgba(10, 22, 40, 0.35);
}

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding-inline: 24px;
  position: relative;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--white); cursor: pointer; background: none; border: 0; }
.brand:hover { color: var(--white); }
.brand-mark {
  display: block;
  width: auto;
  height: 62px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-name {
  display: none;
}
.brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button {
  display: block;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  background: none;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--white); background: var(--red-dark); border-radius: 999px; }
.nav-links > li > a.active { color: var(--white); background: rgba(255, 255, 255, 0.08); }

/* Dropdown */
.dropdown .caret { font-size: 0.65rem; margin-left: 4px; color: var(--steel); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 500;
}
.dropdown-menu a:hover { background: var(--offwhite); color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  font-weight: 600;
  padding: 11px 22px !important;
  border-radius: 999px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.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); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--navy);
  z-index: 99;
  padding: 28px 6%;
  display: none;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a, .mobile-drawer button {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: none;
  border-left: 0; border-right: 0; border-top: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.mobile-drawer a.sub { font-size: 0.98rem; font-weight: 400; padding-left: 26px; color: var(--steel); }
.mobile-drawer .drawer-section-label {
  display: block;
  margin-top: 18px;
  padding: 14px 6px 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--steel);
}
.mobile-drawer .drawer-cta {
  margin-top: 22px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  border-radius: 999px;
  padding: 15px;
  border-bottom: 0;
}
.mobile-drawer .drawer-legal {
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--steel);
  border-bottom: 0;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  background: var(--offwhite);
  border-bottom: 1px solid var(--light-gray);
  padding: 12px 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumbs li::after { content: "/"; margin-left: 8px; color: var(--gray); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--gray); }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs li[aria-current] { color: var(--navy); font-weight: 500; }

/* ---------- Photo hero (home) ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,0.92) 30%, rgba(10,22,40,0.45) 75%, rgba(10,22,40,0.25));
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 640px;
  padding: 90px 0;
}
.hero-partner-badge {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 3;
}
.hero-partner-badge img {
  height: 180px;
  width: auto;
  display: block;
}
.hero-content h1 { color: var(--white); margin: 8px 0 20px; }
.hero-content h1 em { color: var(--red); font-style: normal; }
.hero-content p { color: var(--steel); font-size: 1.12rem; margin-bottom: 30px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(230, 0, 26, 0.18);
  border: 1px solid rgba(230, 0, 26, 0.55);
  padding: 8px 16px;
  border-radius: 999px;
}
.hero-note {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--steel);
}
.hero-note strong { color: var(--white); }

/* ---------- Interior page hero ---------- */
.page-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 90px 0;
}
.page-hero .hero-bg { opacity: 0.28; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,22,40,0.94) 35%, rgba(10,22,40,0.55));
}
.page-hero .container { position: relative; z-index: 2; max-width: 1180px; }
.page-hero h1 { color: var(--white); margin: 6px 0 16px; max-width: 720px; }
.page-hero p { color: var(--steel); font-size: 1.1rem; max-width: 640px; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy-soft); border-top: 1px solid rgba(255,255,255,0.06); }
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
}
.trust-item .ico {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(230, 0, 26, 0.16);
  border-radius: 9px;
  font-size: 1.1rem;
}
.trust-item small { display: block; color: var(--steel); font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; }

/* ---------- Grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- Photo cards ---------- */
.photo-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.photo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.photo-card .img-wrap { overflow: hidden; aspect-ratio: 16 / 10; }
.photo-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.photo-card:hover .img-wrap img { transform: scale(1.07); }
.photo-card .card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.photo-card h3 { font-size: 1.12rem; }
.photo-card p { font-size: 0.94rem; flex: 1; }
.card-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}
.card-link { font-weight: 600; font-size: 0.92rem; }
.card-link::after { content: " →"; }

/* ---------- Image splits ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split + .split { margin-top: 72px; }
.split .split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.split .split-img img { width: 100%; height: 100%; object-fit: cover; }
.split.reverse .split-img { order: 2; }
.split h2 { margin-bottom: 16px; }
.split p { margin-bottom: 14px; }
.split ul { list-style: none; margin-top: 6px; }
.split ul li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--gray);
  font-size: 0.97rem;
}
.split ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.step-card .img-wrap { aspect-ratio: 16 / 10; overflow: hidden; }
.step-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.step-card .step-body { padding: 22px; }
.step-num + .step-body { padding-top: 68px; }
.step-num {
  position: absolute;
  top: 14px; left: 14px;
  width: 40px; height: 40px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 700;
  display: grid; place-items: center;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(230,0,26,0.4);
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; }

/* ---------- Device cards ---------- */
.device-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.device-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.device-card .img-wrap { aspect-ratio: 16 / 9; overflow: hidden; }
.device-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.device-card:hover .img-wrap img { transform: scale(1.06); }
.device-card .card-body { padding: 26px; }
.device-card h3 { margin-bottom: 8px; }
.device-card > .card-body > p { font-size: 0.94rem; margin-bottom: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: var(--offwhite);
  border: 1px solid var(--light-gray);
  color: var(--navy);
  padding: 5px 11px;
  border-radius: 999px;
}

/* ---------- Review cards ---------- */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars { color: #F5A623; letter-spacing: 3px; font-size: 1rem; }
.review-card blockquote { color: var(--gray); font-size: 0.97rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.reviewer img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.reviewer strong { display: block; font-size: 0.95rem; }
.reviewer small { color: var(--gray); font-family: var(--font-mono); font-size: 0.72rem; }

/* ---------- City cards ---------- */
.city-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
}
.city-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.city-card:hover img { transform: scale(1.07); }
.city-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0) 30%, rgba(10,22,40,0.92) 100%);
}
.city-card .city-body { position: relative; z-index: 2; padding: 22px; }
.city-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 4px; }
.city-card .distance {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(255,255,255,0.95);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-weight: 500;
}
.city-card p { color: rgba(255,255,255,0.82); font-size: 0.86rem; }

.county-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 56px 0 26px;
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 12px;
}
.county-head:first-of-type { margin-top: 0; }
.county-head h2 { font-size: 1.5rem; }
.county-head span { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gray); }

/* ---------- Diagnostics banner ---------- */
.diag-banner {
  background: linear-gradient(100deg, var(--red), var(--red-dark));
  border-radius: var(--radius);
  padding: 38px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  box-shadow: 0 16px 44px rgba(230, 0, 26, 0.35);
}
.diag-banner .price {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  white-space: nowrap;
}
.diag-banner .price small { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; opacity: 0.9; }
.diag-banner h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.diag-banner p { color: rgba(255,255,255,0.88); font-size: 0.96rem; max-width: 560px; }
.diag-banner .btn { flex-shrink: 0; background: var(--white); color: var(--red); }
.diag-banner .btn:hover { background: var(--offwhite); }

/* ---------- Service tabs ---------- */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab-btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid var(--light-gray);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--red); color: var(--red); }
.tab-btn.active { background: var(--red); border-color: var(--red); color: var(--white); box-shadow: 0 8px 22px rgba(230,0,26,0.3); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp 0.35s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-intro { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.tab-intro .fee-note {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  background: rgba(230,0,26,0.08);
  border: 1px solid rgba(230,0,26,0.3);
  color: var(--red-dark);
  padding: 8px 16px;
  border-radius: 999px;
}

/* ---------- Pricing table ---------- */
.pricing-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.pricing-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 640px; }
.pricing-table th, .pricing-table td { padding: 17px 22px; text-align: left; }
.pricing-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.pricing-table tbody tr { border-bottom: 1px solid var(--light-gray); }
.pricing-table tbody tr:last-child { border-bottom: 0; }
.pricing-table tbody tr:hover { background: var(--offwhite); }
.pricing-table td { color: var(--gray); font-size: 0.95rem; }
.pricing-table td:first-child { color: var(--navy); font-weight: 600; }
.pricing-table .price-cell { font-family: var(--font-mono); font-weight: 600; color: var(--navy); white-space: nowrap; }
.pricing-table .row-cat td {
  background: var(--offwhite);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 19px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}
.faq-q .faq-ico {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--offwhite);
  display: grid; place-items: center;
  color: var(--red);
  font-weight: 700;
  transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--red); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding: 0 24px 22px; color: var(--gray); font-size: 0.96rem; }
.faq-item.open { border-color: var(--steel); box-shadow: var(--shadow); }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat .num {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--red);
}
.section.dark .stat .num { color: var(--white); }
.stat .label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}
.section.dark .stat .label { color: var(--steel); }

/* ---------- Pillars ---------- */
.pillar {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow);
  padding: 30px;
}
.pillar .ico {
  width: 52px; height: 52px;
  background: var(--offwhite);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.pillar h3 { font-size: 1.08rem; margin-bottom: 10px; }
.pillar p { font-size: 0.93rem; }

/* ---------- Photo band ---------- */
.photo-band {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 96px 0;
}
.photo-band .hero-bg { opacity: 0.32; }
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(10,22,40,0.93) 40%, rgba(10,22,40,0.5));
}
.photo-band .container { position: relative; z-index: 2; }
.photo-band h2 { color: var(--white); max-width: 620px; margin: 8px 0 18px; }
.photo-band p { color: var(--steel); max-width: 560px; margin-bottom: 26px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 88px 0;
  text-align: center;
}
.cta-band .hero-bg { opacity: 0.25; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(10,22,40,0.78); }
.cta-band .container { position: relative; z-index: 2; max-width: 720px; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: var(--steel); margin-bottom: 30px; font-size: 1.08rem; }
.cta-band .btn-group { justify-content: center; }
.cta-band .fine {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel);
}

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 38px;
}
.contact-form h2 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form > p { font-size: 0.92rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  padding: 13px 15px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  background: var(--offwhite);
  color: var(--navy);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-family: var(--font-mono); font-size: 0.74rem; color: var(--gray); margin-top: 14px; }

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 22px;
}
.info-card h3 { font-size: 1.05rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.info-card h3 .ico {
  width: 36px; height: 36px;
  background: rgba(230,0,26,0.08);
  border-radius: 9px;
  display: grid; place-items: center;
  font-size: 1rem;
}
.info-card p, .info-card li { color: var(--gray); font-size: 0.95rem; }
.info-card a.big { font-size: 1.25rem; font-weight: 700; font-family: var(--font-mono); }

.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--light-gray);
  font-size: 0.93rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--navy); font-weight: 600; }
.hours-list .time { font-family: var(--font-mono); font-size: 0.82rem; color: var(--gray); }
.hours-list .closed .time { color: var(--red); }

/* ---------- Map placeholder ---------- */
.map-placeholder {
  background: var(--navy);
  border-radius: var(--radius);
  min-height: 340px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--steel);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-placeholder .pin { font-size: 2.4rem; margin-bottom: 12px; }
.map-placeholder strong { color: var(--white); display: block; font-size: 1.1rem; margin-bottom: 6px; }
.map-placeholder p { font-family: var(--font-mono); font-size: 0.78rem; color: var(--steel); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--steel); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 50px;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.site-footer p { color: var(--steel); font-size: 0.9rem; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: var(--steel); font-size: 0.92rem; }
.site-footer ul a:hover { color: var(--white); }
.footer-fee {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  border: 1px solid rgba(143,170,220,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--steel);
}
.footer-fee strong { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.74rem;
}
.footer-bottom a { color: var(--steel); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal-links { display: inline-flex; gap: 8px; align-items: center; }
.footer-legal-links a { text-decoration: none; }
.footer-legal-links a:hover { text-decoration: underline; }

/* ---------- Utility ---------- */
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.center { text-align: center; }
.lead { font-size: 1.1rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .diag-banner { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-img { order: 0; }
  .hero { min-height: 540px; }
  .hero-content { padding: 70px 0; }
  .hero-partner-badge { display: none; }
  .section { padding: 64px 0; }
  .page-hero { padding: 70px 0; }
  .diag-banner { padding: 30px; }
}

@media (max-width: 600px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .psc-site { font-size: 16px; }
}

@media (max-width: 540px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .trust-bar .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group .btn { width: 100%; }
  .brand-name { font-size: 0.9rem; }
}

@media (max-width: 400px) {
  .btn { width: 100%; }
  .diag-banner .btn { width: 100%; }
  .hero-content h1 { font-size: 1.85rem; }
}

/* ---------- Cookie Consent Banner ---------- */
.cookie-banner {
  background: #fff;
  border-bottom: 1px solid #dde3ea;
  padding: 22px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.cookie-banner-text {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #333;
  line-height: 1.65;
}
.cookie-banner-text p { margin: 0 0 6px; }
.cookie-banner-text p:last-child { margin: 0; }
.cookie-banner-text a { color: #185fa5; text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: #0d3e7a;
  color: #fff;
  border: none;
  padding: 11px 36px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
  min-width: 130px;
  text-align: center;
  transition: background 0.15s;
}
.cookie-btn-accept:hover { background: #185fa5; }
.cookie-btn-decline {
  background: transparent;
  color: #444;
  border: 1px solid #bbb;
  padding: 11px 36px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-sans);
  white-space: nowrap;
  min-width: 130px;
  text-align: center;
  transition: border-color 0.15s, color 0.15s;
}
.cookie-btn-decline:hover { border-color: #888; color: #111; }
@media (max-width: 768px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .cookie-banner-actions { flex-direction: row; justify-content: flex-end; }
}
@media (max-width: 480px) {
  .cookie-banner-actions { flex-direction: column; }
  .cookie-btn-accept, .cookie-btn-decline { min-width: unset; width: 100%; }
}
