/* GPSNET — shared site stylesheet (index, uslugi, trackers, roaming)
   Palette from the logo: navy + red. Light, professional B2B look.
   Fonts are self-hosted (fonts/*.woff2, cyrillic + latin subsets) — no Google Fonts request. */

@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-400-cyrillic.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-400-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-600-cyrillic.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-600-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/montserrat-700-cyrillic.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/montserrat-700-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/montserrat-800-cyrillic.woff2') format('woff2'); unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/montserrat-800-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }


:root {
  --navy: #0b1f4b;
  --navy-800: #102a63;
  --navy-900: #071335;
  --red: #e0173d;
  --red-600: #b8122f;
  --sky: #2f6fed;
  --green: #16a34a;
  --amber: #d97706;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #5b6478;
  --line: #e2e8f0;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .06);
  --shadow-lg: 0 20px 50px rgba(7, 19, 53, .18);
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --container: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: var(--sky); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 .5em; color: var(--navy); }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(224, 23, 61, .3); }
.btn-red:hover { background: var(--red-600); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-800); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn .icon { width: 1.1em; height: 1.1em; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.logo img { height: 42px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--navy); font-weight: 600; font-size: .95rem; }
.nav a:hover, .nav a.active { color: var(--red); text-decoration: none; }
.nav .nav-login { display: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 600; font-size: .95rem; white-space: nowrap; }
.header-phone:hover { color: var(--red); text-decoration: none; }
.btn-login { padding: 10px 20px; font-size: .9rem; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--navy); cursor: pointer; }
.nav-toggle .icon { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; background: var(--navy-900); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .38; }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,19,53,.92) 0%, rgba(11,31,75,.75) 50%, rgba(7,19,53,.45) 100%);
}
.hero .container { position: relative; z-index: 1; padding-top: 96px; padding-bottom: 96px; }
.hero h1 { color: #fff; max-width: 760px; }
.hero h1 em { font-style: normal; color: #ff5c7a; }
.hero-lead { font-size: 1.15rem; max-width: 640px; color: rgba(255,255,255,.88); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); font-size: .9rem; font-weight: 600;
}
.pill .icon { color: #ff5c7a; }
.pill strong { color: #fff; }
.hero-price {
  display: inline-flex; align-items: baseline; gap: 10px; margin-bottom: 26px;
  padding: 10px 22px; border-radius: 14px; background: rgba(224,23,61,.18); border: 1px solid rgba(255,92,122,.5);
}
.hero-price .amount { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; line-height: 1; }
.hero-price .per { font-size: .95rem; color: rgba(255,255,255,.85); }

/* Page hero (sub-pages) */
.page-hero .container { padding-top: 72px; padding-bottom: 64px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.85); }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .kicker { display: inline-block; color: var(--red); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-navy .section-head p { color: rgba(255,255,255,.8); }

/* Stats strip */
.stats { background: var(--surface); border-bottom: 1px solid var(--line); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 26px 16px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-value { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.stat-value span { color: var(--red); }
.stat-label { color: var(--muted); font-size: .9rem; margin-top: 4px; }

/* Cards */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #c9d4ea; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #eef2ff, #fde8ec); color: var(--navy); margin-bottom: 18px;
}
.card-icon .icon { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 14px; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding: 5px 0 5px 26px; font-size: .93rem; }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 11px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E") center/10px no-repeat;
}
.section-navy .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); box-shadow: none; }
.section-navy .card h3 { color: #fff; }
.section-navy .card p { color: rgba(255,255,255,.78); }
.section-navy .card-icon { background: rgba(255,255,255,.12); color: #fff; }

/* Pricing */
.pricing-wrap { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 2px solid var(--red); border-radius: 22px; padding: 42px 40px; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--red), var(--navy)); }
.price-label { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.price-amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.price-amount .num { font-family: var(--font-head); font-size: 4.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-amount .cur { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--red); }
.price-amount .per { color: var(--muted); font-size: 1rem; }
.price-note { color: var(--muted); font-size: .9rem; margin-bottom: 26px; }
.price-card .check-list li { padding: 9px 0 9px 30px; border-bottom: 1px solid var(--line); }
.price-card .check-list li::before { top: 14px; width: 18px; height: 18px; }
.price-card .check-list li:last-child { border-bottom: 0; }
.price-card .btn { margin-top: 26px; width: 100%; }
.price-side { display: flex; flex-direction: column; gap: 16px; }
.info-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.info-box h3 { font-size: 1.02rem; display: flex; align-items: center; gap: 10px; }
.info-box h3 .icon { color: var(--red); width: 22px; height: 22px; }
.info-box p { color: var(--muted); font-size: .93rem; margin: 0; }

/* Roaming */
.roaming { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.roaming p { color: rgba(255,255,255,.82); font-size: 1.05rem; }
.flags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.flag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); font-size: .9rem; font-weight: 600; }
.flag img { width: 20px; height: 15px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.25); }
.roaming-figure { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.big-number { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 26px 22px; text-align: center; }
.big-number .n { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: #ff5c7a; line-height: 1; }
.big-number .l { color: rgba(255,255,255,.8); font-size: .9rem; margin-top: 8px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px 28px; box-shadow: var(--shadow); }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 1.1rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Tracker cards */
.tracker { display: flex; flex-direction: column; }
.tracker .tag { display: inline-block; align-self: flex-start; padding: 4px 12px; border-radius: 999px; background: #eef2ff; color: var(--navy); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.tracker .tag.red { background: #fde8ec; color: var(--red-600); }
.tracker .models { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.25rem; margin-bottom: 4px; }
.tracker .for { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.tracker .check-list { margin-top: auto; }
.spec { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 16px; }
.spec div { background: var(--bg); border-radius: 10px; padding: 10px 12px; font-size: .85rem; }
.spec b { display: block; color: var(--navy); font-size: .95rem; }
.badge-eol { display: inline-block; padding: 3px 10px; border-radius: 999px; background: #fff4e5; color: var(--amber); font-size: .75rem; font-weight: 700; margin-left: 8px; vertical-align: middle; }

/* Feature groups (trackers page) */
.feature-group { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.feature-group h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.feature-group h3 .icon { width: 24px; height: 24px; color: var(--red); }

/* Table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; font-size: .95rem; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .85rem; letter-spacing: .04em; }
tr:last-child td { border-bottom: 0; }
td strong { color: var(--navy); }
tbody tr:nth-child(even) td { background: #fafbfe; }

/* Accessories chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; font-size: .9rem; font-weight: 600; color: var(--navy); box-shadow: var(--shadow); }
.chip .icon { color: var(--red); }

/* Callout */
.callout { display: flex; gap: 16px; align-items: flex-start; background: #fff8e6; border: 1px solid #fde4b3; border-radius: var(--radius); padding: 18px 22px; color: #7a4b00; font-size: .95rem; }
.callout .icon { color: var(--amber); width: 24px; height: 24px; margin-top: 2px; }
.callout p { margin: 0; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--red) 0%, #b8122f 100%); color: #fff; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 48px 20px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin: 0 0 6px; font-size: 1.6rem; }
.cta-band p { margin: 0; color: rgba(255,255,255,.9); }
.cta-band .btn-white { background: #fff; color: var(--red-600); }
.cta-band .btn-white:hover { background: #ffe8ed; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 28px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); box-shadow: var(--shadow); transition: transform .2s ease, border-color .2s ease; }
.contact-card:hover { transform: translateY(-3px); border-color: var(--red); text-decoration: none; }
.contact-card .ci { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--navy); color: #fff; }
.contact-card .ci .icon { width: 26px; height: 26px; }
.contact-card .cl { color: var(--muted); font-size: .85rem; }
.contact-card .cv { font-weight: 600; color: var(--navy); word-break: break-all; }

/* Footer */
.footer { background: var(--navy-900); color: rgba(255,255,255,.75); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 8px; font-size: .92rem; }
.footer a { color: rgba(255,255,255,.75); }
.footer a:hover { color: #fff; }
.footer-logo { background: #fff; border-radius: 10px; padding: 8px 12px; display: inline-block; margin-bottom: 14px; }
.footer-logo img { height: 36px; }
.footer-about { font-size: .92rem; max-width: 340px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.55); }

/* Back to top */
.back-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; z-index: 90; }
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--red); text-decoration: none; }
.back-top .icon { width: 22px; height: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .roaming { grid-template-columns: 1fr; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .header-phone { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero .container { padding-top: 64px; padding-bottom: 64px; }
  .nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 20px; border-top: 1px solid var(--line); }
  .nav .nav-login { display: block; color: var(--red); font-weight: 600; }
  .nav-toggle { display: inline-flex; }
  .btn-login { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .price-card { padding: 32px 24px; }
  .price-amount .num { font-size: 3.4rem; }
  .roaming-figure { grid-template-columns: 1fr 1fr; }
  .cta-band .container { flex-direction: column; text-align: center; }
  th, td { padding: 12px 14px; font-size: .9rem; }
}
@media (max-width: 420px) {
  .logo img { height: 34px; }
  .hero-actions .btn { width: 100%; }
  .roaming-figure { grid-template-columns: 1fr; }
}

/* FAQ (native <details> — content stays in the DOM for search engines) */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; padding: 0 22px; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--red); flex-shrink: 0; transition: transform .2s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin: 0 0 18px; font-size: .97rem; }
