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

:root {
  --ready-orange: #f97316;
  --ready-orange-bright: #fb923c;
  --ready-orange-soft: #fff7ed;
  --ready-dark: #1a1a1a;
  --ready-gray: #6b7280;
  --bg-white: #ffffff;
  --text-primary: #1a1a1a;
  --text-muted: #6b7280;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Outfit", sans-serif;
  --navbar-height: 4.5rem;
  --section-gap: 2.5rem;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-primary);
  height: 100dvh;
  overflow: hidden;
}

.hero {
  position: relative;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
  padding:
    calc(var(--navbar-height) + var(--section-gap))
    1.25rem
    var(--section-gap);
  background: var(--bg-white);
  overflow: hidden;
}

.hero__intro {
  width: 100%;
  max-width: 40rem;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 1;
  gap: 0.15rem;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero__car {
  width: 100%;
  flex: 1 1 55%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  animation: carReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.navbar__logo:hover {
  opacity: 0.8;
}

.navbar__logo img,
.navbar__logo-img {
  display: block;
  height: 3rem;
  width: auto;
}

.navbar__phones {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navbar__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.25rem 0.35rem;
  border: none;
  transition: opacity 0.2s ease;
}

.navbar__phone svg {
  color: var(--ready-orange);
  flex-shrink: 0;
}

.navbar__phone:hover {
  opacity: 0.75;
}

@keyframes carReveal {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__car-image {
  display: block;
  width: auto;
  height: 100%;
  max-width: min(70rem, 98vw);
  max-height: 100%;
  object-fit: contain;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 28rem;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
  gap: 0.25rem;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ready-orange);
  margin-bottom: 0;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--ready-orange);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
  font-size: clamp(5.5rem, 18vw, 10rem);
  letter-spacing: 0.02em;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero__title-accent {
  color: var(--ready-orange);
}

.hero__subtitle {
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-muted);
  max-width: 22rem;
  margin-bottom: 0;
  text-align: center;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.cta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 28rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--ready-orange) 0%, var(--ready-orange-bright) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 0 rgba(234, 88, 12, 0.4),
    0 16px 40px rgba(249, 115, 22, 0.25);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.cta:hover {
  transform: translateY(-4px);
  box-shadow:
    0 6px 0 rgba(234, 88, 12, 0.35),
    0 24px 48px rgba(249, 115, 22, 0.35);
}

.cta:hover::after {
  transform: translateX(120%);
}

.cta:active {
  transform: translateY(-1px);
}

.cta__icon-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
}

.cta__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  opacity: 0.5;
  animation: ctaPulse 2s ease-out infinite;
}

@keyframes ctaPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.35); opacity: 0; }
}

.cta__icon {
  position: relative;
  z-index: 1;
}

.cta__body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
  min-width: 0;
}

.cta__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.cta__numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.cta__dot {
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.75;
}

.cta__number {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  letter-spacing: 0.05em;
  line-height: 1;
}

.cta__hint {
  font-size: 0.82rem;
  font-weight: 400;
  opacity: 0.85;
}

.cta__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease;
}

.cta:hover .cta__arrow {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.3);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 0.85rem;
  list-style: none;
  margin-top: 1.25rem;
  max-width: 28rem;
}

.hero__trust li {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__trust li::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--ready-orange);
  flex-shrink: 0;
}

@media (max-height: 700px) {
  :root {
    --section-gap: 1.75rem;
  }

  .hero {
    gap: 0.1rem;
  }

  .hero__title {
    font-size: clamp(4.2rem, 14vw, 6rem);
  }

  .hero__subtitle {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .hero__car-image {
    height: 100%;
    max-width: 98vw;
  }

  .cta {
    padding: 0.65rem 0.9rem;
  }

  .cta__icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero__trust {
    margin-top: 0.85rem;
  }

  .hero__trust li {
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 1.75rem;
    --navbar-height: 4rem;
  }

  .hero {
    justify-content: center;
    gap: 1.35rem;
    padding:
      calc(var(--navbar-height) + 1rem)
      1rem
      1.5rem;
  }

  .hero__intro {
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .hero__title {
    font-size: clamp(3.75rem, 20vw, 6.5rem);
  }

  .hero__subtitle {
    font-size: 0.82rem;
    line-height: 1.35;
    max-width: 20rem;
    margin-top: 0.25rem;
  }

  .hero__car {
    flex: 0 1 auto;
    margin: 0.75rem 0;
  }

  .hero__car-image {
    height: auto;
    max-height: min(26vh, 185px);
    max-width: 100%;
  }

  .hero__cta {
    flex-shrink: 0;
    margin-top: 0.75rem;
  }

  .hero__trust {
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .navbar__phones {
    gap: 0.35rem;
  }

  .navbar__phone {
    font-size: 0.9rem;
    gap: 0.3rem;
  }

  .navbar__phone svg {
    width: 16px;
    height: 16px;
  }

  .navbar__logo img,
  .navbar__logo-img {
    height: 2.5rem;
  }

  .cta__arrow {
    display: none;
  }
}
