/* ===== STEPIO DETAIL PAGES CSS ===== */

/* ===== HERO ===== */
.stepio-detail-hero {
  background: linear-gradient(145deg, rgba(10, 22, 40, 0.98), rgba(15, 40, 71, 0.96), rgba(27, 58, 92, 0.94));
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.stepio-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.stepio-detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .stepio-detail-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.stepio-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 100px;
  margin-bottom: 24px;
}

.stepio-detail-badge .badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azure);
}

.stepio-detail-badge span:last-child {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--azure);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stepio-detail-title {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}

.stepio-detail-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  color: var(--signal-orange);
  margin-bottom: 20px;
}

.stepio-detail-desc {
  font-size: 17px;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}

.stepio-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Visual */
.stepio-detail-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stepio-detail-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
}

.stepio-detail-image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.stepio-detail-image-wrapper:hover .stepio-detail-image {
  transform: scale(1.03);
}

.stepio-detail-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.4) 100%);
  pointer-events: none;
}

/* ===== OVERVIEW ===== */
.stepio-detail-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .stepio-detail-overview {
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
  }
}

.overview-content p {
  font-size: 16px;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.overview-stat {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition-base);
}

.overview-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--azure);
}

.overview-stat .stat-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--azure);
  line-height: 1;
  margin-bottom: 8px;
}

.overview-stat .stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-500);
}

/* ===== FEATURES GRID ===== */
.stepio-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .stepio-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stepio-feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
}

.stepio-feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon.water {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(96, 165, 250, 0.1));
  color: #60A5FA;
}

.feature-icon.energy {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.1));
  color: #F97316;
}

.feature-icon.green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
  color: #10B981;
}

.feature-icon.purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(167, 139, 250, 0.1));
  color: #8B5CF6;
}

.stepio-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.stepio-feature-card p {
  font-size: 15px;
  color: var(--slate-400);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--slate-400);
  margin-bottom: 8px;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--azure);
  border-radius: 50%;
}

/* ===== PREMIUM FEATURES SECTION ===== */
.premium-features-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg,
    rgba(10, 22, 40, 1) 0%,
    rgba(15, 30, 55, 1) 50%,
    rgba(10, 22, 40, 1) 100%
  );
  overflow: hidden;
}

.premium-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(96, 165, 250, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 80%, rgba(249, 115, 22, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.premium-features-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.premium-features-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.premium-features-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(96, 165, 250, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--azure);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.premium-features-header .section-label svg {
  width: 16px;
  height: 16px;
}

.premium-features-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.premium-features-header p {
  font-size: 18px;
  color: var(--slate-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Premium Features Grid */
.premium-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .premium-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Premium Feature Card */
.premium-feature-card {
  position: relative;
  background: linear-gradient(145deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azure), var(--signal-orange));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.premium-feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.premium-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow:
    0 20px 40px -15px rgba(0, 0, 0, 0.5),
    0 0 60px -20px rgba(37, 99, 235, 0.3);
}

.premium-feature-card:hover::before {
  opacity: 1;
}

.premium-feature-card:hover::after {
  opacity: 1;
}

/* Feature Card Header */
.premium-feature-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.premium-feature-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.premium-feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.premium-feature-icon.water {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(96, 165, 250, 0.15));
  color: #60A5FA;
}

.premium-feature-icon.energy {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(251, 191, 36, 0.15));
  color: #F97316;
}

.premium-feature-icon.alert {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(248, 113, 113, 0.15));
  color: #F87171;
}

.premium-feature-icon.chart {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(52, 211, 153, 0.15));
  color: #34D399;
}

.premium-feature-icon svg {
  width: 26px;
  height: 26px;
}

.premium-feature-title-group {
  flex: 1;
}

.premium-feature-number {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--signal-orange);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.premium-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

/* Feature Card Body */
.premium-feature-body {
  position: relative;
  z-index: 1;
}

.premium-feature-desc {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Premium Feature List */
.premium-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.premium-feature-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.premium-feature-list-item:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

.premium-feature-list-item .check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.premium-feature-list-item .check-icon svg {
  width: 10px;
  height: 10px;
  color: #34D399;
}

.premium-feature-list-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-300);
}

/* Feature Stats Row */
.premium-feature-stats {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-stat {
  text-align: center;
  flex: 1;
}

.premium-stat-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--azure);
  line-height: 1;
  margin-bottom: 4px;
}

.premium-stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== SENSORS GRID ===== */
.sensors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .sensors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sensors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sensor-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sensor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azure), var(--royal));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sensor-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px -15px rgba(37, 99, 235, 0.2),
    0 10px 20px -10px rgba(0, 0, 0, 0.1);
  border-color: var(--azure);
}

.sensor-card:hover::before {
  opacity: 1;
}

.sensor-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sensor-card:hover img {
  transform: scale(1.05);
}

.sensor-content {
  padding: 24px;
}

.sensor-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 10px;
  line-height: 1.3;
}

.sensor-content p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 18px;
}

.sensor-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sensor-specs span {
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--slate-100), var(--slate-50));
  border: 1px solid var(--slate-200);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-600);
  transition: all 0.3s ease;
}

.sensor-card:hover .sensor-specs span {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(96, 165, 250, 0.05));
  border-color: rgba(37, 99, 235, 0.2);
  color: var(--azure);
}

/* Sensor Image Wrapper */
.sensor-image-wrapper {
  position: relative;
  overflow: hidden;
}

.sensor-icon-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--azure), var(--royal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}

.sensor-icon-badge svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.sensor-card:hover .sensor-icon-badge {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.sensor-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
  pointer-events: none;
}

/* ===== USE CASES ===== */
.usecases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .usecases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.usecase-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
}

.usecase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--azure);
}

.usecase-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--azure), var(--royal));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}

.usecase-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 8px;
}

.usecase-card p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.5;
}

/* ===== SPECS TABLE ===== */
.specs-table-wrapper {
  overflow-x: auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.specs-table th,
.specs-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--slate-200);
}

.specs-table th {
  background: var(--slate-100);
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.specs-table td {
  font-size: 15px;
  color: var(--slate-700);
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--midnight);
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:hover td {
  background: var(--slate-50);
}

/* ===== RELATED MODELS ===== */
.related-models-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .related-models-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-model-card {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none;
  transition: all var(--transition-base);
}

.related-model-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--signal-orange);
  transform: translateY(-4px);
}

.related-model-code {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--signal-orange);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.related-model-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.related-model-card p {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.5;
}

/* ===== PROCESS FLOW ===== */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

@media (min-width: 1024px) {
  .process-flow {
    flex-direction: row;
    align-items: flex-start;
  }
}

.process-step {
  flex: 1;
  position: relative;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .process-step {
    margin-bottom: 0;
    margin-right: 40px;
  }

  .process-step:last-child {
    margin-right: 0;
  }
}

.process-step::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background: linear-gradient(180deg, var(--azure), transparent);
}

@media (min-width: 1024px) {
  .process-step::after {
    bottom: auto;
    top: 50%;
    left: auto;
    right: -30px;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--azure), transparent);
  }
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--azure), var(--royal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 16px;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.5;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.6) 100%);
  pointer-events: none;
}

/* ===== BENEFITS LIST ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.benefit-content p {
  font-size: 14px;
  color: var(--slate-400);
  line-height: 1.5;
}

/* ===== DASHBOARD PREVIEW ===== */
.dashboard-preview {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
}

.dashboard-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.dashboard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(10, 22, 40, 0.8) 100%);
  pointer-events: none;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--slate-200);
}

.comparison-table th {
  background: var(--midnight);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--midnight);
}

.comparison-table .check {
  color: #10B981;
}

.comparison-table .cross {
  color: var(--slate-400);
}
