/* Light Theme for SLA Page */

:root {
  /* Light theme colors */
  --primary-blue: #3b82f6;
  --dark-blue: #1d4ed8;

  /* Light theme backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f8ff;
  --bg-card: #ffffff;

  /* Light theme text colors */
  --text-primary: #1a1a1a;
  --text-secondary: #4a5568;
  --text-tertiary: #718096;

  /* Light theme borders */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  /* Light theme effects */
  --blob-color: rgba(59, 130, 246, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Hero Section */
.hero {
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #ffffff 100%);
  text-align: center;
}

.blob {
  position: absolute;
  border-radius: 50%;
  background: var(--blob-color);
  filter: blur(80px);
  z-index: 1;
}

.blob-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-content h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-content h2 span {
  color: var(--primary-blue);
}

.page-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-secondary {
  background-color: var(--primary-blue);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-secondary:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Features Section */
.features-section {
  padding: 60px 5%;
  background-color: var(--bg-primary);
}

.sla-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--bg-card);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sla-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0 50px;
}

.sla-card {
  background-color: var(--bg-secondary);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sla-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.sla-icon {
  background-color: rgba(59, 130, 246, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sla-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--primary-blue);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

.sla-percentage {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

th {
  background-color: var(--bg-secondary);
  color: var(--primary-blue);
  font-weight: 600;
}

tbody tr:hover {
  background-color: var(--bg-secondary);
}

tbody tr:last-child td {
  border-bottom: none;
}

.highlight {
  color: var(--primary-blue);
  font-weight: 600;
}

/* List Styles */
ul {
  margin-left: 20px;
  line-height: 1.6;
  color: var(--text-secondary);
}

ul li {
  margin-bottom: 0.5rem;
}

/* Pre-footer CTA */
.pre-footer-cta {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #ffffff 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.pre-footer-cta .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pre-footer-cta__content {
  max-width: 800px;
  margin-bottom: 2rem;
}

.pre-footer-cta__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.pre-footer-cta__description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pre-footer-cta__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-primary {
  background-color: var(--primary-blue);
  color: white;
  border: 2px solid var(--primary-blue);
}

.cta-primary:hover {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .page-description {
    font-size: 1.125rem;
  }

  .sla-container {
    padding: 20px;
  }

  .sla-grid {
    grid-template-columns: 1fr;
  }

  .pre-footer-cta__title {
    font-size: 2rem;
  }

  .pre-footer-cta__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
  }

  .pre-footer-cta__buttons .btn {
    width: 100%;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .sla-percentage {
    font-size: 2rem;
  }

  .sla-card {
    padding: 20px;
  }

  table {
    font-size: 0.85rem;
  }

  th, td {
    padding: 8px;
  }
}
