/* ==========================================================================
   ZELZONI CALL, TEXT, & CHAT — PAGE-SPECIFIC STYLES
   ========================================================================== */

/* ---- Centered Body Section Layout ---- */
.feature-body-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ---- Mockup Image: Large & Centered ---- */
.intro-mockup-column {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 56px;
}

.intro-mockup-column .mockup-image-wrapper {
  max-width: 1020px;
  width: 100%;
}

.mockup-image-wrapper {
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(111, 92, 255, 0.08),
    0 30px 80px rgba(34, 28, 99, 0.14),
    0 8px 24px rgba(111, 92, 255, 0.06);
  transition: box-shadow 0.4s ease;
}

.mockup-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(111, 92, 255, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

.mockup-image-wrapper:hover {
  box-shadow:
    0 0 0 1px rgba(111, 92, 255, 0.14),
    0 40px 100px rgba(34, 28, 99, 0.18),
    0 12px 32px rgba(111, 92, 255, 0.1);
}

.mockup-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* ---- Text Content: Centered & Premium Typo ---- */
.intro-text-column {
  max-width: 820px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.intro-text-column p {
  font-size: 1.08rem;
  color: #555273;
  line-height: 1.85;
  margin-bottom: 24px;
}

.intro-text-column .lead-text {
  font-size: 1.22rem;
  color: #3f3d56;
  font-weight: 500;
  line-height: 1.85;
  margin-bottom: 28px;
}

.intro-text-column .accent-text {
  font-size: 1.12rem;
  font-weight: 600;
  color: #6f5cff;
  line-height: 1.8;
  border-top: 1px dashed rgba(23, 21, 58, 0.1);
  padding-top: 24px;
  margin-top: 28px;
  margin-bottom: 0;
}

/* ---- Capabilities Showcase ---- */
.capabilities-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 96px;
  margin-top: 60px;
}

.capability-showcase-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
  margin-top: 100px;
}

.capability-content-col {
  flex: 1;
  max-width: 450px;
}

.capability-image-col {
  flex: 1;
  max-width: 650px;
  background: #f7f6fb;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(111, 92, 255, 0.03);
}

.capability-image-col .mockup-image-wrapper {
  max-width: 100%;
  width: 100%;
  border-radius: 16px;
  box-shadow:
    0 20px 50px rgba(34, 28, 99, 0.1),
    0 4px 12px rgba(111, 92, 255, 0.03);
  overflow: hidden;
  background: #ffffff;
}

.capability-icon {
  display: none;
}

.capability-text h4 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #17153a;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.capability-text p {
  font-size: 1.1rem;
  color: #555273;
  line-height: 1.75;
  margin-bottom: 16px;
}

.capability-text p:last-child {
  margin-bottom: 0;
}

/* ---- Blended Hero & Body Wrapper ---- */
.blended-hero-body-wrapper {
  position: relative;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(243, 240, 255, 0.3) 50%,
    rgba(243, 240, 255, 0.7) 100%
  );
  overflow: hidden;
  border-bottom: 1px solid rgba(23, 21, 58, 0.04);
}

.blended-hero-body-wrapper .feature-page-hero {
  background-color: transparent !important;
  overflow: visible !important;
  padding-bottom: 40px;
}

.blended-hero-body-wrapper .feature-body-section {
  padding-top: 40px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET OVERRIDES)
   ========================================================================== */
@media (max-width: 992px) {
  .capability-showcase-row {
    flex-direction: column !important;
    gap: 40px !important;
    text-align: center;
  }
  .capability-image-col {
    width: 100% !important;
    padding: 24px !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 768px) {
  .feature-hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    align-items: stretch !important;
    gap: 12px !important;
    padding: 0 16px !important;
  }

  .feature-hero-actions .btn {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    padding: 14px 24px !important;
    font-size: 0.95rem !important;
  }
}
