/* Dashboard Feature Page - Premium Editorial Layout */

/* ========================================
   SECTIONS CONTAINER
   ======================================== */
.dashboard_sectionsContainer__gp9sv {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ========================================
   FEATURE SECTION - Full Width Alternating
   ======================================== */
.dashboard_featureSection__7tTT7 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.dashboard_featureSectionVisible__8_F0C {
  opacity: 1;
  transform: translateY(0);
}

/* Alternating backgrounds */
.dashboard_featureSection__7tTT7:nth-child(odd) {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.dashboard_featureSection__7tTT7:nth-child(even) {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Reverse layout for even sections (2nd, 4th, etc.) */
.dashboard_featureSectionReversed__EFxjJ .dashboard_contentSide__LzPNy {
  order: 2;
}

.dashboard_featureSectionReversed__EFxjJ .dashboard_visualSide__LSHFt {
  order: 1;
}

/* ========================================
   CONTENT SIDE (Text)
   ======================================== */
.dashboard_contentSide__LzPNy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dashboard_sectionLabel__5F5MW {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent, #2196F3);
}

.dashboard_sectionLabel__5F5MW::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent, #2196F3);
  border-radius: 1px;
}

.dashboard_sectionTitle__0EpmB {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.dashboard_sectionDescription__CZdsF {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #475569;
}

.dashboard_benefitsList__dhPrk {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.dashboard_benefitItem__M4pet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.5;
}

.dashboard_benefitIcon__X9usK {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background: linear-gradient(135deg, var(--accent-light, #74B0F5) 0%, var(--accent, #2196F3) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dashboard_benefitIcon__X9usK svg {
  width: 11px;
  height: 11px;
  color: white;
}

/* ========================================
   VISUAL SIDE (Diagram)
   ======================================== */
.dashboard_visualSide__LSHFt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard_visualWrapper___oayZ {
  position: relative;
  width: 100%;
  max-width: 420px;
}

/* Subtle glow behind the visual */
.dashboard_visualWrapper___oayZ::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse at center,
    var(--accent-glow, rgba(33, 150, 243, 0.08)) 0%,
    transparent 70%
  );
  border-radius: 24px;
  z-index: 0;
}

.dashboard_visualCard__tWfLt {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  z-index: 1;
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.dashboard_featureSection__7tTT7:hover .dashboard_visualCard__tWfLt {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.06),
    0 16px 32px rgba(0, 0, 0, 0.06);
}

.dashboard_visualCardHeader__2Yfpy {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(
    135deg,
    var(--accent, #2196F3) 0%,
    var(--accent-dark, #1976D2) 100%
  );
}

.dashboard_headerIcon__ZEy8j {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard_headerIcon__ZEy8j svg {
  width: 16px;
  height: 16px;
  color: white;
}

.dashboard_visualCardTitle__WiPJD {
  font-size: 13px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
}

.dashboard_visualCardBody__ZpH_C {
  padding: 16px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

/* ========================================
   DATA ROWS (Inside Visual Card)
   ======================================== */
.dashboard_cardContent__JLmF6 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard_dataRow__nQOHr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: background 200ms ease, border-color 200ms ease;
}

.dashboard_dataRow__nQOHr:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.dashboard_dataIcon__QldhR {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard_dataSvg__WtlOF {
  width: 20px;
  height: 20px;
}

.dashboard_dataDetails__yukAp {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.dashboard_dataType__a7Ee8 {
  font-size: 11px;
  font-weight: 600;
  color: #1e293b;
}

.dashboard_dataValue__EvsFd {
  font-size: 10px;
  color: #64748b;
}

.dashboard_dataValue__EvsFd strong {
  color: #334155;
  font-weight: 600;
}

.dashboard_dataBadge__2ACOt {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

/* ========================================
   SECTION DIVIDER
   ======================================== */
.dashboard_sectionDivider__3eR_O {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #e2e8f0 20%,
    #e2e8f0 80%,
    transparent 100%
  );
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
  .dashboard_featureSection__7tTT7 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 2rem;
    text-align: center;
  }

  .dashboard_featureSectionReversed__EFxjJ .dashboard_contentSide__LzPNy,
  .dashboard_featureSectionReversed__EFxjJ .dashboard_visualSide__LSHFt {
    order: unset;
  }

  .dashboard_contentSide__LzPNy {
    align-items: center;
  }

  .dashboard_sectionTitle__0EpmB {
    font-size: 1.875rem;
  }

  .dashboard_benefitsList__dhPrk {
    align-items: flex-start;
    text-align: left;
    max-width: 400px;
  }

  .dashboard_visualWrapper___oayZ {
    max-width: 380px;
  }
}

@media (max-width: 640px) {
  .dashboard_featureSection__7tTT7 {
    padding: 3rem 1.25rem;
    gap: 2rem;
  }

  .dashboard_sectionTitle__0EpmB {
    font-size: 1.5rem;
  }

  .dashboard_sectionDescription__CZdsF {
    font-size: 0.9375rem;
  }

  .dashboard_benefitItem__M4pet {
    font-size: 0.875rem;
  }

  .dashboard_visualWrapper___oayZ {
    max-width: 100%;
  }

  .dashboard_dataRow__nQOHr {
    padding: 8px 10px;
    gap: 10px;
  }

  .dashboard_dataIcon__QldhR {
    width: 30px;
    height: 30px;
  }

  .dashboard_dataSvg__WtlOF {
    width: 18px;
    height: 18px;
  }

  .dashboard_dataType__a7Ee8 {
    font-size: 10px;
  }

  .dashboard_dataValue__EvsFd {
    font-size: 9px;
  }

  .dashboard_dataBadge__2ACOt {
    font-size: 9px;
    padding: 3px 8px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dashboard_featureSection__7tTT7 {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dashboard_visualCard__tWfLt {
    transition: none;
  }

  .dashboard_featureSection__7tTT7:hover .dashboard_visualCard__tWfLt {
    transform: none;
  }
}

