:root {
  --bg: #ffffff;
  --bg-2: #f3f6f4;
  --panel: #ffffff;
  --panel-2: #edf3ef;
  --ink: #102033;
  --muted: #586675;
  --soft: #f8fafc;
  --orange: #167a36;
  --orange-2: #1f9845;
  --orange-dark: #0f632b;
  --green: #167a36;
  --danger: #b42318;
  --line: rgba(17, 24, 39, 0.11);
  --line-strong: rgba(17, 24, 39, 0.18);
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.1);
  --glow: 0 0 30px rgba(22, 122, 54, 0.18);
  --radius: 8px;
  --max: 1160px;
  --header: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(34, 165, 31, 0.08), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 46%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

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

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  z-index: 2000;
  padding: 10px 14px;
  color: #101827;
  background: var(--orange);
  border-radius: var(--radius);
  font-weight: 900;
  transition: top 180ms ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 999px;
}

.section {
  position: relative;
  padding: 64px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title.center .eyebrow {
  justify-content: center;
}

.section-title h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.section-title p {
  margin-bottom: 0;
  font-size: 1.03rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 820;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #101827;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 36px rgba(34, 165, 31, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 44px rgba(34, 165, 31, 0.44);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line-strong);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #ffffff;
  border-color: rgba(34, 165, 31, 0.38);
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  background:
    radial-gradient(circle at -8% 8%, rgba(34, 165, 31, 0.14) 0 13rem, transparent 13.2rem),
    radial-gradient(circle at 94% 78%, rgba(34, 165, 31, 0.18) 0 18rem, transparent 18.2rem),
    linear-gradient(135deg, #f4fff5 0%, #ffffff 52%, #eef9f0 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -22%;
  z-index: -2;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(34, 165, 31, 0.22), rgba(34, 165, 31, 0.62));
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 6%;
  z-index: -1;
  width: 210px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 165, 31, 0.45), transparent);
  box-shadow:
    90px 42px 0 rgba(34, 165, 31, 0.12),
    180px 84px 0 rgba(34, 165, 31, 0.08);
  transform: rotate(-8deg);
}

.hero-inner {
  display: grid;
  align-items: start;
  gap: 34px;
  padding: 54px 0 46px;
}

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

.hero h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.45rem, 6vw, 4.15rem);
  letter-spacing: 0;
}

.hero-subheadline {
  max-width: 610px;
  margin-bottom: 24px;
  color: #3d4a5c;
  font-size: clamp(1.08rem, 2.5vw, 1.36rem);
}

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

.hero-microtrust {
  margin: 18px 0 0;
  color: #354256;
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-form-card {
  width: 100%;
  max-width: 520px;
  justify-self: stretch;
}

.quote-form {
  position: relative;
  overflow: hidden;
  padding: 30px 20px 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(34, 165, 31, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 22px 62px rgba(17, 24, 39, 0.11);
}

.quote-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.quote-form h2 {
  margin: 14px 0 8px;
  padding-left: 48px;
  color: var(--ink);
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.form-intro {
  margin-bottom: 14px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 10px;
}

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

.form-field label {
  color: #1f2937;
  font-size: 0.88rem;
  font-weight: 780;
}

.optional {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.quote-form textarea {
  min-height: 96px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #8a97a8;
}

.quote-form input:focus,
.quote-form textarea:focus {
  background: #ffffff;
  border-color: rgba(34, 165, 31, 0.86);
  box-shadow: 0 0 0 4px rgba(34, 165, 31, 0.14);
}

.quote-form input.is-invalid,
.quote-form textarea.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.12);
}

.field-error {
  display: none;
  margin: -1px 0 0;
  color: #be123c;
  font-size: 0.84rem;
  font-weight: 750;
}

.field-error.is-visible {
  display: block;
}

.turnstile-field {
  display: grid;
  grid-column: 1 / -1;
  gap: 5px;
  min-width: 0;
}

.turnstile-widget {
  min-height: 65px;
}

.turnstile-message {
  margin: 0;
  color: #be123c;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
}

.turnstile-message[hidden] {
  display: none;
}

.form-success,
.form-error {
  margin: 0 0 14px;
  padding: 12px 13px;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 850;
}

.form-success {
  color: #166534;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.form-error {
  color: #be123c;
  background: rgba(251, 113, 133, 0.12);
  border: 1px solid rgba(251, 113, 133, 0.35);
}

.form-note {
  margin: 6px 0 0;
  color: #354256;
  font-size: 0.84rem;
  line-height: 1.25;
  text-align: center;
}

.privacy-note {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: center;
}

.privacy-note a {
  color: inherit;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.privacy-note a,
.quote-form .button {
  width: 100%;
  min-height: 48px;
}

.quote-form .button.is-loading {
  opacity: 0.76;
  cursor: wait;
  transform: none;
}

.trust-band {
  padding: 22px 0 0;
  background: #ffffff;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(34, 165, 31, 0.42);
  background: #ffffff;
}

.card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.14rem;
}

.card p {
  margin-bottom: 0;
}

.make-strip {
  display: grid;
  gap: 14px;
  padding: 18px;
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(34, 165, 31, 0.08), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(34, 165, 31, 0.16);
  border-radius: var(--radius);
}

.make-strip h3 {
  margin: 0;
  font-size: 1.1rem;
}

.make-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.make-logo-tile {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 12px 8px;
  color: var(--ink);
  background: #ffffff;
  text-align: center;
  transition: background 180ms ease, transform 180ms ease;
}

.make-logo-tile:hover,
.make-logo-tile:focus-within {
  background: #f2fbf3;
  transform: translateY(-1px);
}

.make-logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.make-logo-img {
  width: min(96px, 78%);
  height: 42px;
  margin-bottom: 8px;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.04);
}

.make-logo-fallback {
  display: none;
}

.make-logo-img.is-hidden {
  display: none;
}

.make-logo-img.is-hidden + .make-logo-fallback {
  display: grid;
}

.make-logo-tile strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}

.steps {
  position: relative;
  grid-template-columns: 1fr;
  counter-reset: steps;
}

.step-card {
  padding-top: 68px;
}

.step-card::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #101827;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 950;
  box-shadow: var(--glow);
}

.section-cta {
  display: grid;
  gap: 14px;
  align-items: center;
  justify-items: center;
  max-width: 760px;
  padding: 18px;
  margin: 22px auto 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(34, 165, 31, 0.1), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(34, 165, 31, 0.2);
  border-radius: var(--radius);
}

.section-cta p {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.section-cta .button {
  width: auto;
  max-width: 100%;
}

.trust-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

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

.faq-list details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(34, 165, 31, 0.42);
  background: rgba(255, 255, 255, 0.075);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-3px) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-list details[open] .faq-content {
  grid-template-rows: 1fr;
}

.faq-content > div {
  overflow: hidden;
}

.faq-content p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  padding: 52px 0 96px;
  background: #050b15;
  border-top: 1px solid var(--line);
}

.site-footer h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a,
.site-footer p,
.site-footer li {
  color: var(--muted);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--orange-2);
  outline: none;
}

.mobile-phone,
.mobile-cta-bar {
  display: none;
}

.vehicle-details-field {
  padding: 10px;
  background: rgba(34, 165, 31, 0.045);
  border: 1px solid rgba(34, 165, 31, 0.16);
  border-radius: var(--radius);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line-strong);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.07);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #ffffff;
  border-color: rgba(34, 165, 31, 0.36);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.1);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 52%, rgba(255, 255, 255, 0.72) 100%),
    linear-gradient(180deg, transparent 0%, #ffffff 100%);
}

.hero-subheadline {
  color: #334155;
}

.hero-microtrust {
  color: #475569;
}

.quote-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border-color: var(--line-strong);
}

.quote-form h2,
.form-field label {
  color: var(--ink);
}

.quote-form input,
.quote-form textarea {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(17, 24, 39, 0.16);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(89, 102, 119, 0.78);
}

.quote-form input:focus,
.quote-form textarea:focus {
  background: #ffffff;
  border-color: rgba(34, 165, 31, 0.9);
  box-shadow: 0 0 0 4px rgba(34, 165, 31, 0.16);
}

.field-error {
  color: #be123c;
}

.form-success {
  color: #166534;
  background: rgba(34, 197, 94, 0.11);
  border-color: rgba(22, 101, 52, 0.22);
}

.form-error {
  color: #be123c;
  background: rgba(251, 113, 133, 0.1);
  border-color: rgba(190, 18, 60, 0.2);
}

.form-note {
  color: #536174;
}

.hero-form-card textarea {
  min-height: 72px;
}

.trust-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 247, 251, 0.95));
}

.faq-list details {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
}

.card {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
}

.card:hover,
.card:focus-within {
  background: linear-gradient(180deg, #ffffff, #effaf0);
}

.faq-list details:hover,
.faq-list details[open] {
  background: #effaf0;
}

.site-footer {
  background: #f6f8fb;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 620px) {
  .make-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}

@media (min-width: 800px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  }

  .hero-inner {
    padding: 24px 0 42px;
  }

  .hero-form-card {
    justify-self: end;
  }

  .hero-form-card {
    padding: 26px 16px 16px;
  }

  .hero-form-card h2 {
    margin: 8px 0 5px;
    font-size: 1.42rem;
  }

  .hero-form-card .form-intro {
    margin-bottom: 10px;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .hero-form-card .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .hero-form-card .vehicle-details-field,
  .hero-form-card .button {
    grid-column: 1 / -1;
  }

  .hero-form-card textarea {
    min-height: 60px;
  }

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

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

  .steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 16%;
    right: 16%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 165, 31, 0.58), transparent);
  }

}

@media (max-width: 760px) {
  body {
    padding-bottom: 82px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    gap: 16px;
    padding: 28px 0 28px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: clamp(1.86rem, 8vw, 2.55rem);
  }

  .hero-subheadline {
    margin-bottom: 14px;
    font-size: 1rem;
  }

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

  .hero-actions .button-primary {
    display: none;
  }

  .hero-form-card {
    display: block;
    max-width: none;
  }

  .hero-form-card h2 {
    padding-left: 42px;
    margin-top: 8px;
    font-size: 1.28rem;
  }

  .hero-form-card .form-intro {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .hero-form-card textarea {
    min-height: 74px;
  }

  .hero-microtrust {
    margin-top: 10px;
  }

  .section {
    padding: 56px 0;
  }

  .quote-form {
    padding: 18px;
  }

  .mobile-phone {
    position: fixed;
    right: 16px;
    bottom: 90px;
    z-index: 1100;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #101827;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(34, 165, 31, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-phone.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-phone svg {
    width: 22px;
    height: 22px;
  }

  .mobile-cta-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1090;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 10px;
    padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid var(--line-strong);
    backdrop-filter: blur(14px);
  }

  .mobile-cta-bar .button {
    min-height: 48px;
    padding: 11px 9px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .mobile-cta-bar .button-primary {
    line-height: 1.15;
    white-space: normal;
  }

}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .mobile-cta-bar .button {
    font-size: 0.76rem;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #07101e;
    --bg-2: #0b1627;
    --panel: #101c2e;
    --panel-2: #13223a;
    --ink: #f8fafc;
    --muted: #aab7c8;
    --soft: #d7dde8;
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.18);
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
    --glow: 0 0 40px rgba(34, 165, 31, 0.28);
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(34, 165, 31, 0.08), transparent 30rem),
      linear-gradient(180deg, #06101f 0%, #091321 38%, #07101e 100%);
  }

  .button-secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--line-strong);
    box-shadow: none;
  }

  .button-secondary:hover,
  .button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: none;
  }

  .hero {
    background:
      radial-gradient(circle at -8% 8%, rgba(34, 165, 31, 0.16) 0 13rem, transparent 13.2rem),
      radial-gradient(circle at 94% 78%, rgba(34, 165, 31, 0.18) 0 18rem, transparent 18.2rem),
      linear-gradient(135deg, #07101e 0%, #0b1627 54%, #0d2015 100%);
  }

  .hero::before {
    background: linear-gradient(135deg, rgba(34, 165, 31, 0.12), rgba(34, 165, 31, 0.34));
  }

  .hero-subheadline {
    color: #e5ebf4;
  }

  .hero-microtrust {
    color: #cfd7e4;
  }

  .quote-form {
    background: linear-gradient(180deg, rgba(16, 28, 46, 0.96), rgba(9, 19, 34, 0.96));
    border-color: var(--line-strong);
  }

  .form-field label {
    color: #e7edf7;
  }

  .quote-form input,
  .quote-form textarea {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .quote-form input::placeholder,
  .quote-form textarea::placeholder {
    color: rgba(215, 221, 232, 0.62);
  }

  .quote-form input:focus,
  .quote-form textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(34, 165, 31, 0.86);
    box-shadow: 0 0 0 4px rgba(34, 165, 31, 0.14);
  }

  .field-error {
    color: #fecdd3;
  }

  .form-success {
    color: #dcfce7;
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.35);
  }

  .form-error {
    color: #ffe4e6;
    background: rgba(251, 113, 133, 0.12);
    border-color: rgba(251, 113, 133, 0.35);
  }

  .form-note {
    color: #bac6d8;
  }

  .vehicle-details-field {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
  }

  .make-strip {
    background: linear-gradient(135deg, rgba(34, 165, 31, 0.12), rgba(255, 255, 255, 0.045));
    border-color: rgba(34, 165, 31, 0.18);
  }

  .make-logo-grid {
    background: var(--line);
    border-color: var(--line);
  }

  .make-logo-tile {
    background: rgba(255, 255, 255, 0.06);
  }

  .make-logo-tile:hover,
  .make-logo-tile:focus-within {
    background: rgba(34, 165, 31, 0.12);
  }

  .trust-band {
    background: linear-gradient(180deg, rgba(7, 16, 30, 0), rgba(7, 16, 30, 0.9));
  }

  .faq-list details {
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  }

  .card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.038));
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  }

  .card:hover,
  .card:focus-within {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.046));
  }

  .section-cta {
    background: linear-gradient(135deg, rgba(34, 165, 31, 0.12), rgba(255, 255, 255, 0.045));
  }

  .section-cta p {
    color: var(--ink);
  }

  .faq-list details:hover,
  .faq-list details[open] {
    background: rgba(255, 255, 255, 0.075);
  }

  .site-footer {
    background: #050b15;
  }

  .mobile-cta-bar {
    background: rgba(7, 16, 30, 0.94);
  }
}

body {
  background: var(--bg);
  font-weight: 400;
}

h1,
h2,
h3 {
  font-weight: 780;
}

.container {
  width: min(100% - 40px, 1180px);
}

.section {
  padding: 56px 0;
}

.section-title {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-title h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3.6vw, 2.65rem);
  line-height: 1.1;
}

.section-title p {
  max-width: 650px;
  margin-inline: auto;
  font-size: 1rem;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.button {
  min-height: 50px;
  padding: 13px 18px;
  font-weight: 760;
  line-height: 1.15;
}

.button-primary {
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(15, 99, 43, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
  box-shadow: 0 15px 34px rgba(15, 99, 43, 0.3);
}

.button-secondary {
  background: transparent;
  box-shadow: none;
}

.hero {
  --hero-photo: none;
  position: relative;
  isolation: isolate;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(31, 152, 69, 0.1), transparent 30rem),
    radial-gradient(circle at 72% 12%, rgba(203, 154, 43, 0.08), transparent 24rem),
    linear-gradient(145deg, #f7fbf8 0%, #eef6f1 58%, #f8faf9 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  display: none;
}

.hero-media-layer {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--hero-photo);
  background-position: center;
  background-size: cover;
  opacity: 0.13;
  filter: saturate(0.7);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: clamp(48px, 5vw, 78px);
  padding: 54px 0 58px;
}

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

.hero h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(2.75rem, 4.35vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-subheadline {
  max-width: 650px;
  margin-bottom: 26px;
  color: #425161;
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.64;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  margin-bottom: 0;
}

.hero-mobile-quote {
  display: none;
}

.hero-actions .button-secondary {
  min-height: 52px;
  padding-inline: 18px;
  background: color-mix(in srgb, var(--panel) 78%, transparent);
  border-color: color-mix(in srgb, var(--orange) 30%, var(--line));
}

.hero-actions .button-whatsapp {
  min-height: 52px;
  padding-inline: 18px;
  color: #ffffff;
  background: #137b3f;
  border-color: #137b3f;
  box-shadow: 0 10px 24px rgba(19, 123, 63, 0.18);
}

.hero-actions .button-whatsapp:hover,
.hero-actions .button-whatsapp:focus-visible {
  color: #ffffff;
  background: #0f6935;
  border-color: #0f6935;
}

.hero-actions .button-whatsapp svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.hero-credential-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 6px;
  margin: 0;
  overflow: hidden;
  list-style: none;
  background: color-mix(in srgb, var(--panel) 86%, transparent);
  border: 1px solid color-mix(in srgb, #c9972b 44%, var(--line));
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(9, 27, 48, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.hero-credential-strip li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  min-height: 66px;
  padding: 9px 12px;
  border-left: 1px solid color-mix(in srgb, #c9972b 28%, var(--line));
}

.hero-credential-strip li:first-child {
  border-left: 0;
}

.hero-credential-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #8a6314;
  background: linear-gradient(145deg, #fff9df, #f4e3a3);
  border: 1px solid rgba(184, 135, 33, 0.36);
  border-radius: 12px;
}

.hero-credential-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-credential-strip li > span:last-child {
  display: grid;
  min-width: 0;
  line-height: 1.15;
}

.hero-credential-strip strong {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-credential-strip small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.25;
}

.hero-form-card {
  max-width: 520px;
}

.quote-form {
  padding: 28px 24px 20px;
  background: #ffffff;
  border-color: rgba(16, 32, 51, 0.14);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(9, 27, 48, 0.14);
}

.quote-form::before {
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #d4a83c 72%, var(--orange));
}

.form-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--orange-dark);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quote-form h2 {
  margin: 0 0 7px;
  padding: 0;
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.form-intro {
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-grid {
  gap: 11px 12px;
}

.form-field {
  gap: 4px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 720;
}

.quote-form input,
.quote-form textarea {
  min-height: 48px;
  padding: 11px 13px;
  background: #f8faf9;
  border-color: rgba(16, 32, 51, 0.16);
  border-radius: 10px;
}

.quote-form textarea {
  min-height: 78px;
}

.vehicle-details-field {
  padding: 9px;
  background: #f3f8f4;
  border-color: rgba(22, 122, 54, 0.14);
}

.field-error {
  color: var(--danger);
  font-size: 0.76rem;
  line-height: 1.25;
}

.form-note {
  margin-top: 8px;
  color: #425161;
  font-size: 0.78rem;
}

.privacy-note {
  margin-top: 6px;
  font-size: 0.72rem;
}

.trust-band {
  padding: 0;
  background: #ffffff;
  border-top: 1px solid rgba(16, 32, 51, 0.05);
  border-bottom: 1px solid var(--line);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 12px 0;
  margin: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 8px clamp(18px, 3vw, 34px);
  color: #283746;
  border-left: 1px solid var(--line);
}

.benefit-list li:first-child {
  border-left: 0;
}

.benefit-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--orange-dark);
  background: #e7f4ea;
  border: 1px solid rgba(22, 122, 54, 0.14);
  border-radius: 12px;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-list li > span:last-child {
  display: grid;
  line-height: 1.2;
}

.benefit-list strong {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 820;
}

.benefit-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 620;
}

#vehicles,
#brisbane-suburbs,
#contact {
  background: var(--bg-2);
  border-top: 1px solid rgba(16, 32, 51, 0.05);
  border-bottom: 1px solid rgba(16, 32, 51, 0.05);
}

.card-grid {
  gap: 14px;
}

.card {
  padding: 20px;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.06);
}

.card:hover,
.card:focus-within {
  border-color: rgba(22, 122, 54, 0.28);
  transform: translateY(-2px);
}

.steps {
  gap: 14px;
}

.make-strip {
  margin-top: 26px;
  padding: 22px;
  box-shadow: none;
}

.make-logo-tile {
  min-height: 92px;
  padding: 12px 8px;
  box-shadow: none;
}

.step-card {
  box-shadow: none;
}

.step-card {
  padding: 20px;
}

.step-card h3 {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding-left: 50px;
}

.step-card::before {
  top: 20px;
  left: 20px;
  z-index: 1;
}

.section-cta {
  padding: 20px;
  background: #ffffff;
  border-color: rgba(22, 122, 54, 0.18);
}

.faq-list {
  max-width: 860px;
  margin-inline: auto;
}

.faq-list details {
  background: #ffffff;
}

.faq-list details:hover,
.faq-list details[open] {
  background: #f8fbf9;
}

.site-footer {
  padding-top: 48px;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(410px, 0.88fr);
  }

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

  .hero-form-card .vehicle-details-field,
  .hero-form-card .button {
    grid-column: 1 / -1;
  }

}

@media (max-width: 899px) {
  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 0 40px;
  }

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

  .hero-form-card {
    display: block !important;
    width: 100%;
    max-width: 640px;
    justify-self: start;
  }

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

  .hero-form-card .vehicle-details-field,
  .hero-form-card .button {
    grid-column: 1 / -1;
  }

  .hero-form-card .hero-optional-field {
    display: block;
  }

  .hero-actions .button-primary {
    display: inline-flex;
  }

  .hero-actions .button {
    width: auto;
  }

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

  .hero-actions .button {
    width: 100%;
    padding-inline: 12px;
    text-align: center;
  }

  .hero-mobile-quote {
    display: inline-flex;
  }

  .mobile-phone {
    position: fixed;
    right: 16px;
    bottom: 90px;
    z-index: 1100;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #ffffff;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(15, 99, 43, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-phone.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-phone svg {
    width: 21px;
    height: 21px;
  }

  .mobile-cta-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1090;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 8px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line-strong);
    backdrop-filter: blur(14px);
  }

  .mobile-cta-bar .button {
    min-height: 48px;
    padding: 10px 8px;
    font-size: 0.82rem;
    white-space: normal;
  }

}

@media (max-width: 619px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 46px 0;
  }

  .section-title,
  .section-title.center {
    margin-inline: 0;
    margin-bottom: 22px;
    text-align: left;
  }

  .section-title.center .eyebrow {
    justify-content: flex-start;
  }

  .section-title p {
    margin-inline: 0;
  }

  .hero-inner {
    gap: 18px;
    padding: 28px 0 26px;
  }

  .hero h1 {
    margin-bottom: 15px;
    font-size: clamp(2.15rem, 10.5vw, 2.75rem);
    line-height: 1.04;
  }

  .hero-subheadline {
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.54;
  }

  .hero-actions {
    display: none;
  }

  .hero-form-card {
    max-width: none;
    padding: 22px 16px 17px;
    border-radius: 18px;
  }

  .hero-form-card h2 {
    padding: 0;
    font-size: 1.42rem;
  }

  .hero-form-card .form-intro {
    margin-bottom: 10px;
    font-size: 0.85rem;
  }

  .hero-form-card .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-card .hero-car-field,
  .hero-form-card .button {
    grid-column: auto;
  }

  .hero-credential-strip li {
    grid-template-columns: 1fr;
    gap: 6px;
    justify-items: center;
    min-height: 92px;
    padding: 9px 5px;
    text-align: center;
  }

  .hero-credential-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .hero-credential-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-credential-strip strong {
    font-size: 0.74rem;
  }

  .hero-credential-strip small {
    font-size: 0.68rem;
  }

  .benefit-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 9px 0;
  }

  .benefit-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    justify-items: center;
    min-height: 82px;
    padding: 8px 5px;
    text-align: center;
  }

  .benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .benefit-icon svg {
    width: 17px;
    height: 17px;
  }

  .benefit-list strong {
    font-size: 0.72rem;
  }

  .benefit-list small {
    display: none;
  }

  .make-strip {
    padding: 16px;
  }

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

  .site-footer {
    padding-top: 42px;
  }
}

@media (max-width: 340px) {
  .mobile-cta-bar {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .mobile-cta-bar .button {
    padding: 8px 4px;
    font-size: 0.72rem;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #07111f;
    --bg-2: #0a1626;
    --panel: #101d2e;
    --panel-2: #142438;
    --ink: #f4f7fb;
    --muted: #acb8c7;
    --orange: #43ca69;
    --orange-2: #67d986;
    --orange-dark: #8ae5a1;
    --danger: #fda4af;
  }

  body {
    background: var(--bg);
  }

  .button-primary {
    color: #06130a;
    background: var(--orange);
    box-shadow: 0 12px 30px rgba(67, 202, 105, 0.18);
  }

  .button-primary:hover,
  .button-primary:focus-visible {
    background: var(--orange-2);
  }

  .hero {
    background:
      radial-gradient(circle at 8% 18%, rgba(67, 202, 105, 0.1), transparent 30rem),
      radial-gradient(circle at 72% 12%, rgba(224, 183, 80, 0.08), transparent 24rem),
      linear-gradient(145deg, #071321 0%, #0a1929 58%, #081522 100%);
    border-color: var(--line);
  }

  .hero-subheadline {
    color: #c4ceda;
  }

  .hero-credential-strip {
    background: rgba(15, 29, 47, 0.88);
    border-color: rgba(224, 183, 80, 0.34);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .hero-credential-strip li {
    border-color: rgba(224, 183, 80, 0.2);
  }

  .hero-credential-icon {
    color: #f2cf6d;
    background: rgba(224, 183, 80, 0.1);
    border-color: rgba(224, 183, 80, 0.28);
  }

  .quote-form {
    background: #0f1d2f;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
  }

  .quote-form input,
  .quote-form textarea {
    background: #14263b;
    border-color: rgba(255, 255, 255, 0.16);
  }

  .vehicle-details-field {
    background: #122337;
  }

  .form-note {
    color: #bdc7d4;
  }

  .trust-band {
    background: #081321;
  }

  .benefit-list li {
    color: #e5ebf2;
  }

  .benefit-icon {
    color: var(--orange-dark);
    background: rgba(67, 202, 105, 0.12);
    border-color: rgba(67, 202, 105, 0.18);
  }

  #vehicles,
  #brisbane-suburbs,
  #contact {
    background: var(--bg-2);
    border-color: rgba(255, 255, 255, 0.06);
  }

  .card,
  .make-strip,
  .make-logo-tile,
  .section-cta,
  .faq-list details {
    background: var(--panel);
  }

  .make-logo-img {
    width: min(112px, 88%);
    height: 50px;
    margin-inline: auto;
    padding: 7px 10px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    filter: none;
  }

  .make-logo-img[alt="Mercedes-Benz logo"] {
    width: min(132px, 96%);
    padding-inline: 6px;
    object-position: center;
  }

  .faq-list details:hover,
  .faq-list details[open] {
    background: #142438;
  }

}

@media (prefers-color-scheme: dark) and (max-width: 899px) {
  .mobile-cta-bar {
    background: rgba(7, 17, 31, 0.97);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.about-section {
  overflow: hidden;
  background: var(--bg);
  border-block: 1px solid var(--line);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.about-copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.about-copy > p {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.72;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.about-text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--orange-dark);
  border-bottom: 1px solid color-mix(in srgb, var(--orange) 45%, transparent);
  font-size: 0.9rem;
  font-weight: 780;
}

.about-text-link:hover,
.about-text-link:focus-visible {
  color: var(--ink);
  outline: none;
}

.about-credentials {
  position: relative;
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 34px);
  background: linear-gradient(145deg, color-mix(in srgb, var(--panel) 94%, var(--orange) 6%), var(--panel));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.about-credentials::before {
  content: "AK";
  position: absolute;
  top: -26px;
  right: 22px;
  color: color-mix(in srgb, var(--orange) 9%, transparent);
  font-size: 7rem;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.about-credential {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.about-credential.is-licensed {
  border-color: color-mix(in srgb, var(--orange) 44%, var(--line));
  box-shadow: inset 4px 0 0 var(--orange);
}

.about-credential-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  background: var(--orange);
  border-radius: 14px 14px 14px 5px;
  box-shadow: 0 10px 24px rgba(15, 99, 43, 0.2);
  font-size: 1rem;
  font-weight: 920;
}

.about-credential strong {
  display: block;
  margin: 2px 0 5px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.about-credential p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.offer-credential .about-credential-mark {
  color: #06130a;
  background: var(--orange-2);
}

@media (max-width: 899px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-credentials {
    max-width: 680px;
  }
}

@media (max-width: 520px) {
  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-actions .button,
  .about-text-link {
    width: 100%;
    justify-content: center;
  }

  .about-credential {
    grid-template-columns: 42px 1fr;
    gap: 11px;
    padding: 14px;
  }

  .about-credential-mark {
    width: 42px;
    height: 42px;
  }
}

.removal-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, color-mix(in srgb, var(--orange) 10%, transparent), transparent 24rem),
    var(--bg-2);
  border-block: 1px solid var(--line);
}

.removal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: center;
}

.removal-copy h2 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.03em;
}

.removal-copy > p {
  max-width: 760px;
  line-height: 1.72;
}

.removal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 24px;
}

.removal-summary {
  position: relative;
  padding: clamp(24px, 5vw, 38px);
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(145deg, #081728, #0e2a1b);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(4, 15, 28, 0.2);
}

.removal-summary::after {
  content: "AK";
  position: absolute;
  right: -8px;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.045);
  font-size: 9rem;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.removal-summary strong {
  display: block;
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.removal-summary ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.removal-summary li {
  position: relative;
  z-index: 1;
  padding-left: 28px;
  color: #d7e3ef;
}

.removal-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange-2);
  font-weight: 950;
}

.vehicle-section-cta {
  max-width: 860px;
}

@media (max-width: 899px) {
  .removal-layout {
    grid-template-columns: 1fr;
  }

  .removal-summary {
    max-width: 680px;
  }

  .mobile-cta-bar,
  .mobile-phone {
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-cta-bar.is-context-hidden,
  .mobile-phone.is-context-hidden {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(12px) !important;
  }
}

@media (max-width: 700px) {
  .removal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .removal-actions .button {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-color-scheme: dark) {
  .removal-section {
    background:
      radial-gradient(circle at 88% 15%, rgba(67, 202, 105, 0.09), transparent 24rem),
      var(--bg-2);
  }
}

.title-accent {
  color: var(--orange-2);
}

.hero-motto {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 0;
  color: var(--orange-dark);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  font-weight: 820;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.hero-motto::before {
  content: "";
  width: 34px;
  height: 2px;
  flex: 0 0 34px;
  background: linear-gradient(90deg, var(--orange), #d5a83b);
  border-radius: 99px;
}

@media (max-width: 619px) {
  /* Keep the quote card visibly entering the first mobile screen. */
  .hero-inner {
    gap: 14px;
    padding: 22px 0 20px;
  }

  .hero h1 {
    margin-bottom: 10px;
  }

  .hero-motto {
    gap: 8px;
    margin-bottom: 10px;
    padding: 0;
    font-size: 0.94rem;
  }

  .hero-motto::before {
    width: 22px;
    height: 2px;
    flex-basis: 22px;
  }

  .hero-subheadline {
    margin-bottom: 12px;
    line-height: 1.48;
  }

  .hero-actions {
    display: none;
  }
}

@media (prefers-color-scheme: dark) {
  .hero-motto {
    color: #baf7c9;
  }
}

.coverage-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.vehicle-coverage-group {
  margin-top: 32px;
}

.condition-coverage-group {
  margin-top: 42px;
}

.vehicle-coverage-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 13px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.vehicle-coverage-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  letter-spacing: -0.02em;
}

.vehicle-type-grid,
.condition-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vehicle-type-card,
.condition-icon-card {
  min-width: 0;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(15, 31, 49, 0.07);
  text-align: center;
}

.vehicle-type-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 94px;
  align-items: center;
  gap: 8px;
  padding: 11px 13px 11px 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--orange) 7%, transparent), transparent 58%),
    var(--panel);
  border-radius: 14px;
  text-align: left;
}

.vehicle-type-art {
  width: 72px;
  height: 58px;
  overflow: visible;
}

.vehicle-type-card h4,
.condition-icon-card h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 820;
}

.vehicle-type-card h4 {
  font-size: 0.86rem;
  line-height: 1.3;
}

.condition-icon-card {
  --condition-accent: #1f9845;
  --condition-soft: rgba(31, 152, 69, 0.12);
  position: relative;
  display: grid;
  grid-template-rows: 96px 1fr;
  min-height: 158px;
  padding: 8px 8px 15px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow:
    inset 0 3px 0 var(--condition-accent),
    0 14px 32px rgba(15, 31, 49, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.condition-icon-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -46px;
  width: 92px;
  height: 92px;
  background: var(--condition-soft);
  border-radius: 50%;
  pointer-events: none;
}

.condition-art-stage {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 88px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 64%, var(--condition-soft), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(240, 247, 244, 0.6));
  border: 1px solid color-mix(in srgb, var(--condition-accent) 18%, var(--line));
  border-radius: 12px;
}

.condition-art {
  width: 108px;
  height: 76px;
  overflow: visible;
  filter: drop-shadow(0 7px 6px rgba(13, 41, 64, 0.12));
}

.condition-icon-card h4 {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 18ch;
  margin: 10px auto 0;
  font-size: 0.86rem;
  line-height: 1.28;
}

.condition-icon-card.tone-red {
  --condition-accent: #d64545;
  --condition-soft: rgba(214, 69, 69, 0.12);
}

.condition-icon-card.tone-cyan {
  --condition-accent: #168da3;
  --condition-soft: rgba(22, 141, 163, 0.13);
}

.condition-icon-card.tone-amber {
  --condition-accent: #b87509;
  --condition-soft: rgba(184, 117, 9, 0.14);
}

.condition-icon-card.tone-purple {
  --condition-accent: #7c5db3;
  --condition-soft: rgba(124, 93, 179, 0.14);
}

.condition-icon-card.tone-slate {
  --condition-accent: #53657a;
  --condition-soft: rgba(83, 101, 122, 0.14);
}

.condition-icon-card.tone-rust {
  --condition-accent: #a64f20;
  --condition-soft: rgba(166, 79, 32, 0.15);
}

@media (hover: hover) {
  .vehicle-type-card,
  .condition-icon-card {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .vehicle-type-card:hover,
  .condition-icon-card:hover {
    border-color: var(--orange);
    box-shadow: 0 18px 38px rgba(15, 31, 49, 0.12);
    transform: translateY(-3px);
  }

  .condition-icon-card:hover {
    border-color: var(--condition-accent);
    box-shadow:
      inset 0 3px 0 var(--condition-accent),
      0 18px 38px rgba(15, 31, 49, 0.12);
  }
}

@media (min-width: 620px) {
  .vehicle-type-grid,
  .condition-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (min-width: 940px) {
  .vehicle-type-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .vehicle-type-card {
    grid-template-columns: 1fr;
    min-height: 142px;
    align-content: center;
    padding: 14px 10px;
    text-align: center;
  }

  .vehicle-type-art {
    width: 86px;
    height: 64px;
    margin-inline: auto;
  }

  .condition-icon-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .vehicle-type-grid,
  .condition-icon-grid {
    gap: 9px;
  }

  .vehicle-type-card {
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 88px;
    padding: 9px 9px 9px 5px;
  }

  .vehicle-type-art {
    width: 62px;
    height: 52px;
  }

  .vehicle-type-card h4 {
    font-size: 0.78rem;
  }

  .condition-icon-card {
    grid-template-rows: 82px 1fr;
    min-height: 146px;
    padding: 7px 7px 13px;
    border-radius: 14px;
  }

  .condition-art-stage {
    height: 78px;
    border-radius: 10px;
  }

  .condition-art {
    width: 96px;
    height: 68px;
  }

  .condition-icon-card h4 {
    margin-top: 8px;
    font-size: 0.78rem;
  }

  .condition-icon-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }
}

@media (prefers-color-scheme: dark) {
  .vehicle-type-card,
  .condition-icon-card {
    background: #0e1e31;
    border-color: rgba(255, 255, 255, 0.13);
  }

  .vehicle-type-card {
    background:
      linear-gradient(135deg, rgba(67, 202, 105, 0.09), transparent 58%),
      #0e1e31;
  }

  .condition-art-stage {
    background:
      radial-gradient(circle at 50% 64%, var(--condition-soft), transparent 56%),
      linear-gradient(180deg, #152a41, #102136);
    border-color: color-mix(in srgb, var(--condition-accent) 28%, rgba(255, 255, 255, 0.12));
  }
}

#why {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, color-mix(in srgb, var(--orange) 7%, transparent), transparent 23rem),
    radial-gradient(circle at 94% 78%, rgba(63, 170, 218, 0.07), transparent 25rem);
}

.why-section-title {
  max-width: 780px;
}

.why-feature-grid,
.why-support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.why-feature-grid {
  margin-bottom: 16px;
}

.why-feature-card,
.why-support-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(15, 31, 49, 0.08);
}

.why-feature-card {
  display: grid;
  min-height: 370px;
  align-content: space-between;
  padding: 24px 22px 12px;
  background:
    radial-gradient(circle at 88% 85%, color-mix(in srgb, var(--feature-accent) 16%, transparent), transparent 14rem),
    linear-gradient(145deg, color-mix(in srgb, var(--feature-accent) 8%, var(--panel)), var(--panel) 58%);
  border-color: color-mix(in srgb, var(--feature-accent) 30%, var(--line));
  border-radius: 22px;
  box-shadow:
    inset 0 4px 0 var(--feature-accent),
    0 20px 48px rgba(15, 31, 49, 0.1);
  isolation: isolate;
}

.why-feature-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  z-index: -1;
  width: 180px;
  height: 180px;
  background: color-mix(in srgb, var(--feature-accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--feature-accent) 18%, transparent);
  border-radius: 50%;
}

.why-offer-feature {
  --feature-accent: #1f9845;
}

.why-environment-feature {
  --feature-accent: #168da3;
}

.why-feature-copy {
  position: relative;
  z-index: 2;
}

.why-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--feature-accent) 86%, var(--ink));
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.why-card-label::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--feature-accent);
  border-radius: 999px;
}

.why-feature-card h3,
.why-support-card h3 {
  margin: 0;
  color: var(--ink);
}

.why-feature-card h3 {
  max-width: 17ch;
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 6vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.why-feature-card p {
  max-width: 42ch;
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.why-feature-art {
  position: relative;
  z-index: 1;
  width: min(100%, 285px);
  height: auto;
  justify-self: center;
  margin-top: 8px;
  overflow: visible;
  filter: drop-shadow(0 12px 10px rgba(13, 41, 64, 0.12));
}

.why-support-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  min-height: 150px;
  align-items: center;
  gap: 16px;
  padding: 17px;
  border-radius: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.why-support-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -52px;
  width: 110px;
  height: 110px;
  background: color-mix(in srgb, var(--orange) 6%, transparent);
  border-radius: 50%;
  pointer-events: none;
}

.why-support-art {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 78px;
  padding: 5px;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 62%, color-mix(in srgb, var(--orange) 13%, transparent), transparent 66%),
    color-mix(in srgb, var(--panel-2) 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--orange) 18%, var(--line));
  border-radius: 16px;
}

.why-support-card > div {
  position: relative;
  z-index: 1;
}

.why-support-card h3 {
  margin-bottom: 7px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.why-support-card p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.5;
}

.why-art-shadow { fill: #d7e3e9; opacity: 0.76; }
.why-art-stroke { stroke: #0b2940; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.why-art-detail { fill: none; stroke: #0b2940; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.why-art-green { fill: #39c86a; }
.why-art-green-dark { fill: #178a49; }
.why-art-blue { fill: #55bce8; }
.why-art-blue-soft { fill: #d8f4ff; }
.why-art-yellow { fill: #ffd34e; }
.why-art-paper { fill: #ffffff; }
.why-art-window { fill: #d8f4ff; }
.why-art-leaf { fill: #73d67f; }
.why-art-tyre { fill: #13293d; }
.why-art-wheel { fill: #dce6ec; stroke: #0b2940; stroke-width: 2; }
.why-art-road { fill: none; stroke: #90a3af; stroke-width: 3; stroke-linecap: round; }
.why-art-motion { fill: none; stroke: #39c86a; stroke-width: 4; stroke-linecap: round; }
.why-art-paper-line { fill: none; stroke: #ffffff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.why-art-red-line { fill: none; stroke: #ef5b57; stroke-width: 4; stroke-linecap: round; }
.why-art-green-line { fill: none; stroke: #1f9845; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.why-art-step-line { fill: none; stroke: #a9bac4; stroke-width: 5; stroke-linecap: round; }

.why-price-symbol,
.why-small-dollar {
  fill: #0b2940;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 950;
}

.why-price-symbol {
  font-size: 40px;
}

.why-small-dollar {
  font-size: 21px;
}

.reveal.is-visible .why-offer-car,
.reveal.is-visible .why-environment-car {
  transform-box: fill-box;
  transform-origin: center;
  animation: why-car-float 3.2s ease-in-out infinite;
}

.reveal.is-visible .why-price-tag {
  transform-box: fill-box;
  transform-origin: 15% 15%;
  animation: why-tag-swing 3.6s ease-in-out infinite;
}

.reveal.is-visible .why-offer-spark {
  transform-box: fill-box;
  transform-origin: center;
  animation: why-spark-pulse 2.4s ease-in-out infinite;
}

.reveal.is-visible .why-recycle-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: why-recycle-turn 14s linear infinite;
}

.reveal.is-visible .why-leaf {
  transform-box: fill-box;
  transform-origin: 75% 75%;
  animation: why-leaf-sway 3s ease-in-out infinite;
}

.reveal.is-visible .why-tow-truck {
  transform-box: fill-box;
  transform-origin: center;
  animation: why-truck-bob 2.8s ease-in-out infinite;
}

.reveal.is-visible .why-speed-lines {
  animation: why-speed-lines 1.5s ease-in-out infinite;
}

.reveal.is-visible .why-free-tag,
.reveal.is-visible .why-phone-scene,
.reveal.is-visible .why-calendar-scene {
  transform-box: fill-box;
  transform-origin: center;
  animation: why-scene-pulse 3.2s ease-in-out infinite;
}

.reveal.is-visible .why-step-one { animation: why-step-highlight 3s ease-in-out infinite; }
.reveal.is-visible .why-step-two { animation: why-step-highlight 3s 0.35s ease-in-out infinite; }
.reveal.is-visible .why-step-three { animation: why-step-highlight 3s 0.7s ease-in-out infinite; }

@keyframes why-car-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes why-tag-swing {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(3deg); }
}

@keyframes why-spark-pulse {
  0%, 100% { opacity: 0.7; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes why-recycle-turn {
  to { transform: rotate(360deg); }
}

@keyframes why-leaf-sway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(5deg); }
}

@keyframes why-truck-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes why-speed-lines {
  0%, 100% { opacity: 0.35; transform: translateX(5px); }
  50% { opacity: 1; transform: translateX(0); }
}

@keyframes why-scene-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@keyframes why-step-highlight {
  0%, 55%, 100% { opacity: 0.62; }
  12%, 35% { opacity: 1; }
}

@media (hover: hover) {
  .why-feature-card,
  .why-support-card {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .why-feature-card:hover {
    border-color: var(--feature-accent);
    box-shadow:
      inset 0 4px 0 var(--feature-accent),
      0 24px 54px rgba(15, 31, 49, 0.14);
    transform: translateY(-4px);
  }

  .why-support-card:hover {
    border-color: color-mix(in srgb, var(--orange) 46%, var(--line));
    box-shadow: 0 20px 42px rgba(15, 31, 49, 0.12);
    transform: translateY(-3px);
  }
}

@media (min-width: 620px) {
  .why-feature-card {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.86fr);
    min-height: 285px;
    align-items: center;
    padding: 26px 20px 20px 28px;
  }

  .why-feature-art {
    width: min(100%, 300px);
    margin: 0;
  }

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

  .why-support-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .why-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
  }

  .why-feature-card {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 0.86fr);
    min-height: 310px;
  }

  .why-feature-art {
    width: min(100%, 255px);
  }

  .why-support-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
  }

  .why-support-card {
    grid-column: span 2;
  }

  .why-support-card:nth-child(4),
  .why-support-card:nth-child(5),
  .why-support-card:last-child:nth-child(odd) {
    grid-column: span 3;
  }
}

@media (max-width: 420px) {
  .why-feature-card {
    min-height: 350px;
    padding: 21px 18px 10px;
    border-radius: 18px;
  }

  .why-feature-card h3 {
    font-size: 1.48rem;
  }

  .why-feature-card p {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .why-feature-art {
    width: min(100%, 250px);
    margin-top: 2px;
  }

  .why-support-card {
    grid-template-columns: 80px minmax(0, 1fr);
    min-height: 138px;
    gap: 13px;
    padding: 14px;
  }

  .why-support-art {
    width: 80px;
    height: 70px;
    padding: 3px;
    border-radius: 14px;
  }

  .why-support-card h3 {
    font-size: 1rem;
  }

  .why-support-card p {
    font-size: 0.8rem;
    line-height: 1.45;
  }
}

@media (prefers-color-scheme: dark) {
  .why-feature-card,
  .why-support-card {
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  }

  .why-feature-card {
    background:
      radial-gradient(circle at 88% 85%, color-mix(in srgb, var(--feature-accent) 17%, transparent), transparent 14rem),
      linear-gradient(145deg, color-mix(in srgb, var(--feature-accent) 11%, #0e1e31), #0e1e31 60%);
    border-color: color-mix(in srgb, var(--feature-accent) 38%, rgba(255, 255, 255, 0.12));
  }

  .why-support-card {
    background: #0e1e31;
  }

  .why-support-art {
    background:
      radial-gradient(circle at 50% 62%, color-mix(in srgb, var(--orange) 15%, transparent), transparent 66%),
      #152a41;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .why-art-shadow {
    fill: #0a1421;
  }
}

/* Brisbane pickup network */
.pickup-area-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 15%, color-mix(in srgb, var(--orange) 8%, transparent), transparent 23rem),
    radial-gradient(circle at 96% 72%, rgba(69, 165, 210, 0.08), transparent 25rem),
    var(--bg-2);
}

.pickup-area-title {
  max-width: 880px;
}

.pickup-network,
.pickup-region-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.pickup-area-feature,
.pickup-region-card,
.pickup-start-cta {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
}

.pickup-area-feature {
  display: grid;
  min-height: 430px;
  align-content: space-between;
  padding: 25px 22px 10px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 75%, rgba(67, 202, 105, 0.24), transparent 16rem),
    linear-gradient(145deg, #0a2638, #0f4939 62%, #167a36);
  border: 1px solid rgba(103, 217, 134, 0.34);
  box-shadow: 0 24px 58px rgba(8, 38, 49, 0.22);
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pickup-area-feature::before,
.pickup-area-feature::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(103, 217, 134, 0.15);
  border-radius: 50%;
}

.pickup-area-feature::before {
  top: -120px;
  right: -90px;
  width: 300px;
  height: 300px;
}

.pickup-area-feature::after {
  right: 80px;
  bottom: -140px;
  width: 260px;
  height: 260px;
}

.pickup-area-feature-copy {
  position: relative;
  z-index: 2;
}

.pickup-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pickup-card-kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.pickup-area-feature .pickup-card-kicker {
  color: #8ff0aa;
}

.pickup-area-feature strong {
  display: block;
  max-width: 14ch;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(1.7rem, 7vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.pickup-area-feature p {
  max-width: 45ch;
  margin-bottom: 16px;
  color: rgba(238, 249, 245, 0.8);
  font-size: 0.94rem;
  line-height: 1.55;
}

.pickup-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-size: 0.79rem;
  font-weight: 900;
  line-height: 1.3;
}

.pickup-area-feature .pickup-card-action {
  color: #a5f4b9;
}

.pickup-card-action > span {
  display: inline-block;
  transition: transform 180ms ease;
}

.pickup-network-art {
  position: relative;
  z-index: 1;
  width: min(100%, 310px);
  height: auto;
  justify-self: center;
  margin-top: 4px;
  overflow: visible;
  filter: drop-shadow(0 13px 11px rgba(1, 19, 27, 0.22));
}

.pickup-art-shadow { fill: rgba(2, 18, 28, 0.38); }
.pickup-building-one { fill: #298f72; }
.pickup-building-two { fill: #42c26d; }
.pickup-building-three { fill: #2b7890; }
.pickup-window-lines { fill: none; stroke: rgba(230, 255, 238, 0.72); stroke-width: 3; stroke-linecap: round; }
.pickup-route-line { fill: none; stroke: #8ff0aa; stroke-width: 5; stroke-linecap: round; stroke-dasharray: 10 11; }
.pickup-car-body { fill: #ffd34e; stroke: #071c2d; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.pickup-car-window { fill: #d8f4ff; stroke: #071c2d; stroke-width: 2.5; stroke-linejoin: round; }
.pickup-car-wheel { fill: #10273a; stroke: #dce8ee; stroke-width: 3; }

.pickup-map-pin path {
  fill: #ffd34e;
  stroke: #071c2d;
  stroke-width: 3;
}

.pickup-map-pin circle {
  fill: #ffffff;
  stroke: #071c2d;
  stroke-width: 2;
}

.pickup-region-grid {
  margin-top: 14px;
}

.pickup-region-card {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  min-height: 158px;
  align-items: center;
  gap: 16px;
  padding: 17px;
  color: var(--ink);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--orange) 6%, transparent), transparent 58%),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(15, 31, 49, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pickup-region-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 110px;
  height: 110px;
  background: color-mix(in srgb, var(--orange) 6%, transparent);
  border-radius: 50%;
  pointer-events: none;
}

.pickup-region-art {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 82px;
  padding: 3px;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--orange) 13%, transparent), transparent 68%),
    color-mix(in srgb, var(--panel-2) 85%, transparent);
  border: 1px solid color-mix(in srgb, var(--orange) 20%, var(--line));
  border-radius: 16px;
}

.pickup-region-orbit { fill: none; stroke: color-mix(in srgb, var(--orange) 24%, transparent); stroke-width: 2; stroke-dasharray: 4 6; }
.pickup-direction-arrow { fill: none; stroke: #1f9845; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.pickup-ground-line { fill: none; stroke: #718797; stroke-width: 3; stroke-linecap: round; }
.pickup-region-skyline { fill: #55bce8; stroke: #0b2940; stroke-width: 2.5; stroke-linejoin: round; }
.pickup-region-dot { fill: #ffd34e; stroke: #0b2940; stroke-width: 2.5; }
.pickup-region-bridge { fill: none; stroke: #0b2940; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.pickup-region-wave { fill: none; stroke: #168da3; stroke-width: 3; stroke-linecap: round; }
.pickup-region-sun { fill: #ffd34e; stroke: #0b2940; stroke-width: 2.5; }
.pickup-region-hills { fill: #73d67f; stroke: #0b2940; stroke-width: 2.5; stroke-linejoin: round; }

.pickup-region-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  min-width: 0;
}

.pickup-region-copy strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 880;
  line-height: 1.18;
}

.pickup-region-copy > span:not(.pickup-card-action) {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.pickup-start-cta {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px 22px;
  margin-top: 18px;
  background:
    radial-gradient(circle at 90% 15%, color-mix(in srgb, var(--orange) 13%, transparent), transparent 14rem),
    linear-gradient(135deg, color-mix(in srgb, var(--orange) 8%, var(--panel)), var(--panel));
  border: 1px solid color-mix(in srgb, var(--orange) 27%, var(--line));
  box-shadow: 0 16px 42px rgba(15, 31, 49, 0.08);
}

.pickup-start-cta::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border: 16px solid color-mix(in srgb, var(--orange) 7%, transparent);
  border-radius: 50%;
  pointer-events: none;
}

.pickup-start-cta > div,
.pickup-start-cta .button {
  position: relative;
  z-index: 1;
}

.pickup-start-cta h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: clamp(1.35rem, 5vw, 1.8rem);
  line-height: 1.1;
}

.pickup-start-cta p {
  max-width: 620px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.pickup-start-cta .pickup-card-kicker {
  margin-bottom: 8px;
}

.pickup-start-cta .button {
  width: 100%;
}

.reveal.is-visible .pickup-route-line {
  animation: pickup-route-flow 8s linear infinite;
}

.reveal.is-visible .pickup-route-car {
  transform-box: fill-box;
  transform-origin: center;
  animation: pickup-car-float 3s ease-in-out infinite;
}

.reveal.is-visible .pickup-pin-one,
.reveal.is-visible .pickup-pin-two {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: pickup-pin-bob 3.1s ease-in-out infinite;
}

.reveal.is-visible .pickup-pin-two {
  animation-delay: 0.7s;
}

.reveal.is-visible .pickup-region-orbit {
  transform-box: fill-box;
  transform-origin: center;
  animation: pickup-orbit-turn 18s linear infinite;
}

@keyframes pickup-route-flow {
  to { stroke-dashoffset: -84; }
}

@keyframes pickup-car-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes pickup-pin-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes pickup-orbit-turn {
  to { transform: rotate(360deg); }
}

.pickup-area-feature:focus-visible,
.pickup-region-card:focus-visible {
  outline: 3px solid var(--orange-2);
  outline-offset: 3px;
}

@media (hover: hover) {
  .pickup-area-feature:hover {
    border-color: rgba(143, 240, 170, 0.74);
    box-shadow: 0 28px 64px rgba(8, 38, 49, 0.28);
    transform: translateY(-4px);
  }

  .pickup-region-card:hover {
    color: var(--ink);
    border-color: color-mix(in srgb, var(--orange) 52%, var(--line));
    box-shadow: 0 22px 48px rgba(15, 31, 49, 0.12);
    transform: translateY(-3px);
  }

  .pickup-area-feature:hover .pickup-card-action > span,
  .pickup-region-card:hover .pickup-card-action > span {
    transform: translateX(4px);
  }
}

@media (min-width: 620px) {
  .pickup-region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pickup-start-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 26px 28px;
  }

  .pickup-start-cta .button {
    width: auto;
    min-width: 210px;
  }
}

@media (min-width: 760px) {
  .pickup-area-feature {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    min-height: 330px;
    align-items: center;
    padding: 30px 28px;
  }

  .pickup-network-art {
    width: min(100%, 340px);
    margin: 0;
  }
}

@media (min-width: 1040px) {
  .pickup-area-feature {
    padding: 34px 38px;
  }

  .pickup-region-card {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 170px;
    padding: 20px;
  }

  .pickup-region-art {
    width: 108px;
    height: 88px;
  }
}

@media (max-width: 420px) {
  .pickup-area-feature {
    min-height: 410px;
    padding: 22px 18px 8px;
    border-radius: 18px;
  }

  .pickup-area-feature strong {
    font-size: 1.72rem;
  }

  .pickup-area-feature p {
    font-size: 0.88rem;
  }

  .pickup-network-art {
    width: min(100%, 275px);
  }

  .pickup-region-card {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 148px;
    gap: 13px;
    padding: 14px;
    border-radius: 16px;
  }

  .pickup-region-art {
    width: 86px;
    height: 74px;
  }

  .pickup-region-copy strong {
    font-size: 0.98rem;
  }

  .pickup-region-copy > span:not(.pickup-card-action),
  .pickup-card-action {
    font-size: 0.76rem;
  }

  .pickup-start-cta {
    padding: 21px 18px;
    border-radius: 18px;
  }
}

@media (prefers-color-scheme: dark) {
  .pickup-area-section {
    background:
      radial-gradient(circle at 4% 15%, rgba(67, 202, 105, 0.08), transparent 23rem),
      radial-gradient(circle at 96% 72%, rgba(69, 165, 210, 0.08), transparent 25rem),
      var(--bg-2);
  }

  .pickup-region-card,
  .pickup-start-cta {
    background:
      linear-gradient(135deg, rgba(67, 202, 105, 0.07), transparent 58%),
      #0e1e31;
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  }

  .pickup-region-art {
    background:
      radial-gradient(circle at 50% 50%, rgba(67, 202, 105, 0.13), transparent 68%),
      #152a41;
    border-color: rgba(255, 255, 255, 0.12);
  }
}

.about-credential.credential-gold .about-credential-mark {
  color: #3c2805;
  background: radial-gradient(circle at 32% 25%, #fff5b1, #e8b838 68%, #bb7818);
  border-color: rgba(255, 244, 176, 0.85);
  box-shadow: 0 0 0 3px rgba(218, 168, 43, 0.14), 0 10px 26px rgba(114, 75, 13, 0.2);
}

.about-credential.credential-gold {
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, #f3cd59 12%, var(--panel)), color-mix(in srgb, #b8791a 4%, var(--panel)));
  border-color: color-mix(in srgb, #d7a52b 55%, var(--line));
  box-shadow: inset 4px 0 0 #d9aa31, 0 12px 30px rgba(114, 75, 13, 0.08);
}

.about-credential.credential-gold::after {
  content: "";
  position: absolute;
  top: -46px;
  right: -38px;
  width: 120px;
  height: 120px;
  border: 1px solid color-mix(in srgb, #e5b639 24%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 15px color-mix(in srgb, #e5b639 5%, transparent);
  pointer-events: none;
}

.about-credential.credential-gold.offer-credential .about-credential-mark {
  color: #06130a;
  background: linear-gradient(145deg, var(--orange-2), var(--orange-dark));
  border-color: color-mix(in srgb, var(--orange-2) 65%, #ffffff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange-2) 14%, transparent), 0 10px 26px rgba(15, 99, 43, 0.22);
}

.closing-contact-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, color-mix(in srgb, var(--orange) 11%, transparent), transparent 24rem),
    radial-gradient(circle at 92% 86%, rgba(223, 174, 44, 0.1), transparent 24rem),
    var(--bg-2);
  border-top: 1px solid var(--line);
}

.closing-contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(22px, 3vw, 32px);
  padding: clamp(26px, 5vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--panel) 96%, var(--orange) 4%), var(--panel));
  border: 1px solid color-mix(in srgb, var(--orange) 26%, var(--line));
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(7, 19, 35, 0.16);
}

.closing-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #f0c956 52%, #48a9d6);
}

.closing-contact-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  align-self: center;
}

.closing-contact-copy h2 {
  max-width: 690px;
  margin-bottom: 17px;
  color: var(--ink);
  font-size: clamp(2rem, 4.5vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.closing-contact-copy > p:not(.contact-availability) {
  max-width: 650px;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 7px 0 23px;
  padding: 7px 12px 7px 7px;
  color: var(--muted);
  background: color-mix(in srgb, var(--orange) 8%, var(--panel));
  border: 1px solid color-mix(in srgb, var(--orange) 28%, var(--line));
  border-radius: 999px;
  font-size: 0.75rem;
  line-height: 1.35;
}

.contact-availability > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: #3a2604;
  background: radial-gradient(circle at 32% 25%, #fff4ae, #e6b537 72%);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(221, 173, 43, 0.12);
  font-size: 0.65rem;
  font-weight: 950;
}

.contact-availability strong {
  color: var(--ink);
}

.closing-contact-copy .button {
  width: auto;
}

.closing-contact-methods {
  position: relative;
  z-index: 3;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 1px;
}

.closing-contact-method {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 13px;
  color: var(--ink);
  background: color-mix(in srgb, var(--panel) 92%, var(--orange) 8%);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(9, 27, 48, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.closing-contact-method:hover,
.closing-contact-method:focus-visible {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--orange) 60%, var(--line));
  box-shadow: 0 16px 36px rgba(9, 27, 48, 0.13);
  outline: 3px solid color-mix(in srgb, var(--orange) 22%, transparent);
  outline-offset: 2px;
  transform: translateY(-3px);
}

.contact-method-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #f6fff8;
  background: linear-gradient(145deg, var(--orange), var(--orange-dark));
  border: 1px solid color-mix(in srgb, var(--orange) 65%, #ffffff);
  border-radius: 16px 16px 16px 6px;
  box-shadow: 0 9px 22px rgba(15, 99, 43, 0.2);
}

.is-sms .contact-method-icon {
  background: linear-gradient(145deg, #2888b7, #16658c);
  border-color: rgba(120, 204, 239, 0.55);
}

.is-email .contact-method-icon {
  color: #3a2604;
  background: linear-gradient(145deg, #f4d66e, #d5a22d);
  border-color: rgba(255, 239, 163, 0.8);
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.closing-contact-method > span:last-child {
  display: grid;
  min-width: 0;
}

.closing-contact-method strong {
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.25;
}

.closing-contact-method small {
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.closing-contact-method.is-call .contact-method-icon {
  animation: contact-phone-pulse 3.2s ease-in-out infinite;
}

.closing-contact-method.is-sms .contact-method-icon svg {
  animation: contact-message-bob 3.5s ease-in-out infinite;
}

.closing-contact-method.is-email .contact-method-icon svg {
  animation: contact-email-lift 3.8s ease-in-out infinite;
}

@keyframes contact-phone-pulse {
  0%, 72%, 100% { transform: rotate(0); }
  77% { transform: rotate(-4deg); }
  82% { transform: rotate(4deg); }
  87% { transform: rotate(0); }
}

@keyframes contact-message-bob {
  0%, 70%, 100% { transform: translateY(0); }
  80% { transform: translateY(-3px); }
}

@keyframes contact-email-lift {
  0%, 72%, 100% { transform: translateY(0); }
  82% { transform: translateY(-3px); }
}

@media (max-width: 560px) {
  .closing-contact-card {
    gap: 22px;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .closing-contact-copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .closing-contact-copy > p:not(.contact-availability) {
    font-size: 0.9rem;
  }

  .contact-availability {
    align-items: center;
    border-radius: 15px;
  }

  .closing-contact-copy .button {
    width: 100%;
  }

  .closing-contact-methods {
    gap: 7px;
  }

  .closing-contact-method {
    grid-template-columns: 1fr;
    gap: 7px;
    min-height: 132px;
    align-content: center;
    justify-items: center;
    padding: 10px 7px;
    text-align: center;
  }

  .contact-method-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px 14px 14px 5px;
  }

  .contact-method-icon svg {
    width: 21px;
    height: 21px;
  }

  .closing-contact-method strong {
    font-size: 0.73rem;
  }

  .closing-contact-method small {
    font-size: 0.62rem;
  }
}

@media (max-width: 365px) {
  .closing-contact-card {
    padding-inline: 13px;
  }

  .closing-contact-methods {
    gap: 5px;
  }

  .closing-contact-method {
    padding-inline: 4px;
  }

  .closing-contact-method small {
    font-size: 0.58rem;
  }
}

@media (prefers-color-scheme: dark) {
  .closing-contact-card {
    background:
      linear-gradient(135deg, rgba(67, 202, 105, 0.06), transparent 52%),
      #0d1d30;
    border-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  }

  .closing-contact-method {
    background: #14263a;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .contact-availability {
    background: rgba(232, 183, 53, 0.08);
    border-color: rgba(232, 183, 53, 0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  .shell-footer-badge::after,
  .closing-contact-method .contact-method-icon,
  .closing-contact-method .contact-method-icon svg {
    animation: none !important;
  }
}

/* 2026 conversion-led homepage refinement */
.mobile-contact-dock {
  display: none;
}

.hero-conversion {
  background:
    radial-gradient(circle at 7% 12%, rgba(46, 196, 92, 0.14), transparent 25rem),
    radial-gradient(circle at 78% 8%, rgba(232, 183, 53, 0.14), transparent 22rem),
    linear-gradient(145deg, #f8fcf9 0%, #edf6f0 54%, #fbfcf8 100%);
}

.hero-conversion::before,
.hero-conversion::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  pointer-events: none;
}

.hero-conversion::before {
  top: -190px;
  left: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(31, 152, 69, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(31, 152, 69, 0.025), 0 0 0 92px rgba(31, 152, 69, 0.018);
}

.hero-conversion::after {
  right: -90px;
  bottom: -145px;
  width: 370px;
  height: 300px;
  background: linear-gradient(135deg, rgba(19, 123, 63, 0.1), rgba(232, 183, 53, 0.09));
  border-radius: 45% 0 0 0;
  transform: rotate(-8deg);
}

.hero-conversion .hero-inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(38px, 5vw, 72px);
  padding-block: clamp(52px, 6vw, 78px);
}

.hero-offer-flag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 13px;
  margin-bottom: 19px;
  color: #775006;
  background: linear-gradient(135deg, #fff8d5, #f9e8a2);
  border: 1px solid rgba(185, 133, 27, 0.35);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(128, 91, 17, 0.08);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.015em;
  line-height: 1.25;
}

.hero-offer-flag > span {
  color: #e6a900;
  font-size: 0.95rem;
  filter: drop-shadow(0 0 4px rgba(230, 169, 0, 0.35));
}

.hero-conversion .eyebrow {
  display: block;
  margin-bottom: 9px;
}

.hero-conversion h1 {
  max-width: 720px;
  margin-bottom: 13px;
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-price {
  display: inline-block;
  color: #159141;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.hero-conversion .hero-motto {
  margin-bottom: 15px;
  color: #8b650e;
}

.hero-conversion .hero-subheadline {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.hero-conversion .hero-credential-strip {
  max-width: 680px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
}

.hero-conversion .hero-form-card {
  border-color: rgba(17, 65, 38, 0.17);
  box-shadow: 0 30px 75px rgba(9, 43, 27, 0.16);
}

.hero-conversion .hero-form-card::after {
  content: "Fast response · Direct contact";
  position: absolute;
  top: 18px;
  right: 20px;
  color: #587064;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.content-preview-section {
  position: relative;
  overflow: hidden;
}

.purchase-preview-section {
  background:
    radial-gradient(circle at 6% 12%, rgba(40, 137, 74, 0.08), transparent 24rem),
    var(--bg-2);
}

.reviews-preview-section {
  background:
    radial-gradient(circle at 94% 14%, rgba(229, 176, 39, 0.1), transparent 22rem),
    var(--bg);
}

.content-preview-heading {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.content-preview-heading.center {
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.content-preview-heading > div {
  max-width: 780px;
}

.content-preview-heading > div > p {
  margin-inline: 0;
}

.content-preview-heading h2 {
  text-wrap: balance;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.preview-carousel {
  position: relative;
}

.preview-carousel-controls[hidden] {
  display: none !important;
}

.preview-carousel-controls {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px auto;
  align-items: center;
  gap: 8px;
  max-width: 560px;
  padding: 10px;
  margin: 20px auto 0;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(9, 27, 48, 0.1);
}

.preview-carousel-button,
.preview-carousel-toggle,
.preview-carousel-dot {
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: var(--panel-2);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.preview-carousel-button,
.preview-carousel-toggle {
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
}

.preview-carousel-button svg,
.preview-carousel-toggle svg {
  width: 20px;
  height: 20px;
}

.preview-carousel-toggle svg[hidden] {
  display: none !important;
}

.preview-carousel-button svg {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preview-carousel-toggle {
  grid-auto-flow: column;
  gap: 6px;
  padding: 0 13px;
  color: #ffffff;
  background: #168843;
  border-color: #168843;
  font-size: 0.72rem;
  font-weight: 850;
}

.preview-carousel-toggle[aria-pressed="true"] {
  color: #2e2105;
  background: #f0b52c;
  border-color: #f0b52c;
}

.preview-carousel-dots {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.preview-carousel-dot {
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border-color: transparent;
  border-radius: 999px;
}

.preview-carousel-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background: color-mix(in srgb, var(--muted) 48%, transparent);
  border-radius: 999px;
  transition: width 160ms ease, background 160ms ease;
}

.preview-carousel-dot[aria-current="true"]::before {
  width: 22px;
  background: #168843;
}

.preview-carousel-button:focus-visible,
.preview-carousel-toggle:focus-visible,
.preview-carousel-dot:focus-visible,
[data-carousel-track]:focus-visible {
  outline: 3px solid #0b6b31;
  outline-offset: 2px;
}

[data-carousel-track]:focus-visible {
  outline-offset: -3px;
}

@media (hover: hover) {
  .preview-carousel-button:hover,
  .preview-carousel-toggle:hover,
  .preview-carousel-dot:hover {
    border-color: color-mix(in srgb, #168843 50%, var(--line));
    transform: translateY(-1px);
  }
}

.purchase-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.purchase-preview-card,
.review-preview-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(9, 27, 48, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.purchase-preview-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #dce5e1;
}

.purchase-preview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 54%, rgba(4, 23, 35, 0.22));
  pointer-events: none;
}

.purchase-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 420ms ease, transform 520ms ease;
}

.purchase-preview-copy {
  display: grid;
  gap: 6px;
  padding: 20px 20px 22px;
}

.purchase-record-label {
  color: var(--orange-dark);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purchase-preview-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
}

.purchase-preview-amount {
  color: #178e43;
  font-size: 1.05rem;
}

.purchase-preview-location {
  color: var(--muted);
  font-size: 0.82rem;
}

.review-preview-card {
  display: grid;
  align-content: start;
  min-height: 275px;
  padding: 24px;
  border-top: 4px solid #e0ad31;
}

.review-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-stars {
  color: #d99c08;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: #11662f;
  background: #e6f7eb;
  border: 1px solid rgba(22, 122, 54, 0.18);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.025em;
}

.review-preview-card blockquote {
  position: relative;
  margin: 22px 0 24px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.68;
}

.review-preview-card blockquote::before {
  content: "“";
  position: absolute;
  top: -24px;
  right: 2px;
  color: rgba(22, 122, 54, 0.12);
  font-family: Georgia, serif;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.review-preview-footer {
  display: grid;
  gap: 4px;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.review-preview-footer strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.review-preview-footer span {
  color: var(--muted);
  font-size: 0.74rem;
}

.concept-content-note {
  max-width: 940px;
  padding: 10px 12px;
  margin: 0 0 20px;
  color: color-mix(in srgb, var(--muted) 86%, transparent);
  background: color-mix(in srgb, var(--panel-2) 72%, transparent);
  border-left: 3px solid rgba(224, 173, 49, 0.72);
  border-radius: 0 9px 9px 0;
  font-size: 0.69rem;
  line-height: 1.55;
}

.concept-content-note strong {
  color: color-mix(in srgb, var(--ink) 78%, transparent);
}

.concept-content-note-center {
  margin-inline: auto;
  text-align: left;
}

@media (hover: hover) {
  .purchase-preview-card:hover,
  .review-preview-card:hover {
    border-color: color-mix(in srgb, var(--orange) 42%, var(--line));
    box-shadow: 0 24px 58px rgba(9, 27, 48, 0.13);
    transform: translateY(-4px);
  }

  .purchase-preview-card:hover .purchase-preview-media img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.035);
  }
}

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

.closing-contact-method.is-whatsapp .contact-method-icon {
  background: linear-gradient(145deg, #27c865, #159847);
  border-color: rgba(146, 244, 179, 0.62);
}

.closing-contact-method.is-whatsapp .contact-method-icon svg {
  stroke: none;
}

.closing-contact-method.is-quote .contact-method-icon {
  color: #332203;
  background: linear-gradient(145deg, #f5d466, #dfa720);
  border-color: rgba(255, 239, 163, 0.8);
}

@media (max-width: 1020px) {
  .hero-conversion .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    gap: 32px;
  }

  .hero-conversion h1 {
    font-size: clamp(2.75rem, 5.5vw, 4rem);
  }
}

@media (max-width: 899px) {
  .hero-conversion .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0 42px;
  }

  .hero-conversion .hero-copy {
    max-width: 760px;
  }

  .content-preview-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .purchase-preview-grid,
  .reviews-preview-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .purchase-preview-grid::-webkit-scrollbar,
  .reviews-preview-grid::-webkit-scrollbar {
    display: none;
  }

  .purchase-preview-card,
  .review-preview-card,
  .review-preview-card:last-child {
    width: calc((100% - 18px) / 2);
    max-width: none;
    flex: 0 0 calc((100% - 18px) / 2);
    grid-column: auto;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .mobile-contact-dock {
    position: fixed;
    right: 8px;
    bottom: 8px;
    left: 8px;
    z-index: 1090;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding: 7px 7px calc(7px + env(safe-area-inset-bottom));
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(35, 193, 91, 0.52);
    border-radius: 18px;
    box-shadow:
      0 18px 50px rgba(5, 27, 43, 0.24),
      0 0 0 1px rgba(255, 255, 255, 0.68),
      0 0 20px rgba(32, 185, 89, 0.18);
    backdrop-filter: blur(18px) saturate(1.2);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-contact-dock::after {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: 2;
    border: 1px solid rgba(46, 214, 111, 0.7);
    border-radius: 15px;
    box-shadow: inset 0 0 14px rgba(46, 214, 111, 0.2);
    opacity: 0.1;
    pointer-events: none;
  }

  .mobile-contact-dock:not(.is-context-hidden)::after {
    animation: mobile-dock-attention 4.6s ease-in-out infinite;
  }

  .mobile-contact-dock.is-context-hidden {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(14px) !important;
  }

  .mobile-dock-action {
    display: grid;
    min-width: 0;
    min-height: 58px;
    place-items: center;
    align-content: center;
    gap: 4px;
    padding: 6px 3px;
    color: #132332;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 0.67rem;
    font-weight: 850;
    line-height: 1;
    transition: color 160ms ease, background 160ms ease, transform 160ms ease;
  }

  .mobile-dock-action svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-dock-action.is-call {
    color: #ffffff;
    background: #168843;
  }

  .mobile-dock-action.is-message {
    color: #ffffff;
    background: #277fa8;
  }

  .mobile-dock-action.is-whatsapp {
    color: #ffffff;
    background: #20b959;
  }

  .mobile-dock-action.is-quote {
    color: #332203;
    background: #f0b52c;
  }

  .mobile-dock-action:active {
    transform: scale(0.96);
  }

  .mobile-contact-dock .mobile-dock-action svg {
    transform-origin: center;
  }

  .mobile-contact-dock:not(.is-context-hidden) .mobile-dock-action.is-call .dock-call-icon {
    transform-origin: 45% 78%;
    animation: mobile-dock-call-cue 6.4s ease-in-out infinite;
  }

  .mobile-contact-dock:not(.is-context-hidden) .mobile-dock-action.is-message .dock-message-icon {
    animation: mobile-dock-message-cue 6.4s ease-in-out 1.6s infinite;
  }

  .mobile-contact-dock:not(.is-context-hidden) .mobile-dock-action.is-whatsapp .dock-whatsapp-icon {
    animation: mobile-dock-whatsapp-cue 6.4s ease-in-out 3.2s infinite;
  }

  .mobile-contact-dock:not(.is-context-hidden) .mobile-dock-action.is-quote .dock-quote-icon {
    animation: mobile-dock-quote-cue 6.4s ease-in-out 4.8s infinite;
  }

  .mobile-contact-dock.is-context-hidden .mobile-dock-action svg {
    animation: none !important;
  }
}

@keyframes mobile-dock-attention {
  0%,
  62%,
  100% {
    opacity: 0.1;
  }

  78% {
    opacity: 0.62;
  }
}

@keyframes mobile-dock-call-cue {
  0%, 10%, 100% { transform: rotate(0deg) scale(1); }
  2% { transform: rotate(12deg) scale(1.08); }
  4% { transform: rotate(-10deg) scale(1.08); }
  6% { transform: rotate(8deg) scale(1.06); }
  8% { transform: rotate(-5deg) scale(1.03); }
}

@keyframes mobile-dock-message-cue {
  0%, 10%, 100% { transform: translateY(0) scale(1); }
  3% { transform: translateY(-2px) scale(1.13); }
  6% { transform: translateY(1px) scale(0.98); }
  8% { transform: translateY(0) scale(1.04); }
}

@keyframes mobile-dock-whatsapp-cue {
  0%, 10%, 100% { transform: translateY(0) rotate(0deg); }
  3% { transform: translateY(-4px) rotate(-4deg); }
  6% { transform: translateY(1px) rotate(3deg); }
  8% { transform: translateY(-1px) rotate(0deg); }
}

@keyframes mobile-dock-quote-cue {
  0%, 10%, 100% { transform: translateX(0) rotate(0deg); }
  3% { transform: translateX(-2px) rotate(-7deg); }
  6% { transform: translateX(2px) rotate(6deg); }
  8% { transform: translateX(0) rotate(-2deg); }
}

@media (max-width: 619px) {
  .hero-conversion .hero-inner {
    gap: 15px;
    padding: 23px 0 28px;
  }

  .hero-offer-flag {
    padding: 7px 10px;
    margin-bottom: 12px;
    font-size: 0.66rem;
  }

  .hero-conversion .eyebrow {
    margin-bottom: 6px;
    font-size: 0.68rem;
  }

  .hero-conversion h1 {
    max-width: 12ch;
    margin-bottom: 8px;
    font-size: clamp(2.45rem, 12vw, 3.45rem);
    line-height: 0.96;
  }

  .hero-price {
    color: #168c40;
  }

  .hero-conversion .hero-motto {
    margin-bottom: 9px;
    font-size: 0.88rem;
  }

  .hero-conversion .hero-subheadline {
    margin-bottom: 11px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-conversion .hero-credential-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    border-radius: 15px;
  }

  .hero-conversion .hero-credential-strip li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 6px;
    min-height: 62px;
    padding: 6px;
  }

  .hero-conversion .hero-credential-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .hero-conversion .hero-credential-icon svg {
    width: 17px;
    height: 17px;
  }

  .hero-conversion .hero-credential-strip strong {
    font-size: 0.73rem;
    line-height: 1.16;
  }

  .vehicle-type-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .hero-conversion .hero-form-card::after {
    display: none;
  }

  .content-preview-section {
    padding-block: 58px;
  }

  .purchase-preview-grid,
  .reviews-preview-grid {
    gap: 13px;
    margin-inline: calc((100vw - 100%) / -2);
    padding-inline: max(20px, calc((100vw - var(--max)) / 2));
    overflow-x: auto;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .purchase-preview-grid::-webkit-scrollbar,
  .reviews-preview-grid::-webkit-scrollbar {
    display: none;
  }

  .purchase-preview-card,
  .review-preview-card,
  .purchase-preview-card:last-child,
  .review-preview-card:last-child {
    width: min(84vw, 350px);
    max-width: none;
    flex: 0 0 min(84vw, 350px);
    grid-column: auto;
    scroll-snap-align: start;
  }

  .purchase-preview-media {
    min-height: 190px;
  }

  .preview-carousel-controls {
    grid-template-columns: 44px minmax(0, 1fr) 44px 44px;
    gap: 5px;
    padding: 7px;
  }

  .preview-carousel-toggle {
    padding: 0;
  }

  .preview-carousel-toggle span {
    display: none;
  }

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

  .closing-contact-method {
    min-height: 112px;
  }
}

@media (max-width: 380px) {
  .mobile-contact-dock {
    right: 5px;
    bottom: 5px;
    left: 5px;
    gap: 3px;
    padding-inline: 5px;
    border-radius: 15px;
  }

  .mobile-dock-action {
    min-height: 55px;
    font-size: 0.61rem;
  }

  .mobile-dock-action svg {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-color-scheme: dark) {
  .hero-conversion {
    background:
      radial-gradient(circle at 7% 12%, rgba(55, 203, 101, 0.12), transparent 25rem),
      radial-gradient(circle at 78% 8%, rgba(232, 183, 53, 0.1), transparent 22rem),
      linear-gradient(145deg, #071521 0%, #0b1b29 55%, #09131f 100%);
  }

  .hero-price { color: #5fda83; text-shadow: none; }
  .hero-conversion .hero-motto { color: #f0cf70; }
  .hero-conversion .hero-subheadline { color: #b7c4ce; }
  .hero-conversion .hero-credential-strip { background: rgba(12, 31, 45, 0.82); }

  .review-service-tag {
    color: #92e6aa;
    background: rgba(20, 91, 46, 0.45);
    border-color: rgba(146, 230, 170, 0.2);
  }

  .mobile-contact-dock {
    background: rgba(7, 18, 29, 0.94);
    border-color: rgba(255, 255, 255, 0.13);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-contact-dock:not(.is-context-hidden)::after,
  .mobile-contact-dock .mobile-dock-action svg {
    animation: none !important;
  }

  .purchase-preview-grid,
  .reviews-preview-grid {
    scroll-behavior: auto !important;
  }
}

/* Real Brisbane photography for service coverage */
.pickup-photo-network {
  gap: 16px;
}

.pickup-photo-feature,
.pickup-photo-card {
  isolation: isolate;
  background: #0b2132;
}

.pickup-photo-feature {
  display: grid;
  min-height: 430px;
  align-content: end;
  padding: clamp(24px, 5vw, 48px);
  color: #ffffff;
}

.pickup-photo-feature::before,
.pickup-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.pickup-photo-feature::before {
  background:
    linear-gradient(90deg, rgba(4, 19, 29, 0.9) 0%, rgba(4, 19, 29, 0.68) 48%, rgba(4, 19, 29, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 19, 29, 0.72), transparent 60%);
}

.pickup-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  overflow: hidden;
}

.pickup-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 300ms ease;
}

.pickup-photo-feature .pickup-area-feature-copy {
  max-width: 610px;
  align-self: end;
}

.pickup-photo-feature .pickup-card-kicker {
  color: #aaf3bc;
}

.pickup-photo-feature strong {
  max-width: 17ch;
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1;
}

.pickup-photo-feature p {
  max-width: 55ch;
  color: rgba(244, 250, 247, 0.86);
  font-size: 1rem;
}

.pickup-photo-feature .pickup-card-action {
  color: #aaf3bc;
}

.pickup-photo-card {
  display: flex;
  min-height: 280px;
  align-items: flex-end;
  padding: 22px;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 44px rgba(4, 23, 37, 0.16);
}

.pickup-photo-card::before {
  background: linear-gradient(0deg, rgba(3, 17, 28, 0.94) 0%, rgba(3, 17, 28, 0.7) 43%, rgba(3, 17, 28, 0.1) 82%);
}

.pickup-photo-card::after {
  display: none;
}

.pickup-photo-card .pickup-region-copy {
  gap: 7px;
}

.pickup-photo-card .pickup-region-copy strong {
  color: #ffffff;
  font-size: clamp(1.18rem, 2.2vw, 1.5rem);
}

.pickup-photo-card .pickup-region-copy > span:not(.pickup-card-action) {
  max-width: 42ch;
  color: rgba(239, 247, 243, 0.78);
  font-size: 0.82rem;
}

.pickup-photo-card .pickup-card-action {
  color: #aaf3bc;
}

@media (hover: hover) {
  .pickup-photo-feature:hover .pickup-photo img,
  .pickup-photo-card:hover .pickup-photo img {
    transform: scale(1.045);
  }

  .pickup-photo-card:hover {
    color: #ffffff;
    border-color: rgba(143, 240, 170, 0.55);
    box-shadow: 0 25px 56px rgba(4, 23, 37, 0.23);
  }
}

@media (min-width: 760px) {
  .pickup-photo-feature {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 430px;
    padding: clamp(30px, 5vw, 48px);
  }
}

@media (max-width: 619px) {
  .pickup-photo-feature {
    min-height: 390px;
    padding: 24px 20px;
  }

  .pickup-photo-feature::before {
    background: linear-gradient(0deg, rgba(3, 17, 28, 0.94) 0%, rgba(3, 17, 28, 0.7) 58%, rgba(3, 17, 28, 0.2) 100%);
  }

  .pickup-photo-feature strong {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .pickup-photo-feature p {
    font-size: 0.88rem;
  }

  .pickup-photo-card {
    display: flex;
    grid-template-columns: none;
    min-height: 245px;
    padding: 19px;
  }
}

@media (max-width: 420px) {
  .pickup-photo-feature {
    min-height: 370px;
    padding: 22px 18px;
  }

  .pickup-photo-card {
    display: flex;
    grid-template-columns: none;
    min-height: 230px;
    padding: 17px;
  }
}
