/* ===================================
   SPARSECANOPY - TECH FUTURISTIC DESIGN
   CSS Reset & Base Styles
   =================================== */

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

:root {
  --primary: #1B4332;
  --secondary: #2D6A4F;
  --accent: #95D5B2;
  --dark: #0a1f1a;
  --light: #f0f8f5;
  --white: #ffffff;
  --gray: #6c757d;
  --gradient-primary: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
  --gradient-accent: linear-gradient(135deg, #2D6A4F 0%, #95D5B2 100%);
  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.1);
  --shadow-md: 0 4px 16px rgba(27, 67, 50, 0.15);
  --shadow-lg: 0 8px 32px rgba(27, 67, 50, 0.2);
  --neon-glow: 0 0 20px rgba(149, 213, 178, 0.6);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--primary);
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: var(--secondary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================
   MOBILE MENU TOGGLE BUTTON
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: var(--neon-glow);
}

/* ===================================
   MOBILE MENU OVERLAY
   =================================== */

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--gradient-primary);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: var(--white);
  color: var(--primary);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  padding-left: 10px;
  color: var(--accent);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: var(--gradient-primary);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
  filter: invert(1);
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--accent);
}

.cta-button {
  background: var(--accent);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--accent);
}

.cta-button:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--neon-glow);
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero, .error-hero, .page-header, .thank-you-hero {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before, .error-hero::before, .page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(149, 213, 178, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content, .error-content, .thank-you-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1, .error-content h1, .thank-you-content h1 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.error-content h1 {
  font-size: 120px;
  margin-bottom: 16px;
}

.hero-subtitle, .page-subtitle, .subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: var(--accent);
  font-weight: 300;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 18px;
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-primary, .cta-secondary {
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.cta-primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.cta-primary:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--neon-glow);
}

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

.cta-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.trust-indicator, .trust-element, .trust-badge {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 16px;
}

/* ===================================
   SECTIONS
   =================================== */

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.value-proposition,
.services-preview,
.how-it-works,
.stats-banner,
.platform-features,
.main-benefits,
.learning-benefits,
.financial-benefits,
.stats-overview,
.mission-section,
.values-section,
.story-section,
.approach-section,
.contact-options,
.contact-info,
.location-section,
.trust-elements,
.next-steps,
.while-waiting,
.social-proof,
.navigation-links {
  padding: 60px 20px;
}

.value-proposition {
  background: var(--light);
}

.services-preview,
.platform-features,
.learning-benefits {
  background: var(--white);
}

.how-it-works,
.main-benefits {
  background: var(--light);
}

.stats-banner,
.financial-benefits {
  background: var(--gradient-primary);
  color: var(--white);
}

.stats-banner h3,
.financial-benefits h3 {
  color: var(--white);
}

.stats-banner p,
.financial-benefits p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonials {
  padding: 60px 20px;
  background: var(--light);
}

.cta-section {
  padding: 80px 20px;
  background: var(--gradient-accent);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================
   CARD LAYOUTS (FLEXBOX ONLY)
   =================================== */

.benefits-grid,
.services-grid,
.steps-grid,
.testimonial-grid,
.stats-grid,
.courses-grid,
.features-grid,
.values-grid,
.options-grid,
.info-grid,
.trust-grid,
.actions-grid,
.links-grid,
.link-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.benefit-card,
.service-card,
.step,
.testimonial-card,
.stat,
.course-card,
.feature-item,
.value-card,
.option-card,
.info-item,
.trust-item,
.action-card,
.link-card,
.stat-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.course-card:hover,
.value-card:hover,
.option-card:hover,
.action-card:hover,
.link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-card h3,
.service-card h3,
.step h3,
.course-card h3,
.feature-item h3,
.value-card h3,
.option-card h3,
.action-card h3,
.link-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.benefit-card p,
.service-card p,
.step p,
.course-card p,
.feature-item p,
.value-card p,
.option-card p,
.info-item p,
.action-card p,
.link-card p {
  color: var(--dark);
  line-height: 1.6;
}

/* ===================================
   SERVICE & COURSE CARDS
   =================================== */

.service-card,
.course-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price,
.course-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary);
  margin: 16px 0;
}

.service-link,
.course-cta,
.link-button,
.action-link {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
  border: 2px solid var(--primary);
}

.service-link:hover,
.course-cta:hover,
.link-button:hover,
.action-link:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.course-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  border-left: 4px solid var(--accent);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 16px;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary);
  font-style: normal;
  font-size: 14px;
}

.testimonial-author strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
}

/* ===================================
   STATS
   =================================== */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  align-items: center;
}

.stat,
.stat-card {
  text-align: center;
  flex: 1 1 200px;
  padding: 24px;
}

.stat h3,
.stat-card h3 {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat p,
.stat-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.stats-overview {
  background: var(--light);
  padding: 60px 20px;
}

.stats-overview .stat-card {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
}

.stats-overview .stat-card h3 {
  color: var(--primary);
}

.stats-overview .stat-card p {
  color: var(--dark);
}

/* ===================================
   TIMELINE
   =================================== */

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.timeline-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent);
  margin-bottom: 20px;
}

.timeline-item h4 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--dark);
}

/* ===================================
   APPROACH GRID
   =================================== */

.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.approach-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.approach-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* ===================================
   CASE STUDIES
   =================================== */

.case-study {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  border-left: 4px solid var(--secondary);
}

.case-study h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.case-study p {
  margin-bottom: 12px;
}

.case-study p strong {
  color: var(--secondary);
  display: block;
  margin-bottom: 4px;
}

/* ===================================
   RATINGS
   =================================== */

.rating-summary {
  text-align: center;
  margin-bottom: 32px;
}

.overall-rating {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.rating-bars {
  max-width: 600px;
  margin: 0 auto;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
}

.rating-bar span {
  flex-shrink: 0;
  min-width: 80px;
  font-weight: 600;
}

.rating-bar span:last-child {
  min-width: 50px;
  text-align: right;
}

.bar {
  flex: 1;
  height: 24px;
  background: var(--light);
  border-radius: 12px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: var(--gradient-accent);
  transition: width 1s ease;
}

.fill[data-width="78%"] { width: 78%; }
.fill[data-width="17%"] { width: 17%; }
.fill[data-width="4%"] { width: 4%; }

/* ===================================
   ROI HIGHLIGHT
   =================================== */

.roi-highlight {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 32px;
}

.roi-highlight h3 {
  color: var(--accent);
  font-size: 32px;
  margin-bottom: 16px;
}

.roi-highlight p {
  color: rgba(255, 255, 255, 0.9);
}

.benefit-list {
  max-width: 600px;
  margin: 0 auto;
}

.benefit-list ul {
  list-style: none;
  text-align: left;
}

.benefit-list li {
  padding: 12px 12px 12px 40px;
  position: relative;
  margin-bottom: 12px;
}

.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 20px;
}

/* ===================================
   GUARANTEE
   =================================== */

.guarantee-section {
  padding: 60px 20px;
  background: var(--light);
  text-align: center;
}

.guarantee-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-content {
  padding: 60px 20px;
  background: var(--white);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.content-wrapper p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ===================================
   ERROR PAGE
   =================================== */

.popular-links {
  padding: 60px 20px;
  background: var(--light);
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 24px;
}

.stat-item {
  flex: 1 1 200px;
  text-align: center;
}

.highlight {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.nav-link {
  display: block;
  background: var(--white);
  color: var(--primary);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
}

.nav-link:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===================================
   FORM NOTES
   =================================== */

.form-note {
  background: var(--light);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 4px solid var(--accent);
}

.form-note p {
  margin-bottom: 8px;
}

.form-note strong {
  color: var(--primary);
}

.location-details {
  background: var(--light);
  padding: 24px;
  border-radius: 8px;
  margin-top: 24px;
}

.location-details p {
  margin-bottom: 12px;
}

.location-details strong {
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 24px;
  z-index: 998;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin-bottom: 0;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-accept {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.cookie-accept:hover {
  background: var(--white);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-settings:hover {
  border-color: var(--white);
}

/* ===================================
   COOKIE MODAL
   =================================== */

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--primary);
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light);
}

.cookie-category:last-child {
  border-bottom: none;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.category-header h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 24px;
  background: var(--gray);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--secondary);
}

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(26px);
}

.modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.modal-save {
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-save:hover {
  background: var(--secondary);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .course-card,
  .value-card,
  .option-card,
  .action-card,
  .link-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .timeline-item {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .nav-menu,
  header .cta-button {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .error-content h1 {
    font-size: 80px;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .course-card,
  .value-card,
  .option-card,
  .action-card,
  .link-card,
  .testimonial-card,
  .timeline-item,
  .approach-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Hero */
  .hero-cta {
    flex-direction: column;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  /* Sections */
  .section {
    padding: 30px 15px;
  }
  
  .value-proposition,
  .services-preview,
  .how-it-works,
  .platform-features,
  .main-benefits,
  .learning-benefits,
  .contact-options {
    padding: 40px 15px;
  }
  
  /* Stats */
  .stat h3,
  .stat-card h3 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .error-content h1 {
    font-size: 60px;
  }
  
  .hero-subtitle,
  .page-subtitle {
    font-size: 16px;
  }
  
  .cta-primary,
  .cta-secondary {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .benefit-card,
  .service-card,
  .course-card,
  .testimonial-card {
    padding: 24px;
  }
  
  .modal-content {
    padding: 24px;
  }
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.service-card,
.course-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

/* Stagger animation */
.benefit-card:nth-child(1),
.service-card:nth-child(1),
.course-card:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-card:nth-child(2),
.service-card:nth-child(2),
.course-card:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-card:nth-child(3),
.service-card:nth-child(3),
.course-card:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-card:nth-child(4),
.service-card:nth-child(4),
.course-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-section {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-0 { padding: 0; }
.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ===================================
   ACCESSIBILITY
   =================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===================================
   END OF STYLES
   =================================== */