/* Advanze Colored Section Backgrounds - Sovora Style Enhancement */
/* Created: 2026-06-29 */

/* ===========================
   COLORED SECTION BACKGROUNDS
   =========================== */

/* Orange/Warm Section */
.adv-section.orange {
  background: linear-gradient(180deg, #FFF5F0 0%, #FFE8DC 100%);
  position: relative;
}

.adv-section.orange::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.2) 50%, transparent 100%);
}

/* Alternate/Gray Section */
.adv-section.alt {
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

/* Blue Section */
.adv-section.blue {
  background: linear-gradient(180deg, #EFF6FF 0%, #DBEAFE 100%);
  position: relative;
}

.adv-section.blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(52, 152, 219, 0.2) 50%, transparent 100%);
}

/* Green Section */
.adv-section.green {
  background: linear-gradient(180deg, #F0FDF4 0%, #DCFCE7 100%);
  position: relative;
}

.adv-section.green::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(39, 174, 96, 0.2) 50%, transparent 100%);
}

/* Purple Section */
.adv-section.purple {
  background: linear-gradient(180deg, #FAF5FF 0%, #F3E8FF 100%);
}

/* ===========================
   FEATURE GRID
   =========================== */

.adv-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

@media (max-width: 768px) {
  .adv-feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Feature Cards */
.adv-feature-card {
  padding: 32px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--adv-primary, #3498db);
  transition: all 0.3s ease;
}

.adv-feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.adv-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.adv-feature-card h3 {
  margin-bottom: 12px;
  color: var(--adv-neutral-900, #1a202c);
  font-size: 1.25rem;
  font-weight: 600;
}

.adv-feature-card p {
  color: var(--adv-neutral-700, #4a5568);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===========================
   CONTENT GRID (2-column)
   =========================== */

.adv-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 48px 0;
}

@media (max-width: 968px) {
  .adv-content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===========================
   BENEFIT CARDS
   =========================== */

.adv-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.adv-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.adv-benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--adv-primary, #3498db);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.adv-benefit-content h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: var(--adv-neutral-900, #1a202c);
}

.adv-benefit-content p {
  margin: 0;
  color: var(--adv-neutral-700, #4a5568);
  line-height: 1.6;
}

/* ===========================
   CTA SECTIONS
   =========================== */

.adv-cta {
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.adv-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.adv-cta h2 {
  color: white;
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 700;
}

.adv-cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.adv-cta .adv-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   STATISTICS SECTION
   =========================== */

.adv-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin: 48px 0;
  text-align: center;
}

.adv-stat-item {
  padding: 24px;
}

.adv-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--adv-primary, #3498db);
  line-height: 1;
  margin-bottom: 8px;
}

.adv-stat-label {
  font-size: 1rem;
  color: var(--adv-neutral-700, #4a5568);
  font-weight: 500;
}

/* ===========================
   USE CASE CARDS
   =========================== */

.adv-usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin: 48px 0;
}

.adv-usecase-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--adv-primary, #3498db);
}

.adv-usecase-card h3 {
  margin-bottom: 16px;
  color: var(--adv-neutral-900, #1a202c);
  font-size: 1.3rem;
}

.adv-usecase-card .usecase-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--adv-primary, #3498db);
  color: white;
  border-radius: 12px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.adv-usecase-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.adv-usecase-card ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: var(--adv-neutral-700, #4a5568);
}

.adv-usecase-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--adv-primary, #3498db);
  font-weight: bold;
}

/* ===========================
   COMPARISON TABLE
   =========================== */

.adv-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 48px 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.adv-comparison-table th {
  background: var(--adv-neutral-900, #1a202c);
  color: white;
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

.adv-comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--adv-neutral-200, #e2e8f0);
  color: var(--adv-neutral-700, #4a5568);
}

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

.adv-comparison-table tr:hover {
  background: var(--adv-neutral-50, #f7fafc);
}

/* ===========================
   SPACING UTILITIES
   =========================== */

.adv-section {
  padding: 80px 20px;
}

.adv-section.compact {
  padding: 48px 20px;
}

.adv-section.spacious {
  padding: 120px 20px;
}

@media (max-width: 768px) {
  .adv-section {
    padding: 48px 20px;
  }

  .adv-section.compact {
    padding: 32px 20px;
  }

  .adv-section.spacious {
    padding: 64px 20px;
  }
}

/* ===========================
   SECTION HEADERS
   =========================== */

.adv-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.adv-section-header .kicker {
  display: inline-block;
  padding: 4px 16px;
  background: var(--adv-primary, #3498db);
  color: white;
  border-radius: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.adv-section-header h2 {
  margin-bottom: 16px;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--adv-neutral-900, #1a202c);
}

.adv-section-header p {
  font-size: 1.1rem;
  color: var(--adv-neutral-700, #4a5568);
  line-height: 1.7;
}

/* ===========================
   ENHANCED BUTTONS
   =========================== */

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

.adv-actions.center {
  justify-content: center;
}

/* ===========================
   END OF FILE
   =========================== */
