:root {
  --ink: #101312;
  --ink-soft: #343a36;
  --paper: #fbfcf7;
  --paper-2: #eef2e9;
  --line: #d8ded1;
  --lime: #caff3e;
  --teal: #16b8a3;
  --coral: #ff6d4b;
  --yellow: #f3c94b;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(14, 18, 16, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Aptos Display", "Bahnschrift", "Microsoft YaHei", sans-serif;
  background:
    linear-gradient(135deg, rgba(22, 184, 163, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, #fbfcf7, #f4f6ef);
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.announcement {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  color: var(--ink);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.announcement span {
  padding: 0.72rem 1rem;
  text-align: center;
  background: var(--lime);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  color: var(--white);
  background: rgba(16, 19, 18, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--white);
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.05;
}

.brand small {
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.4rem);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-cta {
  padding: 0.72rem 1rem;
  color: var(--ink) !important;
  background: var(--white);
  border: 2px solid var(--lime);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(780px, 84svh);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 12, 11, 0.97), rgba(8, 12, 11, 0.72) 38%, rgba(8, 12, 11, 0.22) 72%),
    url("assets/pdf-products/usa-p01-img01-1585x1585.jpg") center right / cover no-repeat,
    #111715;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 9rem;
  background: linear-gradient(0deg, rgba(16, 19, 18, 0.68), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 12vh, 7.5rem) 0 clamp(3.2rem, 10vh, 5.5rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: min(780px, 100%);
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-copy {
  width: min(590px, 100%);
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.button,
.quote-button,
.filter-button,
.scenario-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.84rem 1.08rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-weight: 950;
  text-align: center;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 8.5rem));
  gap: 0.7rem;
  margin: 0;
}

.hero-stats div {
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  margin-bottom: 0.15rem;
  color: var(--lime);
  font-size: 1.18rem;
  font-weight: 950;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.quick-shop {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 2rem));
  margin: -2.2rem auto 0;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.quick-shop a {
  min-height: 7rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.quick-shop a:last-child {
  border-right: 0;
  background: var(--yellow);
}

.quick-shop strong,
.quick-shop span {
  display: block;
}

.quick-shop strong {
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.quick-shop span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.confidence-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 2rem));
  margin: 1rem auto 0;
  border: 2px solid var(--ink);
  background: var(--ink);
  gap: 1px;
}

.confidence-strip article {
  min-height: 8.5rem;
  padding: 1rem;
  background: var(--paper);
}

.confidence-strip strong,
.confidence-strip span {
  display: block;
}

.confidence-strip strong {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.confidence-strip span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:last-child {
  color: var(--ink-soft);
  line-height: 1.65;
}

.section-heading.narrow {
  display: block;
  width: min(760px, 100%);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.3rem;
}

.filter-button {
  min-height: 2.6rem;
  padding: 0.6rem 0.95rem;
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.filter-button.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.product-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
  margin-bottom: 1rem;
}

.product-tools label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-tools input {
  min-height: 3.1rem;
  padding: 0.75rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 0;
}

.product-tools input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(22, 184, 163, 0.16);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-count {
  margin: -0.6rem 0 1rem;
  color: var(--ink-soft);
  font-weight: 900;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 19, 18, 0.08);
}

.product-card[hidden] {
  display: none;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 16rem;
  padding: 1.2rem;
  border-bottom: 2px solid var(--ink);
}

.product-media.mint {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px 14px),
    var(--lime);
}

.product-media.ebike {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px 14px),
    var(--lime);
}

.product-media.scooter {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26) 0 1px, transparent 1px 14px),
    var(--coral);
}

.product-media.moto {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 14px),
    var(--teal);
}

.product-media.coral {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26) 0 1px, transparent 1px 14px),
    var(--coral);
}

.product-media.teal {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 14px),
    var(--teal);
}

.product-media img {
  width: 100%;
  height: 14.5rem;
  object-fit: contain;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(16, 19, 18, 0.22);
}

.product-card:nth-child(1) .product-media img {
  object-position: 50% 58%;
}

.product-card:nth-child(2) .product-media img {
  object-position: 50% 50%;
}

.product-card:nth-child(3) .product-media img {
  object-position: 50% 48%;
}

.badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.4rem 0.55rem;
  color: var(--white);
  background: var(--ink);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-body {
  padding: 1.1rem;
}

.product-type {
  margin-bottom: 0.35rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.6rem;
}

.price {
  margin-bottom: 1rem;
  font-size: clamp(1.22rem, 2.2vw, 1.6rem);
  font-weight: 950;
}

.reservation-note {
  margin: -0.55rem 0 1rem;
  padding: 0.55rem 0.65rem;
  color: var(--ink);
  background: rgba(202, 255, 62, 0.45);
  border: 1px solid rgba(16, 19, 18, 0.18);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.35;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.product-meta span {
  min-height: 2rem;
  padding: 0.45rem 0.5rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 900;
}

.spec-list {
  display: grid;
  gap: 0.48rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.spec-list li {
  padding-left: 1.15rem;
  background: linear-gradient(var(--teal), var(--teal)) 0 0.62rem / 0.45rem 0.45rem no-repeat;
}

.quote-button {
  width: 100%;
  min-height: 2.85rem;
  color: var(--ink);
  background: var(--white);
}

.quote-button:hover,
.quote-button:focus-visible {
  background: var(--lime);
}

.finder-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(202, 255, 62, 0.15) 0 1px, transparent 1px 18px),
    #111715;
}

.finder-band .eyebrow {
  color: var(--lime);
}

.finder-copy p:last-child {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.finder-panel {
  padding: 1rem;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--lime);
  border-radius: 8px;
}

.scenario-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.scenario-button {
  min-height: 2.7rem;
  padding: 0.6rem;
  background: var(--white);
  border-color: var(--line);
}

.scenario-button.active {
  background: var(--lime);
  border-color: var(--ink);
}

.scenario-result {
  padding: clamp(1.1rem, 4vw, 2rem);
  background:
    linear-gradient(90deg, rgba(22, 184, 163, 0.11), transparent),
    var(--white);
  border: 1px solid var(--line);
}

.result-kicker {
  margin-bottom: 0.35rem;
  color: var(--coral);
  font-weight: 950;
  text-transform: uppercase;
}

.scenario-result h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.scenario-result p:not(.result-kicker) {
  color: var(--ink-soft);
  line-height: 1.65;
}

.result-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0;
}

.result-metrics span {
  padding: 0.52rem 0.65rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-weight: 900;
}

.compare-section {
  padding-bottom: 4rem;
}

.buying-section {
  padding-top: 2rem;
}

.buying-steps,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 2px solid var(--ink);
}

.buying-steps article,
.policy-grid article {
  min-height: 15.5rem;
  padding: 1.1rem;
  background: var(--white);
}

.buying-steps article {
  display: grid;
  align-content: start;
}

.buying-steps span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 2.4rem;
  padding: 0.35rem 0.5rem;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  font-weight: 950;
}

.buying-steps h3,
.policy-grid strong {
  margin-bottom: 0.65rem;
}

.buying-steps p,
.policy-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.policy-grid {
  margin-top: 1rem;
}

.policy-grid article:nth-child(1) {
  background: var(--lime);
}

.policy-grid article:nth-child(2) {
  background: var(--paper);
}

.policy-grid article:nth-child(3) {
  background: #fff5df;
}

.policy-grid article:nth-child(4) {
  background: #ecfbf8;
}

.policy-grid strong {
  display: block;
  font-size: 1.1rem;
}

.media-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 1.18fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 12, 11, 0.93), rgba(8, 12, 11, 0.34)),
    url("assets/pdf-products/ajiu-p02-img01-727x486.jpg") center / cover no-repeat;
}

.media-section .eyebrow {
  color: var(--lime);
}

.media-copy p:last-child {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.video-tile {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 24rem;
  padding: 1.2rem;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, transparent 30%, rgba(8, 12, 11, 0.86)),
    url("assets/pdf-products/ajiu-p02-img55-794x544.jpg") center / cover no-repeat;
  border: 2px solid var(--lime);
}

.video-tile strong,
.video-tile small {
  position: relative;
  z-index: 1;
  display: block;
}

.video-tile strong {
  max-width: 22rem;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1;
}

.video-tile small {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  text-transform: uppercase;
}

.play-mark {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 4.2rem;
  height: 4.2rem;
  background: var(--lime);
  border: 2px solid var(--ink);
}

.play-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 0.82rem solid transparent;
  border-bottom: 0.82rem solid transparent;
  border-left: 1.12rem solid var(--ink);
  transform: translate(-50%, -50%);
}

.compare-wrap {
  overflow-x: auto;
  border: 2px solid var(--ink);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

thead th {
  color: var(--white);
  background: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
}

tbody th {
  font-size: 1rem;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.support-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--paper-2);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 2px solid var(--ink);
}

.support-grid article {
  min-height: 16rem;
  padding: 1.1rem;
  background: var(--white);
}

.support-number {
  display: inline-flex;
  margin-bottom: 2rem;
  color: var(--coral);
  font-size: 0.85rem;
  font-weight: 950;
}

.support-grid h3 {
  margin-bottom: 0.7rem;
}

.support-grid p {
  color: var(--ink-soft);
  line-height: 1.58;
}

.lifestyle-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(20rem, 1.25fr);
  gap: clamp(1.5rem, 5vw, 4rem);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.lifestyle-grid article {
  min-height: 15rem;
  padding: 1rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.28)),
    var(--ink);
  border-top: 0.45rem solid var(--lime);
}

.lifestyle-grid article:nth-child(2) {
  border-color: var(--teal);
}

.lifestyle-grid article:nth-child(3) {
  border-color: var(--coral);
}

.lifestyle-grid span {
  display: block;
  margin-bottom: 4rem;
  color: var(--lime);
  font-weight: 950;
}

.lifestyle-grid h3 {
  margin-bottom: 0.55rem;
}

.lifestyle-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.faq-section {
  padding-top: 2rem;
}

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

details {
  background: var(--white);
  border: 2px solid var(--ink);
}

summary {
  padding: 1rem;
  font-weight: 950;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 1rem;
  padding: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    var(--ink);
}

.contact-section .eyebrow {
  color: var(--lime);
}

.contact-copy p:last-child {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.quote-form {
  display: grid;
  gap: 0.85rem;
  color: var(--ink);
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 0;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--lime);
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--lime);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.4rem 0 2rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 900;
}

@media (max-width: 920px) {
  .announcement {
    grid-template-columns: 1fr;
  }

  .announcement span:nth-child(n + 2) {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .nav-links a {
    padding: 0.7rem;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 82svh;
    background:
      linear-gradient(180deg, rgba(8, 12, 11, 0.9), rgba(8, 12, 11, 0.54) 56%, rgba(8, 12, 11, 0.96)),
      url("assets/pdf-products/usa-p01-img01-1585x1585.jpg") 62% center / cover no-repeat,
      #111715;
  }

  .hero-inner {
    padding-top: 5.5rem;
  }

  .quick-shop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .confidence-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-shop a {
    border-bottom: 1px solid var(--line);
  }

  .quick-shop a:nth-child(2) {
    border-right: 0;
  }

  .quick-shop a:nth-child(n + 3) {
    border-bottom: 0;
  }

  .section-heading,
  .finder-band,
  .media-section,
  .lifestyle-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .buying-steps,
  .policy-grid,
  .support-grid,
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .buying-steps article,
  .policy-grid article,
  .support-grid article,
  .lifestyle-grid article {
    min-height: auto;
  }

  .lifestyle-grid span {
    margin-bottom: 2rem;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    width: min(100%, 18rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-shop {
    grid-template-columns: 1fr;
  }

  .confidence-strip,
  .product-tools {
    grid-template-columns: 1fr;
  }

  .quick-shop a,
  .quick-shop a:nth-child(2),
  .quick-shop a:nth-child(n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-shop a:last-child {
    border-bottom: 0;
  }

  .scenario-tabs {
    grid-template-columns: 1fr;
  }

  .contact-section {
    width: 100%;
    margin-bottom: 0;
    padding-inline: 1rem;
  }
}
