/* ====================================
   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 10 Styles */
.article-10 {
  padding: 100px 40px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.article-10::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-10 .article-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Intro Section */
.article-10 .intro-section {
  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-10 h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--tertiary-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

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

/* Success Stories */
.article-10 .success-stories {
  margin: 60px 0;
}

/* Featured Story Card */
.article-10 .story-card.featured {
  background: var(--primary-gradient);
  color: white;
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 60px;
}

.article-10 .story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.article-10 .patient-info h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.article-10 .duration {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  opacity: 0.8;
}

.article-10 .success-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

/* Before/After Section */
.article-10 .before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.article-10 .before,
.article-10 .after {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.article-10 .before h4,
.article-10 .after h4 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-bottom: 15px;
}

/* Testimonial */
.article-10 .testimonial {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.6;
  margin: 30px 0;
  padding-left: 20px;
  border-left: 4px solid rgba(255, 255, 255, 0.3);
}

/* Results Section */
.article-10 .results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.article-10 .result-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.article-10 .result-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 10px;
  display: block;
}

/* Stories Grid */
.article-10 .stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.article-10 .stories-grid .story-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 30px;
  border: 1px solid rgba(129, 183, 26, 0.2);
  transition: transform 0.3s ease;
}

.article-10 .stories-grid .story-card:hover {
  transform: translateY(-10px);
}

.article-10 .key-result {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(129, 183, 26, 0.2);
}

/* Success Summary */
.article-10 .success-summary {
  margin-top: 80px;
  text-align: center;
  padding: 60px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  border: 1px solid rgba(129, 183, 26, 0.2);
}

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

.article-10 .stat-item {
  background: var(--primary-gradient);
  color: white;
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

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

.article-10 .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  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-10 .before-after {
    grid-template-columns: 1fr;
  }

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

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

  .article-10 .story-card.featured {
    padding: 30px;
  }

  .article-10 .story-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .article-10 .success-summary {
    padding: 30px;
  }

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

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

  .article-10 .story-card.featured,
  .article-10 .stories-grid .story-card {
    padding: 20px;
  }

  .article-10 .before,
  .article-10 .after {
    padding: 20px;
  }
}
