@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800&display=swap");

:root {
  color-scheme: light;
  --black: #1d1d1d;
  --ink: #101010;
  --muted: #4b4b4b;
  --white: #ffffff;
  --cream: #f7f7f4;
  --yellow: #f2bb16;
  --green: #8bc33a;
  --teal: #008f8a;
  --purple: #bd68df;
  --deep-green: #26473a;
  --hero-start: #08c986;
  --hero-end: #69e9b4;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 24px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  background: var(--black);
  box-shadow: 0 2px 14px rgb(0 0 0 / 18%);
}

.header-inner {
  width: min(100%, var(--max));
  min-height: 88px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  width: auto;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.1;
}

.logo img {
  width: clamp(150px, 38vw, 230px);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 28px;
  color: var(--white);
  font-weight: 500;
}

.site-nav a {
  padding: 12px 4px;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--yellow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: fit-content;
  max-width: 100%;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  border: 0;
  box-shadow: 0 8px 18px rgb(0 0 0 / 12%);
  cursor: pointer;
}

.button:hover {
  filter: brightness(0.97);
}

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

.header-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 0 24px;
}

.mobile-cta {
  display: none;
}

.hero {
  background: linear-gradient(180deg, var(--hero-start) 0%, var(--hero-end) 79%);
  overflow: hidden;
}

.hero-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 34px 18px 42px;
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero-art {
  order: 2;
  align-self: end;
}

.hero-art img {
  width: min(100%, 560px);
  margin: 0 auto;
}

.hero-card {
  order: 1;
  background: var(--deep-green);
  color: var(--white);
  padding: 30px 26px;
}

.hero-card h1 {
  margin: 0 0 14px;
  font-size: 2.2rem;
  line-height: 1.08;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-card .accent {
  color: var(--yellow);
}

.hero-card .subhead {
  margin: 0 0 18px;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card p {
  max-width: 620px;
  margin: 0 0 24px;
  font-size: 1rem;
  font-weight: 400;
}

.section {
  padding: 54px 18px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading {
  margin: 0 0 16px;
  text-align: center;
  font-size: 1.95rem;
  line-height: 1.18;
  text-transform: uppercase;
  font-weight: 600;
}

.section-heading span {
  color: var(--yellow);
}

.center-copy {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
  font-weight: 400;
}

.products {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.product-card {
  min-height: 384px;
  padding: 26px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 8px;
  background: #fafafa;
  box-shadow: 0 5px 22px rgb(0 0 0 / 5%);
  text-align: center;
}

.product-name {
  min-height: 56px;
  display: grid;
  place-items: center;
  gap: 2px;
}

.product-card strong {
  display: block;
  color: var(--green);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.product-card .product-name span {
  display: block;
  color: #585858;
  font-size: 1rem;
  font-weight: 400;
}

.product-card img {
  height: 220px;
  max-height: 220px;
  width: auto;
  object-fit: contain;
}

.price-pill {
  width: 140px;
  min-height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  font-weight: 700;
}

.product-note {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.split {
  display: grid;
  align-items: stretch;
}

.split-media {
  min-height: 330px;
  overflow: hidden;
}

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

.split-copy {
  padding: 42px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.split-copy h2 {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 2.2rem;
  line-height: 1.12;
  font-weight: 600;
}

.split-copy h2 .purple {
  color: var(--purple);
}

.split-copy p {
  margin: 0 0 20px;
  font-weight: 400;
}

.split-copy ul {
  margin: 0 0 24px;
  padding-left: 22px;
  font-weight: 400;
}

.portrait-panel {
  background: #f7cbd9;
}

.plan-banner {
  padding: 28px 18px;
  background: var(--green);
  text-align: center;
  text-transform: uppercase;
}

.plan-banner h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 600;
}

.plan-banner strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
}

.apply-hero {
  padding: 28px 18px 29px;
  background: linear-gradient(180deg, #9868e9 0%, #bc76df 82%);
  color: var(--white);
  text-align: center;
}

.apply-hero h1 {
  margin: 0;
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.apply-main {
  padding: 47px 18px 10px;
  background: var(--white);
}

.apply-main-grid {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.apply-left {
  min-width: 0;
}

.apply-choice-text {
  max-width: 493px;
  margin: 0 0 22px;
}

.apply-choice-text h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 600;
}

.apply-choice-text h2 span {
  color: var(--green);
}

.apply-choice-text ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.apply-choice-text li,
.apply-choice-text p {
  margin: 0 0 8px;
  font-size: 0.98rem;
}

.apply-form-panel {
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 29px 40px 37px;
  background: var(--green);
}

.apply-form-panel h2 {
  margin: 0 0 22px;
  color: #1a1855;
  font-size: 1.7rem;
  line-height: 1.4;
  text-align: center;
}

.apply-form,
.assistance-group {
  display: grid;
  gap: 18px;
}

.apply-form label,
.assistance-group legend {
  color: #1a1855;
  font-size: 0.95rem;
  font-weight: 700;
}

.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form input[type="date"] {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  padding: 8px 22px;
  border: 0;
  border-radius: 22px;
  background: #f8f7ff;
  color: #1a1855;
  font: inherit;
}

.assistance-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.assistance-group label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
}

.assistance-group input {
  flex: 0 0 auto;
  margin-top: 2px;
}

.eligibility-examples {
  margin: 0;
  color: #1a1855;
  font-size: 0.82rem;
  text-align: center;
  text-decoration: underline;
}

.form-submit {
  justify-self: center;
  min-width: 206px;
  min-height: 40px;
  background: #1a1855;
  color: var(--white);
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.apply-copy-band {
  padding: 29px 18px 51px;
  background: #f8f7ff;
}

.apply-copy-inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

.apply-copy-inner h2 {
  max-width: 455px;
  margin: 0 0 22px;
  color: var(--green);
  font-size: 2.55rem;
  line-height: 1.12;
}

.apply-copy-inner h3 {
  max-width: 455px;
  margin: 28px 0 22px;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1.2;
}

.apply-copy-inner h3 span {
  color: var(--green);
}

.apply-copy-inner p {
  margin: 0 0 18px;
  font-size: 0.98rem;
}

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

.repair-title-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 19px 18px 20px;
}

.repair-title h1 {
  margin: 0;
  color: var(--white);
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.repair-title h1 span {
  color: var(--ink);
}

.repair-image-band {
  width: min(100%, 980px);
  min-height: 242px;
  margin: 0 auto;
  background: var(--white);
  overflow: hidden;
}

.repair-image-band img {
  width: 100%;
  height: 242px;
  object-fit: cover;
  object-position: center;
}

.repair-intro {
  background: var(--white);
}

.repair-intro-inner {
  width: min(100%, 833px);
  margin: 0 auto;
  padding: 28px 18px 29px;
}

.repair-intro h2,
.repair-services h2 {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 1.88rem;
  line-height: 1.4;
  font-weight: 700;
}

.repair-intro p,
.repair-services p {
  margin: 0;
  color: var(--ink);
  font-size: 0.875rem;
  line-height: 1.4;
}

.repair-services {
  background: var(--white);
  padding: 42px 18px 65px;
}

.repair-grid {
  width: min(100%, 874px);
  margin: 0 auto;
  display: grid;
  gap: 50px;
}

.repair-grid article {
  max-width: 415px;
}

.repair-services h2 {
  color: var(--green);
}

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

.careers-title-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 28px 18px 29px;
}

.careers-title h1 {
  max-width: 600px;
  margin: 0;
  color: var(--white);
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 700;
}

.careers-copy {
  background: var(--white);
}

.careers-copy-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 53px 58px 54px;
}

.careers-copy p {
  max-width: 900px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1rem;
  line-height: normal;
}

.careers-copy p:last-child {
  margin-bottom: 0;
}

.careers-apply {
  background: var(--white);
}

.careers-apply-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0 0 10px;
  display: grid;
  align-items: start;
}

.careers-side {
  min-height: 120px;
}

.careers-form {
  width: min(100%, 502px);
  margin: 0 auto;
  padding: 35px 41px 39px;
  background: #c9c8fb;
  display: grid;
  gap: 18px;
}

.careers-form header {
  margin-bottom: 4px;
  color: #1a1855;
  text-align: center;
}

.careers-form h2 {
  margin: 0 0 4px;
  color: #1a1855;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
}

.careers-form header p {
  margin: 0;
  color: #1a1855;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
}

.careers-form-row {
  display: grid;
  gap: 18px 20px;
}

.careers-form label {
  min-width: 0;
  color: #1a1855;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 700;
}

.careers-form input,
.careers-form select,
.careers-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 0;
  border-radius: 22px;
  background: #f8f7ff;
  color: #1a1855;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 700;
}

.careers-form input,
.careers-form select {
  min-height: 42px;
  padding: 7px 20px;
}

.careers-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgb(26 24 85 / 70%) 50%),
    linear-gradient(135deg, rgb(26 24 85 / 70%) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 52%,
    calc(100% - 16px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.careers-form textarea {
  min-height: 220px;
  padding: 14px 20px;
  resize: vertical;
}

.careers-submit {
  justify-self: center;
  min-width: 332px;
  min-height: 40px;
  margin-top: 0;
  background: #1a1855;
  color: var(--white);
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
}

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

.partner-title-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 28px 18px 29px;
}

.partner-title h1 {
  margin: 0;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.partner-body {
  background: var(--white);
}

.partner-body-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 47px 18px 37px;
  display: grid;
  gap: 34px;
}

.partner-copy {
  display: grid;
  gap: 31px;
}

.partner-copy article {
  max-width: 493px;
}

.partner-copy h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
}

.partner-copy p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 0.875rem;
  line-height: 1.4;
}

.partner-copy p:last-child {
  margin-bottom: 0;
}

.partner-form {
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 29px 40px 30px;
  background: var(--green);
  display: grid;
  gap: 20px;
}

.partner-form header {
  margin-bottom: 2px;
  color: #1a1855;
  text-align: center;
}

.partner-form h2 {
  margin: 0;
  color: #1a1855;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
}

.partner-form label {
  min-width: 0;
  color: #1a1855;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 700;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 0;
  border-radius: 22px;
  background: #f8f7ff;
  color: #1a1855;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 400;
}

.partner-form input,
.partner-form select {
  min-height: 42px;
  padding: 7px 20px;
}

.partner-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgb(26 24 85 / 70%) 50%),
    linear-gradient(135deg, rgb(26 24 85 / 70%) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 52%,
    calc(100% - 16px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.partner-address-group {
  display: grid;
  gap: 11px;
}

.partner-form textarea {
  min-height: 147px;
  padding: 14px 20px;
  resize: vertical;
}

.partner-submit {
  justify-self: center;
  min-width: 208px;
  min-height: 40px;
  margin-top: -2px;
  background: #1a1855;
  color: var(--white);
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
}

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

.acp-title-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 18px 18px 20px;
}

.acp-title h1 {
  max-width: 600px;
  margin: 0 auto;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
}

.acp-body {
  background: var(--white);
}

.acp-body-inner {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 50px 18px 49px;
  display: grid;
  gap: 34px;
}

.acp-copy {
  display: grid;
  gap: 49px;
}

.acp-copy article {
  max-width: 471px;
}

.acp-copy h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
}

.acp-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 0.875rem;
  line-height: 1.4;
}

.acp-form {
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 29px 40px 30px;
  background: var(--green);
  display: grid;
  gap: 20px;
}

.acp-form header {
  margin-bottom: 2px;
  color: #1a1855;
  text-align: center;
}

.acp-form h2 {
  margin: 0;
  color: #1a1855;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
}

.acp-form label {
  min-width: 0;
  color: #1a1855;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 700;
}

.acp-form input,
.acp-form select,
.acp-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 0;
  border-radius: 22px;
  background: #f8f7ff;
  color: #1a1855;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 400;
}

.acp-form input,
.acp-form select {
  min-height: 42px;
  padding: 7px 20px;
}

.acp-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgb(26 24 85 / 70%) 50%),
    linear-gradient(135deg, rgb(26 24 85 / 70%) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 52%,
    calc(100% - 16px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.acp-address-group {
  display: grid;
  gap: 11px;
}

.acp-form textarea {
  min-height: 147px;
  padding: 14px 20px;
  resize: vertical;
}

.acp-submit {
  justify-self: center;
  min-width: 208px;
  min-height: 40px;
  margin-top: -2px;
  background: #1a1855;
  color: var(--white);
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
}

.service-detail {
  background: var(--white);
  color: var(--black);
}

.service-detail-inner {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 48px 18px 64px;
}

.service-detail h1 {
  margin: 0 0 32px;
  color: var(--black);
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 700;
}

.service-meta {
  min-height: 58px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
}

.service-meta span:first-child::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
  display: inline-block;
  vertical-align: 2px;
}

.service-meta span[aria-hidden="true"] {
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
}

.service-meta span:last-child::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  vertical-align: 2px;
}

.service-book {
  width: 132px;
  min-height: 40px;
  margin: 0 0 32px;
  padding: 0 18px;
  background: var(--yellow);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}

.service-contact {
  padding-top: 0;
}

.service-contact h2 {
  margin: 0 0 18px;
  color: var(--black);
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
}

.service-contact p {
  margin: 0;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.5;
}

.service-seo {
  background: #f8f8f8;
  border-top: 1px solid #e9e9e9;
}

.service-seo-inner {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 42px 18px 54px;
  display: grid;
  gap: 28px;
}

.service-seo h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 700;
}

.service-seo p,
.service-seo li {
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-seo p {
  margin: 0 0 14px;
}

.service-seo p:last-child {
  margin-bottom: 0;
}

.service-seo ul {
  margin: 0;
  padding-left: 20px;
}

.service-seo li + li {
  margin-top: 8px;
}

.apply-faq-list {
  gap: 0;
}

.apply-faq-list .faq-item {
  padding: 12px 0 14px;
}

.savings {
  background: linear-gradient(180deg, var(--hero-start) 0%, #dce969 79%);
}

.savings .split-copy,
.brands .split-copy {
  background: var(--white);
}

.savings h2,
.brands h2 {
  color: var(--green);
  font-size: 2.35rem;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.brand-strip img {
  max-width: 96px;
  max-height: 48px;
  object-fit: contain;
}

.about-hero {
  padding: 74px 18px 64px;
  background: linear-gradient(180deg, var(--hero-start) 0%, var(--hero-end) 79%);
  text-align: center;
}

.about-hero h2 {
  margin: 0;
  color: var(--white);
  font-size: 2.7rem;
  line-height: 1.1;
}

.about-hero strong {
  display: block;
  color: var(--ink);
}

.about-grid {
  display: grid;
  gap: 30px;
  align-items: start;
}

.about-grid h3,
.faq h2,
.find h2 {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 1.8rem;
}

.about-grid p,
.faq p {
  margin: 0 0 18px;
  font-weight: 400;
}

.about-card {
  background: #fbfbfb;
  padding: 26px;
  border-radius: 8px;
}

.faq {
  padding-top: 20px;
}

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

.faq-item {
  border-top: 1px solid #e5e5e5;
  padding-top: 18px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.find {
  min-height: 360px;
  display: grid;
  align-items: center;
}

.contact-grid {
  display: grid;
  gap: 28px;
}

.contact-block h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 1.25rem;
}

.contact-block p {
  margin: 0 0 8px;
}

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

.footer-main {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 46px 18px;
  display: grid;
  gap: 30px;
}

.footer-logo {
  width: min(100%, 285px);
  margin-bottom: 10px;
}

.footer-history {
  max-width: 340px;
  margin: 4px 0 8px;
  color: var(--yellow);
  font-size: 0.94rem;
  font-weight: 700;
}

.footer-moved {
  max-width: 340px;
  margin: 0 0 18px;
  color: #d9d9d9;
  font-size: 0.9rem;
}

.footer-updated {
  max-width: 340px;
  margin: -8px 0 18px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-gallery {
  display: grid;
  gap: 18px;
  max-width: 280px;
}

.footer-gallery img {
  border: 1px solid rgb(255 255 255 / 28%);
}

.footer-col h3 {
  margin: 0 0 14px;
  color: var(--green);
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 10px;
}

.footer-apply {
  margin-top: 18px;
}

.footer-col a.button {
  display: inline-flex;
  width: auto;
  margin: 12px 0 22px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.socials a {
  min-height: 34px;
  width: auto;
  padding: 0 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  border-radius: 999px;
}

.legal {
  border-top: 1px solid rgb(255 255 255 / 10%);
  padding: 20px 18px 26px;
  color: #f6f6f6;
  font-size: 0.74rem;
  line-height: 1.35;
}

.legal p {
  width: min(100%, var(--max));
  margin: 0 auto;
}

@media (min-width: 680px) {
  .hero-inner {
    grid-template-columns: minmax(280px, 1.05fr) minmax(340px, 0.95fr);
    padding: 48px 18px;
  }

  .hero-art {
    order: 1;
  }

  .hero-card {
    order: 2;
  }

  .hero-card {
    padding: 42px 40px;
  }

  .hero-card h1 {
    font-size: 3.1rem;
  }

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

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

  .split-copy {
    padding: 54px 42px;
  }

  .reverse .split-copy {
    order: 1;
  }

  .reverse .split-media {
    order: 2;
  }

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

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

  .footer-main {
    grid-template-columns: 1.2fr 0.7fr 0.8fr 0.9fr;
  }

  .apply-hero h1 {
    font-size: 3.75rem;
  }

  .apply-main-grid {
    grid-template-columns: minmax(0, 620px) 360px;
    gap: 0;
    align-items: start;
  }

  .apply-left {
    padding-left: 38px;
  }

  .apply-form-panel {
    margin: 0;
  }

  .repair-title h1 {
    font-size: 3.75rem;
  }

  .repair-grid {
    grid-template-columns: repeat(2, minmax(0, 415px));
    column-gap: 43px;
    row-gap: 54px;
  }

  .careers-title h1 {
    font-size: 3.75rem;
  }

  .careers-apply-inner {
    grid-template-columns: minmax(0, 478px) 502px;
  }

  .careers-side {
    min-height: 448px;
  }

  .careers-form {
    margin: 0;
  }

  .careers-form-row {
    grid-template-columns: repeat(2, minmax(0, 200px));
  }

  .partner-title h1 {
    font-size: 3.75rem;
  }

  .partner-body-inner {
    grid-template-columns: minmax(0, 493px) 360px;
    justify-content: space-between;
    gap: 40px;
    padding-left: 56px;
    padding-right: 0;
  }

  .partner-form {
    margin: 0;
  }

  .acp-title h1 {
    font-size: 3.75rem;
  }

  .acp-body-inner {
    grid-template-columns: minmax(0, 490px) 360px;
    justify-content: space-between;
    gap: 40px;
    padding-left: 56px;
    padding-right: 0;
  }

  .acp-form {
    margin: 0;
  }
}

@media (min-width: 860px) {
  .site-nav {
    display: flex;
  }
}

@media (min-width: 980px) {
  .header-inner {
    min-height: 116px;
  }

  .site-nav {
    gap: 56px;
  }

  .hero-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-card h1 {
    font-size: 3.65rem;
  }

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

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-heading {
    font-size: 2.35rem;
  }

  .apply-hero h1 {
    font-size: 3.75rem;
  }

  .repair-title h1 {
    font-size: 3.75rem;
  }

  .careers-title h1 {
    font-size: 3.75rem;
  }

  .partner-title h1 {
    font-size: 3.75rem;
  }

  .acp-title h1 {
    font-size: 3.75rem;
  }
}

@media (max-width: 420px) {
  .header-inner {
    min-height: 78px;
  }

  .logo {
    max-width: 185px;
  }

  .logo img {
    width: 168px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .hero-card h1 {
    font-size: 2rem;
  }

  .split-copy h2,
  .savings h2,
  .brands h2 {
    font-size: 1.85rem;
  }

  .apply-hero {
    padding-top: 28px;
    padding-bottom: 29px;
  }

  .apply-hero h1 {
    font-size: 2.45rem;
  }

  .apply-form-panel {
    padding-right: 24px;
    padding-left: 24px;
  }

  .repair-title-inner {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .repair-title h1 {
    font-size: 2.35rem;
  }

  .repair-intro h2,
  .repair-services h2 {
    font-size: 1.55rem;
  }

  .careers-title h1 {
    font-size: 2.45rem;
  }

  .careers-title-inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .careers-copy-inner {
    padding: 36px 22px;
  }

  .careers-form {
    padding: 30px 24px 34px;
  }

  .careers-submit {
    min-width: 100%;
  }

  .partner-title h1 {
    font-size: 2.35rem;
  }

  .partner-title-inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .partner-body-inner {
    padding: 36px 22px;
  }

  .partner-form {
    padding: 30px 24px;
  }

  .partner-submit {
    min-width: 100%;
  }

  .acp-title h1 {
    font-size: 2.35rem;
  }

  .acp-title-inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .acp-body-inner {
    padding: 36px 22px;
  }

  .acp-copy {
    gap: 34px;
  }

  .acp-form {
    padding: 30px 24px;
  }

  .acp-submit {
    min-width: 100%;
  }
}


