/*
 * SureSuccess - Index Page Stylesheet
 * Optimized styles specifically for the homepage
 */

/* ======================================
   BASE STYLES & VARIABLES
   ====================================== */
:root {
  /* Color Palette */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --primary-lighter: #93c5fd;
  --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  --secondary-lighter: #334155;
  
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;
  
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;
  
  --background: #ffffff;
  --background-alt: #f8fafc;
  --background-dark: #f1f5f9;
  
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-headings: 'Poppins', var(--font-primary);
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Borders */
  --border-radius-sm: 0.25rem;
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --border-radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;
}

/* ======================================
   RESET & BASE STYLES
   ====================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background);
  overflow-x: hidden;
  position: relative;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--secondary);
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 5rem 0;
  position: relative;
}

/* ======================================
   ACCESSIBILITY
   ====================================== */
.skip-to-content {
  position: absolute;
  top: -9999px;
  left: -9999px;
  background: var(--primary);
  color: var(--text-white);
  padding: var(--spacing-md) var(--spacing-lg);
  z-index: 9999;
  opacity: 0;
  transition: var(--transition-fast);
}

.skip-to-content:focus {
  top: 20px;
  left: 20px;
  opacity: 1;
}

/* ======================================
   NAVIGATION
   ====================================== */
.navbar {
  background-color: var(--background);
  box-shadow: var(--shadow);
  padding: 0.75rem 0;
  transition: var(--transition);
  z-index: 100;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.brand-logo {
  display: flex;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
}

.brand-highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-nav {
  margin-left: 1.5rem;
}

.nav-item {
  margin: 0 0.5rem;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.625rem 0.5rem;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--primary-gradient);
  margin-top: 4px;
  border-radius: var(--border-radius-full);
}

.nav-buttons {
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--background);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 0.5rem;
    box-shadow: var(--shadow);
  }

  .nav-buttons {
    margin-top: 1rem;
    flex-direction: column;
    width: 100%;
  }

  .nav-buttons .btn {
    margin: 0.25rem 0;
    width: 100%;
  }
}

/* ======================================
   BUTTONS
   ====================================== */
.btn {
  font-weight: 500;
  padding: 0.625rem 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  outline: none !important;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--primary-gradient);
  border: none;
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover, 
.btn-primary:focus {
  background: var(--primary-dark);
  color: var(--text-white);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover, 
.btn-outline:focus {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border: none;
}

.btn-light:hover, 
.btn-light:focus {
  background: var(--background);
  color: var(--primary);
  box-shadow: var(--shadow);
}

/* ======================================
   HERO SECTION
   ====================================== */
.hero-section {
  padding: 9rem 0 0;
  position: relative;
  background: var(--primary-gradient);
  color: var(--text-white);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 7rem;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--text-white);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-actions .btn {
  min-width: 180px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.hero-actions .btn-outline {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--text-white);
  backdrop-filter: blur(5px);
}

.hero-actions .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--text-white);
  color: var(--text-white);
}

.hero-image {
  position: relative;
  z-index: 1;
  padding-bottom: 7rem;
}

.hero-image img {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-lg);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Stats Bar Styling */
.stats-bar {
  position: relative;
  z-index: 10;
  margin-bottom: -50px;
}

.stats-container {
  background-color: var(--primary);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  display: flex;
  justify-content: space-around;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.stat-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-shape-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

/* ======================================
   SECTION STYLES
   ====================================== */
.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  color: var(--secondary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ======================================
   FEATURES SECTION
   ====================================== */
.features-section {
  background-color: var(--background);
  padding: 6rem 0;
}

.feature-card {
  background: var(--background);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--primary-gradient);
  color: var(--text-white);
  font-size: 1.5rem;
  border-radius: var(--border-radius-full);
  margin-bottom: 1.5rem;
}

.feature-content {
  flex: 1;
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ======================================
   MODULES SECTION
   ====================================== */
.modules-section {
  background-color: var(--background-alt);
  padding: 6rem 0;
}

.module-card {
  position: relative;
  background: var(--background);
  border-radius: var(--border-radius-lg);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: var(--transition);
  padding: 2rem 2rem 2rem 3.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--primary);
}

.module-card.featured {
  border-left-color: var(--accent);
}

.module-card.coming-soon {
  opacity: 0.8;
  border-left-color: var(--text-light);
}

.module-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.module-badge {
  position: absolute;
  top: 1.5rem;
  left: -15px;
  background: var(--primary);
  color: var(--text-white);
  padding: 0.25rem 1rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.module-card.featured .module-badge {
  background: var(--accent);
}

.module-card.coming-soon .module-badge {
  background: var(--text-muted);
}

.module-content {
  padding-top: 1.5rem;
}

.module-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.module-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.module-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.meta-item i {
  color: var(--primary);
}

.module-card.featured .meta-item i {
  color: var(--accent);
}

/* ======================================
   TESTIMONIALS SECTION
   ====================================== */
.testimonials-section {
  background-color: var(--background);
  padding: 6rem 0;
}

.testimonial-card {
  background: var(--background);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  color: var(--primary-lighter);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--border-radius-full);
  overflow: hidden;
  border: 3px solid var(--primary-lighter);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h5 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.testimonial-card.future {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card.future h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

/* ======================================
   CTA SECTION
   ====================================== */
.cta-section {
  position: relative;
  background-color: var(--background-alt);
  padding: 6rem 0;
  overflow: hidden;
}

.cta-wrapper {
  background: var(--primary-gradient);
  border-radius: var(--border-radius-lg);
  padding: 4rem 2rem;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.cta-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ======================================
   FOOTER
   ====================================== */
.site-footer {
  background-color: var(--secondary);
  color: var(--text-white);
  padding-top: 5rem;
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-text {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--secondary-lighter);
  border-radius: var(--border-radius-full);
  color: var(--text-white);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-lighter);
  padding-left: 5px;
}

.newsletter-form {
  margin-top: 1.5rem;
}

.newsletter-form .form-control {
  background-color: var(--secondary-lighter);
  border: none;
  padding: 0.75rem 1rem;
  color: var(--text-white);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form .form-control::placeholder {
  color: var(--text-light);
}

.newsletter-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.footer-bottom {
  background-color: var(--secondary-dark);
  padding: 1.5rem 0;
  margin-top: 4rem;
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 0;
}

/* ======================================
   ALERT STYLES
   ====================================== */
.alert {
  border-radius: var(--border-radius);
  border: none;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.alert-primary {
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-dark);
}

.alert-primary .alert-icon {
  color: var(--primary);
}

.alert-info {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--info);
}

.alert-info .alert-icon {
  color: var(--info);
}

/* ======================================
   NOTIFICATION SYSTEM
   ====================================== */
.notification-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  max-width: 350px;
}

.notification {
  background: var(--background);
  border-radius: var(--border-radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.3s ease-out;
  border-left: 4px solid var(--primary);
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-success {
  border-left-color: var(--success);
}

.notification-error {
  border-left-color: var(--danger);
}

.notification-warning {
  border-left-color: var(--warning);
}

.notification-info {
  border-left-color: var(--info);
}

/* ======================================
   BACK TO TOP BUTTON
   ====================================== */
.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary-gradient);
  color: var(--text-white);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 99;
}

.back-to-top-btn.show {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ======================================
   ANIMATIONS
   ====================================== */
/* Fade-in animations for AOS fallback */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================================
   RESPONSIVE ADJUSTMENTS
   ====================================== */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 7rem 0 0;
  }
  
  .hero-content, .hero-image {
    padding-bottom: 6rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-wrapper {
    padding: 3rem 1.5rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-text {
    font-size: 1.125rem;
  }
  
  .features-section, .modules-section, .testimonials-section {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 6rem 0 0;
    text-align: center;
  }
  
  .hero-content, .hero-image {
    padding-bottom: 5rem;
  }
  
  .hero-section h1 {
    font-size: 2.25rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-tag {
    font-size: 0.8rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
    flex-direction: row;
    align-items: flex-start;
  }
  
  .feature-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
    margin-bottom: 0;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-card p {
    font-size: 0.95rem;
  }
  
  .module-card {
    padding: 1.75rem 1.25rem 1.75rem 2.5rem;
  }
  
  .module-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.75rem;
  }
  
  .module-content {
    padding-top: 1.25rem;
  }
  
  .module-content h4 {
    font-size: 1.1rem;
  }
  
  .module-meta {
    gap: 1rem;
  }
  
  .meta-item {
    font-size: 0.8rem;
  }
  
  .testimonial-card {
    padding: 1.75rem;
  }
  
  .testimonial-quote {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .testimonial-content p {
    font-size: 1rem;
  }
  
  .author-avatar {
    width: 3rem;
    height: 3rem;
  }
  
  .author-info h5 {
    font-size: 1rem;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .cta-text {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .site-footer {
    padding-top: 3rem;
  }
  
  .footer-title {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .social-links {
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    margin-top: 2rem;
  }
  
  .back-to-top-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-actions .btn {
    width: 100%;
    min-width: unset;
  }
  
  .stats-bar {
    margin-bottom: -25px;
  }
  
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
  
  .feature-icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.1rem;
  }
  
  .module-card {
    padding: 1.5rem 1rem 1.5rem 2rem;
  }
  
  .module-content h4 {
    font-size: 1rem;
  }
  
  .module-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .notification-container {
    max-width: calc(100% - 2rem);
    right: 1rem;
  }
}