/* ═══════════════════════════════════════════════════════════════
   Self-hosted Barlow family (subset: latin, modern WOFF2)
   Replaces Google Fonts CDN — no third-party connection on critical path.
═══════════════════════════════════════════════════════════════ */

/* Barlow (body) — weights 400, 500, 600 */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/barlow-v13-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/barlow-v13-latin-600.woff2') format('woff2');
}

/* Barlow Condensed (display headings) — weights 400, 700, 800, 900 */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-v13-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-v13-latin-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-v13-latin-900.woff2') format('woff2');
}

/* Barlow Semi Condensed (sub-headings, labels) — weights 400, 600, 700 */
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/barlow-semi-condensed-v16-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/barlow-semi-condensed-v16-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Semi Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/barlow-semi-condensed-v16-latin-700.woff2') format('woff2');
}

/* ── Adjusted-fallback @font-face — local Arial / Arial Narrow with
   size-adjust + ascent-override / descent-override / line-gap-override
   matched to Barlow's metrics. Eliminates font-swap CLS: the box
   reserved by the fallback already matches Barlow's box, so when the
   webfont loads no reflow happens.
   Values computed from Barlow source metrics (Google Fonts) vs
   Microsoft-published Arial reference. Fine-tune with Chrome DevTools
   "Layout shift regions" if any residual shift remains. ───────────── */
@font-face {
  font-family: 'Barlow Fallback';
  src: local('Arial');
  size-adjust: 113%;
  ascent-override: 71%;
  descent-override: 18%;
  line-gap-override: 18%;
}
@font-face {
  font-family: 'Barlow Condensed Fallback';
  src: local('Arial Narrow'), local('Arial');
  size-adjust: 110%;
  ascent-override: 73%;
  descent-override: 18%;
  line-gap-override: 18%;
}
@font-face {
  font-family: 'Barlow Semi Condensed Fallback';
  src: local('Arial Narrow'), local('Arial');
  size-adjust: 124%;
  ascent-override: 65%;
  descent-override: 16%;
  line-gap-override: 16%;
}

/* ═══════════════════════════════════════
   TEC SHARED STYLESHEET v1.0
   The Enclosure Company (International) Ltd
═══════════════════════════════════════ */

:root {
  --navy:        #0A1628;
  --navy-mid:    #0F2040;
  --cobalt:      #1B3A6B;
  --cobalt-light:#2350A0;
  --orange:      #CC3016;
  --orange-light:#FF5533;
  --gold:        #C9922A;
  --gold-light:  #F0B830;
  --green:       #1A7A4A;
  --green-light: #22A060;
  --white:       #FFFFFF;
  --off-white:   #F4F6FA;
  --grey-light:  #DDE3EF;
  --grey-mid:    #5E6B82;
  --grey-dark:   #2A3040;
  --text-body:   #1E2535;
  --font-head:   'Barlow Condensed', 'Barlow Condensed Fallback', 'Arial Narrow', Arial, sans-serif;
  --font-semi:   'Barlow Semi Condensed', 'Barlow Semi Condensed Fallback', 'Arial Narrow', Arial, sans-serif;
  --font-body:   'Barlow', 'Barlow Fallback', 'Segoe UI', Arial, sans-serif;
  --radius:      3px;
  --shadow:      0 4px 24px rgba(0,0,0,0.12);
  --shadow-md:   0 6px 32px rgba(0,0,0,0.14);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.18);
  --transition:  color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

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

.container  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ── TOP BAR ─────────────────────────── */
.topbar { background: var(--navy); padding: 9px 0; border-bottom: 2px solid var(--orange); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.topbar__left { display: flex; align-items: center; gap: 24px; }
.topbar__item { font-family: var(--font-semi); font-size: 12px; font-weight: 600; color: var(--grey-light); letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }
.topbar__phone { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--gold-light); letter-spacing: 1px; }
.topbar__phone a { color: inherit; transition: var(--transition); }
.topbar__phone a:hover { color: var(--white); }

/* ── HEADER ──────────────────────────── */
.header { background: var(--white); padding: 12px 0; box-shadow: 0 2px 12px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
.header__inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.header__logo-img { height: 52px; width: auto; aspect-ratio: 4/1; }
.header__nav { display: flex; align-items: center; gap: 4px; }
.header__nav a { font-family: var(--font-semi); font-size: 13px; font-weight: 600; color: var(--text-body); padding: 8px 14px; border-radius: var(--radius); transition: var(--transition); }
.header__nav a:hover, .header__nav a.active { color: var(--orange); background: rgba(232,64,28,0.06); }
.header__cta { font-family: var(--font-semi); font-size: 13px; font-weight: 700; background: var(--orange); color: var(--white) !important; padding: 10px 22px; border-radius: var(--radius); transition: var(--transition); border: 2px solid var(--orange); }
.header__cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,64,28,0.3); }

/* ── BREADCRUMB ──────────────────────── */
.breadcrumb { background: var(--off-white); border-bottom: 1px solid var(--grey-light); padding: 11px 0; }
.breadcrumb__list { display: flex; align-items: center; gap: 8px; }
.breadcrumb__list li { font-size: 12.5px; color: var(--grey-mid); font-family: var(--font-semi); font-weight: 500; }
.breadcrumb__list li a { color: var(--cobalt); }
.breadcrumb__list li a:hover { color: var(--orange); }
.breadcrumb__list li.active { color: var(--text-body); font-weight: 600; }

/* ── BUTTONS ─────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-semi); font-weight: 700; border-radius: var(--radius); transition: var(--transition); cursor: pointer; border: 2px solid transparent; text-decoration: none; white-space: nowrap; }
.btn--primary { background: var(--orange); color: var(--white); padding: 13px 28px; font-size: 14px; border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-light); border-color: var(--orange-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,64,28,0.35); }
.btn--secondary { background: var(--cobalt); color: var(--white); padding: 13px 28px; font-size: 14px; border-color: var(--cobalt); }
.btn--secondary:hover { background: var(--cobalt-light); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--cobalt); padding: 13px 28px; font-size: 14px; border-color: var(--cobalt); }
.btn--outline:hover { background: var(--cobalt); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); padding: 13px 28px; font-size: 14px; border-color: rgba(255,255,255,0.4); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn--gold { background: var(--gold); color: var(--navy); padding: 13px 28px; font-size: 14px; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn--green { background: var(--green); color: var(--white); padding: 13px 28px; font-size: 14px; border-color: var(--green); }
.btn--green:hover { background: var(--green-light); transform: translateY(-2px); }

/* ── SECTION ATOMS ───────────────────── */
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-semi); font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.section-tag::before { content: ''; width: 20px; height: 2px; background: var(--orange); }
.section-title { font-family: var(--font-head); font-size: clamp(30px, 4vw, 46px); font-weight: 900; color: var(--navy); text-transform: uppercase; line-height: 1; letter-spacing: -0.5px; }
.section-title em { color: var(--orange); font-style: normal; }
.section-title--white { color: var(--white); }
.section-subtitle { font-size: 15.5px; color: var(--grey-mid); margin-top: 12px; line-height: 1.65; }
.divider { width: 48px; height: 4px; background: var(--orange); margin: 14px 0; border-radius: 2px; }
.divider--center { margin: 14px auto; }
.divider--gold { background: var(--gold); }
.section-head { margin-bottom: 44px; }
.section-head--center { text-align: center; }
.section-head--center .section-tag { justify-content: center; }
.section-head--center .section-tag::before { display: none; }
.section-head--center .section-subtitle { max-width: 620px; margin-left: auto; margin-right: auto; }

/* ── TRUST BAR ───────────────────────── */
.trust-bar { background: var(--grey-dark); border-bottom: 3px solid var(--orange); }
.trust-bar__inner { display: flex; align-items: stretch; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.trust-item { flex: 1; padding: 18px 14px; display: flex; align-items: center; gap: 10px; border-right: 1px solid rgba(255,255,255,0.08); }
.trust-item:last-child { border-right: none; }
.trust-item__icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(232,64,28,0.15); border: 1px solid rgba(232,64,28,0.3); border-radius: 3px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 16px; }
.trust-item__num { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--white); line-height: 1; }
.trust-item__label { font-family: var(--font-semi); font-size: 10px; font-weight: 600; color: rgba(200,210,230,0.65); letter-spacing: 0.8px; text-transform: uppercase; line-height: 1.3; margin-top: 1px; }

/* ── HERO ────────────────────────────── */
.hero { background: var(--navy); position: relative; overflow: hidden; padding: 64px 0 56px; min-height: 480px; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,58,107,0.9) 0%, rgba(10,22,40,0.97) 60%); }
.hero::after { display: none; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; max-width: 760px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,64,28,0.15); border: 1px solid rgba(232,64,28,0.4); color: #FF7755; font-family: var(--font-semi); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; padding: 5px 12px; text-transform: uppercase; margin-bottom: 18px; border-radius: 2px; }
.hero__badge::before { display: none; }
.hero__title { font-family: var(--font-head); font-size: clamp(44px, 5.5vw, 70px); font-weight: 900; line-height: 0.92; color: var(--white); text-transform: uppercase; letter-spacing: -1px; margin-bottom: 6px; }
.hero__title em { color: var(--orange); font-style: normal; }
.hero__subtitle { font-family: var(--font-head); font-size: clamp(18px, 2.5vw, 26px); font-weight: 600; color: var(--gold-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.hero__desc { font-size: 15.5px; line-height: 1.68; color: rgba(220,228,244,0.85); max-width: 540px; margin-bottom: 28px; }
.hero__desc strong { color: var(--white); }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 7px; }
.hero__chip { font-family: var(--font-semi); font-size: 10.5px; font-weight: 700; color: var(--grey-light); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); padding: 5px 11px; border-radius: 2px; letter-spacing: 1px; text-transform: uppercase; }
.hero__chip--orange { color: var(--orange-light); background: rgba(232,64,28,0.12); border-color: rgba(232,64,28,0.3); }

/* ── QUOTE FORM CARD ─────────────────── */
.form-card { background: var(--white); border-radius: 4px; padding: 28px 26px; box-shadow: var(--shadow-lg); position: relative; }
.form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); border-radius: 4px 4px 0 0; }
.form-card__title { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 3px; }
.form-card__sub { font-size: 12.5px; color: var(--grey-mid); margin-bottom: 18px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 11.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; font-family: var(--font-semi); letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 13px; border: 1.5px solid var(--grey-light); border-radius: var(--radius); font-family: var(--font-body); font-size: 13.5px; color: var(--text-body); background: var(--off-white); transition: var(--transition); appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--cobalt-light); background: var(--white); box-shadow: 0 0 0 3px rgba(27,58,107,0.1); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8499' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.form-submit { width: 100%; padding: 13px; background: var(--orange); color: var(--white); border: none; border-radius: var(--radius); font-family: var(--font-semi); font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; }
.form-submit:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,64,28,0.3); }
.form-card__phone { text-align: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--grey-light); }
.form-card__phone a { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: 1px; }
.form-card__phone span { display: block; font-size: 10.5px; color: var(--grey-mid); font-family: var(--font-semi); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.form-trust { display: flex; align-items: center; gap: 7px; margin-top: 12px; }
.form-trust span { font-size: 11px; color: var(--grey-mid); font-family: var(--font-semi); font-weight: 600; }

/* ── CONTENT SECTIONS ────────────────── */
.section { padding: 72px 0; }
.section--grey { background: var(--off-white); }
.section--dark { background: var(--navy); }
.section--cobalt { background: var(--cobalt); }

/* ── FEATURE GRID ────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 26px 22px; border: 1.5px solid var(--grey-light); border-radius: 4px; transition: var(--transition); }
.feature-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-card--dark { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.feature-card--dark:hover { border-color: var(--orange); }
.feature-card__icon { font-size: 28px; margin-bottom: 12px; }
.feature-card__title { font-family: var(--font-semi); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card__title--white { color: var(--white); }
.feature-card__desc { font-size: 13.5px; color: var(--grey-mid); line-height: 1.6; }
.feature-card__desc--white { color: rgba(200,216,244,0.8); }

/* ── SPEC TABLE ──────────────────────── */
.spec-table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin-bottom: 8px; }
.spec-table tr { border-bottom: 1px solid var(--grey-light); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 9px 12px; vertical-align: top; }
.spec-table__key { font-family: var(--font-semi); font-weight: 600; color: var(--navy); width: 40%; background: var(--off-white); }
.check { color: var(--green); font-weight: 700; }
.cross { color: #999; }

/* ── SPEC TAGS ───────────────────────── */
.spec-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0; }
.spec-tag { font-family: var(--font-semi); font-size: 10.5px; font-weight: 700; background: var(--off-white); color: var(--cobalt); padding: 5px 10px; border-radius: 2px; letter-spacing: 0.5px; border: 1px solid var(--grey-light); }
.spec-tag--orange { background: rgba(232,64,28,0.08); color: var(--orange); border-color: rgba(232,64,28,0.2); }
.spec-tag--green { background: rgba(26,122,74,0.08); color: var(--green); border-color: rgba(26,122,74,0.2); }
.spec-tag--gold { background: rgba(201,146,42,0.1); color: var(--gold); border-color: rgba(201,146,42,0.25); }

/* ── INFO BOX ────────────────────────── */
.info-box { padding: 20px 22px; border-radius: 4px; margin: 20px 0; }
.info-box--blue { background: rgba(27,58,107,0.07); border-left: 4px solid var(--cobalt); }
.info-box--orange { background: rgba(232,64,28,0.07); border-left: 4px solid var(--orange); }
.info-box--green { background: rgba(26,122,74,0.07); border-left: 4px solid var(--green); }
.info-box--dark { background: var(--cobalt); }
.info-box--dark p { color: rgba(210,224,248,0.9); }
.info-box p { font-size: 14px; line-height: 1.7; color: var(--text-body); }
.info-box strong { color: var(--navy); }
.info-box--dark strong { color: var(--gold-light); }

/* ── TWO-COL LAYOUT ──────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.two-col--center { align-items: center; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

/* ── ICON LIST ───────────────────────── */
.icon-list { display: flex; flex-direction: column; gap: 12px; }
.icon-list__item { display: flex; align-items: flex-start; gap: 12px; }
.icon-list__icon { width: 32px; height: 32px; flex-shrink: 0; background: rgba(232,64,28,0.1); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.icon-list__text { font-size: 14px; line-height: 1.6; color: var(--text-body); }
.icon-list__text strong { color: var(--navy); }
.icon-list--white .icon-list__icon { background: rgba(255,255,255,0.1); }
.icon-list--white .icon-list__text { color: rgba(210,224,248,0.9); }
.icon-list--white .icon-list__text strong { color: var(--white); }

/* ── RANGE GRID ──────────────────────── */
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.range-card { border: 1.5px solid var(--grey-light); border-radius: 4px; overflow: hidden; transition: var(--transition); }
.range-card:hover { border-color: var(--cobalt); transform: translateY(-3px); box-shadow: var(--shadow); }
.range-card__img { background: var(--navy); height: 160px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.range-card__img-bg { position: absolute; inset: 0; }
.range-card__img-label { position: absolute; bottom: 10px; left: 12px; font-family: var(--font-head); font-size: 26px; font-weight: 900; color: rgba(255,255,255,0.18); text-transform: uppercase; line-height: 1; }
.range-card__img-grid { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px; }
.range-card__img-grid img { width: 100%; height: 100%; object-fit: cover; }
.range-card__img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,58,107,0.78), rgba(10,22,40,0.82)); z-index: 1; }
.range-card__img-label { z-index: 2; }
.range-card__body { padding: 20px 18px; }
.range-card__title { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 8px; }
.range-card__desc { font-size: 13px; color: var(--text-body); line-height: 1.6; margin-bottom: 14px; }
.range-card__link { font-family: var(--font-semi); font-size: 13px; font-weight: 700; color: var(--cobalt); display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.range-card:hover .range-card__link { color: var(--orange); gap: 10px; }

/* ── APP GRID ────────────────────────── */
.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.app-card { background: var(--white); border-radius: 4px; padding: 24px 20px; border-top: 4px solid var(--cobalt); transition: var(--transition); }
.app-card:hover { border-top-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
.app-card--dark { background: rgba(255,255,255,0.05); border-top-color: var(--orange); }
.app-card--dark:hover { border-top-color: var(--gold); }
.app-card__icon { font-size: 28px; margin-bottom: 12px; }
.app-card__title { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 8px; }
.app-card__title--white { color: var(--white); }
.app-card__desc { font-size: 13px; color: var(--grey-mid); line-height: 1.6; }
.app-card__desc--white { color: rgba(200,216,244,0.75); }

/* ── FAQ ─────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1.5px solid var(--grey-light); border-radius: 4px; overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--cobalt); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; user-select: none; font-family: var(--font-semi); font-size: 14.5px; font-weight: 700; color: var(--navy); transition: var(--transition); gap: 12px; }
.faq-question:hover { color: var(--cobalt); }
.faq-icon { width: 26px; height: 26px; flex-shrink: 0; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--cobalt); transition: var(--transition); line-height: 1; }
.faq-item.open .faq-icon { background: var(--cobalt); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer__inner { padding: 0 22px 20px; font-size: 14px; color: var(--text-body); line-height: 1.75; border-top: 1px solid var(--grey-light); padding-top: 16px; }

/* ── CTA STRIP ───────────────────────── */
.cta-strip { background: var(--navy); padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { display: none; }
.cta-strip__inner { position: relative; z-index: 2; }
.cta-strip__title { font-family: var(--font-head); font-size: clamp(30px,4vw,52px); font-weight: 900; color: var(--white); text-transform: uppercase; line-height: 0.95; margin-bottom: 14px; }
.cta-strip__title em { color: var(--orange); font-style: normal; }
.cta-strip__desc { font-size: 15px; color: rgba(200,216,244,0.8); max-width: 540px; margin: 0 auto 32px; line-height: 1.65; }
.cta-strip__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.cta-strip__phone { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--gold-light); letter-spacing: 1px; }
.cta-strip__phone small { display: block; font-family: var(--font-semi); font-size: 11px; color: rgba(180,196,224,0.70); letter-spacing: 2px; text-transform: uppercase; margin-top: 3px; }
.cta-strip__phone a { color: inherit; }

/* ── FOOTER ──────────────────────────── */
.footer { background: var(--grey-dark); padding: 40px 0 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 28px; }
.footer__logo-img { height: 44px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer__desc { font-size: 12.5px; color: rgba(180,196,224,0.75); line-height: 1.65; margin-bottom: 14px; }
.footer__cert { display: flex; flex-wrap: wrap; gap: 5px; }
.footer__cert-tag { font-family: var(--font-semi); font-size: 9.5px; font-weight: 700; background: rgba(255,255,255,0.07); color: rgba(200,216,244,0.7); padding: 3px 7px; letter-spacing: 0.5px; }
.footer__col-title { font-family: var(--font-semi); font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 7px; }
.footer__links a { font-size: 12.5px; color: rgba(180,196,224,0.75); transition: var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__bottom { padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 11.5px; color: rgba(160,176,208,0.85); }
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { font-size: 11.5px; color: rgba(160,176,208,0.85); }
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ── STICKY MOBILE CTA ───────────────── */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--navy); border-top: 2px solid var(--orange); padding: 10px 14px; }
.sticky-cta__inner { display: flex; gap: 10px; }
.sticky-cta .btn { flex: 1; justify-content: center; padding: 12px; font-size: 13px; }

/* ── FADE-IN ─────────────────────────── */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.45s ease, transform 0.45s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {

  .form-card { max-width: 480px; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .topbar__left { display: none; }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .trust-bar__inner { flex-wrap: wrap; }
  .trust-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .range-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .cta-strip__actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .app-grid { grid-template-columns: 1fr; }
}

/* ── IP RATING CARDS ─────────────────── */
.ip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 32px; }
.ip-card { background: var(--white); border: 1.5px solid var(--grey-light); border-radius: var(--radius); padding: 28px 20px; text-align: center; position: relative; transition: var(--transition); }
.ip-card:hover { border-color: var(--cobalt-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ip-card--highlight { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,64,28,0.1); }
.ip-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-size: 10px; font-weight: 700; font-family: var(--font-semi); letter-spacing: 0.8px; text-transform: uppercase; padding: 3px 12px; border-radius: 20px; white-space: nowrap; }
.ip-card__rating { font-family: var(--font-head); font-size: 42px; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 10px; }
.ip-card__rating em { color: var(--orange); font-style: normal; }
.ip-card__title { font-family: var(--font-semi); font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.ip-card__desc { font-size: 13px; color: var(--text-body); line-height: 1.65; }

/* ── IP RATINGS PAGE ─────────────────── */
.ip-page { padding: 56px 0; }
.ip-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 14px; }
.ip-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-family: var(--font-semi); font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.ip-table td { padding: 12px 16px; border-bottom: 1px solid var(--grey-light); vertical-align: top; }
.ip-table tr:nth-child(even) td { background: var(--off-white); }
.ip-table tr:hover td { background: rgba(27,58,107,0.04); }
.ip-badge { display: inline-block; font-family: var(--font-head); font-size: 18px; font-weight: 900; color: var(--navy); min-width: 50px; }
.ip-badge em { color: var(--orange); font-style: normal; }
.ip-highlight td { background: rgba(232,64,28,0.05) !important; border-left: 3px solid var(--orange); }

@media (max-width: 640px) {
  .ip-grid { grid-template-columns: repeat(2, 1fr); }
  .ip-table { font-size: 12px; }
  .ip-table th, .ip-table td { padding: 8px 10px; }
}
/* ═══════════════════════════════════════════════════════════════
   PR1 — Logo, mobile nav (hamburger + drawer), a11y essentials
═══════════════════════════════════════════════════════════════ */

/* ── Skip-to-main link (WCAG 2.4.1) ──────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-semi);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* ── Logo: dimensions, sharpness, CLS-safe ───────────── */
.header__logo-link { display: inline-flex; align-items: center; line-height: 0; }
.header__logo-img {
  display: block;
  height: 48px;
  width: auto;
  aspect-ratio: 240 / 60;
  max-width: 100%;
}
.footer__logo-link { display: inline-block; line-height: 0; }
.footer__logo-img {
  display: block;
  height: 40px;
  width: auto;
  aspect-ratio: 240 / 60;
  filter: none;
  opacity: 1;
  margin-bottom: 12px;
}

/* ── Hamburger button (mobile-first: visible by default) ─ */
.header__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.header__menu-toggle:hover { background: var(--off-white); border-color: var(--cobalt-light); }
.header__menu-toggle:focus-visible {
  outline: 2px solid var(--cobalt-light);
  outline-offset: 2px;
}
.header__menu-toggle-icon,
.header__menu-toggle-icon::before,
.header__menu-toggle-icon::after {
  content: '';
  display: block;
  width: 22px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.header__menu-toggle-icon { position: relative; }
.header__menu-toggle-icon::before { position: absolute; left: 0; top: -7px; }
.header__menu-toggle-icon::after  { position: absolute; left: 0; top: 7px; }
.header__menu-toggle[aria-expanded="true"] .header__menu-toggle-icon { background: transparent; }
.header__menu-toggle[aria-expanded="true"] .header__menu-toggle-icon::before { top: 0; transform: rotate(45deg); }
.header__menu-toggle[aria-expanded="true"] .header__menu-toggle-icon::after  { top: 0; transform: rotate(-45deg); }

/* ── Mobile nav breakpoint: hide desktop nav + CTA, show hamburger ── */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
}
@media (min-width: 1025px) {
  .header__menu-toggle { display: none; }
}

/* ── Drawer overlay ──────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  z-index: 180;
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0s linear 0s;
}

/* ── Drawer panel ────────────────────────────────────── */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 190;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.drawer.is-open { transform: translateX(0); }
.drawer[inert] { /* visual no-op; inert blocks tab order */ }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--grey-light);
  gap: 16px;
}
.drawer__logo-link { display: inline-flex; align-items: center; line-height: 0; }
.drawer__logo {
  display: block;
  height: 38px;
  width: auto;
  aspect-ratio: 240 / 60;
}
.drawer__close {
  background: transparent;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.drawer__close:hover { background: var(--off-white); border-color: var(--cobalt-light); }
.drawer__close:focus-visible { outline: 2px solid var(--cobalt-light); outline-offset: 2px; }

.drawer__nav { display: flex; flex-direction: column; flex-grow: 1; padding: 4px 0; }
.drawer__nav a {
  font-family: var(--font-semi);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  padding: 15px 22px;
  border-bottom: 1px solid var(--grey-light);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}
.drawer__nav a:hover { background: var(--off-white); color: var(--orange); }
.drawer__nav a.active {
  background: rgba(232,64,28,0.06);
  color: var(--orange);
}
.drawer__nav a.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
}
.drawer__nav a:focus-visible {
  outline: 2px solid var(--cobalt-light);
  outline-offset: -2px;
}

.drawer__cta-block {
  padding: 18px 18px 12px;
  border-top: 1px solid var(--grey-light);
}
.drawer__cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 15px;
  padding: 14px;
}
.drawer__phone {
  display: block;
  text-align: center;
  padding: 8px 0 12px;
  text-decoration: none;
}
.drawer__phone-num {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1px;
}
.drawer__phone-label {
  display: block;
  font-family: var(--font-semi);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-top: 3px;
}

.drawer__meta {
  padding: 14px 22px 22px;
  background: var(--off-white);
  font-family: var(--font-semi);
  font-size: 12.5px;
  color: var(--grey-mid);
  line-height: 1.7;
}
.drawer__meta p { margin: 0; }
.drawer__meta strong { color: var(--navy); font-weight: 700; }

/* ── Body lock when drawer open ──────────────────────── */
body.body--no-scroll { overflow: hidden; }

/* ── Global focus-visible ring (WCAG 2.4.7) ───────────── */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--cobalt-light);
  outline-offset: 2px;
}

/* ── Prefers-reduced-motion: kill non-essential animation ─ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .drawer { transition: none; }
  .drawer-overlay { transition: none; }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

/* ── Mobile header polish ──────────────────────────────── */
@media (max-width: 768px) {
  .header { padding: 10px 0; }
  .header__logo-img { height: 40px; }
  .drawer { width: 100vw; max-width: 100%; }
}

/* ── Product detail: responsive two-col grid ──────────── */
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.product-detail__sidebar {
  position: sticky;
  top: 80px;
}
@media (max-width: 700px) {
  .product-detail__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-detail__sidebar {
    position: static;
  }
}

/* ── Walk-In GRP Kiosks: Accordion ───────────────────────── */
.wi-accordion { margin-top: 8px; }

.wi-panel {
  border: 1px solid var(--border, #e0e5ee);
  border-radius: 6px;
  margin-bottom: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s ease;
}
.wi-panel[open] { border-color: var(--cobalt, #003580); }

.wi-panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-semi);
  font-size: 15px;
  color: var(--navy);
  background: #fff;
  transition: background .2s ease, color .2s ease;
  user-select: none;
}
.wi-panel__head::-webkit-details-marker { display: none; }
.wi-panel__head::marker { display: none; }
.wi-panel[open] .wi-panel__head { background: var(--cobalt, #003580); color: #fff; }

.wi-panel__icon { font-size: 18px; flex-shrink: 0; }
.wi-panel__title { flex: 1; }

.wi-panel__arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23003580'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .2s ease;
}
.wi-panel[open] .wi-panel__arrow {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.wi-panel__body { padding: 18px 18px 22px; }
.wi-panel__body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--grey-dark, #333);
  margin: 0;
}

/* ── Walk-In GRP Kiosks: Comparison Table ─────────────────── */
.wi-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 6px; }

.wi-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.wi-compare th,
.wi-compare td {
  padding: 11px 14px;
  border: 1px solid var(--border, #e0e5ee);
  text-align: left;
  vertical-align: middle;
  line-height: 1.4;
}
.wi-compare thead th {
  background: var(--navy, #001a3c);
  color: #fff;
  font-family: var(--font-semi);
  font-size: 13px;
  font-weight: 700;
  border-color: var(--navy, #001a3c);
}
.wi-compare__grp-head { border-left: 3px solid var(--cobalt, #003580) !important; }

.wi-compare__grp { background: #f0f5ff; }
.wi-compare tbody tr:nth-child(even) td { background: #f8fafd; }
.wi-compare tbody tr:nth-child(even) td.wi-compare__grp { background: #e8f0ff; }
.wi-compare td:nth-child(2) { border-left: 3px solid var(--cobalt, #003580); }

.wi-compare__good { color: var(--cobalt, #003580); font-family: var(--font-semi); }
.wi-compare__good::before { content: '\2713\00a0\00a0'; color: #1a8a4a; font-weight: 700; }
.wi-compare__bad  { color: #555; }
.wi-compare__bad::before  { content: '\2717\00a0\00a0'; color: #c0392b; font-weight: 700; }
.wi-compare__neutral { color: #555; }
.wi-compare__neutral::before { content: '\2713\00a0\00a0'; color: #888; font-weight: 700; }

.wi-compare__footer {
  margin-top: 16px;
  font-size: 14px;
  color: var(--grey-mid, #666);
  line-height: 1.6;
}
.wi-link { color: var(--cobalt, #003580); text-decoration: underline; text-underline-offset: 2px; }
.wi-link:hover { color: var(--navy, #001a3c); }

@media (max-width: 600px) {
  .wi-panel__head { font-size: 14px; padding: 13px 14px; gap: 10px; }
  .wi-panel__body { padding: 14px 14px 18px; }
  .wi-panel__body p { font-size: 14px; }
}

/* ── Product image: single + carousel ───────────────────── */
.prd-img-single {
  position: relative;
  background: var(--off-white);
  border: 1.5px solid var(--grey-light);
  border-radius: 4px;
  height: 400px;
  margin-bottom: 20px;
  overflow: hidden;
}
.prd-img-single__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.12s ease;
  cursor: zoom-in;
  will-change: transform;
}
.prd-img-single.is-zoomed .prd-img-single__img {
  cursor: zoom-out;
}
.prd-img-single.is-zoomed .prd-img-single__img {
  transform: scale(2.2);
}
.prd-img__atex-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-semi);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 1px;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

/* Carousel */
.prd-carousel {
  position: relative;
  background: var(--off-white);
  border: 1.5px solid var(--grey-light);
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
  height: 400px;
}
.prd-carousel__track-wrap {
  overflow: hidden;
  height: 100%;
}
.prd-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.prd-carousel__slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
/* Full image, no crop — object-fit: contain scales to fit */
.prd-carousel__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.12s ease;
  cursor: zoom-in;
  will-change: transform;
}
.prd-carousel__slide.is-zoomed .prd-carousel__img {
  cursor: zoom-out;
}
.prd-carousel__slide.is-zoomed .prd-carousel__img {
  transform: scale(2.2);
}

/* Prev / Next buttons */
.prd-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--grey-light);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--navy);
  transition: background 0.15s, border-color 0.15s;
  padding: 0;
}
.prd-carousel__btn:hover {
  background: #fff;
  border-color: var(--navy);
}
.prd-carousel__btn:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 2px;
}
.prd-carousel__btn--prev { left: 10px; }
.prd-carousel__btn--next { right: 10px; }

/* Dot indicators */
.prd-carousel__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.prd-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.18s, transform 0.18s;
}
.prd-carousel__dot:hover { background: rgba(0,0,0,0.45); }
.prd-carousel__dot--active {
  background: var(--navy);
  transform: scale(1.25);
}
.prd-carousel__dot:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
}
