﻿@font-face {
  font-family: "Sora";
  src: url("../assets/fonts/sora-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../assets/fonts/sora-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../assets/fonts/sora-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../assets/fonts/sora-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("../assets/fonts/work-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("../assets/fonts/work-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("../assets/fonts/work-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #f2f6fb;
  --surface: #ffffff;
  --ink: #10243f;
  --muted: #5f6c7d;
  --primary: #0d274a;
  --primary-strong: #081a31;
  --accent: #0a3161;
  --accent-strong: #092a53;
  --usa-red: #bf0a30;
  --usa-blue: #0a3161;
  --usa-light: #d8e8fb;
  --line: #d8e0ec;
  --shadow: 0 20px 44px rgba(10, 31, 60, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Work Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--accent-strong);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section h2,
.section h3,
.hero h1,
.hero h2,
.brand {
  font-family: "Sora", "Segoe UI", sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(8, 28, 54, 0.08);
  backdrop-filter: blur(10px);
}

.usa-ribbon {
  background: linear-gradient(90deg, var(--usa-blue), #113f78 55%, #1e4f8d);
  color: #f2f7ff;
  border-bottom: 1px solid rgba(229, 239, 255, 0.28);
  position: relative;
}

.usa-ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--usa-red) 0 14px,
    #ffffff 14px 28px
  );
}

.usa-ribbon-inner {
  min-height: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  font-size: 0.76rem;
  font-weight: 600;
}

.usa-ribbon-left {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.usa-ribbon-left p {
  margin: 0;
  letter-spacing: 0.02em;
}

.flag-icon {
  width: 28px;
  height: 18px;
  border-radius: 2px;
  overflow: hidden;
  background: repeating-linear-gradient(
    to bottom,
    var(--usa-red) 0 2px,
    #ffffff 2px 4px
  );
  border: 1px solid rgba(255, 255, 255, 0.55);
  position: relative;
  flex: 0 0 auto;
}

.flag-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 52%;
  background: var(--usa-blue);
}

.flag-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 6px;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 3px 3px;
}

.star-row {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.star-row span {
  width: 0.55rem;
  height: 0.55rem;
  background: #ffffff;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 92%,
    50% 71%,
    21% 92%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.4rem;
  gap: 1.5rem;
}

.brand {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0 auto;
  background: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% -8%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(140deg, #0b2a50 0%, #0a2341 65%, #081a31 100%);
  padding: 5.5rem 0 4.7rem;
}

.hero::before {
  content: "";
  position: absolute;
  right: -130px;
  top: -20px;
  width: 330px;
  height: calc(100% + 30px);
  background: linear-gradient(
    180deg,
    rgba(191, 10, 48, 0.23),
    rgba(10, 49, 97, 0.08)
  );
  transform: skewX(-18deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 31px, rgba(255, 255, 255, 0.06) 32px), linear-gradient(90deg, transparent 31px, rgba(255, 255, 255, 0.06) 32px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.35fr 1fr;
  align-items: start;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.16;
  color: #f3f8ff;
}

.hero-subhead {
  color: #c9d8ec;
  margin: 1rem 0 1rem;
  font-size: 1.04rem;
  max-width: 45ch;
}

.hero .eyebrow {
  color: #9fc0eb;
}

.usa-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
}

.usa-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  border-radius: 999px;
  background: #e7f0fc;
  color: var(--usa-blue);
  border: 1px solid #c9dbf3;
  padding: 0.2rem 0.58rem;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.usa-chip::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: var(--usa-red);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 92%,
    50% 71%,
    21% 92%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.usa-chip-outline {
  background: #ffffff;
  border-color: #cfdcf1;
}

.usa-chip-outline::before {
  background: var(--usa-blue);
}

.hero-panel {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  color: #f2f7ff;
  border: 1px solid rgba(210, 228, 255, 0.32);
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
  padding: 1.4rem 1.45rem;
}

.hero-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.hero-panel ul {
  margin: 0;
  padding-left: 1.05rem;
}

.hero-panel li + li {
  margin-top: 0.45rem;
}

.hero .btn-accent {
  background: linear-gradient(135deg, var(--usa-red), #d22f54 70%, #e14d6f);
  box-shadow: 0 12px 20px rgba(191, 10, 48, 0.34);
}

.hero .btn-accent:hover,
.hero .btn-accent:focus-visible {
  box-shadow: 0 16px 24px rgba(191, 10, 48, 0.4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  border: 1px solid transparent;
  padding: 0.68rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-accent {
  color: #ffffff;
  background: linear-gradient(135deg, var(--usa-blue), #1a4f8d 70%, #245b9c);
  box-shadow: 0 10px 20px rgba(10, 49, 97, 0.26);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  box-shadow: 0 14px 22px rgba(10, 49, 97, 0.3);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--primary);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--usa-red);
  color: var(--usa-blue);
}

.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid #c9d8ec;
  border-radius: 0.7rem;
  background: linear-gradient(180deg, #f9fbff, #f2f7ff);
  border-top: 4px solid var(--usa-red);
  padding: 0.75rem 0.9rem;
}

.carrier-band {
  background: linear-gradient(180deg, #081d37 0%, #082540 100%);
  border-top: 1px solid rgba(201, 220, 247, 0.17);
  border-bottom: 1px solid rgba(201, 220, 247, 0.17);
  padding: 1rem 0 1.15rem;
}

.carrier-shell {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.carrier-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #9cb9df;
}

.carrier-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 1fr));
  gap: 0.65rem;
  width: min(100%, 620px);
}

.carrier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 2.35rem;
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(213, 229, 251, 0.48);
  border-radius: 0.62rem;
  background: #ffffff;
}

.carrier-badge img {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  object-fit: contain;
}

.carrier-name {
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #122136;
}

.carrier-badge:nth-child(1) .carrier-name {
  color: #1f2630;
}

.carrier-badge:nth-child(2) .carrier-name {
  color: #0077b6;
}

.carrier-badge:nth-child(3) .carrier-name {
  color: #d4016b;
}

.carrier-note {
  margin: 0;
  width: 100%;
  font-size: 0.72rem;
  color: #88a4ca;
}

#products {
  background: linear-gradient(180deg, #0a2341 0%, #081d37 100%);
}

#products .section-head h2,
#products .section-head p {
  color: #e4eefc;
}

#products .section-head .eyebrow {
  color: #96b8e5;
}

.listing-count {
  margin: 0;
  font-weight: 600;
  color: var(--usa-blue);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.listing-count::before {
  content: "";
  width: 0.85rem;
  height: 0.58rem;
  border-radius: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--usa-red) 0 1px,
    #ffffff 1px 2px
  );
  box-shadow: inset 0 0 0 1px #cddaf0;
}

.listing-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.listing-filters a {
  border: 1px solid #bdd3ee;
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  color: var(--usa-blue);
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
}

.listing-filters a:hover,
.listing-filters a:focus-visible {
  border-color: var(--usa-red);
  color: var(--usa-red);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.product-card {
  display: grid;
  grid-template-columns: 235px 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--usa-blue);
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(12, 36, 65, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:nth-child(even) {
  border-left-color: var(--usa-red);
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: #b6c8de;
  box-shadow: 0 14px 28px rgba(11, 33, 58, 0.09);
}

.product-card > .product-media:not(.callout-collage) {
  display: block;
  height: 100%;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.product-card > .product-media:not(.callout-collage) > img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.product-card:hover > .product-media:not(.callout-collage) > img,
.product-card:focus-within > .product-media:not(.callout-collage) > img {
  transform: scale(1.02);
}

.product-card.callout {
  background: linear-gradient(155deg, #0f2c53 0%, #123e77 64%, #bf0a30 140%);
  color: #f4f8ff;
  border-left-color: #ffffff;
}

.product-card.callout .listing-id,
.product-card.callout .product-meta,
.product-card.callout p,
.product-card.callout li {
  color: #e0ebff;
}

.product-card.callout .product-body li {
  background: rgba(205, 228, 255, 0.12);
  border-color: rgba(214, 234, 255, 0.24);
}

.callout-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.75rem;
  align-content: center;
  background: linear-gradient(165deg, #0f2f56, #0c2a4d);
  border-right: 1px solid rgba(223, 236, 255, 0.24);
}

.callout-collage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 36, 66, 0) 55%, rgba(8, 26, 49, 0.72) 100%);
  pointer-events: none;
}

.callout-collage img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.48rem;
  border: 1px solid rgba(221, 235, 255, 0.24);
  box-shadow: 0 8px 16px rgba(5, 20, 38, 0.25);
}

.callout-collage-label {
  position: absolute;
  left: 0.8rem;
  bottom: 0.75rem;
  z-index: 1;
  color: #f3f8ff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 0.46rem;
  padding: 0.95rem 1rem;
}

.product-body h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
}

.listing-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.listing-id {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #24527d;
}

.product-body .usa-chip {
  font-size: 0.67rem;
  padding: 0.16rem 0.5rem;
}

.product-card.callout .usa-chip {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.33);
}

.product-card.callout .usa-chip::before {
  background: #ffffff;
}

.product-meta {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 500;
}

.product-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.product-body li {
  margin: 0;
  border: 1px solid #d5e1ef;
  border-radius: 999px;
  padding: 0.18rem 0.56rem;
  font-size: 0.77rem;
  line-height: 1.35;
  color: #2a4360;
  background: #f7fbff;
}

.product-body p {
  margin: 0;
  color: #314358;
}

.card-actions {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.detail-section {
  background: #eef3fa;
}

.detail-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: start;
  gap: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(11, 34, 61, 0.08);
}

.detail-card + .detail-card {
  margin-top: 1rem;
}

.detail-media {
  display: block;
}

.detail-card img {
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: #f8fbff;
}

.detail-card h3 {
  margin: 0 0 0.5rem;
}

.detail-card h4 {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.detail-card p {
  margin: 0 0 0.65rem;
  color: #314358;
}

.detail-card ul {
  margin: 0 0 0.75rem;
  padding-left: 1.08rem;
}

.detail-card .benefit-list {
  margin-bottom: 0.65rem;
}

.detail-card li + li {
  margin-top: 0.28rem;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.95rem;
}

.use-case-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--usa-blue);
  border-radius: 0.8rem;
  padding: 1rem;
}

.use-case-grid article:nth-child(even) {
  border-top-color: var(--usa-red);
}

.use-case-grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.use-case-grid h3::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  background: var(--usa-red);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 92%,
    50% 71%,
    21% 92%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.use-case-grid p {
  margin: 0;
  color: #36465b;
}

.why {
  background: linear-gradient(160deg, #0c2444, #081a31);
  color: #e7f0ff;
  border-top: 5px solid var(--usa-red);
  border-bottom: 5px solid var(--usa-blue);
}

.why .eyebrow {
  color: #7fd4f3;
}

.why-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
}

.why p {
  color: #d0ddf4;
}

.why ul {
  margin: 0;
  padding-left: 1.2rem;
}

.why li + li {
  margin-top: 0.5rem;
}

.usa-office {
  background: linear-gradient(180deg, #0a1f3b 0%, #0a2341 100%);
}

.office-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(206, 223, 247, 0.24);
  border-left: 4px solid var(--usa-red);
  border-radius: 0.9rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
}

.office-card h2 {
  margin: 0;
  color: #edf4ff;
}

.office-card p {
  margin: 0.45rem 0 0;
  color: #c3d7f2;
}

.office-card .eyebrow {
  color: #9fc0eb;
}

.office-note {
  font-size: 0.82rem;
  color: #9ab2d3;
}

.contact-box {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #cad8eb;
  border-top: 4px solid var(--usa-blue);
  border-radius: 0.9rem;
  padding: 1.2rem;
  background: linear-gradient(160deg, #ffffff, #f4f8ff);
  box-shadow: 0 8px 20px rgba(13, 38, 67, 0.07);
}

.contact-box h2 {
  margin: 0;
}

.contact-box p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.legal-page {
  background: linear-gradient(180deg, #0a1f3b 0%, #0b2749 100%);
}

.legal-main {
  min-height: calc(100vh - 220px);
}

.legal-card {
  max-width: 920px;
  background: #ffffff;
  border: 1px solid #cedbeb;
  border-radius: 0.95rem;
  box-shadow: 0 14px 30px rgba(9, 29, 52, 0.18);
  padding: 1.35rem;
}

.legal-card h1,
.legal-card h2 {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: #10243f;
}

.legal-card h1 {
  margin: 0.2rem 0 0.35rem;
  font-size: 1.9rem;
}

.legal-card h2 {
  margin: 1.1rem 0 0.35rem;
  font-size: 1.12rem;
}

.legal-card p,
.legal-card li {
  color: #314358;
}

.legal-card ul {
  margin: 0.3rem 0 0;
  padding-left: 1.15rem;
}

.legal-updated {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: #617187;
}

.legal-nav {
  display: flex !important;
}

.faq-section {
  background: linear-gradient(180deg, #0b2241 0%, #0a1f3b 100%);
}

.faq-section .section-head h2,
.faq-section .section-head p {
  color: #e4eefc;
}

.faq-section .section-head .eyebrow {
  color: #9ab9e3;
}

.faq-list {
  display: grid;
  gap: 0.68rem;
}

.faq-list details {
  border: 1px solid rgba(214, 229, 251, 0.26);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #f2f7ff;
  padding: 0.9rem 1rem;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9fc0eb;
  font-size: 1rem;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 1rem 0.95rem;
  color: #c6d9f3;
  line-height: 1.55;
}

.site-footer {
  border-top: 4px solid var(--usa-red);
  background: #ffffff;
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.3fr auto;
  align-items: start;
}

.site-footer h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.site-footer p {
  margin: 0.3rem 0 0;
  color: var(--muted);
}

.affiliate-disclaimer {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  font-size: 0.84rem;
  color: #5f6f84;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer nav a {
  color: var(--primary);
  font-weight: 600;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--line);
  font-size: 0.9rem;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(10, 49, 97, 0.35);
  outline-offset: 2px;
}

@media (max-width: 920px) {
  .hero-grid,
  .why-grid,
  .product-card,
  .detail-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card > .product-media:not(.callout-collage) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-card > .product-media:not(.callout-collage) > img {
    min-height: 170px;
  }

  .callout-collage {
    border-right: 0;
    border-bottom: 1px solid rgba(223, 236, 255, 0.24);
  }

  .listing-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .carrier-badges {
    width: 100%;
  }

  .usa-ribbon-inner {
    min-height: 2.45rem;
  }

  .usa-ribbon-left p {
    font-size: 0.72rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    padding: 0.85rem 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .site-nav.open {
    display: flex;
  }

  .legal-page .legal-nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .nav-toggle {
    display: flex;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .office-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 1.6rem));
  }

  .section {
    padding: 3.4rem 0;
  }

  .hero {
    padding-top: 4.4rem;
  }

  .listing-filters a {
    font-size: 0.74rem;
  }

  .carrier-badges {
    grid-template-columns: 1fr;
  }

  .carrier-badge {
    justify-content: center;
  }

  .star-row {
    display: none;
  }

  .hero::before {
    width: 220px;
    right: -110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

