/* ─── HERO ─── */
.ls-hero {
  padding: 30px 30px 0;
}

.ls-hero-inner {
  background: var(--bg-card);
  border-radius: var(--radius-section);
  padding: 30px 70px 40px;
  position: relative;
  overflow: hidden;
  min-height: 838px;
}

.ls-glow-tl {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 600px;
  height: 600px;
  background-image: url('assets/glow-green-tl.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.ls-glow-center {
  position: absolute;
  top: 200px;
  left: 400px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 227, 174, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ls-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 5vw, 56px);
  line-height: 1.28;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.ls-title-accent {
  color: var(--accent);
}

.ls-hero-image {
  width: 100%;
  height: 340px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.ls-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.ls-hero-subtitle {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.5;
}

.ls-hero-socials {
  display: flex;
  gap: 16px;
}

/* ─── SOLUTION ─── */
.ls-solution-section {
  padding: 30px 30px 0;
}

.ls-solution-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-section);
  padding: 40px 70px;
  position: relative;
  overflow: hidden;
}

.ls-solution-glow-right {
  position: absolute;
  top: -150px;
  right: -200px;
  width: 700px;
  height: 700px;
  background-image: url('assets/glow-green-tl.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.5;
}

.ls-solution-glow-left {
  position: absolute;
  bottom: -150px;
  left: -200px;
  width: 700px;
  height: 700px;
  background-image: url('assets/glow-green-tl.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.5;
}

.ls-solution-inner {
  display: flex;
  gap: 30px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.ls-solution-img {
  flex-shrink: 0;
  width: 535px;
  height: 291px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
}

.ls-solution-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ls-solution-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
}

.ls-solution-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
  margin-top: 8px;
}

.ls-solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ls-solution-list li {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}

.ls-solution-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  padding: 15px 40px;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-accent:hover {
  opacity: 0.85;
}

.ls-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.btn-arrow {
  width: 24px;
  height: 24px;
}

/* ─── ADVANTAGES ─── */
.ls-adv-section {
  padding: 30px 30px 0;
}

.ls-adv-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-section);
  padding: 70px;
  position: relative;
  overflow: hidden;
}

.ls-adv-glow-right {
  position: absolute;
  top: -43px;
  right: -187px;
  width: 938px;
  height: 938px;
  background-image: url('assets/glow-ls-adv-right.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.ls-adv-glow-left {
  position: absolute;
  bottom: -284px;
  left: -420px;
  width: 940px;
  height: 940px;
  background-image: url('assets/glow-ls-adv-left.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.ls-adv-wrap .section-title {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ls-adv-photo {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.ls-adv-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
}

.ls-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.ls-adv-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 364px;
}

.ls-adv-card:first-child {
  background: var(--accent);
}

.ls-adv-card:nth-child(n+4) {
  min-height: 348px;
}

.ls-adv-top {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.ls-adv-num {
  font-size: 17px;
  color: var(--dark);
}

.ls-adv-card h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.12;
  color: var(--dark);
  text-transform: uppercase;
}

.ls-adv-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ls-adv-line {
  height: 2px;
  background: var(--dark);
}

.ls-adv-bottom p {
  font-size: 20px;
  color: var(--dark);
  line-height: 1.4;
}

/* ─── STAGES ─── */
.ls-stages-section {
  padding: 100px 100px 0;
}

.ls-stages-title {
  margin-bottom: 70px;
}

.ls-stages-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ls-stages-row {
  display: flex;
  gap: 20px;
}

.ls-stages-row:first-child .ls-stage-card {
  flex: 1;
}

.ls-stages-row:last-child .ls-stage-card {
  flex: 1;
}

.ls-stage-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 146px;
}

.ls-stage-num {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ls-stage-num span {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--accent);
}

.ls-stage-text h4 {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ls-stage-text p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── CONDITIONS ─── */
.ls-conditions-section {
  padding: 100px 100px 0;
}

.ls-conditions-section .section-title {
  margin-bottom: 70px;
}

.ls-conditions-photo {
  margin-bottom: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.ls-conditions-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
}

.ls-conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ls-condition-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100px;
}

.ls-condition-value {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--accent);
  text-transform: uppercase;
}

.ls-condition-label {
  font-size: 17px;
  color: var(--gray);
}

/* ─── PARTNERS ─── */
.ls-partners-section {
  padding: 30px 30px 0;
}

.ls-partners-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-section);
  padding: 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ls-partners-glow {
  position: absolute;
  left: calc(50% - 819px);
  top: calc(50% + 330px - 819px);
  width: 1638px;
  height: 1638px;
  background-image: url('assets/glow-ls-partners.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.ls-partners-wrap .section-title {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.ls-partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.ls-partner-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 97px;
}

.ls-partner-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ls-partner-logo {
  width: 243px;
  height: 57px;
  object-fit: contain;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .ls-adv-card h3 {
    font-size: 28px;
  }

  .ls-adv-card {
    min-height: 300px;
  }

  .ls-stage-text h4 {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .ls-hero-inner {
    padding: 20px 20px 30px;
    min-height: auto;
  }

  .ls-title {
    margin-top: 30px;
  }

  .ls-hero-image {
    height: 200px;
  }

  .ls-hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ls-solution-section {
    padding: 15px 15px 0;
  }

  .ls-solution-wrap {
    padding: 30px 20px;
  }

  .ls-solution-inner {
    flex-direction: column;
  }

  .ls-solution-img {
    width: 100%;
    height: 200px;
  }

  .ls-adv-section {
    padding: 15px 15px 0;
  }

  .ls-adv-wrap {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ls-adv-wrap .section-title {
    font-size: 20px;
    line-height: 28px;
  }

  .ls-adv-photo img {
    height: 200px;
  }

  .ls-adv-grid {
    grid-template-columns: 1fr;
  }

  .ls-adv-card,
  .ls-adv-card:nth-child(n+4) {
    min-height: auto;
    padding: 16px;
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  .ls-adv-top {
    align-items: center;
    flex: none;
  }

  .ls-adv-bottom {
    align-items: center;
    gap: 12px;
  }

  .ls-adv-bottom p {
    text-align: center;
    font-size: 15px;
  }

  .ls-adv-card h3 {
    font-size: 24px;
  }

  .ls-stages-section {
    padding: 60px 15px 0;
  }

  .ls-stages-row {
    flex-direction: column;
  }

  .ls-stage-card {
    min-height: auto;
  }

  .ls-stage-text h4 {
    font-size: 18px;
  }

  .ls-conditions-section {
    padding: 60px 15px 0;
  }

  .ls-conditions-photo img {
    height: 180px;
  }

  .ls-conditions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ls-condition-value {
    font-size: 18px;
  }

  .ls-partners-section {
    padding: 15px 15px 0;
  }

  .ls-partners-wrap {
    padding: 30px 20px;
  }

  .ls-partners-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ls-partner-card {
    flex: 0 1 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .ls-hero {
    padding: 15px 15px 0;
  }

  .ls-conditions-grid {
    grid-template-columns: 1fr;
  }

  .ls-partner-card {
    flex: 0 1 100%;
  }
}
