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

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

.mk-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;
}

.mk-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;
}

.mk-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;
}

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

.mk-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;
}

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

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

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

/* ─── PACKAGE ─── */
.mk-package-section {
  padding: 30px 30px 0;
}

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

.mk-package-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;
}

.mk-package-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;
}

.mk-package-wrap .section-title {
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mk-package-desc {
  text-align: center;
  font-size: 17px;
  color: var(--gray);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

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

.mk-package-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.mk-package-accent {
  background: var(--accent);
}

.mk-package-top {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

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

.mk-package-card h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.15;
  color: var(--dark);
  text-transform: uppercase;
}

.mk-package-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mk-package-line {
  height: 2px;
  background: var(--dark);
}

.mk-package-bottom p {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.5;
}

.mk-package-photo {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

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

.mk-package-cta {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.mk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.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;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .mk-package-card h3 {
    font-size: 22px;
  }

  .mk-package-card {
    min-height: 260px;
  }
}

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

  .mk-hero-inner {
    padding: 20px 20px 30px;
    min-height: auto;
  }

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

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

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

  .mk-package-section {
    padding: 15px 15px 0;
  }

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

  .mk-package-grid {
    grid-template-columns: 1fr;
  }

  .mk-package-card {
    min-height: auto;
    text-align: center;
    align-items: center;
  }

  .mk-package-top {
    align-items: center;
  }

  .mk-package-bottom {
    align-items: center;
  }

  .mk-package-bottom p {
    text-align: center;
  }

  .mk-package-card h3 {
    font-size: 22px;
  }

  .mk-package-photo img {
    height: 200px;
  }
}
