/* FEATURES TEXT SECTION STYLES */

:root {
  --primary: #123e73;
  --primary-dark: #0a2647;
  --accent: #3fa66b;
  --accent-light: #e6f5ec;
  --bg-light: #edf2f8;
  --white: #ffffff;
  --font-main: 'Roboto', sans-serif;
  --header-height: 80px;
  --container-width: 1200px;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

.features-text-section {
  font-size: 16px;
  font-family: var(--font-main);
  color: var(--primary-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  box-sizing: border-box;
  background-color: var(--bg-light);
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.features-text-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-text-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-text-section .section-header h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.features-text-section .section-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.625;
}

.text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  width: 100%;
}

@media (max-width: 768px) {
  .text-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.feature-text-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  border-top: 4px solid;
  box-shadow: 0 4px 12px rgba(18, 62, 115, 0.08);
  transition: all 0.3s ease;
}

.feature-text-card.traditional {
  border-top-color: #e53e3e;
}

.feature-text-card.modern {
  border-top-color: #3fa66b;
}

.feature-text-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18, 62, 115, 0.12);
}

.feature-text-card h3 {
  font-size: 1.5rem;
  color: #0a2647;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  color: #4a5568;
  line-height: 1.625;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3fa66b;
  font-weight: bold;
  font-size: 1.25rem;
}

.feature-list.cross-list li::before {
  content: '✕';
  color: #e53e3e;
}

.feature-list li strong {
  color: #0a2647;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .features-text-section {
    padding: 3rem 1rem;
  }

  .features-text-section .section-header {
    margin-bottom: 2rem;
  }

  .features-text-section .section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .features-text-section .section-header p {
    font-size: 0.95rem;
  }

  .feature-text-card {
    padding: 1.5rem;
  }

  .feature-text-card h3 {
    font-size: 1.25rem;
  }

  .feature-list li {
    font-size: 0.9rem;
  }
}
