
/* MarketingAssistAI Page */
.mai-page {
  font-family: "Roboto", sans-serif;
  color: #111827;
  overflow: hidden;
}

.mai-hero {
  position: relative;
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 15% 20%, rgba(45, 104, 182, 0.16), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(42, 214, 198, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef5ff 55%, #dbe8ff 100%);
}

.mai-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(123, 77, 255, 0.10);
  color: #2d68b6;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 22px;
}

.mai-hero h1 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
}

.mai-gradient-text {
  background: linear-gradient(95deg, #2d68b6 0%, #6f86ff 45%, #2ad6c6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mai-hero p {
  font-size: 20px;
  line-height: 1.65;
  color: #374151;
  max-width: 720px;
  margin-bottom: 34px;
}

.mai-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mai-btn-primary,
.mai-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.mai-btn-primary {
  background: linear-gradient(90deg, #7b4dff 0%, #31d1c0 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(48, 110, 214, 0.22);
}

.mai-btn-secondary {
  background: #ffffff;
  color: #2d68b6;
  border: 1px solid rgba(45, 104, 182, 0.24);
}

.mai-hero-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(123, 77, 255, 0.14);
  box-shadow: 0 24px 60px rgba(31, 54, 125, 0.14);
  padding: 26px;
}

.mai-dashboard {
  border-radius: 22px;
  background: #ffffff;
  overflow: hidden;
  border: 1px solid #e8eef9;
}

.mai-dashboard-top {
  padding: 18px 20px;
  background: linear-gradient(90deg, #2d68b6, #6f86ff, #2ad6c6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mai-dashboard-body {
  padding: 22px;
}

.mai-post-preview {
  border-radius: 18px;
  background: linear-gradient(135deg, #f3f7ff, #ffffff);
  border: 1px solid #e6edf8;
  padding: 22px;
  margin-bottom: 16px;
}

.mai-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mai-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef5ff;
  color: #2d68b6;
  font-size: 14px;
  font-weight: 700;
}

.mai-section {
  padding: 86px 0;
}

.mai-section-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 46px;
}

.mai-section-title h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
}

.mai-section-title p {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.65;
}

.mai-feature-card {
  height: 100%;
  border-radius: 24px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e8eef9;
  box-shadow: 0 18px 38px rgba(30, 64, 175, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mai-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(30, 64, 175, 0.12);
}

.mai-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(45, 104, 182, 0.12), rgba(42, 214, 198, 0.18));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2d68b6;
  font-size: 24px;
  margin-bottom: 20px;
}

.mai-feature-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.mai-feature-card p {
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}

.mai-flow {
  background: linear-gradient(135deg, #f7fbff 0%, #eef4ff 100%);
}

.mai-step {
  position: relative;
  height: 100%;
  border-radius: 24px;
  background: #fff;
  padding: 28px;
  border: 1px solid #e6edf8;
}

.mai-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(90deg, #7b4dff 0%, #31d1c0 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.mai-benefit-band {
  border-radius: 34px;
  padding: 46px;
  background:
    linear-gradient(135deg, rgba(45, 104, 182, 0.95), rgba(123, 77, 255, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(42, 214, 198, 0.5), transparent 35%);
  color: #ffffff;
}

.mai-benefit-band h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 18px;
}

.mai-benefit-band p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.94;
}

.mai-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.mai-check-list li {
  margin: 12px 0;
  font-size: 17px;
}

.mai-check-list i {
  color: #2ad6c6;
  margin-right: 10px;
}

.mai-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.mai-industry {
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8eef9;
  color: #1f2937;
  font-weight: 700;
}

.mai-final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #edf6ff 100%);
}

.mai-final-box {
  border-radius: 34px;
  padding: 52px;
  background: #ffffff;
  border: 1px solid #e8eef9;
  box-shadow: 0 24px 60px rgba(31, 54, 125, 0.10);
  text-align: center;
}

.mai-final-box h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  margin-bottom: 18px;
}

.mai-final-box p {
  max-width: 780px;
  margin: 0 auto 28px;
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
}

.mega-solutions-card {
  min-width: 220px;
}

@media (max-width: 991px) {
  .mai-hero {
    padding: 76px 0 60px;
  }

  .mai-hero-card {
    margin-top: 36px;
  }

  .mai-benefit-band,
  .mai-final-box {
    padding: 34px 24px;
  }
}
