/* ====================================
   Root Variables and Base Styles
   ==================================== */
/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --text-color: #000000;
  --background-light: #ffffff;

  /* Gradients */
  --primary-gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );

  /* Typography */
  --heading-font: Helvetica, Arial, sans-serif;
  --body-font: Arial, sans-serif;
}

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

body {
  font-family: var(--body-font);
  line-height: 1.8;
  background: #fafafa;
  color: var(--text-color);
}

.container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
}

/* Article 9 Styles */
.article-9 {
  padding: 100px 40px;
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.article-9::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(129, 183, 26, 0.1),
    transparent 60%
  );
  pointer-events: none;
}

.article-9 .article-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Intro Banner */
.article-9 .intro-banner {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  border: 1px solid rgba(129, 183, 26, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.article-9 .reason-tag {
  background: var(--primary-gradient);
  color: white;
  padding: 10px 25px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(129, 183, 26, 0.2);
}

.article-9 h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--tertiary-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

.article-9 .lead-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--tertiary-color);
  max-width: 800px;
  margin: 0 auto;
}

/* Comparison Wrapper */
.article-9 .comparison-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Comparison Text */
.article-9 .comparison-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.article-9 .comparison-text h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

/* Programs Grid */
.article-9 .programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 40px 0;
}

.article-9 .program-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(129, 183, 26, 0.2);
  transition: transform 0.3s ease;
}

.article-9 .program-card:hover {
  transform: translateY(-10px);
}

.article-9 .card-header {
  background: var(--primary-gradient);
  color: white;
  padding: 30px;
  text-align: center;
}

.article-9 .card-header h4 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 15px;
}

.article-9 .program-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

.article-9 .program-content {
  padding: 30px;
}

.article-9 .feature-list {
  list-style: none;
  margin-bottom: 30px;
}

.article-9 .feature-list li {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.article-9 .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.article-9 .program-note {
  background: rgba(129, 183, 26, 0.05);
  padding: 20px;
  border-radius: 15px;
}

.article-9 .program-note.success {
  background: var(--primary-gradient);
  color: white;
}

/* Research Evidence */
.article-9 .research-evidence {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  padding: 60px;
  border: 1px solid rgba(129, 183, 26, 0.2);
  margin: 60px 0;
}

.article-9 .evidence-content {
  text-align: center;
}

.article-9 .evidence-content h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--tertiary-color);
  margin-bottom: 30px;
}

.article-9 .evidence-image {
  margin: 40px 0 0;
}

.article-9 .evidence-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.article-9 figcaption {
  font-size: 0.9rem;
  color: var(--tertiary-color);
  text-align: center;
  margin-top: 15px;
  font-style: italic;
}

/* Conclusion Section */
.article-9 .conclusion-section {
  text-align: center;
}

.article-9 .conclusion-content h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--tertiary-color);
  margin-bottom: 30px;
}

.article-9 .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.article-9 .stat-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(129, 183, 26, 0.2);
  transition: transform 0.3s ease;
}

.article-9 .stat-item:hover {
  transform: translateY(-5px);
}

.article-9 .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
}

/* Text Highlights */
.highlight-primary {
  color: var(--primary-color);
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .article-9 .programs-grid {
    grid-template-columns: 1fr;
  }

  .article-9 .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .article-9 {
    padding: 60px 20px;
  }

  .article-9 .intro-banner,
  .article-9 .research-evidence {
    padding: 30px;
  }

  .article-9 .stats-grid {
    grid-template-columns: 1fr;
  }

  .article-9 .program-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .article-9 {
    padding: 40px 15px;
  }

  .article-9 .intro-banner,
  .article-9 .research-evidence {
    padding: 20px;
  }

  .article-9 .card-header,
  .article-9 .program-content {
    padding: 20px;
  }
}
