/* ====================================================================================================
   style-cf.css - CARFAX
==================================================================================================== */

:root {
  --gold: #D4A843;
  --gold-light: #F0C875;
  --gold-dim: rgba(212, 168, 67, 0.15);
  --steel: #8B93A1;
  --ink: #0A0A0C;
  --paper: #fdfcfa;
  --red: #dc2626;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  font-family: 'Manrope', sans-serif;
  background: var(--ink);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: default;
  position: relative;
}

/* ==================================================================================================== */
/* ========== Background ========== */
/* ==================================================================================================== */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 50% 45% at 15% 10%, rgba(212, 168, 67, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 88% 30%, rgba(212, 168, 67, 0.20) 0%, transparent 70%),
    radial-gradient(ellipse 30% 35% at 50% 88%, rgba(212, 168, 67, 0.14) 0%, transparent 70%),
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/rect%3E%3C/svg%3E");
}

/* ==================================================================================================== */
/* ========== HEADER ========== */
/* ==================================================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 32px;
  height: 64px;
  background: transparent;
  border-radius: 0;
  border: 1px solid transparent;
  box-shadow: none;
  transition:
    padding 0.50s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.50s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.50s cubic-bezier(0.4, 0, 0.2, 1),
    right 0.50s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.50s ease,
    border-radius 0.50s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.50s ease,
    box-shadow 0.50s ease;
}

.header.scrolled {
  height: 52px;
  top: 12px;
  left: 20px;
  right: 20px;
  padding: 16px 28px;
  background: rgba(6, 6, 8, 0.80);
  backdrop-filter: blur(8px) saturate(1.8);
  -webkit-backdrop-filter: blur(8px) saturate(1.8);
  border-radius: 100px;
  border-color: rgba(201, 168, 76, 0.14);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.30);
}

.header-nav-link--active {
  color: #ffffff !important;
}

.header-nav-link--active::after {
  transform: translateX(-50%) scaleX(1) !important;
  opacity: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}

.logo-mark {
  display: block;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
  transform-box: fill-box;
}

.logo:hover .logo-mark {
  transform: scaleX(1.18);
}

.logo-name {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  transition: letter-spacing 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-name {
  letter-spacing: 0.10em;
}

.logo-name strong {
  font-weight: 800;
  color: var(--gold);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 16px;
}

.header-nav-link {
  position: relative;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.20s ease, background 0.20s ease;
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 28px);
  height: 1px;
  background: var(--gold);
  opacity: 0.70;
  border-radius: 1px;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.header-nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.header-btn-track {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.50);
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 10px 8px 10px 16px;
  margin-left: 50px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.22s ease, border-color 0.22s ease;
}

.header-btn-track:hover {
  color: #ffffff;
  border-left-color: rgba(255, 255, 255, 0.24);
  background: transparent;
}

.header-btn-track svg {
  opacity: 0.55;
  transition: opacity 0.22s ease;
}

.header-btn-track:hover svg {
  opacity: 0.90;
}

.header-btn {
  position: relative;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 100px;
  padding: 10px 22px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.header-btn:hover {
  background: var(--gold-dim);
  border-color: rgba(201, 168, 76, 0.65);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 100px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  margin-left: 8px;
  z-index: 1002;
  transition: background 0.20s ease, border-color 0.20s ease;
}

.burger:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.34s ease, width 0.34s ease;
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 6, 8, 0.97);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1), transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-menu-inner {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 32px 48px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 50px;
}

.mobile-link {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 100px;
  transition: color .2s;
}

.mobile-link:hover {
  color: #ffffff;
}

.mobile-link--active {
  color: var(--gold) !important;
}

.mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0b;
  background: var(--gold);
  border-radius: 100px;
  padding: 18px 40px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 28px rgba(201, 168, 76, 0.30);
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.mobile-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201, 168, 76, 0.42);
}

.mobile-footer-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.06em;
}

.mobile-footer-dot {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.40;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .header-nav {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header {
    padding: 18px 12px;
  }

  .header.scrolled {
    left: 5px;
    right: 5px;
    top: 8px;
    padding: 12px 16px;
    border-radius: 100px;
  }
}







/* ==================================================================================================== */
/* ========== HERO ========== */
/* ==================================================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #09090b;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/bg-carfax.webp');
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(9, 9, 11, .80) 0%,
      rgba(9, 9, 11, .35) 42%,
      rgba(9, 9, 11, .50) 68%,
      rgba(9, 9, 11, .88) 100%);
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 72px 40px;
  width: 100%;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 10px;
  animation: fadeUp .7s .1s both;
}

.hero-kicker-marks {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-kicker-marks span {
  width: 11px;
  height: 1.5px;
  background: var(--gold);
  display: block;
}

.hero-kicker-marks span:nth-child(2) {
  opacity: 0.55;
}

.hero-kicker-marks span:nth-child(3) {
  opacity: 0.25;
}

.hero-h1 {
  font-size: clamp(36px, 5.6vw, 74px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 20px;
}

.hw {
  display: inline-block;
  overflow: hidden;
  animation: slideUp .75s cubic-bezier(.4, 0, .2, 1) both;
}

.hw1 {
  animation-delay: .25s;
}

.hw2 {
  animation-delay: .40s;
  color: var(--gold-light);
}

@keyframes slideUp {
  from {
    transform: translateY(105%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .48);
  line-height: 1.70;
  max-width: 460px;
  margin-bottom: 36px;
  animation: fadeUp .8s .55s both;
}

/* ── VIN pill  ── */
.vin-pill-wrap {
  width: 100%;
  max-width: 520px;
  margin: auto auto 10px;
  animation: fadeUp .8s .68s both;
}

.vin-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: 999px;
  padding: 6px 6px 6px 24px;
  animation: vinPillRing 3s ease-in-out infinite;
}

@keyframes vinPillRing {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(212, 168, 67, .22), 0 16px 40px rgba(0, 0, 0, .40);
  }

  50% {
    box-shadow: 0 0 0 1.5px rgba(212, 168, 67, .50), 0 16px 40px rgba(0, 0, 0, .40);
  }
}

.vin-pill-icon {
  color: rgba(255, 255, 255, .30);
  flex-shrink: 0;
}

.vin-pill-field {
  position: relative;
  flex: 1;
  text-align: left;
}

.vin-input {
  position: relative;
  z-index: 1;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  padding: 15px 0;
  letter-spacing: .05em;
}

.vin-cycle-placeholder {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, .22);
  letter-spacing: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity .45s ease;
}

.vin-cycle-placeholder.is-hidden {
  opacity: 0;
}

.vin-pill-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .18s ease;
}

.vin-pill-btn:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, .32);
  margin: 0 auto;
  animation: fadeUp .8s .78s both;
}

.hero-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .30);
  line-height: 1.7;
  max-width: 460px;
  animation: fadeUp .8s .88s both;
  margin: 20px auto 0;
}

.hero-note-sep {
  margin: 0 4px;
  opacity: .4;
}

.hero-note-link {
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  transition: color .18s ease, border-color .18s ease;
}

.hero-note-link:hover {
  color: var(--gold-light);
  border-color: rgba(212, 168, 67, .45);
}

.hero-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .10);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  background: rgba(0, 0, 0, .20);
  backdrop-filter: blur(8px);
}

.ht-track {
  display: flex;
  width: max-content;
  animation: htScroll 28s linear infinite;
}

.ht-track:hover {
  animation-play-state: paused;
}

@keyframes htScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ht-inner {
  display: flex;
  align-items: center;
  padding: 13px 0;
  white-space: nowrap;
}

.ht-item {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .35);
  padding: 0 20px;
  letter-spacing: .01em;
}

.ht-item em {
  font-style: normal;
  font-weight: 800;
  color: rgba(255, 255, 255, .80);
}

.ht-dot {
  color: rgba(255, 255, 255, .18);
  font-size: 16px;
}

@media (max-width: 640px) {
  .hero-body {
    padding: 120px 20px 40px;
  }

  .vin-pill {
    padding: 4px 4px 4px 18px;
  }

  .vin-pill-btn {
    width: 42px;
    height: 42px;
  }
}








/* ==================================================================================================== */
/* ========== HOW TO GET ========== */
/* ==================================================================================================== */

.how-section {
  padding: 140px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.how-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 72px;
  position: relative;
  z-index: 1;
}

.how-header {
  margin-bottom: 36px;
  text-align: center;
}

.how-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.how-eyebrow-marks {
  display: flex;
  align-items: center;
  gap: 4px;
}

.how-eyebrow-marks span {
  width: 11px;
  height: 1.5px;
  background: var(--gold);
  display: block;
}

.how-eyebrow-marks span:nth-child(2) {
  opacity: 0.55;
}

.how-eyebrow-marks span:nth-child(3) {
  opacity: 0.25;
}

.how-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  margin-bottom: 48px;
}

.how-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #09090b;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.40),
    0 0 0 1px rgba(212, 168, 67, 0.12);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4, 0, .2, 1), transform .6s cubic-bezier(.4, 0, .2, 1), box-shadow .22s ease;
  transition-delay: calc(var(--d) * .12s);
}

.how-card.hc-vis {
  opacity: 1;
  transform: translateY(0);
}

.how-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.50), 0 0 0 1px rgba(212, 168, 67, 0.25);
}

.how-card-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: rgba(255, 255, 255, .80);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.how-card-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.015em;
}

.how-card-desc {
  font-size: 13px;
  color: #71717a;
  line-height: 1.65;
}

.how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: rgba(255, 255, 255, .18);
}

.how-cta-wrap {
  text-align: center;
}

.how-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  background: var(--gold);
  border-radius: 100px;
  padding: 16px 36px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(212, 168, 67, .28);
  transition: all .22s ease;
  position: relative;
  overflow: hidden;
}

.how-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .18) 0%, transparent 55%);
  pointer-events: none;
}

.how-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 67, .40);
}




/* ==================================================================================================== */
/* ========== CARFAX REPORT ========== */
/* ==================================================================================================== */

.cf-report-section {
  padding: 140px 0 0;
  position: relative;
  z-index: 1;
}

.cfr-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cfr-header {
  margin-bottom: 36px;

}

.cfr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.cfr-eyebrow-marks {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cfr-eyebrow-marks span {
  width: 11px;
  height: 1.5px;
  background: var(--gold);
  display: block;
}

.cfr-eyebrow-marks span:nth-child(2) {
  opacity: 0.55;
}

.cfr-eyebrow-marks span:nth-child(3) {
  opacity: 0.25;
}

.cfr-title {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 0;
  line-height: 1.15;
  color: #fff;
}

.cfr-card {
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
  color: #09090b;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(212, 168, 67, 0.15);
  padding: 12px 12px;

  position: relative;
  border-top: 4px solid var(--gold);
}

.cfr-card::before {
  content: 'CARFAX®';
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  font-size: 90px;
  font-weight: 900;
  color: #09090b;
  opacity: 0.025;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.02em;
}

.cfr-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);

  
}

.cfr-card-header,
.cfr-rows,
.cfr-card-footer {
  position: relative;
  z-index: 1;
}

.cfr-card-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.cfr-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: rotate(-4deg);
}

.cfr-card-vin {
  font-family: monospace;
  font-size: 11px;
  color: #8a8578;
}

.cfr-rows {
  display: flex;
  flex-direction: column;
}

.cfr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  opacity: 0;
  transform: translateY(10px);
  animation: cfrRowIn .5s cubic-bezier(.4, 0, .2, 1) forwards;
  animation-delay: calc(var(--d) * .08s);
}



@keyframes cfrRowIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cfr-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cfr-row-n {
  font-size: 10px;
  font-weight: 700;
  opacity: .45;
}

.cfr-row-name {
  font-size: 13.5px;
  font-weight: 700;
}

.cfr-row-src {
  font-size: 11px;
  opacity: .55;
  display: block;
}

.cfr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
}

.cfr-badge--warn {
  background: rgba(220, 38, 38, .08);
  color: #dc2626;
}

.cfr-badge--ok {
  background: rgba(22, 163, 74, .08);
  color: #16a34a;
}

.cfr-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: #faf9f6;
}

.cfr-summary {
  font-size: 12px;
  font-weight: 700;
}

.cfr-sum-warn {
  color: #dc2626;
}

.cfr-sum-ok {
  color: #16a34a;
}

.cfr-sum-sep {
  opacity: .4;
  margin: 0 8px;
}

.cfr-card-note {
  font-size: 10.5px;
  opacity: .5;
}

@media (max-width: 960px) {
  .cfr-card {
    padding: 10px 0;
  }
}

@media (max-width: 640px) {

  .cfr-card-header {
  justify-content: center;}

  .cfr-row {
    align-items: flex-start;
    padding: 14px 16px;
    gap: 8px;
  }
 
  .cfr-row-left {
    flex-wrap: wrap;
    row-gap: 3px;
  }
 
  .cfr-row-name {
    font-size: 13px;
  }
 
  .cfr-row-src {
    flex-basis: 100%;
    margin-left: 22px;
    font-size: 10.5px;
  }
 
  .cfr-badge {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 10px;
    padding: 4px 8px;
  }
 
  .cfr-card-header {
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 6px;
  }
 
  .cfr-card-footer {
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }
}












/* ==================================================================================================== */
/* ========== CHECK SECTION ========== */
/* ==================================================================================================== */

.check-section {
  position: relative;
  z-index: 1;
  padding: 140px 0 100px;
}

.check-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
}

.check-header {
  text-align: center;
  margin-bottom: 36px;
}

.check-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.check-eyebrow-marks {
  display: flex;
  align-items: center;
  gap: 4px;
}

.check-eyebrow-marks span {
  width: 11px;
  height: 1.5px;
  background: var(--gold);
  display: block;
}

.check-eyebrow-marks span:nth-child(2) {
  opacity: 0.55;
}

.check-eyebrow-marks span:nth-child(3) {
  opacity: 0.25;
}

.check-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}

.check-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, .45);
}

.form-card {
  position: relative;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  animation: formCardRing 3s ease-in-out infinite;
}

@keyframes formCardRing {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(212, 168, 67, .20), 0 24px 60px rgba(0, 0, 0, .50);
  }

  50% {
    box-shadow: 0 0 0 1.5px rgba(212, 168, 67, .45), 0 24px 60px rgba(0, 0, 0, .50);
  }
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.fp-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .35);
  transition: color .4s ease;
}

.fp-step--active {
  color: #fff;
}

.fp-step--done {
  color: #4ADE80;
}

.fp-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 2px solid rgba(255, 255, 255, .14);
  flex-shrink: 0;
  transition: all .4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-step--active .fp-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, .18);
}

.fp-step--done .fp-dot {
  background: #16a34a;
  border-color: #16a34a;
}

.fp-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, .10);
  margin: 0 12px;
  transition: background .4s ease;
  position: relative;
  overflow: hidden;
}

.fp-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  background: #16a34a;
  transition: width .5s cubic-bezier(.4, 0, .2, 1);
}

.fp-line.done::after {
  width: 100%;
}

.form-panel-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}

.form-panel-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.6;
  margin-bottom: 24px;
}

.form-panel--hidden {
  display: none;
}

.form-panel--entering {
  animation: panelIn .4s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-checks {
  display: none;
  font-size: 12px;
  color: rgba(255, 255, 255, .50);
  margin-bottom: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 8px;
  padding: 8px 14px;
}

.form-checks.show {
  display: block;
}

.form-checks strong {
  font-weight: 700;
  color: #fff;
}

.form-checks strong.low {
  color: #F87171;
}

.form-inp-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.form-inp {
  flex: 1;
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-inp:focus {
  border-color: rgba(212, 168, 67, .55);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, .10);
}

.form-inp.is-error {
  border-color: rgba(248, 113, 113, .55);
  box-shadow: 0 0 0 4px rgba(248, 113, 113, .10);
}

.form-inp::placeholder {
  font-weight: 400;
  color: rgba(255, 255, 255, .25);
  font-size: 14px;
}

.form-inp--mono {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 14px;
  letter-spacing: .04em;
}

.form-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  padding: 0 22px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: all .2s ease;
  letter-spacing: .01em;
}

.form-btn--primary {
  color: #fff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
}

.form-btn--primary:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-1px);
}

.form-btn--gold {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 2px 14px rgba(212, 168, 67, .28);
  position: relative;
  overflow: hidden;
}

.form-btn--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .16) 0%, transparent 55%);
  pointer-events: none;
}

.form-btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.step-msg {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  margin-bottom: 14px;
  border: 1px solid;
  border-radius: 10px;
}

.step-msg.show {
  display: flex;
}

.step-msg--ok {
  background: rgba(34, 197, 94, .12);
  color: #4ADE80;
  border-color: rgba(34, 197, 94, .30);
}

.step-msg--err {
  background: rgba(248, 113, 113, .12);
  color: #F87171;
  border-color: rgba(248, 113, 113, .30);
}

.step-msg--warn {
  background: rgba(245, 158, 11, .12);
  color: #FBBF24;
  border-color: rgba(245, 158, 11, .30);
}

.form-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
}

.form-hint a {
  color: rgba(255, 255, 255, .60);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}

.form-hint a:hover {
  color: var(--gold-light);
}

.form-result {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.form-result.show {
  display: block;
}

.fr-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.fr-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ADE80;
  flex-shrink: 0;
}

.fr-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.fr-vin {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  font-family: monospace;
}

.fr-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.fr-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  padding: 12px 16px;
  transition: all .2s;
}

.fr-btn--primary {
  background: var(--gold);
  color: var(--ink);
}

.fr-btn--primary:hover {
  background: var(--gold-light);
}

.fr-btn--secondary {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
}

.fr-btn--secondary:hover {
  background: rgba(255, 255, 255, .14);
}

.fr-back {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .40);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color .2s;
}

.fr-back:hover {
  color: #fff;
}

@media (max-width: 640px) {
  .check-inner {
    padding: 0 20px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .form-inp-row {
    flex-direction: column;
  }

  .form-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
}





/* ==================================================================================================== */
/* ========== FOOTER ========== */
/* ==================================================================================================== */

.footer {
  position: relative;
  z-index: 1;
  background: black;
  border-top: 1px solid rgba(212, 166, 41, 0.20);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  margin-bottom: 10px;
  display: inline-flex;
}

.footer-brand-desc {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.75;
  margin-bottom: 10px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: all 0.22s ease;
  flex-shrink: 0;
}

.footer-social:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.80);
  transform: translateY(-2px);
}

.footer-social--tiktok:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.footer-social--fb:hover {
  background: rgba(24, 119, 242, 0.12);
  border-color: rgba(24, 119, 242, 0.30);
  color: #1877F2;
}

.footer-social--ig:hover {
  background: rgba(225, 48, 108, 0.12);
  border-color: rgba(225, 48, 108, 0.30);
  color: #E1306C;
}

.footer-social--tg:hover {
  background: rgba(40, 168, 234, 0.12);
  border-color: rgba(40, 168, 234, 0.30);
  color: #28A8EA;
}

.footer-nav-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.footer-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-contacts span {
  margin-right: 10px;
}

.footer-contacts svg {
  flex-shrink: 0;
  opacity: 0.45;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.20);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.20);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.50);
}

@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-inner {
    padding: 0 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-socials {
    margin-top: 4px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 56px 0 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-inner {
    padding: 0 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 400px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}





/* ==================================================================================================== */
/* ========== FLOATING BUTTON ========== */
/* ==================================================================================================== */

.float-btn-wrap {
  pointer-events: none;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.90);
  background: #2a2d38;
  border: 1px solid rgba(255, 255, 255, 0.28);
  animation: floatGlow 3s ease-in-out infinite;
}

.float-btn:hover {
  background: #252830;
  border-color: rgba(212, 168, 67, 0.50);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 168, 67, 0.20);
}

.float-btn::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  animation: floatPulse 2.5s ease-in-out infinite;
}

@keyframes floatPulse {
  0% {
    transform: scale(1);
    opacity: 0.20;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes floatGlow {

  0%,
  100% {
    box-shadow:
      0 4px 24px rgba(0, 0, 0, 0.50),
      0 0 0 4px rgba(255, 255, 255, 0.04),
      0 0 18px rgba(255, 255, 255, 0.10);
  }

  50% {
    box-shadow:
      0 4px 24px rgba(0, 0, 0, 0.50),
      0 0 0 4px rgba(255, 255, 255, 0.04),
      0 0 34px rgba(255, 255, 255, 0.28);
  }
}

.float-btn-wrap.open .float-btn::before {
  animation: none;
  opacity: 0;
}

.float-btn,
.float-item {
  pointer-events: auto;
}

.float-btn-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.float-btn-icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}

.float-btn-wrap.open .float-btn-icon--open {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}

.float-btn-wrap.open .float-btn-icon--close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.float-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.30s ease, transform 0.30s ease;
  pointer-events: none;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.float-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  pointer-events: none;
}

.float-btn-wrap.open .float-menu {
  pointer-events: all;
}

.float-btn-wrap.open .float-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.float-btn-wrap.open .float-item:nth-child(5) {
  transition-delay: 0.00s;
}

.float-btn-wrap.open .float-item:nth-child(4) {
  transition-delay: 0.05s;
}

.float-btn-wrap.open .float-item:nth-child(3) {
  transition-delay: 0.10s;
}

.float-btn-wrap.open .float-item:nth-child(2) {
  transition-delay: 0.15s;
}

.float-btn-wrap.open .float-item:nth-child(1) {
  transition-delay: 0.20s;
}

.float-item-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  padding: 6px 12px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.float-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.30);
}

.float-item:hover .float-item-icon {
  transform: scale(1.12);
}

.float-item--call .float-item-icon {
  background: var(--gold);
  border: none;
  color: #0a0a0b;
}

.float-item--call:hover .float-item-icon {
  background: var(--gold-light);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.45);
}

.float-item--wa .float-item-icon {
  background: #25D366;
  color: #fff;
}

.float-item--wa:hover .float-item-icon {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.float-item--tg .float-item-icon {
  background: #28A8EA;
  color: #fff;
}

.float-item--tg:hover .float-item-icon {
  box-shadow: 0 4px 20px rgba(40, 168, 234, 0.45);
}

.float-item--vb .float-item-icon {
  background: #7360f2;
  color: #fff;
}

.float-item--vb:hover .float-item-icon {
  box-shadow: 0 4px 20px rgba(115, 96, 242, 0.45);
}

.float-item--ms .float-item-icon {
  background: #0078FF;
  color: #fff;
}

.float-item--ms:hover .float-item-icon {
  box-shadow: 0 4px 20px rgba(0, 120, 255, 0.45);
}

@media (max-width: 480px) {
  .float-btn-wrap {
    bottom: 20px;
    right: 20px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-item-label {
    display: none;
  }
}

/* ==================================================================================================== */
/* ========== RESPONSIVE ========== */
/* ==================================================================================================== */

@media (max-width: 1100px) {
  .hero-body {
    grid-template-columns: 1fr;
    padding: 120px 48px 48px;
  }

  .hero-right {
    max-width: 440px;
  }

  .cfr-inner,
  .check-inner,
  .how-inner {
    padding: 0 48px;
  }

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

  .how-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
}

@media (max-width: 640px) {
  .hero-body {
    padding: 110px 20px 40px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .cfr-inner,
  .check-inner,
  .how-inner {
    padding: 0 20px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .form-inp-row {
    flex-direction: column;
  }

  .form-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
}