:root {
  --navy: #0d1b2a;
  --navy-2: #07111f;
  --ink: #0d1b2a;
  --muted: #5d6877;
  --gold: #e0a020;
  --gold-2: #f2c45b;
  --white: #ffffff;
  --soft: #f7f8fb;
  --line: rgba(19, 32, 51, 0.14);
  --shadow: 0 24px 70px rgba(13, 27, 42, 0.2);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 27, 42, 0.96);
  border-bottom: 1px solid rgba(224, 160, 32, 0.34);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-lockup {
  display: grid;
  gap: 2px;
  align-items: center;
}

.brand-logo,
.custom-logo {
  width: min(260px, 54vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.brand-tagline {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding-left: 4px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 224, 138, 0.85);
  background: linear-gradient(145deg, #f7d77a, var(--gold) 58%, #a86f0c);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  border-radius: 8px;
}

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

.nav-links a,
.nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 650;
  padding: 10px 11px;
  border-radius: 6px;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 40;
  min-width: 240px;
  padding: 8px;
  border: 1px solid rgba(224, 160, 32, 0.32);
  border-radius: 8px;
  background: rgba(13, 27, 42, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  white-space: nowrap;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(224, 160, 32, 0.5);
  background: transparent;
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
}

.hero {
  min-height: calc(100vh - 76px);
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.96) 0%, rgba(13, 27, 42, 0.83) 38%, rgba(13, 27, 42, 0.24) 72%),
    url("../images/automuveconnect-hero.png") center / cover;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 72px 0 48px;
}

.hero-inner,
.section-inner,
.page-hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(44px, 7vw, 86px);
  max-width: 920px;
}

h2 {
  font-size: clamp(30px, 4vw, 50px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 24px;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.84);
  max-width: 650px;
}

.hero-actions,
.actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(224, 160, 32, 0.25);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(224, 160, 32, 0.62);
}

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

.hero-metrics {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 16px;
  max-width: 760px;
}

.metric {
  border-left: 2px solid var(--gold);
  padding: 5px 0 5px 18px;
}

.metric strong {
  display: block;
  font-size: 28px;
  color: var(--gold-2);
  line-height: 1;
}

.metric span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.section {
  padding: 86px 0;
}

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

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-heading p {
  max-width: 560px;
  color: var(--muted);
}

.dark .section-heading p,
.dark .text-muted {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.grid.five {
  grid-template-columns: repeat(5, 1fr);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.08);
}

.dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(224, 160, 32, 0.24);
  box-shadow: none;
}

.card h3 {
  margin-bottom: 12px;
}

.card p,
.text-muted {
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(224, 160, 32, 0.16);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.panel {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.panel.gold {
  background: linear-gradient(145deg, #f2c45b, #e0a020 54%, #a86f0c);
  color: var(--navy);
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.7);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.95), rgba(13, 27, 42, 0.76)),
    url("../images/automuveconnect-hero.png") center / cover;
  color: var(--white);
  padding: 88px 0;
}

.page-hero p {
  margin-top: 20px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 86px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.compact-steps .step {
  padding-left: 28px;
  padding-top: 76px;
}

.compact-steps .step::before {
  left: 28px;
}

.verification-grid .card h3 {
  min-height: 48px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.quote-hero {
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.96), rgba(13, 27, 42, 0.74)),
    url("../images/automuveconnect-hero.png") center / cover;
}

.quote-section {
  background: linear-gradient(180deg, #f8fafc, #ffffff 58%);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: start;
}

.quote-side {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 96px;
}

.quote-side-card,
.quote-form {
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.08);
}

.quote-side-card {
  padding: 20px;
}

.quote-step {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border: 1px solid rgba(224, 160, 32, 0.42);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 950;
}

.quote-side-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
}

.quote-side-card p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-top: 5px solid var(--gold);
}

.quote-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 4px;
}

.quote-form-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
}

.quote-form-head > span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 950;
}

.quote-grid {
  display: grid;
  gap: 14px;
}

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

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

.quote-form .field {
  display: grid;
  gap: 7px;
}

.quote-form label {
  color: var(--navy);
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 27, 42, 0.14);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  box-shadow: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(224, 160, 32, 0.3);
  border-color: rgba(224, 160, 32, 0.58);
}

.quote-form small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.quote-location {
  position: relative;
}

.quote-location::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 42px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
}

.quote-summary {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(224, 160, 32, 0.34);
  border-radius: 8px;
  background: rgba(224, 160, 32, 0.1);
  padding: 14px 16px;
}

.quote-summary strong {
  color: var(--navy);
  white-space: nowrap;
}

.quote-summary span {
  color: var(--muted);
  font-weight: 750;
}

.quote-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.quote-consent input {
  width: auto;
  margin-top: 4px;
}

.quote-consent a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.amc-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.quote-submit {
  width: fit-content;
  min-width: 210px;
}

.form-notice {
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 750;
}

.form-notice.success {
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.34);
  color: #145c34;
}

.form-notice.error {
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid rgba(192, 57, 43, 0.34);
  color: #7f1d1d;
}

.form-disclaimer {
  background: #fff8e5;
  border: 1px solid rgba(255, 193, 7, 0.32);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
  padding: 13px 15px;
}

.legal-content {
  max-width: 920px;
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content a {
  color: var(--gold);
  font-weight: 800;
}

.legal-note {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.96), rgba(7, 17, 31, 0.92));
  border: 1px solid rgba(255, 193, 7, 0.28);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  margin: 24px 0 30px;
  padding: 18px 20px;
}

.legal-note strong {
  color: var(--gold);
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.legal-note p {
  margin: 0;
}

.story-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 4px 4px 14px;
  scrollbar-color: var(--gold) rgba(13, 27, 42, 0.12);
}

.story-slide {
  min-height: 220px;
  scroll-snap-align: start;
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(13, 27, 42, 0.96), rgba(7, 17, 31, 0.92)),
    radial-gradient(circle at top right, rgba(224, 160, 32, 0.26), transparent 38%);
  color: var(--white);
  border: 1px solid rgba(224, 160, 32, 0.26);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-slide span {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(224, 160, 32, 0.14);
  color: var(--gold);
  border: 1px solid rgba(224, 160, 32, 0.34);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-slide p {
  margin: 26px 0 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 750;
}

.story-note {
  max-width: 860px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.request-list {
  display: grid;
  gap: 22px;
}

.request-board-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 58%);
}

.board-heading {
  align-items: flex-start;
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

.board-heading > div:first-child {
  max-width: 820px;
}

.board-trust,
.request-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.board-trust {
  justify-content: flex-end;
  max-width: 420px;
}

.board-trust span,
.request-filters span {
  border: 1px solid rgba(224, 160, 32, 0.36);
  border-radius: 999px;
  background: rgba(224, 160, 32, 0.11);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 13px;
}

.request-filters {
  margin: 0 0 18px;
}

.request-filters span:first-child {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.board-notice {
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.96), rgba(7, 17, 31, 0.92));
  border: 1px solid rgba(224, 160, 32, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(13, 27, 42, 0.12);
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  padding: 18px 20px;
}

.board-notice strong {
  color: var(--gold);
  white-space: nowrap;
}

.request-board {
  gap: 24px;
}

.request-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.09);
}

.board-card {
  border-left: 6px solid var(--gold);
  overflow: hidden;
  position: relative;
}

.board-card::before {
  background: linear-gradient(180deg, rgba(224, 160, 32, 0.18), transparent);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 56px;
  pointer-events: none;
}

.board-card-top {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.board-time {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  font-weight: 800;
}

.request-type {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(224, 160, 32, 0.16);
  color: var(--navy);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.request-main h3 {
  margin-top: 14px;
  font-size: clamp(26px, 3vw, 38px);
}

.route-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.route-meta-grid span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  font-weight: 850;
  gap: 4px;
  min-height: 72px;
  padding: 12px;
}

.route-meta-grid strong {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.request-main p {
  margin-top: 18px;
  max-width: 820px;
  color: var(--muted);
  font-weight: 700;
}

.request-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.request-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
}

.request-tags .active {
  border-color: rgba(39, 174, 96, 0.35);
  background: rgba(39, 174, 96, 0.12);
  color: #145c34;
}

.request-contact {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  display: grid;
  gap: 10px;
  align-content: start;
}

.protected-panel {
  border-color: rgba(13, 27, 42, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.request-contact strong {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.request-contact span {
  font-weight: 850;
  color: var(--ink);
}

.request-contact small {
  color: var(--muted);
}

.request-contact .button {
  margin-top: 8px;
}

.contact-request-box {
  margin-top: 8px;
}

.contact-request-box summary {
  min-height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.contact-request-box summary::-webkit-details-marker {
  display: none;
}

.contact-request-box form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.contact-request-box label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
}

.contact-request-box input,
.contact-request-box textarea {
  padding: 10px 11px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font: inherit;
}

.contact-request-box textarea {
  min-height: 90px;
}

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

.carrier-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.08);
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.carrier-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.carrier-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(145deg, #f7d77a, var(--gold));
  border: 1px solid rgba(13, 27, 42, 0.1);
  font-weight: 950;
}

.carrier-head h3 {
  font-size: 22px;
}

.carrier-head span {
  color: var(--gold);
  font-weight: 900;
}

.carrier-meta {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 750;
}

.carrier-card p {
  color: var(--muted);
}

.trust-score {
  align-items: center;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.98), rgba(7, 17, 31, 0.94));
  border: 1px solid rgba(224, 160, 32, 0.32);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 16px;
}

.trust-score-ring {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at center, var(--navy) 58%, transparent 60%),
    conic-gradient(var(--gold) calc(var(--score) * 1%), rgba(255, 255, 255, 0.14) 0);
  border-radius: 50%;
  display: grid;
  justify-items: center;
  line-height: 1;
  min-width: 86px;
  width: 86px;
}

.trust-score-ring strong {
  color: var(--gold-2);
  font-size: 30px;
}

.trust-score-ring span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.trust-score b,
.trust-score span,
.trust-score small {
  display: block;
}

.trust-score b {
  color: var(--gold-2);
  font-size: 18px;
}

.trust-score span {
  font-weight: 900;
}

.trust-score small {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.trust-explainer {
  margin-top: 22px;
}

.trust-explainer p,
.trust-warning p {
  color: var(--muted);
}

.trust-mini-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.trust-mini-grid span {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
}

.trust-mini-grid strong {
  color: var(--gold-2);
}

.article-layout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
}

.article-hero {
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: var(--white);
  padding: 76px 0;
}

.article-hero-inner {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  margin: 0 auto;
  width: min(1180px, calc(100% - 32px));
}

.article-hero-copy h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}

.article-hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
  font-weight: 750;
  margin: 20px 0;
}

.article-hero-media {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(224, 160, 32, 0.34);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

.article-hero-media::after {
  background: linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.45));
  content: "";
  inset: 0;
  position: absolute;
}

.article-hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.article-content {
  max-width: 860px;
}

.article-lead {
  color: var(--ink) !important;
  font-size: 22px !important;
  font-weight: 850 !important;
  line-height: 1.55;
  margin-bottom: 34px;
}

.article-content h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin: 0 0 14px;
}

.article-content h2:not(:first-child) {
  margin-top: 42px;
}

.article-content h3 {
  font-size: 22px;
  margin: 26px 0 10px;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.article-side-panel {
  position: sticky;
  top: 110px;
}

.blog-official-hero {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98) 0%, rgba(7, 17, 31, 0.88) 43%, rgba(7, 17, 31, 0.48) 100%),
    radial-gradient(circle at 62% 28%, rgba(224, 160, 32, 0.28), transparent 24%),
    url("../images/automuveconnect-hero.png") center / cover;
  color: var(--white);
  min-height: 560px;
  padding: 64px 0 72px;
  position: relative;
}

.blog-official-hero::after {
  background: linear-gradient(90deg, transparent, rgba(224, 160, 32, 0.72), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 4%;
  position: absolute;
  right: 4%;
}

.blog-official-inner {
  display: grid;
  gap: 54px;
  margin: 0 auto;
  width: min(1180px, calc(100% - 32px));
}

.blog-brand-line {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.blog-brand-line img {
  max-height: 86px;
  width: min(410px, 88vw);
}

.blog-brand-line span {
  color: var(--gold-2);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-title-block {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: auto minmax(0, 850px);
}

.blog-title-block .eyebrow {
  color: var(--gold-2);
  font-size: 14px;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.blog-title-block h1 {
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.96;
  max-width: 950px;
  text-transform: uppercase;
}

.blog-title-block h1::first-line {
  color: var(--white);
}

.blog-title-block p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 850;
  line-height: 1.28;
  margin: 22px 0 0;
  max-width: 820px;
}

.blog-feather {
  color: var(--gold);
  font-size: 92px;
  font-weight: 300;
  line-height: 1;
}

.blog-popular-section {
  background: var(--navy-2);
  color: var(--white);
  padding: 34px 0 38px;
}

.blog-popular-head {
  align-items: center;
  border-bottom: 1px solid rgba(224, 160, 32, 0.28);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 14px;
}

.blog-popular-head h2 {
  color: var(--gold-2);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-popular-head a {
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
}

.blog-featured-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.blog-feature-card {
  background: rgba(13, 27, 42, 0.86);
  border: 1px solid rgba(224, 160, 32, 0.24);
  border-radius: 8px;
  display: grid;
  overflow: hidden;
}

.blog-section {
  background: linear-gradient(180deg, #ffffff, #f7f8fb);
}

.blog-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.blog-category-strip a {
  background: var(--white);
  border: 1px solid rgba(224, 160, 32, 0.28);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 900;
  padding: 9px 13px;
}

.blog-category-strip a:hover {
  background: var(--gold);
  color: var(--navy);
}

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.08);
  display: grid;
  overflow: hidden;
}

.blog-card-media {
  aspect-ratio: 16 / 9;
  background: var(--navy);
  display: block;
  overflow: hidden;
  position: relative;
}

.blog-card-media img {
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  width: 100%;
}

.blog-card-media::after {
  background:
    linear-gradient(180deg, transparent 40%, rgba(7, 17, 31, 0.78)),
    radial-gradient(circle at 20% 20%, rgba(224, 160, 32, 0.22), transparent 30%);
  content: "";
  inset: 0;
  position: absolute;
}

.blog-card-media span {
  background: var(--gold);
  border-radius: 999px;
  bottom: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 950;
  left: 14px;
  line-height: 1;
  padding: 7px 10px;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.blog-visual-road img {
  object-position: 58% center;
}

.blog-visual-passenger img {
  object-position: 36% center;
}

.blog-visual-europe img {
  object-position: 68% center;
}

.blog-visual-city img {
  object-position: 78% center;
}

.blog-visual-map img {
  object-position: 44% center;
}

.blog-card-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.blog-feature-card .blog-card-body {
  padding: 18px;
}

.blog-card-category {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 24px;
}

.blog-feature-card h3 {
  color: var(--white);
  font-size: 20px;
  line-height: 1.25;
}

.blog-card p {
  color: var(--muted);
  font-weight: 700;
}

.blog-feature-card p {
  color: rgba(255, 255, 255, 0.76);
}

.blog-card-meta {
  color: var(--gold-2);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.blog-card .button {
  width: fit-content;
}

.blog-empty {
  grid-column: 1 / -1;
}

.blog-trust-strip {
  border: 1px solid rgba(224, 160, 32, 0.28);
  border-radius: 8px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 26px;
  overflow: hidden;
}

.blog-trust-strip div {
  align-items: center;
  display: grid;
  gap: 5px;
  grid-template-columns: 10px minmax(0, 1fr);
  padding: 16px;
}

.blog-trust-strip div:not(:last-child) {
  border-right: 1px solid rgba(224, 160, 32, 0.2);
}

.blog-trust-strip span {
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
  display: inline-block;
  grid-row: 1 / 3;
  height: 7px;
  width: 7px;
}

.blog-trust-strip strong {
  color: var(--gold-2);
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
}

.blog-trust-strip small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.referral-hero {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98) 0%, rgba(7, 17, 31, 0.9) 50%, rgba(7, 17, 31, 0.62) 100%),
    radial-gradient(circle at 62% 48%, rgba(224, 160, 32, 0.32), transparent 18%),
    url("../images/automuveconnect-hero.png") center / cover;
  color: var(--white);
  min-height: 620px;
  padding: 56px 0 70px;
  position: relative;
}

.referral-hero::after {
  background: linear-gradient(90deg, transparent, rgba(224, 160, 32, 0.7), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 4%;
  position: absolute;
  right: 4%;
}

.referral-inner {
  display: grid;
  gap: 44px;
  margin: 0 auto;
  width: min(1180px, calc(100% - 32px));
}

.referral-brand {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.referral-brand img {
  max-height: 82px;
  width: min(390px, 88vw);
}

.referral-brand span {
  color: var(--gold-2);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.referral-hero-grid {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.referral-copy h1 {
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.98;
  max-width: 760px;
  text-transform: uppercase;
}

.referral-copy h1::first-line {
  color: var(--white);
}

.referral-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(21px, 2.4vw, 31px);
  font-weight: 760;
  line-height: 1.28;
  margin: 24px 0 0;
  max-width: 720px;
}

.referral-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.referral-visual {
  aspect-ratio: 1.35;
  border: 1px solid rgba(224, 160, 32, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(13, 27, 42, 0.45), rgba(7, 17, 31, 0.9)),
    radial-gradient(circle at 45% 45%, rgba(224, 160, 32, 0.38), transparent 24%);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.referral-glow {
  border: 3px solid rgba(242, 196, 91, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(224, 160, 32, 0.65), inset 0 0 32px rgba(224, 160, 32, 0.22);
  height: 210px;
  position: absolute;
  width: 210px;
}

.referral-people,
.referral-gift {
  border: 1px solid rgba(224, 160, 32, 0.45);
  border-radius: 999px;
  color: var(--gold-2);
  display: grid;
  font-weight: 950;
  place-items: center;
  position: absolute;
}

.referral-people {
  background: rgba(7, 17, 31, 0.86);
  font-size: 42px;
  height: 138px;
  left: 12%;
  top: 18%;
  width: 138px;
}

.referral-gift {
  background: var(--gold);
  color: var(--navy);
  font-size: 68px;
  height: 150px;
  right: 13%;
  bottom: 16%;
  width: 150px;
}

.referral-panel-section {
  background: var(--navy-2);
  color: var(--white);
  padding: 34px 0 54px;
}

.referral-panel {
  border: 1px solid rgba(224, 160, 32, 0.34);
  border-radius: 8px;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr) minmax(260px, 0.7fr);
  overflow: hidden;
}

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

.referral-steps article,
.referral-benefits,
.referral-link-card {
  background: rgba(13, 27, 42, 0.58);
  padding: 28px;
}

.referral-steps article:not(:last-child),
.referral-benefits {
  border-right: 1px solid rgba(224, 160, 32, 0.28);
}

.referral-steps span {
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-2);
  display: grid;
  font-size: 30px;
  font-weight: 950;
  height: 64px;
  margin-bottom: 18px;
  place-items: center;
  width: 64px;
}

.referral-panel h2,
.referral-panel h3 {
  color: var(--white);
  line-height: 1.12;
  text-transform: uppercase;
}

.referral-panel p,
.referral-benefits span,
.referral-link-card p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.referral-benefits {
  display: grid;
  gap: 18px;
}

.referral-benefits h2,
.referral-link-card h2 {
  color: var(--gold-2);
  font-size: 22px;
}

.referral-benefits div {
  border-left: 3px solid var(--gold);
  display: grid;
  gap: 4px;
  padding-left: 14px;
}

.referral-benefits strong {
  color: var(--white);
  text-transform: uppercase;
}

.referral-link-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.referral-link-placeholder {
  border: 2px dashed rgba(224, 160, 32, 0.52);
  border-radius: 8px;
  color: var(--gold-2);
  font-weight: 900;
  min-height: 72px;
  padding: 18px;
}

.referral-account-box {
  display: grid;
  gap: 8px;
}

.referral-account-box label {
  color: var(--gold-2);
  font-weight: 900;
}

.referral-account-box input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(224, 160, 32, 0.58);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.referral-account-box small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.referral-trust-row {
  align-items: center;
  border: 1px solid rgba(224, 160, 32, 0.34);
  border-radius: 8px;
  display: grid;
  gap: 0;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  margin-top: 24px;
  overflow: hidden;
}

.referral-trust-row div {
  align-items: center;
  display: grid;
  gap: 4px 14px;
  grid-template-columns: auto 1fr;
  padding: 22px;
}

.referral-trust-row div:not(:last-of-type) {
  border-right: 1px solid rgba(224, 160, 32, 0.22);
}

.referral-trust-row span {
  color: var(--gold-2);
  font-weight: 950;
  grid-row: 1 / 3;
}

.referral-trust-row strong {
  color: var(--white);
  text-transform: uppercase;
}

.referral-trust-row small {
  color: var(--gold-2);
  font-size: 15px;
  font-weight: 800;
}

.referral-cta {
  align-items: center;
  align-self: stretch;
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  font-size: 22px;
  font-weight: 950;
  justify-content: center;
  padding: 0 28px;
  text-transform: uppercase;
}

.referral-note {
  border-left: 4px solid var(--gold);
  color: rgba(255, 255, 255, 0.76);
  margin-top: 26px;
  max-width: 980px;
  padding-left: 18px;
}

.referral-note h2 {
  color: var(--gold-2);
}

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

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

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

.site-footer {
  background: #07111f;
  color: rgba(255, 255, 255, 0.76);
  padding: 44px 0;
}

.support-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  border: 1px solid rgba(224, 160, 32, 0.28);
  border-radius: 8px;
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.96), rgba(7, 17, 31, 0.92)),
    radial-gradient(circle at top right, rgba(224, 160, 32, 0.2), transparent 38%);
}

.support-strip-compact {
  margin-bottom: 26px;
  padding: 16px 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
}

.support-strip .eyebrow {
  color: var(--gold);
  margin-bottom: 8px;
}

.support-strip-compact .eyebrow {
  font-size: 11px;
  margin-bottom: 5px;
}

.support-strip h2 {
  color: var(--white);
  font-size: clamp(26px, 3vw, 42px);
  margin: 0 0 12px;
}

.support-strip-compact h2 {
  max-width: 720px;
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.16;
  margin-bottom: 6px;
}

.support-strip p:not(.eyebrow) {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

.support-strip-compact p:not(.eyebrow) {
  max-width: 820px;
  font-size: 13px;
  line-height: 1.5;
}

.support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 16px 36px rgba(224, 160, 32, 0.18);
}

.support-strip-compact .support-button {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.support-button:hover {
  color: var(--navy);
  transform: translateY(-1px);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: start;
}

.footer-inner-compact {
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.6fr);
  gap: 22px;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-logo {
  width: min(240px, 58vw);
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.footer-nav {
  display: grid;
  gap: 16px;
}

.footer-primary-links,
.footer-accordions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-accordions-compact {
  gap: 8px;
}

.footer-primary-links a,
.footer-accordions a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-primary-links a {
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.footer-accordions details {
  min-width: 190px;
  border: 1px solid rgba(224, 160, 32, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-accordions summary {
  cursor: pointer;
  padding: 10px 12px;
  color: var(--gold);
  font-weight: 900;
  list-style: none;
  font-size: 15px;
}

.footer-accordions summary::-webkit-details-marker {
  display: none;
}

.footer-accordions summary::after {
  content: "+";
  float: right;
}

.footer-accordions details[open] summary::after {
  content: "-";
}

.footer-accordions details a {
  display: block;
  padding: 8px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.footer-accordions details a:hover,
.footer-primary-links a:hover {
  color: var(--gold-2);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding: 0 0 18px;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-links a,
  .nav-dropdown-toggle {
    padding: 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 0 8px;
    padding: 6px;
    border-color: rgba(224, 160, 32, 0.2);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    white-space: normal;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(13, 27, 42, 0.98), rgba(13, 27, 42, 0.7)),
      url("../images/automuveconnect-hero.png") center / cover;
  }

  .hero-metrics,
  .grid.three,
  .grid.four,
  .grid.five,
  .grid.two,
  .request-card,
  .board-heading,
  .route-meta-grid,
  .article-layout,
  .article-hero-inner,
  .blog-grid,
  .blog-featured-row,
  .blog-trust-strip,
  .referral-hero-grid,
  .referral-panel,
  .referral-steps,
  .referral-trust-row,
  .carrier-grid,
  .split,
  .contact-layout,
  .quote-layout,
  .quote-grid.two,
  .quote-grid.three {
    grid-template-columns: 1fr;
  }

  .quote-side {
    position: static;
  }

  .quote-form {
    padding: 18px;
  }

  .blog-title-block {
    grid-template-columns: 1fr;
  }

  .blog-feather {
    display: none;
  }

  .blog-popular-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-side-panel {
    position: static;
  }

  .blog-trust-strip div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(224, 160, 32, 0.2);
  }

  .referral-steps article:not(:last-child),
  .referral-benefits,
  .referral-trust-row div:not(:last-of-type) {
    border-right: 0;
    border-bottom: 1px solid rgba(224, 160, 32, 0.22);
  }

  .referral-cta {
    min-height: 64px;
  }

  .board-heading {
    display: grid;
  }

  .board-trust {
    justify-content: flex-start;
    max-width: none;
  }

  .board-notice {
    display: grid;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 16px;
  }

  .support-strip {
    grid-template-columns: 1fr;
  }

  .support-strip-compact {
    padding: 16px;
  }

  .support-button {
    width: fit-content;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-primary-links,
  .footer-accordions {
    justify-content: flex-start;
  }

  .footer-primary-links {
    gap: 8px;
  }

  .footer-accordions details {
    width: min(100%, 320px);
  }
}

@media (max-width: 560px) {
  .hero,
  .section,
  .page-hero {
    padding: 56px 0;
  }

  h1 {
    font-size: 42px;
  }

  .hero-metrics {
    gap: 18px;
  }

  .card,
  .panel {
    padding: 22px;
  }

  .request-card {
    padding: 20px;
  }

  .referral-copy h1 {
    font-size: 46px;
  }

  .referral-visual {
    min-height: 260px;
  }

  .referral-people {
    height: 104px;
    width: 104px;
  }

  .referral-gift {
    height: 112px;
    width: 112px;
  }

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

  .request-filters span,
  .board-trust span {
    font-size: 12px;
    padding: 8px 10px;
  }

  .step {
    padding-left: 0;
    padding-top: 76px;
  }
}
