/* ===========================
   Marketing Attribution - Hero
   =========================== */
.ma-hero {
  padding: 200px 0 100px;
  background: linear-gradient(135deg, #100329 0%, #1C0944 50%, #0F0039 100%);
  position: relative;
  overflow: hidden;
}

.ma-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.ma-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.ma-hero__title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.ma-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.ma-hero__badge img {
  width: 200px;
  height: auto;
}

/* ===========================
   Key Claims
   =========================== */
.ma-claims {
  padding: 56px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
  border-top: 1px solid rgba(130, 94, 231, 0.1);
}

.ma-claims__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.ma-claims__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.ma-claims__check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ===========================
   Logo Bar
   =========================== */
.ma-logos {
  padding: 48px 0;
  background: linear-gradient(180deg, #1C0944 0%, #0F0039 100%);
  border-top: 1px solid rgba(130, 94, 231, 0.1);
  border-bottom: 1px solid rgba(130, 94, 231, 0.1);
}

.ma-logos__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.ma-logos__item img {
  height: 32px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.ma-logos__item img:hover {
  opacity: 0.8;
}

/* ===========================
   Team
   =========================== */
.ma-team {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.ma-team__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 56px;
}

.ma-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.ma-team-card {
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 20px;
  padding: 40px 28px 36px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ma-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(130, 94, 231, 0.3);
}

.ma-team-card__photo-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.25);
}

.ma-team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ma-team-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.ma-team-card__bio {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ===========================
   Testimonials
   =========================== */
.ma-testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, #1C0944 0%, #0F0039 100%);
}

.ma-testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.ma-testi-card {
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.ma-testi-card__stars {
  font-size: 1.3rem;
  color: #F5C518;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.ma-testi-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.ma-testi-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}

.ma-testi-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.ma-testi-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.ma-testi-card__role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ===========================
   CTA
   =========================== */
.ma-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.ma-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ma-cta__content {
  padding-top: 40px;
}

.ma-cta__content .section-subtitle {
  margin-bottom: 32px;
}

.ma-cta__booking {
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(130, 94, 231, 0.15);
}

.ma-cta__booking .meetings-iframe-container {
  min-height: 500px;
  width: 100%;
}

.ma-cta__booking iframe {
  border-radius: 16px;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .ma-hero__inner,
  .ma-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ma-hero__title {
    font-size: 2.75rem;
  }

  .ma-hero__badge {
    text-align: center;
  }

  .ma-team__grid,
  .ma-testi-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .ma-cta__content {
    padding-top: 0;
    text-align: center;
  }

  .ma-cta__content .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .ma-hero {
    padding: 140px 0 70px;
  }

  .ma-hero__title {
    font-size: 2.25rem;
  }

  .ma-claims {
    padding: 40px 0;
  }

  .ma-claims__item {
    font-size: 1rem;
  }

  .ma-logos__grid {
    gap: 32px;
  }

  .ma-logos__item img {
    height: 24px;
  }

  .ma-team,
  .ma-testimonials {
    padding: 64px 0;
  }

  .ma-team__title {
    font-size: 1.6rem;
  }

  .ma-cta {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .ma-hero__title {
    font-size: 1.85rem;
  }

  .ma-hero__badge img {
    width: 140px;
  }

  .ma-team-card__photo-wrap {
    width: 120px;
    height: 120px;
  }
}
