:root {
  --hpr-blue: #075bd8;
  --hpr-blue-deep: #043f99;
  --gcar-accent: #4f9df8;
  --gcar-accent-soft: #dcecff;
  --gcar-cyan: #67c8ff;
  --garage-ink: #0a1730;
  --garage-ink-soft: #14233f;
  --garage-steel: #6f7e95;
  --garage-line: #dbe2ec;
  --garage-surface: #f4f7fb;
  --garage-white: #ffffff;
  --garage-accent: #2f8ef3;
  --success: #1f9b63;
  --danger: #c53a3a;
  --text: #19243a;
  --muted: #667085;
  --container: 1180px;
  --header-height: 76px;
  --shadow-sm: 0 10px 28px rgba(10, 23, 48, 0.08);
  --shadow-lg: 0 28px 70px rgba(10, 23, 48, 0.17);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--garage-ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 21, 43, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.hpr-mark {
  width: 38px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.hpr-mark img {
  width: 36px;
  height: 39px;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 31px;
  background: rgba(255, 255, 255, 0.24);
}

.gcar-mark {
  width: 122px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav > a {
  text-decoration: none;
}

.site-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  transition: color 160ms ease;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gcar-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: #fff;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 13px;
  background: var(--hpr-blue);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.15;
  cursor: pointer;
  box-shadow: 0 13px 30px rgba(7, 91, 216, 0.23);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 17px 36px rgba(7, 91, 216, 0.3);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 11px;
  background: var(--gcar-accent);
  color: var(--garage-ink);
  box-shadow: none;
}

.button-yellow {
  background: var(--gcar-accent);
  color: var(--garage-ink);
  box-shadow: 0 15px 32px rgba(79, 157, 248, 0.20);
}

.button-yellow:hover,
.button-yellow:focus-visible,
.button-small:hover,
.button-small:focus-visible {
  background: #78b8ff;
  box-shadow: 0 18px 38px rgba(79, 157, 248, 0.27);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-height) + 80px) 0 84px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(circle at 77% 26%, rgba(7, 91, 216, 0.35), transparent 34%),
    linear-gradient(118deg, #071225 0%, #0a1730 52%, #0d2446 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(43vw, 650px);
  height: 7px;
  background: linear-gradient(90deg, transparent, var(--garage-accent) 24%, var(--gcar-accent));
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-grid-lines {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent 5%, #000 72%, transparent);
}

.speed-line {
  position: absolute;
  z-index: -1;
  right: -130px;
  width: 560px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103, 200, 255, 0.58), transparent);
  transform: rotate(-15deg);
}

.speed-line-one {
  top: 210px;
}

.speed-line-two {
  bottom: 130px;
  right: 80px;
  width: 320px;
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.95fr);
  align-items: center;
  gap: 64px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--hpr-blue);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--gcar-accent);
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 720px;
  font-size: clamp(2.8rem, 5.1vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--gcar-accent);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}

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

.hero-points {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.91rem;
  font-weight: 700;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(79, 157, 248, 0.42);
  border-radius: 50%;
  color: var(--gcar-accent);
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.hero-visual::before {
  width: 270px;
  height: 270px;
  top: -50px;
  right: -30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-visual::after {
  width: 150px;
  height: 150px;
  bottom: -40px;
  left: -45px;
  border: 1px solid rgba(239, 107, 46, 0.35);
}

.garage-panel {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.31);
  backdrop-filter: blur(14px);
}

.garage-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 130px;
  height: 4px;
  background: linear-gradient(90deg, var(--garage-accent), var(--gcar-accent));
  border-radius: 0 0 4px 4px;
}

.garage-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.garage-branding {
  display: flex;
  align-items: center;
  gap: 15px;
}

.garage-branding img {
  width: 105px;
  height: auto;
}

.garage-branding span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  font-weight: 700;
}

.garage-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(31, 155, 99, 0.13);
  color: #9de2bd;
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.garage-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #56d28f;
  box-shadow: 0 0 0 4px rgba(86, 210, 143, 0.12);
}

.vehicle-card {
  margin: 19px 0;
  padding: 17px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 17px;
  background: rgba(3, 11, 25, 0.35);
}

.vehicle-icon {
  width: 58px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(79,157,248,.19), rgba(103,200,255,.08));
}

.vehicle-icon svg {
  width: 42px;
  fill: var(--gcar-accent);
}

.vehicle-card small,
.garage-modules small,
.track-step small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 700;
}

.vehicle-card strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.35;
}

.tag {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(7, 91, 216, 0.18);
  color: #a7caff;
  font-size: 0.67rem;
  font-weight: 800;
}

.service-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.service-track::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 13%;
  right: 13%;
  height: 2px;
  background: rgba(255,255,255,.1);
}

.track-step {
  position: relative;
  z-index: 1;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(5, 15, 32, 0.72);
}

.track-step > span {
  width: 25px;
  height: 25px;
  margin-bottom: 9px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #26364f;
  color: rgba(255,255,255,.62);
  font-size: .65rem;
  font-weight: 900;
}

.track-step.active > span {
  background: var(--gcar-accent);
  color: var(--garage-ink);
}

.track-step strong {
  color: #fff;
  font-size: 0.77rem;
  line-height: 1.25;
}

.garage-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.garage-modules article {
  min-width: 0;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 13px;
  background: rgba(255,255,255,.055);
}

.module-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: rgba(7, 91, 216, 0.15);
}

.module-symbol svg {
  width: 19px;
  fill: none;
  stroke: #8ebaff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.garage-modules strong {
  display: block;
  color: rgba(255,255,255,.9);
  font-size: .7rem;
  line-height: 1.25;
}

.trust-strip {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid #e8edf4;
  background: #fff;
  box-shadow: 0 16px 40px rgba(10, 23, 48, 0.04);
}

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

.trust-grid > div {
  min-height: 115px;
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #e8edf4;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong {
  margin-bottom: 3px;
  color: var(--garage-ink);
  font-size: 1rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.section {
  padding: 100px 0;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 0;
  color: var(--garage-ink);
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.section-heading p,
.section-intro {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading.centered {
  max-width: 790px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered p {
  max-width: 650px;
  margin: 18px auto 0;
}

.workshop-section {
  background: #fff;
}

.workshop-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--garage-line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.workshop-flow article {
  position: relative;
  min-height: 310px;
  padding: 32px 28px;
  border-right: 1px solid var(--garage-line);
  background: #fff;
  transition: background 180ms ease, transform 180ms ease;
}

.workshop-flow article:last-child {
  border-right: 0;
}

.workshop-flow article:hover {
  background: #f9fbfe;
}

.flow-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #d4dbe6;
  font-size: 1.75rem;
  font-weight: 900;
}

.flow-icon {
  width: 58px;
  height: 58px;
  margin: 35px 0 28px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #0a1730, #16345f);
  box-shadow: 0 12px 26px rgba(10,23,48,.15);
}

.flow-icon svg {
  width: 29px;
  fill: none;
  stroke: var(--gcar-accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workshop-flow h3,
.resource-card h3,
.benefit-card h3 {
  margin-bottom: 10px;
  color: var(--garage-ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.workshop-flow p,
.resource-card p,
.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.resources-section {
  background:
    linear-gradient(#f4f7fb, #f4f7fb),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(10,23,48,.03) 40px);
}

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

.resource-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border: 1px solid #e0e6ef;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(10, 23, 48, 0.05);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: #c9d5e7;
  box-shadow: 0 20px 46px rgba(10, 23, 48, 0.09);
}

.resource-card.featured {
  color: #fff;
  background: linear-gradient(145deg, #0a1730, #102d58);
  border-color: transparent;
}

.resource-card.featured::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -35px;
  width: 150px;
  height: 150px;
  border: 23px solid rgba(255,255,255,.045);
  border-radius: 50%;
}

.resource-card.featured h3 {
  color: #fff;
}

.resource-card.featured p {
  color: rgba(255,255,255,.68);
}

.resource-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gcar-accent);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.resource-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #edf4ff;
}

.resource-card.featured .resource-icon {
  background: rgba(79,157,248,.12);
}

.resource-icon svg {
  width: 27px;
  fill: none;
  stroke: var(--hpr-blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resource-card.featured .resource-icon svg {
  stroke: var(--gcar-accent);
}

.section-cta {
  margin-top: 34px;
  padding: 25px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  border: 1px solid #dce4ee;
  border-radius: 18px;
  background: #fff;
}

.section-cta strong,
.section-cta span {
  display: block;
}

.section-cta strong {
  margin-bottom: 3px;
  color: var(--garage-ink);
  font-size: 1rem;
}

.section-cta span {
  color: var(--muted);
  font-size: .88rem;
}

.benefits-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #08162d, #0d274d 72%, #0b3468);
}

.benefits-section::after {
  content: "";
  position: absolute;
  right: -150px;
  top: -150px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.015);
}

.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 82px;
  align-items: center;
}

.benefits-copy h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.benefits-copy > p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
}

.support-hours {
  margin-top: 30px;
  padding: 20px;
  border-left: 3px solid var(--gcar-accent);
  background: rgba(255,255,255,.05);
}

.support-hours span,
.support-hours strong {
  display: block;
}

.support-hours span {
  margin-bottom: 7px;
  color: rgba(255,255,255,.5);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.support-hours strong {
  margin-top: 4px;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.benefit-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(8px);
}

.benefit-card > span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gcar-accent);
  font-size: .73rem;
  font-weight: 900;
}

.benefit-card h3 {
  color: #fff;
}

.benefit-card p {
  color: rgba(255,255,255,.64);
}

.proof-section {
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 930px;
}

.quote-card {
  position: relative;
  min-height: 255px;
  padding: 34px;
  border: 1px solid #e1e7ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.quote-mark {
  position: absolute;
  top: 13px;
  right: 24px;
  color: #e7ecf3;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.quote-card > p {
  position: relative;
  z-index: 1;
  min-height: 104px;
  margin: 20px 0 25px;
  color: #344054;
  font-size: 1rem;
}

.quote-card footer {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #edf0f4;
  padding-top: 17px;
}

.quote-card footer strong {
  color: var(--garage-ink);
}

.quote-card footer span {
  color: var(--muted);
  font-size: .8rem;
}

.price-section {
  padding-top: 0;
}

.price-card {
  position: relative;
  padding: 46px 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 55px;
  align-items: center;
  overflow: hidden;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(120deg, var(--garage-ink), #15345f);
  box-shadow: var(--shadow-lg);
}

.price-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 37%;
  height: 5px;
  background: linear-gradient(90deg, var(--garage-accent), var(--gcar-accent));
}

.price-card h2 {
  margin-bottom: 14px;
  max-width: 700px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.price-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,.65);
}

.price-range {
  min-width: 245px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-range small {
  color: rgba(255,255,255,.55);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.price-range strong {
  color: var(--gcar-accent);
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.price-range > span {
  margin-bottom: 17px;
  color: rgba(255,255,255,.73);
  font-size: .85rem;
}

.faq-section {
  background: var(--garage-surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.faq-grid .section-heading p {
  margin-top: 18px;
}

.accordion {
  border-top: 1px solid #d7dee8;
}

.accordion-item {
  border-bottom: 1px solid #d7dee8;
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--garage-ink);
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.accordion-item button span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  color: var(--hpr-blue);
  font-size: 1.1rem;
  transition: transform 160ms ease, background 160ms ease;
}

.accordion-item button[aria-expanded="true"] span {
  transform: rotate(45deg);
  background: var(--hpr-blue);
  color: #fff;
}

.accordion-content {
  padding: 0 52px 24px 0;
}

.accordion-content p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.lead-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(125deg, #071326, #0b2347 62%, #0d3978);
}

.lead-pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(120deg, transparent 46%, rgba(255,255,255,.18) 47%, rgba(255,255,255,.18) 48%, transparent 49%),
    linear-gradient(60deg, transparent 46%, rgba(255,255,255,.08) 47%, rgba(255,255,255,.08) 48%, transparent 49%);
  background-size: 90px 90px;
}

.lead-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 80px;
  align-items: center;
}

.lead-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.lead-copy > p {
  color: rgba(255,255,255,.7);
  font-size: 1.02rem;
}

.lead-checks {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.lead-checks li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-size: .93rem;
  font-weight: 700;
}

.lead-checks li span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(79,157,248,.12);
  color: var(--gcar-accent);
}

.form-card {
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 34px 80px rgba(0,0,0,.26);
}

.form-heading {
  margin-bottom: 25px;
}

.form-heading span,
.form-heading strong {
  display: block;
}

.form-heading span {
  margin-bottom: 4px;
  color: var(--hpr-blue);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-heading strong {
  color: var(--garage-ink);
  font-size: 1.28rem;
}

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

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

.field label {
  display: block;
  margin-bottom: 7px;
  color: #344054;
  font-size: .78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d5dce7;
  border-radius: 11px;
  background: #fff;
  color: var(--garage-ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  min-height: 104px;
  padding: 12px 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #98a2b3;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--hpr-blue);
  box-shadow: 0 0 0 4px rgba(7, 91, 216, .1);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(197, 58, 58, .08);
}

.privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
  cursor: pointer;
}

.privacy input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--hpr-blue);
  flex: 0 0 auto;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.button-submit {
  width: 100%;
  margin-top: 20px;
}

.button-spinner {
  display: none;
  width: 16px;
  height: 16px;
  margin-left: 9px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.button-submit.is-loading .button-spinner {
  display: inline-block;
}

.form-status {
  min-height: 21px;
  margin: 12px 0 0;
  font-size: .78rem;
  text-align: center;
}

.form-status[data-type="success"] {
  color: var(--success);
}

.form-status[data-type="error"] {
  color: var(--danger);
}

.form-status[data-type="neutral"] {
  color: var(--muted);
}

.site-footer {
  color: rgba(255,255,255,.7);
  background: #050d1b;
}

.footer-main {
  min-height: 150px;
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 56px;
  height: auto;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: #fff;
}

.footer-brand span {
  margin-top: 2px;
  font-size: .8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  font-size: .82rem;
  font-weight: 700;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  min-height: 64px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .74rem;
}

.mobile-cta {
  position: fixed;
  z-index: 90;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  left: 14px;
  min-height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--gcar-accent);
  color: var(--garage-ink);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(10, 23, 48, .25);
  transform: translateY(130%);
  transition: transform 180ms ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.toast {
  position: fixed;
  z-index: 150;
  top: 92px;
  right: 22px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #113521;
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast[data-type="error"] {
  background: #5a1f24;
}

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

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

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

.error-page {
  min-height: 100vh;
  padding: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: radial-gradient(circle at 75% 20%, #153e78, transparent 35%), var(--garage-ink);
}

.error-card {
  width: min(100%, 520px);
  padding: 48px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.05);
}

.error-card img {
  width: 170px;
  height: auto;
  margin: 0 auto 20px;
}

.error-code {
  display: block;
  color: var(--gcar-accent);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.error-card h1 {
  margin: 18px 0 10px;
  font-size: 2rem;
  line-height: 1.1;
}

.error-card p {
  margin-bottom: 26px;
  color: rgba(255,255,255,.65);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr 480px;
    gap: 38px;
  }

  .garage-branding span {
    display: none;
  }

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

  .workshop-flow article:nth-child(2) {
    border-right: 0;
  }

  .workshop-flow article:nth-child(-n+2) {
    border-bottom: 1px solid var(--garage-line);
  }

  .benefits-grid,
  .lead-grid {
    gap: 52px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

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

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 20px 16px 26px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: auto;
    background: rgba(7, 18, 37, .99);
    border-top: 1px solid rgba(255,255,255,.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 18px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 62px) 0 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .hero h1 {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid #e8edf4;
  }

  .section {
    padding: 82px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-intro {
    max-width: 720px;
  }

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

  .benefits-grid,
  .faq-grid,
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefits-copy {
    max-width: 730px;
  }

  .faq-grid .section-heading {
    max-width: 720px;
  }

  .price-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .price-range {
    min-width: 0;
  }
}

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

  .gcar-mark {
    width: 103px;
  }

  .hpr-mark {
    width: 32px;
  }

  .hpr-mark img {
    width: 31px;
  }

  .brand-divider {
    height: 27px;
  }

  .hero {
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .garage-panel {
    padding: 16px;
    border-radius: 20px;
  }

  .garage-topbar {
    align-items: flex-start;
  }

  .garage-status {
    max-width: 115px;
    white-space: normal;
    line-height: 1.2;
  }

  .vehicle-card {
    grid-template-columns: 46px 1fr;
  }

  .vehicle-icon {
    width: 46px;
    height: 43px;
  }

  .vehicle-icon svg {
    width: 35px;
  }

  .vehicle-card .tag {
    display: none;
  }

  .service-track {
    grid-template-columns: 1fr;
  }

  .service-track::before {
    display: none;
  }

  .track-step {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .track-step > span {
    margin: 0;
  }

  .garage-modules {
    grid-template-columns: 1fr;
  }

  .garage-modules article {
    padding: 11px 12px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    min-height: auto;
    padding: 19px 4px;
    border-right: 0;
    border-bottom: 1px solid #e8edf4;
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .benefits-copy h2,
  .lead-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .workshop-flow {
    grid-template-columns: 1fr;
  }

  .workshop-flow article,
  .workshop-flow article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--garage-line);
  }

  .workshop-flow article:last-child {
    border-bottom: 0;
  }

  .flow-icon {
    margin-top: 24px;
  }

  .resource-grid,
  .benefit-cards,
  .proof-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: auto;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

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

  .benefit-card {
    min-height: 0;
  }

  .benefit-card > span {
    margin-bottom: 22px;
  }

  .quote-card {
    min-height: 0;
    padding: 28px;
  }

  .quote-card > p {
    min-height: 0;
  }

  .price-card {
    padding: 32px 25px;
    border-radius: 20px;
  }

  .price-range .button {
    width: 100%;
  }

  .accordion-content {
    padding-right: 0;
  }

  .form-card {
    padding: 24px 18px;
    border-radius: 19px;
  }

  .field-full {
    grid-column: auto;
  }

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

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

  .mobile-cta {
    display: flex;
  }

  .toast {
    top: 82px;
    right: 14px;
    left: 14px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ==========================================================
   G-Car 2026 — refinamento de marca HPR, conversão e mobile
   A composição segue a lógica visual da referência fornecida:
   faixa institucional forte, conteúdo claro e produto em destaque.
   ========================================================== */

:root {
  --gcar-navy: #071a38;
  --gcar-blue: #075bd8;
  --gcar-blue-dark: #0448aa;
  --gcar-blue-soft: #edf5ff;
  --gcar-blue-line: #cfe1f8;
}

body {
  background: #fff;
}

.site-header {
  background: linear-gradient(96deg, #075bd8 0%, #064fb8 62%, #043f99 100%);
  border-bottom-color: rgba(255,255,255,.13);
  box-shadow: 0 8px 26px rgba(4,63,153,.12);
}

.site-header.is-scrolled {
  background: rgba(4, 63, 153, .975);
  border-bottom-color: rgba(255,255,255,.11);
  box-shadow: 0 12px 34px rgba(4,45,105,.24);
}

.site-nav > a:not(.button) {
  color: rgba(255,255,255,.88);
}

.site-nav > a:not(.button)::after {
  background: #b9dcff;
}

.button-small {
  background: #fff;
  color: var(--hpr-blue-deep);
  box-shadow: 0 7px 20px rgba(0,0,0,.09);
}

.button-small:hover,
.button-small:focus-visible {
  background: #edf5ff;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
}

.hero {
  min-height: 720px;
  padding: calc(var(--header-height) + 66px) 0 72px;
  color: var(--garage-ink);
  background:
    radial-gradient(circle at 19% 26%, rgba(7,91,216,.09), transparent 27%),
    linear-gradient(108deg, #f8fbff 0%, #f2f7fd 52%, #eaf3ff 100%);
}

.hero::before {
  top: auto;
  bottom: 0;
  left: 0;
  width: min(45vw, 680px);
  height: 4px;
  background: linear-gradient(90deg, var(--hpr-blue), var(--gcar-cyan), transparent);
  clip-path: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: var(--header-height);
  right: -7vw;
  width: min(53vw, 820px);
  height: calc(100% - var(--header-height));
  border-radius: 48% 0 0 52% / 19% 0 0 25%;
  background:
    radial-gradient(circle at 58% 30%, rgba(103,200,255,.20), transparent 25%),
    linear-gradient(145deg, #0b60ce 0%, #064cae 45%, #073a81 100%);
  box-shadow: inset 1px 0 0 rgba(255,255,255,.13);
}

.hero-grid-lines {
  opacity: .32;
  background-image:
    linear-gradient(rgba(7,91,216,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,91,216,.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, #000 0%, #000 47%, transparent 67%);
}

.speed-line {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
  gap: 72px;
}

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

.hero .eyebrow-light {
  color: var(--hpr-blue-deep);
}

.hero h1 {
  margin-bottom: 23px;
  max-width: 700px;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  color: #0a1e3f;
}

.hero h1 span {
  color: var(--hpr-blue);
}

.hero-text {
  max-width: 620px;
  color: #47566d;
  font-size: clamp(1.04rem, 1.55vw, 1.18rem);
}

.hero .button-yellow {
  background: linear-gradient(135deg, var(--hpr-blue), var(--hpr-blue-deep));
  color: #fff;
  box-shadow: 0 16px 34px rgba(7,91,216,.25);
}

.hero .button-yellow:hover,
.hero .button-yellow:focus-visible {
  background: linear-gradient(135deg, #0d66ea, #0449aa);
  box-shadow: 0 20px 42px rgba(7,91,216,.31);
}

.hero .button-ghost {
  background: rgba(255,255,255,.72);
  border-color: #bad1ee;
  color: var(--hpr-blue-deep);
  box-shadow: 0 8px 22px rgba(23,65,116,.06);
}

.hero .button-ghost:hover,
.hero .button-ghost:focus-visible {
  background: #fff;
  border-color: #8fb6e7;
  box-shadow: 0 12px 28px rgba(23,65,116,.10);
}

.hero-points {
  color: #34445b;
  gap: 11px 18px;
}

.check {
  border-color: rgba(7,91,216,.28);
  background: #e9f3ff;
  color: var(--hpr-blue);
}

.hero-visual {
  transform: translateY(6px);
}

.hero-visual::before {
  width: 310px;
  height: 310px;
  top: -65px;
  right: -60px;
  border-color: rgba(255,255,255,.18);
}

.hero-visual::after {
  width: 190px;
  height: 190px;
  bottom: -65px;
  left: -55px;
  border-color: rgba(255,255,255,.15);
}

.garage-panel {
  padding: 22px;
  border-color: rgba(255,255,255,.17);
  background: linear-gradient(145deg, rgba(6,25,56,.96), rgba(6,44,93,.93));
  box-shadow: 0 36px 78px rgba(1,30,73,.32);
  backdrop-filter: blur(8px);
}

.garage-panel::before {
  width: 156px;
  background: linear-gradient(90deg, #75c9ff, #2e8df0);
}

.vehicle-icon {
  background: linear-gradient(145deg, rgba(79,157,248,.22), rgba(103,200,255,.10));
}

.vehicle-icon svg {
  fill: #75c9ff;
}

.track-step.active > span {
  background: #66b9ff;
  color: #062047;
}

.trust-strip {
  border-bottom-color: #dce8f6;
  box-shadow: 0 14px 36px rgba(10,57,112,.05);
}

.trust-grid > div {
  min-height: 108px;
  border-right-color: #e3edf8;
}

.trust-grid strong {
  color: #0c315f;
}

.section {
  padding: 92px 0;
}

.section-heading h2,
.benefits-copy h2,
.lead-copy h2 {
  text-wrap: balance;
}

.workshop-flow {
  gap: 14px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.workshop-flow article {
  min-height: 304px;
  border: 1px solid #dfe9f5;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 11px 28px rgba(12,55,105,.055);
}

.workshop-flow article:last-child {
  border-right: 1px solid #dfe9f5;
}

.workshop-flow article:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(12,55,105,.09);
}

.flow-icon {
  background: linear-gradient(145deg, #075bd8, #043f99);
  box-shadow: 0 12px 25px rgba(7,91,216,.20);
}

.flow-icon svg {
  stroke: #cfe8ff;
}

.resources-section {
  background:
    radial-gradient(circle at 8% 7%, rgba(7,91,216,.07), transparent 26%),
    #f4f8fd;
}

.resource-card {
  border-color: #dce7f3;
  box-shadow: 0 12px 30px rgba(14,57,108,.05);
}

.resource-card.featured {
  background: linear-gradient(145deg, #075bd8, #043f99);
}

.resource-label {
  color: #bfe1ff;
}

.resource-card.featured .resource-icon {
  background: rgba(255,255,255,.13);
}

.resource-card.featured .resource-icon svg {
  stroke: #cce8ff;
}

.section-cta {
  border-color: #d8e5f3;
  box-shadow: 0 10px 26px rgba(13,56,106,.045);
}

.benefits-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(103,200,255,.13), transparent 25%),
    linear-gradient(135deg, #061a38 0%, #07366f 70%, #064fae 100%);
}

.support-hours {
  border-left-color: #63b8ff;
}

.benefit-card > span {
  color: #84c9ff;
}

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
}

.quote-card {
  min-height: 275px;
  border-color: #dde8f4;
  box-shadow: 0 12px 30px rgba(14,57,108,.06);
}

.quote-mark {
  color: #e2eefb;
}

.price-card {
  background:
    radial-gradient(circle at 91% 14%, rgba(104,198,255,.18), transparent 25%),
    linear-gradient(120deg, #0649a8, #073472 70%, #071f45);
}

.price-card::after {
  background: linear-gradient(90deg, #58b2ff, #a8ddff, transparent);
}

.price-card .button-yellow {
  background: #fff;
  color: var(--hpr-blue-deep);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}

.price-card .button-yellow:hover,
.price-card .button-yellow:focus-visible {
  background: #eaf4ff;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.accordion-item {
  border-color: #dbe6f2;
}

.accordion-item button span {
  color: var(--hpr-blue);
}

.lead-section {
  background:
    radial-gradient(circle at 10% 22%, rgba(103,200,255,.12), transparent 25%),
    linear-gradient(135deg, #061a38, #064b9f);
}

.form-card {
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 30px 70px rgba(3,26,63,.25);
}

.form-note {
  margin: 12px 0 0;
  color: #7b8798;
  font-size: .75rem;
  line-height: 1.45;
  text-align: center;
}

.site-footer {
  background: #06172f;
}

.mobile-cta {
  background: linear-gradient(135deg, #075bd8, #043f99);
  color: #fff;
  box-shadow: 0 12px 28px rgba(4,63,153,.30);
}

.error-page {
  background: radial-gradient(circle at 50% 10%, #0d65d8, #06172f 64%);
}

.error-card .button-yellow {
  background: #fff;
  color: var(--hpr-blue-deep);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 40px;
  }

  .workshop-flow article,
  .workshop-flow article:nth-child(2),
  .workshop-flow article:nth-child(-n+2),
  .workshop-flow article:last-child {
    border: 1px solid #dfe9f5;
  }

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

@media (max-width: 900px) {
  .site-nav {
    background: rgba(4,63,153,.995);
  }

  .hero {
    padding-top: calc(var(--header-height) + 52px);
    background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
  }

  .hero::after {
    top: auto;
    right: -16%;
    bottom: 0;
    width: 110%;
    height: 44%;
    border-radius: 48% 0 0 0 / 20% 0 0 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

  .hero-visual {
    max-width: 640px;
  }

  .workshop-flow article:nth-child(-n+2) {
    border-bottom: 1px solid #dfe9f5;
  }

  .workshop-flow article:nth-child(2) {
    border-right: 1px solid #dfe9f5;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 54px;
  }

  .hero::after {
    right: -42%;
    width: 148%;
    height: 41%;
    border-radius: 46% 0 0 0 / 16% 0 0 0;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.15rem);
    line-height: .99;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-points {
    gap: 10px;
  }

  .hero-points li {
    align-items: flex-start;
  }

  .garage-panel {
    padding: 15px;
    border-radius: 19px;
  }

  .trust-grid > div {
    border-bottom-color: #e3edf8;
  }

  .section {
    padding: 68px 0;
  }

  .workshop-flow {
    gap: 12px;
  }

  .workshop-flow article,
  .workshop-flow article:nth-child(2),
  .workshop-flow article:last-child {
    border: 1px solid #dfe9f5;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    min-height: 0;
  }
}
