* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  background: #ffffff;
  color: #111111;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

.container {
  width: min(92%, 1180px);
  margin-inline: auto;
}

/* HEADER */

.site-header {
  background: #ffffff;
  padding: 18px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  height: 34px;
  width: auto;
}

/* HERO */

.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  border-radius: 8px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(229, 0, 90, 0.94) 0%,
    rgba(229, 0, 90, 0.78) 32%,
    rgba(229, 0, 90, 0.10) 54%,
    rgba(0, 0, 0, 0.02) 100%
  );
}

.hero-content {
  position: absolute;
  left: 9%;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: #ffffff;
}

.hero-content h1 {
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  background: #e5005a;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.arrow-icon {
  width: 8px;
  height: 8px;
  border-top: 1.6px solid #ffffff;
  border-right: 1.6px solid #ffffff;
  transform: rotate(45deg);
  position: relative;
  display: inline-block;
}

.arrow-icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 1.6px;
  background: #ffffff;
  top: 3px;
  right: -1px;
  transform: rotate(-45deg);
  transform-origin: right center;
}

/* DEALER */

.dealer {
  padding: 68px 0 76px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.dealer-copy {
  max-width: 520px;
  justify-self: center;
}

.dealer-copy h2 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  color: #111111;
}

.dealer-copy p {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: #333333;
  max-width: 460px;
}

.dealer-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dealer-logo-main {
  width: min(100%, 390px);
  height: auto;
}

/* FEATURES */

.features {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 22px;
  padding-bottom: 78px;
}

.feature-card {
  border-radius: 8px;
  overflow: hidden;
}

.feature-meeting {
  min-height: 500px;
  background: #dedede;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-meeting h2 {
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.13;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.feature-meeting strong {
  font-weight: 800;
}

.feature-meeting img {
  width: 100%;
  border-radius: 8px;
  margin-top: 26px;
}

.feature-catalog {
  position: relative;
  min-height: 500px;
  background: #e5005a;
  padding: 34px 42px;
  display: flex;
  align-items: flex-end;
}

.catalog-bottom {
  width: 100%;
}

.catalog-number {
  color: #ffffff;
  font-size: clamp(155px, 18vw, 285px);
  line-height: 0.82;
  font-weight: 800;
  letter-spacing: -0.08em;
  transform: rotate(-12deg);
  transform-origin: left center;
  white-space: nowrap;
  margin-bottom: 34px;
}

.feature-catalog p {
  color: #ffffff;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.13;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.feature-catalog strong {
  font-weight: 800;
}

/* MAP */

.map-section {
  text-align: center;
  padding: 0 0 76px;
}

.map-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid #999999;
  border-radius: 999px;
  color: #333333;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 26px;
}

.map-section h2 {
  max-width: 900px;
  margin: 0 auto 38px;
  font-size: clamp(22px, 2.15vw, 34px);
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.map-section img {
  width: min(100%, 1020px);
  margin: 0 auto;
}

/* SHIPPING BANNER */

.shipping-banner {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.shipping-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shipping-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.shipping-content p {
  font-size: clamp(18px, 1.9vw, 28px);
  font-weight: 400;
  margin-bottom: 8px;
}

.shipping-content h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

/* COURIER */

.courier-marquee {
  background: #d9d9d9;
  overflow: hidden;
  padding: 24px 0;
}

.courier-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  animation: moveLogos 28s linear infinite;
}

.courier-track img {
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.58;
  flex-shrink: 0;
}

.courier-marquee:hover .courier-track {
  animation-play-state: paused;
}

@keyframes moveLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* CTA */

.cta {
  padding: 82px 0 36px;
}

.cta-card {
  background: #e5005a;
  color: #ffffff;
  border-radius: 42px;
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  align-items: center;
  gap: 42px;
}

.cta-copy h2 {
  font-size: clamp(24px, 2.25vw, 34px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.cta-copy p {
  max-width: 560px;
  font-size: 14px;
  line-height: 1.5;
}

.cta-form-block p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.cta-form-block form {
  display: flex;
  max-width: 360px;
  background: rgba(182, 0, 72, 0.55);
  border-radius: 999px;
  padding: 4px;
}

.cta-form-block input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 500;
}

.cta-form-block input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.cta-form-block button {
  border: none;
  background: #111111;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.cta-form-block button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.cta-form-block small,
.form-message {
  display: block;
  margin-top: 12px;
  font-size: 12px;
}

.form-message.success {
  color: #ffffff;
}

.form-message.error {
  color: #ffd7d7;
}

/* FOOTER */

.site-footer {
  padding: 0 0 42px;
  text-align: center;
}

.site-footer p {
  font-size: 12px;
  color: #888888;
  font-weight: 400;
}

/* TABLET */

@media (max-width: 900px) {
  .hero {
    height: 540px;
  }

  .hero-content {
    left: 7%;
  }

  .dealer {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    padding: 56px 0 64px;
  }

  .dealer-copy {
    justify-self: center;
  }

  .dealer-copy p {
    margin-inline: auto;
  }

  .dealer-logo-main {
    width: min(100%, 320px);
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature-meeting {
    min-height: auto;
  }

  .feature-catalog {
    min-height: 390px;
  }

  .cta-card {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  .container {
    width: min(90%, 430px);
  }

  .site-header {
    padding: 16px 0 14px;
  }

  .logo {
    height: 28px;
  }

  .hero {
    height: 468px;
    border-radius: 6px;
  }

  .hero-img {
    width: 122%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translateX(3%);
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(229, 0, 90, 0.94) 0%,
        rgba(229, 0, 90, 0.80) 40%,
        rgba(229, 0, 90, 0.06) 58%,
        rgba(0, 0, 0, 0) 100%
      );
  }

  .hero-content {
    left: 28px;
    right: 112px;
    top: 50%;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-btn {
    margin-top: 24px;
    font-size: 11px;
    padding: 10px 16px;
  }

  .dealer {
    gap: 28px;
    padding: 44px 0 52px;
  }

  .dealer-copy h2 {
    font-size: 22px;
    line-height: 1.16;
    margin-bottom: 12px;
  }

  .dealer-copy p {
    font-size: 13px;
    line-height: 1.55;
    max-width: 310px;
  }

  .dealer-logo-main {
    width: min(100%, 250px);
  }

  .features {
    gap: 16px;
    padding-bottom: 56px;
  }

  .feature-meeting {
    padding: 24px;
  }

  .feature-meeting h2 {
    font-size: 23px;
    line-height: 1.16;
  }

  .feature-meeting img {
    margin-top: 22px;
  }

  .feature-catalog {
    min-height: 270px;
    padding: 24px;
    display: flex;
    align-items: flex-end;
  }

  .catalog-number {
    font-size: 76px;
    line-height: 0.85;
    margin-bottom: 20px;
    transform: none;
    color: #ffffff;
  }

  .feature-catalog p {
    font-size: 22px;
    line-height: 1.16;
    color: #ffffff;
  }

  .map-section {
    padding-bottom: 54px;
  }

  .map-badge {
    font-size: 11px;
    padding: 10px 18px;
    margin-bottom: 20px;
  }

  .map-section h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 28px;
    letter-spacing: -0.035em;
  }

  .shipping-banner {
    height: 400px;
  }

  .shipping-banner img {
    object-position: center;
  }

  .shipping-content p {
    font-size: 17px;
  }

  .shipping-content h2 {
    font-size: 30px;
  }

  .courier-marquee {
    padding: 18px 0;
  }

  .courier-track {
    gap: 42px;
    animation-duration: 22s;
  }

  .courier-track img {
    height: 30px;
    max-width: 128px;
  }

  .cta {
    padding: 56px 0 28px;
  }

  .cta-card {
    border-radius: 28px;
    padding: 42px 24px 46px;
    gap: 34px;
    min-height: 420px;
    align-content: start;
  }

  .cta-copy h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .cta-copy p {
    font-size: 13px;
    line-height: 1.65;
    max-width: 100%;
  }

  .cta-form-block p {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .cta-form-block form {
    max-width: 100%;
    min-height: 56px;
    align-items: center;
  }

  .cta-form-block input {
    font-size: 12px;
    padding: 16px 16px;
  }

  .cta-form-block button {
    font-size: 12px;
    padding: 16px 22px;
  }

  .cta-form-block small,
  .form-message {
    font-size: 11px;
    margin-top: 16px;
  }

  .site-footer {
    padding-bottom: 34px;
  }

  .site-footer p {
    font-size: 11px;
  }
}