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

.mkt-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(130, 94, 231, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

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

.mkt-hero__image img {
  width: 100%;
  border-radius: 12px;
}

/* ===========================
   How Attribution Works
   =========================== */
.mkt-process {
  padding: 80px 0;
  background: linear-gradient(180deg, #0F0039 0%, #1C0944 100%);
}

.mkt-process__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.mkt-process__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.mkt-process__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.mkt-process__steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.mkt-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.mkt-step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.mkt-step__content {
  flex: 1;
}

.mkt-step__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.mkt-step__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ===========================
   Attribution Report
   =========================== */
.mkt-report {
  margin-top: 64px;
  background: linear-gradient(135deg, #53389E 0%, #42307D 100%);
  border-radius: 16px;
  padding: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mkt-report__image {
  margin-bottom: 24px;
}

.mkt-report__image img {
  width: 100%;
  border-radius: 12px;
}

.mkt-report__caption {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
}

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

.mkt-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.mkt-testi-card__logo {
  max-height: 28px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

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

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

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

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

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

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

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

.mkt-cta__booking {
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

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

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

  .mkt-testi-grid {
    grid-template-columns: 1fr;
  }
}

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

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

  .mkt-process,
  .mkt-testimonials {
    padding: 60px 0;
  }

  .mkt-cta {
    padding: 60px 0;
  }

  .mkt-step {
    flex-direction: column;
    gap: 16px;
  }
}
