:root {
  --ink: #060606;
  --muted: #646464;
  --soft: #f6f6f6;
  --paper: #ffffff;
  --white: #ffffff;
  --green: #e30613;
  --green-dark: #080808;
  --green-soft: #ffe3e6;
  --yellow: #e30613;
  --yellow-soft: #ffe7e9;
  --red: #e30613;
  --blue: #242424;
  --line: #dedede;
  --shadow: 0 18px 50px rgba(6, 6, 6, 0.14);
  --radius: 8px;
  --max: 1180px;
  --header: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(6, 6, 6, 0.12);
  backdrop-filter: blur(14px);
}

.top-strip {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.88rem;
}

.top-strip .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.top-strip__right {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.nav-bar {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 190px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--white) url("../images/a2z-drive-logo-mark.png") center / 112% no-repeat;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(6, 6, 6, 0.12);
  font-weight: 950;
  font-size: 0;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-text strong {
  font-size: 1.2rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: var(--green-soft);
  color: var(--green-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
}

.icon::before {
  line-height: 1;
}

.btn,
.icon-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn {
  padding: 13px 18px;
}

.icon-btn {
  width: 46px;
  padding: 0;
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(227, 6, 19, 0.28);
}

.btn-primary:hover {
  background: #b9000b;
}

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

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-soft {
  background: var(--green-soft);
  color: var(--green-dark);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-link {
  background: transparent;
  color: var(--green-dark);
  padding-inline: 0;
}

.hero {
  position: relative;
  min-height: calc(82vh - var(--header));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.88) 42%, rgba(90, 0, 8, 0.62) 72%, rgba(0, 0, 0, 0.42) 100%),
    url("../images/pass-crop-hero-desktop.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 58%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 18px solid rgba(227, 6, 19, 0.28);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(6, 6, 6, 0.46), transparent);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 820px;
  padding: 54px 0 72px;
}

.hero-logo {
  width: 92px;
  height: 92px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 4px;
  background: currentColor;
  border-radius: 99px;
}

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

h1,
.hero-title {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-title span {
  color: #ff2533;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-proof li {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  font-weight: 850;
}

.trust-band {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
}

.trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
  background: var(--white);
}

.trust-item .icon-wrap,
.section-kicker .icon-wrap,
.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-dark);
}

.trust-item strong {
  display: block;
  line-height: 1.15;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-soft {
  background: var(--soft);
}

.section-green {
  background: var(--green-dark);
  color: var(--white);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-weight: 950;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-green .section-kicker {
  color: var(--yellow);
}

.section-green .section-kicker .icon-wrap {
  background: rgba(255, 255, 255, 0.12);
  color: var(--yellow);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-green .section-lead,
.section-green .muted {
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.split-top {
  align-items: start;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.price-card,
.review-card,
.lesson-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(23, 33, 31, 0.06);
}

.card,
.lesson-card,
.info-card {
  padding: 24px;
}

.lesson-card,
.info-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.lesson-card h3,
.info-card h3,
.price-card h3,
.review-card h3 {
  margin-bottom: 4px;
  line-height: 1.18;
}

.lesson-card p,
.info-card p,
.price-card p,
.review-card p {
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.tag-yellow {
  background: var(--yellow-soft);
  color: #5c4700;
}

.tag-red {
  background: #ffe4e7;
  color: #82111b;
}

.price-card {
  position: relative;
  display: grid;
  align-content: start;
  overflow: hidden;
}

.price-card.is-featured {
  border-color: var(--green);
  box-shadow: 0 24px 60px rgba(227, 6, 19, 0.18);
}

.price-card__flag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
  font-size: 0.8rem;
}

.price-card__body {
  padding: 24px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 12px 0 8px;
  font-weight: 950;
  line-height: 1;
}

.price strong {
  font-size: 2.8rem;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  color: var(--muted);
}

.check-list .icon {
  margin-top: 3px;
  color: var(--green);
}

.plain-list .icon {
  margin-top: 3px;
  color: var(--blue);
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.image-panel--portrait img {
  min-height: 640px;
}

.image-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(23, 33, 31, 0.16);
}

.image-note strong {
  line-height: 1.1;
}

.image-note span {
  color: var(--muted);
  font-size: 0.92rem;
}

.journey {
  counter-reset: journey;
  display: grid;
  gap: 14px;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.journey-step::before {
  counter-increment: journey;
  content: counter(journey);
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 950;
  font-size: 1.1rem;
}

.journey-step h3 {
  margin-bottom: 4px;
}

.journey-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.highlight-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.metric {
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.metric strong {
  display: block;
  color: var(--yellow);
  font-size: 1.7rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 750;
}

.section:not(.section-green) .metric-row {
  border: 1px solid var(--line);
  background: var(--line);
}

.section:not(.section-green) .metric {
  background: var(--white);
}

.section:not(.section-green) .metric strong {
  color: var(--green);
}

.section:not(.section-green) .metric span {
  color: var(--muted);
}

.area-board {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(227, 6, 19, 0.08) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
  box-shadow: var(--shadow);
}

.area-node {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
}

.area-node strong {
  line-height: 1.15;
}

.area-node span {
  color: var(--muted);
  font-size: 0.92rem;
}

.availability {
  display: grid;
  gap: 10px;
}

.availability-row {
  display: grid;
  grid-template-columns: 120px 1fr 86px;
  gap: 10px;
  align-items: center;
}

.availability-track {
  height: 12px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--green-soft);
}

.availability-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.availability-row span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.review-card {
  padding: 24px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--yellow);
}

.quote {
  margin-bottom: 18px;
  font-size: 1.04rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 950;
}

.reviewer span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.success-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 300px;
  grid-auto-flow: dense;
  gap: 18px;
  margin-top: 28px;
}

.success-photo {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.success-photo--wide {
  grid-column: span 2;
}

.success-photo--tall {
  grid-row: span 2;
}

.success-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.success-photo figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.78);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.25;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-question {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 950;
}

.faq-question .icon {
  transition: transform 150ms ease;
}

.faq-question[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}

.faq-static .faq-question {
  margin: 0;
  cursor: default;
}

.faq-static .faq-answer {
  display: block;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.page-hero {
  padding: 72px 0 62px;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.98), rgba(90, 0, 7, 0.94)),
    var(--green-dark);
  color: var(--white);
}

.page-hero .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #ff5963;
  text-decoration: none;
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.98;
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.mini-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

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

th {
  background: var(--soft);
  color: var(--green-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
}

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

.form-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-card__actions {
  margin-top: 28px;
  margin-bottom: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
}

.form-note {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 850;
}

.form-note.is-visible {
  display: block;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-method {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
}

.contact-method .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method .feature-icon .icon {
  margin: 0;
}

.contact-method strong,
.contact-method span {
  display: block;
}

.contact-method span {
  color: var(--muted);
  font-size: 0.92rem;
}

.policy {
  max-width: 860px;
}

.policy h2 {
  margin-top: 42px;
}

.policy p,
.policy li {
  color: var(--muted);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
  padding: 58px 0;
}

.footer-main a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-main a:hover {
  color: #ff5963;
}

.footer-main h2,
.footer-main h3 {
  color: var(--white);
}

.footer-main p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: inherit;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.92rem;
}

.no-margin {
  margin: 0;
}

@media (max-width: 1080px) {
  .nav-bar {
    flex-wrap: wrap;
    padding: 12px 0;
    gap: 12px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    overflow-x: auto;
    padding: 0 0 4px;
    scrollbar-width: thin;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .nav-actions .btn {
    display: none;
  }

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

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

  .split,
  .highlight-band,
  .cta-panel,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .cta-panel__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 72px;
  }

  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .top-strip .container {
    justify-content: center;
  }

  .top-strip__right {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    min-height: 72vh;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 58%, rgba(110, 0, 9, 0.38) 100%),
      url("../images/pass-crop-hero-mobile.jpg") center / cover no-repeat;
  }

  .hero::before {
    inset: 28% auto auto 46%;
    width: 88vw;
    border-width: 12px;
  }

  .hero-content {
    padding: 46px 0 64px;
  }

  .hero-logo {
    width: 82px;
    height: 82px;
    margin-bottom: 14px;
  }

  .hero-actions,
  .cta-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof li {
    width: auto;
    font-size: 0.9rem;
    align-items: center;
  }

  .trust-band {
    margin-top: 0;
  }

  .trust-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .success-gallery,
  .form-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .success-photo,
  .success-photo--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .section {
    padding: 62px 0;
  }

  .section-tight {
    padding: 46px 0;
  }

  .image-panel img,
  .image-panel--portrait img {
    min-height: 360px;
  }

  .availability-row {
    grid-template-columns: 92px 1fr;
  }

  .availability-row span:last-child {
    grid-column: 2;
  }

  .contact-method {
    grid-template-columns: 46px 1fr;
  }

  .contact-method > .icon:last-child {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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