:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --text: #193161;
  --muted: #667085;
  --line: #e7e8eb;
  --blue-soft: #e8f1ff;
  --green-soft: #e9f6e9;
  --purple-soft: #f1e6ff;
  --yellow-soft: #f8efd8;
  --orange-soft: #f8e8dc;
  --shadow: 0 18px 40px rgba(16, 24, 40, 0.06);
  --container: 1120px;
  --usa-red: #b31942;
  --usa-blue: #002868;
  --typical-link: blue; 
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #fafaf9 0%, #f5f5f3 100%);
  color: var(--text);
}

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

svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  /*position: sticky;*/
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(250, 250, 249, 0.8);
  border-bottom: 1px solid rgba(231, 232, 235, 0.9);
  
  display: none;
}

.site-content {
  flex: 1;
  padding: 28px 18px 28px;
}

.site-footer {
  padding: 0 18px 28px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
}

.header-inner,
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #1e293b;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #d7e8ff, #f5e7db);
  border: 1px solid rgba(24, 34, 53, 0.08);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.main-nav,
.footer-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a,
.footer-nav a {
  color: var(--muted);
}

.main-nav a.is-active,
.main-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
}

.hero-panel,
.content-panel,
.legal-card {
  background: #fbfbfa;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-panel {
  overflow: hidden;
}

.hero-banner {
  position: relative;
  height: 250px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08)),
    url("../images/banner.jpg") center center / cover no-repeat,
    linear-gradient(180deg, #d8e6f2 0%, #eef4f8 26%, #c89062 27%, #a86549 45%, #9c6247 58%, #a36c4b 100%);
  overflow: hidden;
}

.hero-banner::before {
  display: none;
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background:
    radial-gradient(circle at 10% 30%, #c28a58 0 20%, transparent 21%),
    radial-gradient(circle at 24% 40%, #b5784f 0 18%, transparent 19%),
    radial-gradient(circle at 42% 35%, #b26f4e 0 18%, transparent 19%),
    radial-gradient(circle at 67% 40%, #a76347 0 18%, transparent 19%),
    radial-gradient(circle at 83% 28%, #b77953 0 18%, transparent 19%),
    linear-gradient(180deg, #a9714c 0%, #9b6648 100%);
  opacity: 0.95;
}

.hero-banner::after {
  display: none;
  content: "";
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  width: 260px;
  height: 180px;
  background: linear-gradient(180deg, #7d7a76 0%, #5b5650 100%);
  clip-path: polygon(49% 0%, 59% 10%, 66% 28%, 72% 50%, 79% 79%, 86% 100%, 14% 100%, 21% 79%, 28% 50%, 34% 28%, 41% 10%);
  opacity: 0.15;
  filter: blur(1px);
}

.road {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 320px;
  height: 185px;
  background: linear-gradient(180deg, #a5a29e 0%, #7a7672 100%);
  clip-path: polygon(47% 0%, 53% 0%, 100% 100%, 0% 100%);
  opacity: 0.95;
}

.road::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  width: 6px;
  height: 150px;
  background: repeating-linear-gradient(180deg, #f7d15f 0 12px, transparent 12px 24px);
  clip-path: polygon(48% 0%, 52% 0%, 70% 100%, 30% 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 88px 28px 28px;
  background: #fbfbfa;
}

.avatar {
  position: absolute;
  left: 50%;
  top: -58px;
  transform: translateX(-50%);
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 8px solid #ffffff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
  background: url("../images/avatar.png") center center / cover no-repeat, linear-gradient(180deg, #c6def3 0%, #adc8df 34%, #b47b54 35%, #8d5a43 100%);
  overflow: hidden;
}

.avatar::before {
  display: none;
  content: "";
  position: absolute;
  left: 31px;
  top: 20px;
  width: 70px;
  height: 38px;
  border-radius: 999px 999px 14px 14px;
  background: #6b6158;
}

.avatar::after {
  display: none;
  content: "";
  position: absolute;
  left: 40px;
  top: 54px;
  width: 52px;
  height: 20px;
  border-radius: 0 0 18px 18px;
  border-bottom: 4px solid rgba(79, 54, 43, 0.55);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.36rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.subline {
  margin: 16px 0 0;
  font-size: 1.15rem;
  line-height: 1.45;
  color: #b07b4e;
  font-weight: 500;
}

.intro {
  max-width: 700px;
  margin: 14px auto 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
}

.social-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 820px;
  margin: 30px auto 0;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(16, 24, 40, 0.04);
  font-weight: 600;
  color: #313b4d;
}

.icon-box {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  color: #fff;
}

.icon-ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.icon-yt { background: #ff2c2c; }
.icon-tt { background: #111827; }
.icon-mail { background: #8b95a5; }

.content-panel,
.legal-panel {
  margin-top: 26px;
}

.content-panel {
  padding: 30px 22px;
}

.content-panel h2,
.legal-card h1 {
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

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

.card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 20px;
  min-height: 144px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.card-icon,
.benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2c3445;
}

.bg-blue { background: var(--blue-soft); }
.bg-green { background: var(--green-soft); }
.bg-purple { background: var(--purple-soft); }
.bg-yellow { background: var(--yellow-soft); }
.bg-orange { background: var(--orange-soft); }

.card-copy {
  min-width: 0;
  flex: 1;
}

.card h3,
.benefit h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.card p,
.benefit p,
.legal-copy p,
.legal-copy li {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  font-size: 0.96rem;
}

.legal-copy p {
    margin: 0 0 14px;
}

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

.legal-copy h1,
.legal-copy h2,
.legal-copy h3 {
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-copy h1:first-child,
.legal-copy h2:first-child,
.legal-copy h3:first-child {
    margin-top: 0;
}

.modal-copy.legal-copy p {
    margin-bottom: 12px;
}

.legal-copy a
{
    text-decoration: underline;
}

.card-arrow {
  margin-left: 8px;
  color: #2b3340;
  flex-shrink: 0;
  align-self: center;
  font-size: 1.5rem;
  line-height: 1;
}

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

.benefit {
  padding: 16px 10px 6px;
}

.benefit-icon {
  margin: 0 auto 16px;
}

.footer-inner {
  justify-content: center;
  flex-wrap: wrap;
  color: #8b95a5;
  font-size: 0.94rem;
}

.legal-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 30px 22px;
}

.legal-copy h2 {
  margin: 26px 0 10px;
  font-size: 1.15rem;
}

.legal-note {
  text-align: center;
  margin-bottom: 20px !important;
  color: var(--muted) !important;
}

.not-found {
  text-align: center;
}

.eyebrow-small {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #b07b4e !important;
  font-weight: 700;
}

.back-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
}

@media (max-width: 940px) {
  .social-row,
  .cards,
  .benefits {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .footer-inner {
    justify-content: center;
  }

  .main-nav,
  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .site-content {
    padding: 12px 10px 20px;
  }

  .site-footer {
    padding: 0 10px 20px;
  }

  .hero-panel,
  .content-panel,
  .legal-card {
    border-radius: 22px;
  }

  .hero-banner {
    height: 180px;
  }

  .hero-content {
    padding: 78px 16px 20px;
  }

  .avatar {
    width: 110px;
    height: 110px;
    top: -50px;
  }

  .social-row,
  .cards,
  .benefits {
    grid-template-columns: 1fr;
  }

  .content-panel,
  .legal-card {
    padding: 22px 14px;
  }

  .card {
    min-height: 0;
  }
}






/* Rental check wizard */

.rental-check {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 34px;
    align-items: start;
    margin: 36px auto 72px;
    max-width: 1120px;
    padding: 0 20px;
}

.rental-check__intro {
    padding-top: 28px;
}

.rental-check__eyebrow {
    display: inline-flex;
    margin: 0 0 18px;
    color: #6a665e;
    font-size: 14px;
    font-weight: 800;
}

.rental-check__intro h1 {
    margin: 0 0 18px;
    max-width: 620px;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.0;
    letter-spacing: -0.02em;
}

.rental-check__lead {
    margin: 0;
    margin-top: 20px;
    max-width: 560px;
    color: #34312d;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.45;
}

.rental-check__lead span {
    display: block;
    margin-bottom: 15px;
}


.rental-check__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.rental-check__trust span {
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 999px;
    background: #b31942;
    color: white;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
}

.rental-wizard {
    overflow: visible;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.10);
}

.rental-wizard__top {
    display: grid;
    gap: 16px;
    padding: 24px 24px 18px;
    border-bottom: 1px solid #e7e0d6;
    background: linear-gradient(180deg, #ffffff 0%, #fbf7ee 100%);
    border-radius: 30px 30px 0 0;
}

.rental-wizard__step-label {
    margin: 0 0 5px;
    color: #746f67;
    font-size: 13px;
    font-weight: 900;
}

.rental-wizard__top h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.rental-wizard__progress {
    overflow: hidden;
    height: 8px;
    border-radius: 999px;
    background: #eee8dd;
}

.rental-wizard__progress span {
    display: block;
    width: 25%;
    height: 100%;
    border-radius: inherit;
    background: #111111;
    transition: width 0.22s ease;
}

.rental-wizard__body {
    padding: 24px;
}

.rental-wizard__step {
    display: none;
}

.rental-wizard__step.is-active {
    display: block;
}

.rental-wizard__headline {
    margin-bottom: 20px;
}

.rental-wizard__headline h3 {
    margin: 0 0 7px;
    font-size: 22px;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.rental-wizard__headline p {
    margin: 0;
    color: #6b665f;
    font-size: 15px;
}

.rental-check__author {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: start;
    max-width: 520px;
    margin-top: 22px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.rental-check__author img {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    object-fit: cover;
}

.rental-check__author-name {
    margin: 0 0 3px;
    color: #101828;
    font-size: 14px;
    font-weight: 850;
}

.rental-check__author-text {
    margin: 0;
    color: #5f5a52;
    font-size: 13px;
    line-height: 1.35;
}

.rental-check__author-more-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rental-check__author-more-link {
    margin-left: 0px;
    color: #2563eb;
    cursor: pointer;
    font-size: inherit;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rental-check__author-more-text {
    display: none;
}

.rental-check__author-more-toggle:checked ~ .rental-check__author-text .rental-check__author-more-link {
    display: none;
}

.rental-check__author-more-toggle:checked ~ .rental-check__author-text .rental-check__author-more-text {
    display: inline;
}


.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 32px;
}

.form-stack {
    display: grid;
    gap: 26px;
}


.form-field {
    position: relative;
    display: grid;
    gap: 8px;
}

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

.form-field label,
.choice-group__label {
    margin: 0;
    color: #201f1d;
    font-size: 14px;
    font-weight: 900;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid #ded7cc;
    border-radius: 17px;
    background: #ffffff;
    color: #151515;
    font: inherit;
    font-size: 16px;
    outline: none;
    padding: 15px 15px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #111111;
    box-shadow: 0 0 0 4px rgba(246, 199, 68, 0.25);
}

.form-field input.has-error,
.form-field textarea.has-error {
    border-color: #c9342c;
    box-shadow: 0 0 0 4px rgba(201, 52, 44, 0.12);
}

.field-error {
    display: none;
    margin: 0;
    color: #b12b24;
    font-size: 13px;
    font-weight: 700;
}

.field-error:not(:empty) {
    display: block;
    margin-top: 2px;
}

.quick-options {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 8px;
    padding-bottom: 8px;
    max-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: #cfc6b8 transparent;
}

.quick-options::-webkit-scrollbar {
    height: 6px;
}

.quick-options::-webkit-scrollbar-track {
    background: transparent;
}

.quick-options::-webkit-scrollbar-thumb {
    background: #cfc6b8;
    border-radius: 999px;
}

.quick-options button {
    flex: 0 0 auto;
    border: 1px solid #ded7cc;
    border-radius: 999px;
    background: #faf8f3;
    color: #2b2926;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 11px;
    white-space: nowrap;
}

.quick-options button:hover {
 border-color: #c9c1b5;
    background: #eee9df;
    color: #151515;
    transform: none;
}

.quick-options button.is-selected {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
    transform: none;
}

.autocomplete-field {
    position: relative;
    z-index: 30;
}

.autocomplete-field:focus-within {
    z-index: 100;
}

.autocomplete-results {
    position: absolute;
    z-index: 120;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    overflow: hidden;
    border: 1px solid #ded7cc;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}

.autocomplete-result {
    display: grid;
    width: 100%;
    gap: 2px;
    border: 0;
    border-bottom: 1px solid #f0ebe3;
    background: #ffffff;
    color: #151515;
    cursor: pointer;
    font: inherit;
    padding: 12px 14px;
    text-align: left;
}

.autocomplete-result:last-child {
    border-bottom: 0;
}

.autocomplete-result:hover {
    background: #fbf7ee;
}

.autocomplete-result strong {
    font-size: 14px;
}

.autocomplete-result span {
    color: #736e66;
    font-size: 13px;
}

/* Choice groups */

.choice-group {
    display: grid;
    gap: 10px;
    margin-bottom: 5px;
}

.choice-group__label {
    margin: 0;
    color: #101828;
    font-size: 14px;
    font-weight: 850;
}

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

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

.choice-card {
    position: relative;
    min-height: 72px;
    border: 1px solid #d9d2c7;
    border-radius: 16px;
    background: #ffffff;
    color: #101828;
    cursor: pointer;
    font: inherit;
    padding: 13px 42px 13px 14px;
    text-align: left;
    transition: border-color 0.14s ease, box-shadow 0.14s ease, transform 0.14s ease;
}

.choice-card::after {
    content: "";
    position: absolute;
    top: 13px;
    right: 18px;
    width: 19px;
    height: 19px;
    border: 1.5px solid #c7bfb3;
    border-radius: 999px;
    background: #ffffff;
    box-sizing: border-box;
}

.choice-card::before {
    content: "";
    position: absolute;
    top: 19px;
    right: 23px;
    z-index: 1;
    width: 9px;
    height: 5px;
    border-left: 2.4px solid #ffffff;
    border-bottom: 2.4px solid #ffffff;
    opacity: 0;
    transform: rotate(-45deg);
    box-sizing: border-box;
}

.choice-card strong {
    display: block;
    margin: 0;
    color: inherit;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 650;
}

.choice-card span {
    display: block;
    margin-top: 4px;
    color: #667085;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 450;
}

.choice-card:hover {
    border-color: #a99f92;
    box-shadow: 0 8px 18px rgba(20, 33, 61, 0.06);
}

.choice-card.is-selected {
    border-color: #14213d;
    box-shadow: 0 10px 22px rgba(20, 33, 61, 0.14);
}

.choice-card.is-selected::after {
    border-color: #14213d;
    background: #14213d;
}

.choice-card.is-selected::before {
    opacity: 1;
}

.choice-card.is-selected strong {
    color: #14213d;
}

.choice-card.is-selected span {
    color: #475467;
}

@media (max-width: 620px) {
    .choice-grid,
    .choice-grid--three {
        grid-template-columns: 1fr;
    }

    .choice-card {
        min-height: 64px;
    }
}

.form-note {
    margin: 18px 0 0;
    border: 1px solid #eee1cb;
    border-radius: 18px;
    background: #fff9ea;
    color: #6b604f;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 15px;
}

.rental-wizard__actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 18px 24px 24px;
    border-top: 1px solid #e7e0d6;
    background: rgba(250, 247, 241, 0.9);
    border-radius: 0 0 30px 30px;
}

.primary-action,
.secondary-action {
    min-height: 52px;
    border-radius: 17px;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 950;
    padding: 14px 18px;
}

.primary-action {
    flex: 1;
    border: 0;
    background: #111111;
    color: #ffffff;
}

.secondary-action {
    border: 1px solid #ded7cc;
    background: #ffffff;
    color: #151515;
}

.secondary-action:disabled {
    cursor: default;
    opacity: 0.38;
}

@media (max-width: 900px) {
    .rental-check {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 18px;
    }

    .rental-check__intro {
        padding-top: 0;
    }
}

@media (max-width: 620px) {
    .rental-check {
        padding: 0 12px 96px;
    }

    .rental-wizard {
        border-radius: 25px;
    }

    .rental-wizard__top,
    .rental-wizard__body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .form-grid,
    .choice-grid,
    .choice-grid--three {
        grid-template-columns: 1fr;
    }

    .rental-wizard__actions {
        position: fixed;
        z-index: 50;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.10);
        opacity: 0;
        pointer-events: none;
        transform: translateY(100%);
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .rental-wizard__actions.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .secondary-action {
        flex: 0 0 auto;
    }
}

.conditional-field[hidden] {
    display: none !important;
}

/* Autocomplete positioning */

.autocomplete-input-wrap {
    position: relative;
}

.autocomplete-input-wrap .autocomplete-results {
    top: calc(100% + 6px);
}

/* Honeypot field for spam protection */

.form-hptrp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.primary-action {
    flex: 1;
    border: 0;
    background: #f6c744;
    color: #111111;
    box-shadow: 0 10px 24px rgba(246, 199, 68, 0.28);
}

.primary-action:hover {
    background: #f3bd22;
}

.primary-action:disabled {
    cursor: default;
    opacity: 0.55;
    box-shadow: none;
}

.primary-action,
.secondary-action {
    font-weight: 850;
}

/* Give autocomplete fields enough horizontal space */

@media (min-width: 621px) {
    .autocomplete-field {
        grid-column: 1 / -1;
    }
}


/* Amount fields with currency select */

.amount-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 8px;
    align-items: start;
}

.amount-field input,
.amount-field select {
    min-height: 50px;
}

.amount-field select {
    width: 100%;
    border: 1px solid #ded7cc;
    border-radius: 17px;
    background: #ffffff;
    color: #151515;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    outline: none;
    padding: 0 12px;
}

.amount-field select:focus {
    border-color: #111111;
    box-shadow: 0 0 0 4px rgba(246, 199, 68, 0.25);
}

@media (max-width: 420px) {
    .amount-field {
        grid-template-columns: minmax(0, 1fr) 82px;
    }
}

.time-select {
    width: 100%;
    min-height: 50px;
    border: 1px solid #ded7cc;
    border-radius: 17px;
    background: #ffffff;
    color: #151515;
    font: inherit;
    font-size: 16px;
    font-weight: 650;
    outline: none;
    padding: 0 14px;
}

.time-select:focus {
    border-color: #111111;
    box-shadow: 0 0 0 4px rgba(246, 199, 68, 0.25);
}



/* Consent and modal */
/* Consent */

.consent-field {
    margin-top: 4px;
}

.consent-check {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    color: #5f5a52;
    font-size: 13px;
    line-height: 1.45;
}

.consent-check input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #14213d;
}

.text-link-button {
    border: 0;
    background: transparent;
    color: #14213d;
    cursor: pointer;
    font: inherit;
    font-weight: 400;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.text-link-button:hover {
    color: #0b1326;
}

.modal-backdrop {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(16, 24, 40, 0.58);
}

.modal-backdrop[hidden] {
    display: none !important;
}

.modal-dialog {
    position: relative;
    width: min(760px, 100%);
    max-height: min(760px, 88vh);
    overflow-y: auto;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    padding: 28px;
}

.modal-copy {
    display: grid;
    gap: 13px;
    color: #3f3a35;
    font-size: 15px;
    line-height: 1.55;
}

.modal-copy h1 {
    margin: 0 42px 4px 0;
    color: #101828;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.modal-copy h2 {
    margin: 14px 0 0;
    color: #101828;
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.modal-copy p {
    margin: 0;
}

.modal-copy .legal-note {
    color: #746f67;
    font-size: 13px;
    font-weight: 750;
}

.modal-close {
    position: sticky;
    top: 0;
    float: right;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 1px solid #ded7cc;
    border-radius: 999px;
    background: #ffffff;
    color: #101828;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 620px) {
    .modal-dialog {
        max-height: 84vh;
        padding: 22px;
        border-radius: 22px;
    }
}

.consent-field {
    margin-top: 18px;
}

.consent-check,
.consent-check span {
    font-weight: 400 !important;
}

.consent-check {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    color: #5f5a52;
    font-size: 13px;
    line-height: 1.45;
}

.consent-check input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #14213d;
}

.text-link-button {
    border: 0;
    background: transparent;
    color: #14213d;
    cursor: pointer;
    font: inherit;
    font-weight: 400 !important;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.text-link-button:hover {
    color: #0b1326;
}

/* Mobile hero CTA */

.hero-cta {
    display: none;
}

@media (max-width: 900px) {
    .hero-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 360px;
        min-height: 50px;
        margin-top: 20px;
        border-radius: 999px;
        background: #14213d;
        color: #ffffff;
        font-size: 15px;
        font-weight: 750;
        line-height: 1;
        text-decoration: none;
        box-shadow: 0 12px 26px rgba(20, 33, 61, 0.18);
        transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    }

    .hero-cta:hover,
    .hero-cta:focus {
        background: #0f1a33;
        color: #ffffff;
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(20, 33, 61, 0.22);
    }
}


/* Rental check FAQ */

.rental-faq {
    max-width: 920px;
    margin: 34px auto 80px;
    padding: 0 20px;
}

.rental-faq__inner {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.07);
    padding: 30px;
}

.rental-faq__eyebrow {
    margin: 0 0 8px;
    color: #746f67;
    font-size: 13px;
    font-weight: 800;
}

.rental-faq h2 {
    margin: 0 0 20px;
    color: #101828;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.faq-list {
    border-top: 1px solid #e7e0d6;
}

.faq-item {
    border-bottom: 1px solid #e7e0d6;
}

.faq-question {
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 16px;
    align-items: center;
    width: 100%;
    border: 0;
    background: transparent;
    color: #14213d;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.35;
    padding: 18px 0;
    text-align: left;
}

.faq-question:hover {
    color: #0b1326;
}

.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    justify-self: end;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: currentColor;
    border-radius: 999px;
}

.faq-icon::before {
    top: 8px;
    left: 2px;
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    top: 2px;
    left: 8px;
    width: 2px;
    height: 14px;
    transition: opacity 0.14s ease;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    opacity: 0;
}

.faq-answer {
    color: #34312d;
    font-size: 15px;
    line-height: 1.55;
    padding: 0 40px 20px 0;
}

.faq-answer p {
    margin: 0 0 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 620px) {
    .rental-faq {
        padding: 0 12px 96px;
        margin-top: 26px;
    }

    .rental-faq__inner {
        border-radius: 24px;
        padding: 22px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 0;
    }

    .faq-answer {
        padding-right: 0;
        font-size: 14px;
    }
}

.faq-answer a
{
    text-decoration: underline;
}

/* Homepage feature card */

.content-panel--compact {
    padding-top: 22px;
}

.homepage-feature {
    width: 100%;
}

.homepage-feature__card {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 28px;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(20, 33, 61, 0.10);
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #fbf8ef 100%);
    color: inherit;
    padding: 24px;
    text-decoration: none;
    box-shadow: 0 18px 46px rgba(20, 33, 61, 0.08);
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.homepage-feature__card:hover {
    transform: translateY(-2px);
    border-color: rgba(20, 33, 61, 0.22);
    box-shadow: 0 24px 60px rgba(20, 33, 61, 0.12);
}

.homepage-feature__icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: #14213d;
    color: #ffffff;
}

.homepage-feature__icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.homepage-feature__copy {
    min-width: 0;
}

.homepage-feature__topline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.homepage-feature__badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border-radius: 999px;
    background: #f6c744;
    color: #151515;
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    padding: 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.homepage-feature__label {
    color: #746f67;
    font-size: 13px;
    font-weight: 700;
}

.homepage-feature__copy h2 {
    margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.08;
    letter-spacing: -0.035em;    text-align: left;
}

.homepage-feature__copy p {
    max-width: 680px;
    margin: 0;
    color: #4f4942;
    font-size: 15px;
    line-height: 1.5;
}

.homepage-feature__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 16px;
    border-radius: 999px;
    background: #14213d;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    padding: 0 18px;
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.16);
}

.homepage-feature__arrow {
    justify-self: end;
    color: #14213d;
    font-size: 34px;
    line-height: 1;
    opacity: 0.55;
    transition: transform 0.16s ease, opacity 0.16s ease;
}

.homepage-feature__card:hover .homepage-feature__arrow {
    transform: translateX(3px);
    opacity: 1;
}

@media (max-width: 620px) {
    .homepage-feature__card {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
        border-radius: 24px;
    }

    .homepage-feature__icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }

    .homepage-feature__icon svg {
        width: 27px;
        height: 27px;
    }

    .homepage-feature__arrow {
        display: none;
    }

    .homepage-feature__copy h2 {
        font-size: 24px;
    }

    .homepage-feature__button {
        width: 100%;
    }
}





.homepage-rental {
    display: grid;
    gap: 22px;
}

.homepage-rental__intro {
    max-width: 760px;
}

.homepage-rental__eyebrow {
    margin: 0;
    margin-left: 5px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.homepage-rental__card {
    position: relative;
    display: grid;
     grid-template-columns: 80px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    min-height: 100%;
    padding: 22px;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(16, 24, 40, 0.1);
    border-radius: 26px;
    background: #ffffff;
}

.homepage-rental__card:hover {
    border-color: rgba(0, 40, 104, 0.24);
}

.homepage-rental__card--primary {
    border-color: rgba(179, 25, 66, 0.22);
}

.homepage-rental__card--primary:hover {
    border-color: rgba(179, 25, 66, 0.34);
}


.homepage-rental__brand-logo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 80px;
    padding-top: 2px;
}

.homepage-rental__brand-logo img {
    display: block;
    width: 100%;
    max-width: 80px;
    height: auto;
}

.homepage-rental__status {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #ffffff;
    border-radius: 999px;
    background: var(--usa-blue);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.homepage-rental__copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    padding-right: 24px;
}

.homepage-rental__topline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.homepage-rental__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 9px;
    color: var(--usa-blue);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    border-radius: 999px;
    background: rgba(0, 40, 104, 0.1);
}

.homepage-rental__card--primary .homepage-rental__badge {
    color: var(--usa-red);
    background: rgba(179, 25, 66, 0.1);
}

.homepage-rental__copy h3 {
    margin: 0;
    color: #101828;
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.homepage-rental__copy p {
    margin: 12px 0 0;
    color: #475467;
    font-size: 15.5px;
    line-height: 1.58;
}

.homepage-rental__actions {
    margin-top: auto;
    padding-top: 18px;
}

.homepage-rental__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 11px 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    border-radius: 999px;
    background: var(--usa-blue);
}

.homepage-rental__card--primary .homepage-rental__button {
    background: var(--usa-red);
}

.homepage-rental__note {
    display: block;
    min-height: 40px;
    margin-top: 10px;
    color: #667085;
    font-size: 12.5px;
    line-height: 1.4;
}

.homepage-rental__arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    color: rgba(16, 24, 40, 0.34);
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.homepage-rental__card:hover .homepage-rental__arrow {
    color: rgba(16, 24, 40, 0.58);
    transform: translate(3px, -50%);
}

.homepage-rental__check-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    min-height: 36px;
    padding: 0 16px;
    color: #ffffff;
    border-radius: 8px;
    background: var(--usa-blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
}

@media (max-width: 1024px) {
    .homepage-rental__cards {
        grid-template-columns: 1fr;
    }

    .homepage-rental__card {
        padding: 18px;
        border-radius: 22px;
    }

    .homepage-rental__note {
        min-height: 0;
    }
}

@media (max-width: 560px) {
    .homepage-rental__card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .homepage-rental__brand-logo {
        width: 80px;
        padding-top: 0;
    }

    .homepage-rental__brand-logo img {
        max-width: 80px;
    }

    .homepage-rental__status {
        width: 48px;
        height: 48px;
        font-size: 26px;
    }

    .homepage-rental__copy {
        padding-right: 0;
    }

    .homepage-rental__copy p {
        font-size: 14.5px;
    }

    .homepage-rental__button {
        width: 100%;
        padding: 12px 14px;
    }

    .homepage-rental__arrow {
        display: none;
    }
    
    .homepage-rental__check-badge {
    width: fit-content;
    min-height: 36px;
    padding: 0 15px;
    font-size: 13px;
    }
}




/* Rental check result */

.result-page {
    max-width: 980px;
    margin: 34px auto 72px;
    padding: 0 20px;
}

.result-page__inner {
    display: grid;
    gap: 18px;
}

.result-page__eyebrow {
    margin: 0 0 10px;
    color: var(--usa-red);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.result-card {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #ffffff;
    padding: 24px;
}

.result-card--hero {
    background: linear-gradient(135deg, #ffffff 0%, #fbf8ef 100%);
}

.result-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

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

.result-card h1 {
    margin-bottom: 12px;
    color: var(--usa-blue);
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-top: 15px;
    }

.result-card h2 {
    margin-bottom: 10px;
    color: #101828;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.result-card h3 {
    margin-bottom: 6px;
    color: #101828;
    font-size: 16px;
    line-height: 1.25;
}

.result-card p {
    margin-bottom: 0;
    color: #475467;
    font-size: 15.5px;
    line-height: 1.58;
}

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

.result-card__top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
}

.result-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
}

.result-rating--ok {
    color: #14532d;
    background: #dcfce7;
}

.result-rating--notice {
    color: #854d0e;
    background: #fef3c7;
}

.result-rating--warning {
    color: #991b1b;
    background: #fee2e2;
}

.result-facts {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
}

.result-facts div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding-top: 10px;
}

.result-facts dt {
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.result-facts dd {
    margin: 0;
    color: #101828;
    font-size: 13px;
    font-weight: 850;
    text-align: right;
}

.result-recommendations {
    display: grid;
    gap: 16px;
}

.result-recommendation {
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.result-recommendation:first-child {
    border-top: 0;
    padding-top: 0;
}

.result-text-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--usa-blue);
    font-size: 14px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.result-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 44px;
    margin-top: 18px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--usa-blue);
    color: #ffffff;
    font-size: 14px;
    font-weight: 850;
}

.result-card--note {
    background: #fbfbfa;
}

@media (max-width: 760px) {
    .result-page {
        margin-top: 18px;
        padding: 0 12px 64px;
    }

    .result-grid,
    .result-hero {
        grid-template-columns: 1fr;
    }

    .result-card {
        border-radius: 22px;
        padding: 20px;
    }
}

.result-card--booking {
    background: #fbfbfa;
}

.result-booking-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    margin: 14px 0 0;
}

.result-booking-summary div {
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.result-booking-summary dt {
    margin-bottom: 4px;
    color: #667085;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.result-booking-summary dd {
    margin: 0;
    color: #101828;
    font-size: 14.5px;
    font-weight: 750;
    line-height: 1.35;
}

.result-muted {
    color: #667085;
    font-weight: 650;
}

.price-meter {
    margin-top: 18px;
}

.price-meter__scale {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 8px;
    color: #667085;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
}

.price-meter__track {
    position: relative;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #dc2626 0%,
        #f59e0b 34%,
        #22c55e 72%,
        #16a34a 100%
    );
}

.price-meter__indicator {
    position: absolute;
    top: 50%;
    width: 22px;
    height: 22px;
    border: 3px solid #ffffff;
    border-radius: 999px;
    background: #101828;
    transform: translate(-50%, -50%);
}

.price-meter__label {
    margin-top: 12px;
    color: #101828;
    font-size: 14px;
    font-weight: 850;
}

@media (max-width: 760px) {
    .result-booking-summary {
        grid-template-columns: 1fr;
    }

    .price-meter__scale {
        font-size: 10px;
    }
    
    .result-score {
    width: 96px;
    min-width: 96px;
    min-height: 96px;
        justify-self: center;
}

.result-score__value {
    font-size: 30px;
}
}


.result-subsections {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

.result-subsection {
    border-top: 1px solid var(--line);
    padding-top: 14px;
}

.result-subsection:first-child {
    border-top: 0;
    padding-top: 0;
}

.result-subsection h3 {
    margin: 0 0 6px;
    color: #101828;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.25;
}

.result-subsection p {
    margin: 0;
}

.price-meter__reference-link {
    display: block;
    margin-top: 12px;
    color: var(--typical-link);
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-align: center;
}

.result-hero__copy {
    min-width: 0;
}

.result-card .result-hero__copy p {
	color: var(--usa-blue) !important;
}

.result-score {
    display: grid;
    grid-template-columns: auto auto;
    align-content: center;
    justify-content: center;
    min-width: 108px;
    min-height: 108px;
    padding: 14px;
    border-radius: 999px;
    background: #fef3c7;
    color: #101828;
    text-align: center;
}

.result-score__value {
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
}

.result-score__max {
    align-self: end;
    margin-left: 2px;
    padding-bottom: 4px;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
}

.result-score__label {
    grid-column: 1 / -1;
    margin-top: 5px;
    color: rgba(16, 24, 40, 0.66);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.result-score--good {
    background: #dcfce7;
}

.result-score--ok {
    background: #ecfccb;
}

.result-score--notice {
    background: #fef3c7;
}

.result-score--warning {
    background: #fee2e2;
}

.result-card--recommendations {
    position: relative;
    border-color: rgba(179, 25, 66, 0.18);
    background: linear-gradient(135deg, #fffaf0 0%, #ffffff 72%);
}

.result-card--recommendations::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: var(--usa-red);
}

.result-card__kicker {
    margin: 0 0 8px;
    color: var(--usa-red);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.result-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: fit-content;
    min-height: 42px;
    margin-top: 14px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--usa-blue);
    color: #ffffff;
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
}

.result-action-button:hover {
    background: #00215a;
}

.result-action-button__text {
    display: inline-flex;
    align-items: flex-start;
    gap: 1px;
}

.result-action-button__text sup {
    position: relative;
    top: -0.18em;
    margin-left: 1px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.result-action-button__arrow {
    font-size: 20px;
    line-height: 1;
}

.result-card.result-card--recommendations .result-affiliate-note {
    margin: 24px 0 0;
    padding-top: 12px;
    border-top: 1px solid rgba(16, 24, 40, 0.08);
    color: #667085;
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1.45;
}

.result-recommendation .result-action-description {
    display: block;
    width: 100%;
    max-width: none;
    margin: 16px 0 18px;
    color: #475467;
    font-size: 13.5px;
    line-height: 1.45;
}

.result-title-with-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.result-savings-badge {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 9px;
    border-radius: 999px;
    background: #dcfce7;
    color: #14532d;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.result-card .price-meter__reference-text {
    margin: 12px 0 0;
    color: #475467;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.4;
}

.result-recommendation--optional {
    opacity: 0.92;
}

.result-recommendation--optional h3 {
    color: #344054;
}

.result-author-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    border: 1px solid rgba(0, 40, 104, 0.10);
    border-radius: 22px;
    background: #ffffff;
    padding: 16px;
}

.result-author-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    object-fit: cover;
}

.result-author-card__name {
    margin: 0 0 4px;
    color: #101828;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.25;
}

.result-author-card .result-author-card__text {
    margin: 0;
    color: #475467;
    font-size: 14px;
    line-height: 1.5;
}

.result-quote-title {
    position: relative;
}

.result-quote-title span {
    display: inline-block;
    color: var(--usa-blue);
    font-size: 1.0em;
    font-weight: 700;
    line-height: 0;
}

.result-quote-title span:first-child {
    margin-right: 2px;
}

.result-quote-title span:last-child {
    margin-left: 2px;
}