* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: linear-gradient(360deg, #E1E8DE 0%, rgba(225, 232, 222, 0) 93.1%);
}

.hero {
  padding: 30px;
  height: 100vh;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 40px 50px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 35%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0) 40%);
}

.hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.logo-header {
  height: 40px;
  width: auto;
}

.lang-switcher {
  display: flex;
  gap: 6px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 21, 35, 0.15);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #101523;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.lang-btn.active {
  background: #fff;
  border-color: #101523;
}

.lang-btn svg {
  border-radius: 2px;
  flex-shrink: 0;
}

.hero-center {
  text-align: center;
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
}

.hero-center h1 {
  font-size: 62px;
  font-weight: 400;
  color: #101523;
  line-height: 74px;
  letter-spacing: 1px;
  text-align: center;
}

.hero-center h1 .highlight {
  color: #B57303;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-bottom .sqm {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #F8F6E5;
}

.logo-mirastar {
  height: 36px;
  width: auto;
}

/* ── Section 2: Opportunity ── */

.opportunity {
  display: flex;
  flex-direction: column;
}

.opportunity-top {
  background: #E8E6D6;
  padding: 80px 60px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.opportunity-top h2 {
  font-size: 28px;
  font-weight: 500;
  color: #101523;
  line-height: 34px;
  letter-spacing: 0px;
  margin-bottom: 24px;
}

.opportunity-desc {
  font-size: 23px;
  font-weight: 500;
  color: #B57303;
  line-height: 29px;
  letter-spacing: 0px;
  max-width: 700px;
  margin-bottom: 40px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #BBA500;
  color: #101523;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-download:hover {
  background: #9A6203;
}

.download-icon {
  width: 18px;
  height: 18px;
}

.opportunity-bottom {
  background: #D8DDD4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.opportunity-photo {
  padding: 40px 0 40px 40px;
}

.opportunity-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.opportunity-features {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 60px;
}

.features-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  opacity: 0.3;
  pointer-events: none;
}

.feature {
  text-align: center;
  max-width: 240px;
}

.feature-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.feature p {
  font-size: 15px;
  font-weight: 400;
  color: #101523;
  line-height: 1.5;
}

/* ── Section 3: Footer ── */

.footer {
  background: #E8E6D6;
  padding: 60px 60px 40px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-logo {
  height: 38px;
  width: auto;
  align-self: flex-start;
}

.footer-contacts {
  display: flex;
  gap: 80px;
}

.contact-card {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 14px;
  font-weight: 600;
  color: #101523;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.contact-company-logo {
  height: 55px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 24px;
}

.contact-name {
  font-size: 14px;
  font-weight: 600;
  color: #101523;
  margin-bottom: 4px;
}

.contact-info {
  font-size: 14px;
  font-weight: 400;
  color: #101523;
  line-height: 1.6;
}

.footer-right {
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
}

.footer-disclaimer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(16, 21, 35, 0.15);
}

.footer-disclaimer p {
  font-size: 11px;
  font-weight: 400;
  color: #101523;
  line-height: 1.6;
  opacity: 0.7;
}

/* ── Responsive: Tablet (max 1024px) ── */

@media (max-width: 1024px) {
  .hero {
    padding: 20px;
  }

  .hero-overlay {
    padding: 30px 30px;
  }

  .hero-center {
    top: 80px;
  }

  .hero-center h1 {
    font-size: 42px;
    line-height: 52px;
  }

  .hero-bottom .sqm {
    font-size: 20px;
  }

  .logo-mirastar {
    height: 28px;
  }

  .opportunity-top {
    padding: 60px 40px 50px;
  }

  .opportunity-desc {
    font-size: 20px;
    line-height: 26px;
  }

  .opportunity-bottom {
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
  }

  .opportunity-features {
    gap: 30px;
    padding: 40px 30px;
  }

  .feature-icon {
    width: 80px;
  }

  .footer {
    padding: 50px 40px 30px;
  }

  .footer-contacts {
    gap: 40px;
  }
}

/* ── Responsive: Mobile (max 768px) ── */

@media (max-width: 768px) {
  .hero {
    padding: 15px;
    height: 80vh;
  }

  .hero-overlay {
    padding: 24px 24px;
  }

  .logo-header {
    height: 28px;
  }

  .hero-center {
    top: 100px;
    transform: none;
  }

  .hero-center h1 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0px;
  }

  .hero-bottom .sqm {
    font-size: 16px;
    line-height: normal;
  }

  .logo-mirastar {
    height: 22px;
  }

  .opportunity-top {
    padding: 50px 24px 40px;
  }

  .opportunity-top h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .opportunity-desc {
    font-size: 17px;
    line-height: 24px;
  }

  .btn-download {
    font-size: 14px;
    padding: 12px 24px;
  }

  .opportunity-bottom {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .opportunity-photo {
    padding: 24px 24px 0;
  }

  .opportunity-photo img {
    height: 300px;
  }

  .opportunity-features {
    flex-direction: column;
    gap: 40px;
    padding: 40px 24px;
  }

  .feature-icon {
    width: 70px;
  }

  .footer {
    padding: 40px 24px 30px;
  }

  .footer-main {
    flex-direction: column;
    gap: 40px;
  }

  .footer-left {
    gap: 30px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 30px;
  }

  .footer-right {
    align-self: flex-start;
  }

  .footer-disclaimer {
    margin-top: 30px;
    padding-top: 20px;
  }

  .footer-disclaimer p {
    font-size: 10px;
  }
}

/* ── Responsive: Small mobile (max 480px) ── */

@media (max-width: 480px) {
  .hero {
    padding: 10px;
  }

  .hero-overlay {
    padding: 20px 16px;
  }

  .logo-header {
    height: 22px;
  }

  .hero-center h1 {
    font-size: 22px;
    line-height: 30px;
  }

  .hero-bottom .sqm {
    font-size: 13px;
  }

  .logo-mirastar {
    height: 18px;
  }

  .opportunity-top {
    padding: 40px 16px 30px;
  }

  .opportunity-top h2 {
    font-size: 20px;
    line-height: 26px;
  }

  .opportunity-desc {
    font-size: 15px;
    line-height: 22px;
  }

  .opportunity-photo img {
    height: 220px;
  }

  .opportunity-features {
    padding: 30px 16px;
  }

  .footer {
    padding: 30px 16px 24px;
  }
}
