/* Premier Shipping Containers concept: shared inner-page components.
   Page-specific styles live in css/p-<slug>.css (declared with `css:` in the page header). */

/* ---------- nav dropdowns ---------- */
.nav a, .nav-drop-btn { padding: 10px 12px; }
.nav-drop { position: relative; }
.nav-drop-btn { display: inline-flex; align-items: center; gap: 6px; background: none; border: 0; color: var(--white); font-family: var(--font-head); font-weight: 500; font-size: 18px; letter-spacing: .05em; text-transform: uppercase; border-radius: 4px; white-space: nowrap; }
.nav-drop-btn svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.nav-drop[data-current] > .nav-drop-btn { color: var(--blue); }
.nav a[aria-current="page"] { color: var(--blue); }
.nav-drop-menu { position: absolute; top: calc(100% + 6px); left: 50%; min-width: 230px; transform: translate(-50%, 8px); background: var(--navy); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 8px; box-shadow: 0 24px 50px -20px rgba(0,0,0,.7); opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s var(--ease), visibility .25s; display: grid; }
.nav-drop-menu::before { content: ""; position: absolute; inset: -12px 0 auto 0; height: 12px; }
.nav-drop-menu a { font-size: 17px; padding: 10px 14px; border-radius: 6px; }
.nav-drop-menu a::after { display: none; }
.nav-drop-menu a:hover, .nav-drop-menu a:focus-visible { background: rgba(79,163,209,.14); color: var(--blue); }
@media (hover: hover) and (min-width: 1241px) {
  .nav-drop:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
  .nav-drop:hover .nav-drop-btn svg { transform: rotate(180deg); }
}
.nav-drop-btn[aria-expanded="true"] + .nav-drop-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-drop-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
@media (max-width: 1240px) {
  body.nav-open .nav { justify-content: flex-start; padding: 110px 24px 40px; overflow-y: auto; gap: 2px; }
  body.nav-open .nav > a, body.nav-open .nav-drop-btn { font-size: 30px; }
  body.nav-open .nav-drop { display: grid; justify-items: center; }
  body.nav-open .nav-drop-menu { position: static; transform: none; opacity: 1; visibility: visible; display: none; background: transparent; border: 0; box-shadow: none; padding: 0 0 8px; min-width: 0; justify-items: center; }
  body.nav-open .nav-drop-btn[aria-expanded="true"] + .nav-drop-menu { display: grid; transform: none; }
  body.nav-open .nav-drop-menu a { font-size: 20px; padding: 6px 12px; color: rgba(255,255,255,.8); }
}
.header.is-always-solid { background: rgba(11,37,50,.97); }

/* ---------- inner hero ---------- */
.page-hero { position: relative; min-height: min(78dvh, 760px); display: grid; align-items: end; color: var(--white); background: var(--navy); overflow: hidden; isolation: isolate; }
.page-hero--short { min-height: min(52dvh, 520px); }
.page-hero--plain { min-height: 0; }
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img, .page-hero-media video { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,37,50,.7) 0%, rgba(11,37,50,.45) 45%, rgba(11,37,50,.94) 100%); }
.page-hero .wrap { position: relative; padding-top: 150px; padding-bottom: clamp(48px, 6vw, 80px); width: min(1440px, 100% - 2 * var(--gutter)); }
.page-hero--plain .wrap { padding-top: 140px; padding-bottom: 56px; }
.page-hero h1 { font-size: clamp(42px, 5.4vw, 76px); max-width: 980px; margin-top: 18px; }
.page-hero h1 em { font-style: normal; color: var(--blue); }
.page-hero .hero-sub { max-width: 680px; }
.page-hero .hero-actions { margin-top: 30px; }
.page-hero.has-float .wrap { padding-bottom: clamp(110px, 12vw, 150px); }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-family: var(--font-head); font-size: 16px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); margin: 0; padding: 0; list-style: none; }
.crumbs a:hover { color: var(--blue); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--blue); }
.crumbs [aria-current] { color: var(--blue); }
.hero-ghost { position: absolute; right: -2vw; bottom: -3vw; z-index: -1; font-family: var(--font-head); font-weight: 700; font-size: clamp(140px, 22vw, 340px); line-height: .8; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.12); text-transform: uppercase; pointer-events: none; user-select: none; }

/* ---------- floating review card that overlaps the hero ---------- */
.review-float-wrap { position: relative; z-index: 3; margin-top: clamp(-90px, -8vw, -70px); }
.review-float { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; background: var(--white); border-radius: 14px; padding: 24px 28px; box-shadow: var(--shadow); border: 1px solid var(--line); max-width: 1000px; }
.review-float .avatar { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--rust); color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 26px; }
.review-float blockquote { margin: 0; font-size: 16px; line-height: 1.55; color: var(--text); }
.review-float cite { display: block; margin-top: 8px; font-style: normal; font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; color: var(--navy); font-size: 17px; }
.review-float cite .stars { color: var(--gold); letter-spacing: 2px; margin-left: 8px; font-size: 14px; }
.g-score { display: grid; justify-items: center; gap: 2px; padding-left: 22px; border-left: 1px solid var(--line); text-align: center; }
.g-score b { font-family: var(--font-head); font-size: 40px; line-height: 1; color: var(--navy); }
.g-score .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.g-score small { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: inline-flex; gap: 6px; align-items: center; }
.g-score small svg { width: 14px; height: 14px; }
@media (max-width: 760px) {
  .review-float { grid-template-columns: auto 1fr; padding: 20px; }
  .g-score { grid-column: 1 / -1; grid-template-columns: auto auto auto; gap: 10px; justify-content: start; align-items: center; border-left: 0; border-top: 1px solid var(--line); padding: 14px 0 0; }
  .g-score b { font-size: 30px; }
}

/* ---------- section helpers ---------- */
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy .sec-head p, .section--navy .muted { color: rgba(255,255,255,.75); }
.section--navy .eyebrow { color: var(--blue); }
.sec-head.center { margin-inline: auto; }
.sec-head.center p { margin-inline: auto; }
.lead { font-size: 18px; line-height: 1.65; color: var(--muted); }
.section--navy .lead { color: rgba(255,255,255,.8); }
.muted { color: var(--muted); }
.stripes { position: relative; isolation: isolate; }
.stripes::before { content: ""; position: absolute; inset: 0; z-index: -1; background: repeating-linear-gradient(90deg, rgba(255,255,255,.028) 0 2px, transparent 2px 22px); pointer-events: none; }

/* ---------- sticky type switcher (jumps between product rows) ---------- */
.switcher { position: sticky; top: 67px; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); }
.switcher .wrap { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-block: 12px; }
.switcher .wrap::-webkit-scrollbar { display: none; }
.switch { position: relative; flex: none; display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: 17px; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); background: var(--white); transition: background .25s, color .25s, border-color .25s; white-space: nowrap; }
.switch svg { width: 22px; height: 22px; color: var(--blue-deep); }
.switch:hover { border-color: var(--blue); }
.switch.is-on { background: var(--navy); color: var(--white); border-color: var(--navy); }
.switch.is-on svg { color: var(--blue); }

/* ---------- type cards (intro chooser, bigger than switch chips) ---------- */
.type-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }
.type-card { display: grid; justify-items: center; gap: 12px; width: 180px; padding: 22px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 18px; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); text-align: center; line-height: 1.1; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.type-card svg { width: 48px; height: 48px; color: var(--blue-deep); }
.type-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 18px 36px -24px rgba(11,37,50,.6); }

/* ---------- product row: copy + media ---------- */
.prod { scroll-margin-top: 140px; }
.prod-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.prod-grid > * { min-width: 0; }
.prod--flip .prod-media { order: -1; }
.prod-copy h2 { font-size: clamp(34px, 3.6vw, 48px); margin-top: 12px; }
.prod-copy > p { margin-top: 18px; color: var(--muted); }
.section--navy .prod-copy > p { color: rgba(255,255,255,.78); }
.uses { margin-top: 26px; }
.uses h3 { font-size: 20px; font-weight: 600; color: var(--navy); letter-spacing: .04em; }
.section--navy .uses h3 { color: var(--white); }
.uses > p { margin-top: 8px; font-size: 15px; color: var(--muted); }
.section--navy .uses > p { color: rgba(255,255,255,.7); }
.checks { list-style: none; margin: 14px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.45; }
.checks li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%; background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e6a8f' stroke-width='3'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 13px no-repeat; }
.section--navy .checks li::before { background-color: rgba(79,163,209,.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234fa3d1' stroke-width='3'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E"); }
.checks--one { grid-template-columns: 1fr; }
@media (max-width: 520px) { .checks { grid-template-columns: 1fr; } }
.prod-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.prod-actions .btn { min-height: 46px; padding-inline: 18px; font-size: 16px; }
.section--navy .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.55); }
.section--navy .btn-ghost:hover { background: var(--white); color: var(--navy); }
.media-badge { position: absolute; left: 16px; top: 16px; z-index: 2; background: var(--navy); color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; padding: 7px 12px; border-radius: 6px; }
.media-badge--blue { background: var(--blue); color: var(--ink); }
@media (max-width: 900px) { .prod-grid { grid-template-columns: 1fr; } .prod--flip .prod-media { order: 0; } }

/* ---------- carousel ---------- */
.carousel { position: relative; }
.carousel-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; border-radius: 12px; background: var(--navy); }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { flex: 0 0 100%; scroll-snap-align: start; margin: 0; aspect-ratio: 4 / 3; }
.carousel-track img { width: 100%; height: 100%; object-fit: cover; }
.carousel-ui { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 14px; }
.carousel-dots { display: flex; gap: 0; margin-left: -17px; }
.carousel-dots button { position: relative; width: 44px; height: 44px; padding: 0; border: 0; background: none; transition: width .3s var(--ease); }
.carousel-dots button::before { content: ""; position: absolute; left: 17px; right: 17px; top: 17px; height: 10px; border-radius: 999px; background: #c4ccd1; transition: background .3s; }
.carousel-track:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.carousel-dots button[aria-current="true"]::before { left: 6px; right: 6px; }
.carousel-dots button[aria-current="true"]::before { background: var(--blue); }
.section--navy .carousel-dots button::before { background: rgba(255,255,255,.3); }
.section--navy .carousel-dots button[aria-current="true"]::before { background: var(--blue); }
.carousel-nav { display: flex; gap: 8px; }
.carousel-nav button { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--navy); transition: background .25s, color .25s; }
.carousel-nav button:hover { background: var(--navy); color: var(--white); }
.carousel-nav svg { width: 18px; height: 18px; }
.section--navy .carousel-nav button { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.section--navy .carousel-nav button:hover { background: var(--white); color: var(--navy); }
.carousel .media-badge { top: 16px; }

/* ---------- steps band ---------- */
.steps-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 32px); counter-reset: step; position: relative; }
.steps-grid > * { min-width: 0; }
.steps-grid::before { content: ""; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, rgba(79,163,209,.55) 0 10px, transparent 10px 18px); }
.step { position: relative; text-align: center; counter-increment: step; }
.step-icon { position: relative; width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%; background: var(--blue); color: var(--ink); display: grid; place-items: center; box-shadow: 0 0 0 8px var(--step-bg, var(--white)), 0 0 0 9px rgba(79,163,209,.35); }
.section--navy { --step-bg: var(--navy); }
.section--paper { --step-bg: var(--paper); }
.step-icon svg { width: 32px; height: 32px; }
.step-icon::after { content: counter(step, decimal-leading-zero); position: absolute; right: -10px; top: -6px; font-family: var(--font-head); font-weight: 700; font-size: 15px; background: var(--navy); color: var(--white); border-radius: 999px; padding: 2px 8px; }
.section--navy .step-icon::after { background: var(--white); color: var(--navy); }
.step h3 { font-size: 24px; font-weight: 600; color: var(--navy); }
.step p { margin-top: 10px; font-size: 15px; color: var(--muted); }
.section--navy .step h3 { color: var(--white); }
.section--navy .step p { color: rgba(255,255,255,.75); }
.steps-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: clamp(40px, 5vw, 60px); }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; } .steps-grid::before { display: none; } }
@media (max-width: 520px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---------- compact quality grid (inner pages) ---------- */
.quality--compact .quality-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1100px) { .quality--compact .quality-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .quality--compact .quality-grid { grid-template-columns: 1fr; } .quality-head { grid-template-columns: 1fr; } .quality-head p { justify-self: start; } }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 900px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 10px; transition: border-color .3s, box-shadow .3s; }
.faq-item[open] { border-color: rgba(79,163,209,.6); box-shadow: 0 16px 36px -28px rgba(11,37,50,.55); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 17px; color: var(--navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e6a8f' stroke-width='2.6'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat; transition: transform .35s var(--ease), background-color .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); background-color: var(--blue); }
.faq-item summary:hover { color: var(--blue-deep); }
.faq-a { padding: 0 24px 22px; color: var(--muted); font-size: 16px; }
.faq-a p + p { margin-top: 10px; }
.faq-cat { max-width: 900px; margin: clamp(40px, 5vw, 56px) auto 16px; display: flex; align-items: center; gap: 14px; }
.faq-cat:first-child { margin-top: 0; }
.faq-cat h2, .faq-cat h3 { font-size: clamp(26px, 2.6vw, 32px); color: var(--navy); }
.faq-cat .n { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--blue-deep); border: 1px solid currentColor; border-radius: 999px; padding: 2px 10px; }

/* ---------- data tables ---------- */
.table-wrap { position: relative; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
table.data { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 560px; }
table.data th, table.data td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
table.data thead th { background: var(--navy); color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 16px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
table.data tbody tr:nth-child(even) { background: #f8fafb; }
table.data tbody tr:last-child td, table.data tbody tr:last-child th { border-bottom: 0; }
table.data tbody th { font-weight: 600; color: var(--navy); white-space: nowrap; }
table.data .price { font-family: var(--font-head); font-weight: 600; font-size: 19px; color: var(--navy); white-space: nowrap; }
.table-note { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ---------- generic split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split > * { min-width: 0; }
.split-media { position: relative; border-radius: 12px; overflow: hidden; margin: 0; background: var(--navy); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split h2 { margin-top: 12px; }
.split .lead, .split p { margin-top: 16px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ---------- cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 26px); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -30px rgba(11,37,50,.55); }
.card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy); margin: 0; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 22px 22px 26px; display: grid; gap: 10px; align-content: start; flex: 1; }
.card-body h3 { font-size: 24px; font-weight: 600; color: var(--navy); line-height: 1.05; }
.card-body p { font-size: 15px; color: var(--muted); }
.card-body .link-arrow { margin-top: auto; padding-top: 6px; font-size: 16px; }
@media (max-width: 1000px) { .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------- forms ---------- */
.form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: grid; gap: 7px; }
.field label, .field legend { font-weight: 600; font-size: 15px; color: var(--navy); padding: 0; }
.field label .req, .field legend .req { color: var(--rust); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 16px; color: var(--text); background: var(--white); border: 1px solid #cfd6db; border-radius: 8px; padding: 13px 14px; min-height: 50px; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(79,163,209,.2); }
fieldset.field { border: 0; margin: 0; padding: 0; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pills label { position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border: 1px solid #cfd6db; border-radius: 999px; font-weight: 500; font-size: 15px; color: var(--text); cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.pills input { position: absolute; opacity: 0; pointer-events: none; }
.pills label:has(input:checked) { background: var(--navy); border-color: var(--navy); color: var(--white); }
.pills label:has(input:focus-visible) { outline: 3px solid var(--blue); outline-offset: 2px; }
.form-group-title { font-family: var(--font-head); font-weight: 600; font-size: 24px; text-transform: uppercase; color: var(--navy); padding-top: 12px; border-top: 1px solid var(--line); margin-top: 8px; }
.form-note { font-size: 14px; color: var(--muted); }
.form-status { display: none; padding: 14px 16px; border-radius: 8px; background: var(--blue-soft); color: var(--navy); font-weight: 500; }
.form-status.is-on { display: block; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- icon panels ---------- */
.panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: clamp(24px, 3vw, 36px); display: grid; gap: 14px; align-content: start; }
.panel-icon { width: 60px; height: 60px; border-radius: 14px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; }
.panel-icon svg { width: 30px; height: 30px; }
.panel h3 { font-size: 26px; font-weight: 600; color: var(--navy); }
.panel p { color: var(--muted); font-size: 15px; }
@media (max-width: 760px) { .panel-grid { grid-template-columns: 1fr; } }

/* ---------- doc links ---------- */
.doc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.doc-list a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; font-weight: 600; color: var(--navy); transition: border-color .25s, background .25s; }
.doc-list a:hover { border-color: var(--blue); background: #f6fbfe; }
.doc-list svg { width: 22px; height: 22px; color: var(--rust); flex: none; }
.doc-list small { margin-left: auto; font-weight: 500; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .carousel-track { scroll-behavior: auto; }
  .card, .card-media img, .type-card, .faq-item summary::after { transition: none; }
}

/* inline text links */
.link-inline { color: var(--blue-deep); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.section--navy .link-inline { color: var(--blue); }

/* header fit between the burger breakpoint and full desktop */
@media (min-width: 1241px) and (max-width: 1459px) {
  .header .wrap { gap: 16px; }
  .header-phone { display: none; }
  .nav a, .nav-drop-btn { padding: 10px 9px; font-size: 17px; }
}
