/* =====================================================
   HERO SECTION — custom clean markup
   ===================================================== */

.hc {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}

/* background image */
.hc__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* dark gradient overlay */
.hc__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(8, 12, 28, .90) 0%,
    rgba(8, 12, 28, .72) 50%,
    rgba(8, 12, 28, .38) 100%
  );
  z-index: 1;
}

/* centered content wrapper */
.hc__wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ── LEFT COLUMN ────────────────────────────────────── */
.hc__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hc__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 29, 36, .15);
  border: 1px solid rgba(220, 29, 36, .35);
  border-radius: 100px;
  padding: 6px 16px;
  width: fit-content;
}
.hc__label-dot {
  width: 8px;
  height: 8px;
  background: #DC1D24;
  border-radius: 50%;
  flex-shrink: 0;
  animation: hc-pulse 2s infinite;
}
.hc__label-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .80);
  letter-spacing: .02em;
}

@keyframes hc-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.hc__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 3.6vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #ffffff;
  margin: 0;
}

.hc__sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, .68);
  margin: 0;
}

/* feature list */
.hc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hc__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.55;
  color: rgba(255, 255, 255, .82);
}

.hc__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  background: #DC1D24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hc__check svg {
  width: 12px;
  height: 12px;
}

.hc__list li strong {
  color: #ffffff;
  font-weight: 700;
}

/* CTA */
.hc__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 40px;
  background: #DC1D24;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .01em;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(220, 29, 36, .42);
  transition: background .2s ease, transform .18s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.hc__btn:hover {
  background: #B8151B;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(220, 29, 36, .58);
}
.hc__btn:active {
  transform: translateY(0);
}

.hc__price {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, .48);
  margin: 0;
  line-height: 1.5;
}
.hc__price strong {
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
}

/* social proof */
.hc__proof {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}
.hc__proof-count {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #DC1D24;
  letter-spacing: -.03em;
  line-height: 1;
}
.hc__proof-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, .52);
  line-height: 1.4;
}

/* ── RIGHT COLUMN — images ──────────────────────────── */
.hc__right {
  position: relative;
  height: 400px;
}

.hc__img {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .55);
  object-fit: cover;
  transition: transform .4s ease;
}
.hc__img:hover {
  transform: scale(1.03) !important;
  z-index: 10 !important;
}

.hc__img--1 {
  width: 62%;
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-2.5deg);
}
.hc__img--2 {
  width: 54%;
  top: 28%;
  right: 0;
  z-index: 2;
  transform: rotate(1.8deg);
}
.hc__img--3 {
  width: 50%;
  bottom: 0;
  left: 18%;
  z-index: 1;
  transform: rotate(-1.2deg);
}

/* ── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 960px) {
  .hc__wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
  .hc__right {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .hc__wrap {
    padding: 48px 16px;
    gap: 32px;
  }
  .hc__actions {
    align-items: stretch;
    width: 100%;
  }
  .hc__btn {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hc__right {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .hc__right {
    height: 190px;
  }
  .hc__proof-count {
    font-size: 22px;
  }
}

/* hide original tilda hero */
#rec1972222661 {
  display: none !important;
}
