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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: #000;
  color: #e8e8e8;
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

.image-gradient {
  position: fixed;
  top: 0;
  right: 0;
  width: 800px;
  max-width: 100%;
  opacity: 0.35;
  z-index: -3;
  pointer-events: none;
}

.layer-blur {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -4;
  pointer-events: none;
}

.layer-blur.one {
  top: 4rem;
  right: 6rem;
  background: rgba(168, 85, 247, 0.18);
}

.layer-blur.two {
  top: 30rem;
  left: -8rem;
  background: rgba(255, 255, 255, 0.08);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.4px;
}

.navbar {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 2rem 0;
  background: transparent;
}

.nav-logo {
  justify-self: start;
}

.nav-logo a {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.3rem;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.nav-center a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  transition: opacity 0.3s ease;
}

.nav-center a:hover {
  opacity: 0.75;
}

.nav-right {
  justify-self: end;
}

.meet-btn {
  display: inline-block;
  background: white;
  color: black;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.meet-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
main {
  width: 100%;
}

section {
  padding: 5rem 0;
}

.glass {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.tag {
  color: #b983ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.section-header {
  margin-bottom: 2.2rem;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: white;
  line-height: 1.1;
}

.section-subtitle {
  color: #b7b7b7;
  max-width: 700px;
  margin: 0.8rem auto 0;
  font-size: 1rem;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  padding-top: 3rem;
}

.hero-left h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  color: white;
  margin-bottom: 1rem;
  max-width: 760px;
}

.subtitle {
  color: #bababa;
  font-size: 1.12rem;
  max-width: 650px;
  margin-bottom: 1.6rem;
}

.hero-points {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #dddddd;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b983ff;
  box-shadow: 0 0 20px rgba(185, 131, 255, 0.8);
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn.primary {
  background: white;
  color: black;
  padding: 0.95rem 1.7rem;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.14);
}

.btn.secondary {
  padding: 0.95rem 1.7rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn.small {
  margin-top: 1.2rem;
  padding: 0.82rem 1.3rem;
  width: fit-content;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  width: 100%;
  max-width: 480px;
  padding: 2rem;
  border-radius: 28px;
}

.card-mini-title {
  color: #b983ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}

.hero-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mini-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mini-item:last-child {
  border-bottom: none;
}

.mini-item span {
  font-size: 0.95rem;
  color: #b983ff;
  font-weight: 700;
  min-width: 30px;
}

.mini-item p {
  color: #d4d4d4;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.step-card {
  border-radius: 24px;
  padding: 1.8rem;
  transition: 0.3s ease;
}

.step-card:hover,
.service-card:hover,
.benefit-card:hover,
.faq-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(185, 131, 255, 0.12);
  color: #c89cff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(185, 131, 255, 0.18);
}

.step-card h3,
.service-card h3,
.benefit-card h3,
.faq-card h3 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.step-card p,
.service-card p,
.benefit-card p,
.faq-card p {
  color: #bdbdbd;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.service-card {
  border-radius: 26px;
  padding: 1.8rem;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(185, 131, 255, 0.12);
  border: 1px solid rgba(185, 131, 255, 0.16);
  color: #c89cff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card ul {
  margin-top: 1rem;
  padding-left: 1.1rem;
  color: #d2d2d2;
}

.service-card ul li {
  margin-bottom: 0.55rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.benefit-card {
  border-radius: 24px;
  padding: 1.6rem;
  transition: 0.3s ease;
}

.booking-wrapper {
  border-radius: 30px;
  padding: 1rem;
  overflow: hidden;
}

.cta-section {
  border-radius: 32px;
  padding: 2.5rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.cta-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: white;
  margin-bottom: 0.7rem;
}

.cta-text p:last-child {
  color: #c1c1c1;
  max-width: 650px;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.faq-card {
  border-radius: 24px;
  padding: 1.6rem;
  transition: 0.3s ease;
}

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .services-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    padding: 0 1rem;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  nav {
    gap: 1rem;
  }

  .hero-left h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-card {
    padding: 1.4rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons,
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn.primary,
  .btn.secondary {
    width: 100%;
  }

  .booking-wrapper {
    padding: 0.5rem;
  }
}