/* ==========================================================
HERO
========================================================== */

#hero {
  min-height: 760px;
  padding: 150px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(230,126,58,.14), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, #ffffff 72%, #ffffff 100%);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(0, 1fr);
  align-items: center;
  gap: 44px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 16px;
  border-radius: 10px;
  background: #fff3e5;
  color: #e67e3a;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #ff5b14;
}

.hero-title {
  margin: 0;
  max-width: 640px;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.3px;
  color: #111827;
}

.hero-title span {
  display: block;
  margin-bottom: 4px;
  color: #ff5b14;
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
}

.hero-description {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: #5f6672;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.hero-buttons .button {
  min-width: 170px;
}

.hero-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 42px;
  max-width: 720px;
}

.hero-advantage {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.hero-advantage-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 12px;
  border: 2px solid #ff5b14;
  position: relative;
}

.hero-advantage-icon::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 3px solid #ff5b14;
  border-bottom: 3px solid #ff5b14;
  transform: rotate(-45deg);
}

.hero-advantage strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  color: #111827;
}

.hero-advantage span {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: #5f6672;
}

.hero-media {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -20px;
  bottom: -70px;
  border-radius: 50%;
  border: 1px solid rgba(230,126,58,.22);
}

.hero-media::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 420px;
  right: 40px;
  bottom: 40px;
  border-radius: 999px;
  background: rgba(230,126,58,.10);
  filter: blur(42px);
}

.hero-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  transform: translateX(35px) scale(1.18);
  transform-origin: center bottom;
  filter: drop-shadow(0 28px 45px rgba(0,0,0,.16));
}

/* ==========================================================
WHY
========================================================== */

.why-section {
  padding: 100px 0 80px;
  background: #ffffff;
}

.why-title {
  margin: 0 0 30px;
  text-align: center;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  color: #111827;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 22px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(230,126,58,.12);
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #fff3e5;
  color: #ff5b14;
  font-size: 24px;
}

.why-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: #111827;
}

.why-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #5f6672;
}

/* ==========================================================
RESPONSIVE
========================================================== */

@media (max-width: 1200px) {
  #hero {
    min-height: 700px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    gap: 32px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-title span {
    font-size: 56px;
  }

  .hero-media {
    min-height: 560px;
  }

  .hero-media::before {
    width: 620px;
    height: 620px;
    right: -35px;
    bottom: -40px;
  }

  .hero-media::after {
    width: 500px;
    height: 340px;
    right: 10px;
    bottom: 40px;
  }

  .hero-media img {
    max-width: 720px;
    transform: translateX(22px) scale(1.12);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  #hero {
    min-height: auto;
    padding: 115px 0 46px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 42px;
  }

  .hero-content {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-advantages {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-media {
    min-height: auto;
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-media::before {
    width: 640px;
    height: 640px;
    right: 40px;
    bottom: -45px;
  }

  .hero-media::after {
    width: 520px;
    height: 340px;
    right: 70px;
    bottom: 35px;
  }

  .hero-media img {
    width: 100%;
    max-width: 720px;
    transform: none;
  }

  .why-section {
    padding: 80px 0 72px;
  }
}

@media (max-width: 640px) {
  #hero {
    padding: 96px 0 34px;
  }

  .hero-title {
    font-size: 34px;
    letter-spacing: -0.7px;
  }

  .hero-title span {
    font-size: 42px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-advantages {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
    text-align: left;
  }

  .hero-media::before,
  .hero-media::after {
    display: none;
  }

  .hero-media img {
    max-width: 100%;
    transform: none;
  }

  .why-section {
    padding: 64px 0 58px;
  }

  .why-title {
    font-size: 26px;
    margin-bottom: 22px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: 18px;
  }
}