/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) sepia(20%) hue-rotate(240deg);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.9));
}

.hero__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 600px;
  width: 90%;
  padding: var(--space-xl);
  text-align: center;
  background: var(--surface-overlay);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-glow);
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero__title {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
  text-shadow: 0 0 10px rgba(106, 13, 173, 0.5);
}

.hero__desc {
  font-size: var(--fs-h5);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.hero__badge {
  display: inline-block;
  font-size: var(--fs-small);
  color: var(--text-muted);
  padding: var(--space-xs) var(--space-md);
  border: 1px solid var(--accent-violet);
  border-radius: var(--radius-card);
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-pink));
  color: var(--text-light);
  padding: 0.75em 1.5em;
  border-radius: var(--radius-card);
  text-decoration: none;
  transition: box-shadow 0.2s ease-in-out, filter 0.2s ease-in-out;
}

.btn--primary:hover {
  box-shadow: var(--shadow-glow);
}

.btn--secondary {
  background: transparent;
  color: var(--text-light);
  padding: 0.75em 1.5em;
  border: 2px solid var(--accent-violet);
  border-radius: var(--radius-card);
  text-decoration: none;
  transition: box-shadow 0.2s ease-in-out, background 0.2s ease-in-out;
}

.btn--secondary:hover {
  box-shadow: var(--shadow-glow);
  background: rgba(106, 13, 173, 0.2);
}

@media (max-width: 48em) {
  .hero__panel {
    padding: var(--space-lg);
  }

  .hero__title {
    font-size: var(--fs-h2);
  }

  .hero__desc {
    font-size: var(--fs-body);
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn--primary,
  .btn--secondary {
    width: 100%;
    text-align: center;
  }
}

/* ===== Services Section ===== */
.services {
  padding-block: var(--space-3xl);
}

.services__title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-width: 0;
}

.service-card__title {
  font-size: var(--fs-h3);
}

.service-card__text {
  color: var(--text-muted);
}

.services__extra {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.services__extra-title {
  font-size: var(--fs-h3);
}

.services__extra-text {
  color: var(--text-muted);
}

@media (max-width: 48em) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__extra {
    max-width: 100%;
  }
}

/* ===== Premium Section ===== */
.premium {
  padding-block: var(--space-3xl);
}

.premium__title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.premium__content {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.premium__text {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  min-width: 0;
}

.premium__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.premium__item-title {
  font-size: var(--fs-h3);
}

.premium__item-desc {
  color: var(--text-muted);
}

.premium__image {
  flex: 1 1 40%;
  min-width: 0;
}

.premium__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-card);
  filter: grayscale(30%) sepia(20%) hue-rotate(240deg);
}

@media (max-width: 48em) {
  .premium__content {
    flex-direction: column;
  }

  .premium__text,
  .premium__image {
    flex: 1 1 auto;
    width: 100%;
  }
}

/* ===== Gallery Section ===== */
.gallery {
  padding-block: var(--space-3xl);
}

.gallery__title {
  text-align: center;
  margin-bottom: var(--space-md);
}

.gallery__desc {
  text-align: center;
  max-width: 400px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
  color: var(--text-muted);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.gallery__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-card);
  transition: box-shadow 0.2s ease-in-out;
}

.gallery__item:hover {
  box-shadow: var(--shadow-glow);
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) sepia(20%) hue-rotate(240deg);
  transition: transform 0.2s ease-in-out;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}

@media (max-width: 48em) {
  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== Audience Section ===== */
.audience {
  padding-block: var(--space-3xl);
}

.audience__title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-width: 0;
}

.audience-card__title {
  font-size: var(--fs-h3);
}

.audience-card__text {
  color: var(--text-muted);
}

@media (max-width: 48em) {
  .audience__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Trust Section ===== */
.trust {
  padding-block: var(--space-3xl);
}

.trust__title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.trust__content {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.trust__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.trust__item-title {
  font-size: var(--fs-h3);
}

.trust__item-desc {
  color: var(--text-muted);
}

/* ===== FAQ Section ===== */
.faq {
  padding-block: var(--space-3xl);
}

.faq__title {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.faq__list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq__item {
  border-radius: var(--radius-card);
  background: var(--bg-surface);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  padding: var(--space-lg);
  text-align: left;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: var(--fs-h5);
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 0.2s ease-in-out;
  position: relative;
}

.faq__question:hover {
  box-shadow: var(--shadow-glow);
}

.faq__question::after {
  content: '+';
  position: absolute;
  right: var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.2s ease-in-out;
}

.faq__item.active .faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding: 0 var(--space-lg);
  color: var(--text-muted);
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding-bottom: var(--space-lg);
}

/* ===== CTA Section ===== */
.cta {
  padding-block: var(--space-3xl);
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-deep-violet));
}

.cta__inner {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  padding-inline: var(--space-xl);
}

.cta__title {
  margin-bottom: var(--space-md);
}

.cta__desc {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.cta__btn {
  display: inline-block;
  font-size: var(--fs-h5);
  padding: 1em 2em;
}

@media (max-width: 48em) {
  .cta__inner {
    padding-inline: var(--space-md);
  }

  .cta__btn {
    width: 100%;
    text-align: center;
  }
}
