.lnsh {
  --lnsh-red: #c41212;
  --lnsh-red-dark: #9e0f0f;
  --lnsh-dark: #222222;
  --lnsh-gold: #ffd700;
  --lnsh-muted: #555555;
  --lnsh-bg: #f5f5f5;
  --lnsh-white: #ffffff;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--lnsh-dark);
  line-height: 1.5;
  margin: 0;
}

.lnsh *,
.lnsh *::before,
.lnsh *::after {
  box-sizing: border-box;
}

.lnsh-error {
  color: var(--lnsh-red);
  font-weight: 600;
  padding: 1rem;
}

.lnsh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--lnsh-red);
  color: var(--lnsh-white) !important;
  text-decoration: none !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 2px;
  transition: background 0.15s ease;
}

.lnsh-btn:hover,
.lnsh-btn:focus {
  background: var(--lnsh-red-dark);
  color: var(--lnsh-white) !important;
}

.lnsh-hero {
  background-color: var(--lnsh-white);
  background-image:
    linear-gradient(90deg, #ffffff 0%, #ffffff 42%, rgba(245, 245, 245, 0.92) 58%, rgba(245, 245, 245, 0.85) 100%),
    var(--lnsh-map, none);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2.5rem 1.25rem 2rem;
  overflow: hidden;
}

.lnsh-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.lnsh-hero__title {
  margin: 0 0 1rem;
  line-height: 1.05;
}

.lnsh-hero__title-line {
  display: block;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--lnsh-dark);
}

.lnsh-hero__title-accent {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--lnsh-red);
  margin-top: 0.15rem;
}

.lnsh-hero__banner {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: 0.55rem 1.75rem;
  background: var(--lnsh-dark);
  color: var(--lnsh-white);
  font-weight: 800;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  clip-path: polygon(0.6rem 0, calc(100% - 0.6rem) 0, 100% 50%, calc(100% - 0.6rem) 100%, 0.6rem 100%, 0 50%);
}

.lnsh-hero__banner-gold {
  color: var(--lnsh-gold);
}

.lnsh-hero__desc {
  margin: 0 0 1.5rem;
  max-width: 28rem;
  color: var(--lnsh-muted);
  font-size: 1.05rem;
}

.lnsh-hero__visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 560px;
}

.lnsh-hero__photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

.lnsh-hero__badge {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: clamp(140px, 28vw, 190px);
  height: clamp(140px, 28vw, 190px);
  border-radius: 50%;
  background: var(--lnsh-red);
  color: var(--lnsh-white) !important;
  text-decoration: none !important;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease, background 0.15s ease;
}

.lnsh-hero__badge:hover,
.lnsh-hero__badge:focus {
  background: var(--lnsh-red-dark);
  transform: scale(1.03);
  color: var(--lnsh-white) !important;
}

.lnsh-hero__badge-text {
  font-weight: 900;
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lnsh-benefits {
  background: var(--lnsh-bg);
  padding: 2.5rem 1.25rem;
}

.lnsh-benefits__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.lnsh-benefit {
  text-align: center;
}

.lnsh-benefit__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: var(--lnsh-red);
  color: var(--lnsh-white);
  display: grid;
  place-items: center;
}

.lnsh-benefit__title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--lnsh-dark);
}

.lnsh-benefit__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--lnsh-muted);
  line-height: 1.45;
}

.lnsh-cta-bar {
  background: var(--lnsh-dark);
  color: var(--lnsh-white);
  padding: 1.35rem 1.25rem;
}

.lnsh-cta-bar__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr auto 1fr;
  gap: 1.25rem;
  align-items: center;
}

.lnsh-cta-bar__lead {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lnsh-cta-bar__icon {
  color: var(--lnsh-gold);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.lnsh-cta-bar__title {
  display: block;
  color: var(--lnsh-gold);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.lnsh-cta-bar__sub {
  display: block;
  color: var(--lnsh-white);
  font-size: 0.95rem;
  margin-top: 0.15rem;
}

.lnsh-btn--cta {
  white-space: nowrap;
  min-width: 160px;
}

.lnsh-cta-bar__tag {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}

@media (max-width: 1024px) {
  .lnsh-benefits__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .lnsh-cta-bar__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .lnsh-cta-bar__lead {
    flex-direction: column;
  }

  .lnsh-cta-bar__tag {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .lnsh-hero__inner {
    grid-template-columns: 1fr;
  }

  .lnsh-hero__visual {
    justify-self: center;
    max-width: 420px;
  }

  .lnsh-benefits__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .lnsh-benefits__inner {
    grid-template-columns: 1fr;
  }
}
