:root {
  --primary-color: #0066cc;
  --primary-dark: #004b99;
  --primary-light: #3385d6;
  --secondary-color: #00cc66;
  --secondary-dark: #00994d;
  --accent-color: #ff6b35;
  --accent-light: #ff8c66;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-light: #999999;
  --background-primary: #ffffff;
  --background-secondary: #f8fafc;
  --background-dark: #1a1a1a;
  --border-color: #e5e5e5;
  --border-light: #f0f0f0;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition-fast: 0.15s ease-out;
  --transition-medium: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
}

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

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-primary);
  overflow-x: hidden;
}

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

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left var(--transition-medium);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-dark)
  );
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-xl {
  padding: 20px 40px;
  font-size: 1.25rem;
}

.highlight {
  background: linear-gradient(120deg, var(--accent-color), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--background-dark);
  color: white;
  padding: 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

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

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

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

.cookie-accept,
.cookie-decline {
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.cookie-decline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  transition: all var(--transition-medium);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 16px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo i {
  font-size: 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-fast);
}

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

.nav-cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white !important;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition-medium);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle-icon {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.8),
    rgba(0, 204, 102, 0.6)
  );
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-text {
  color: white;
  text-align: center;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  opacity: 0.8;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  font-size: 1.5rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.problem-solution {
  padding: 120px 0;
  background: var(--background-secondary);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.problem-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--error-color), var(--warning-color));
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--error-color), var(--warning-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.problem-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.solution-section {
  background: white;
  border-radius: var(--radius-xl);
  padding: 60px;
  box-shadow: var(--shadow-lg);
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-text h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.solution-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

.solution-features {
  list-style: none;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.solution-features i {
  color: var(--success-color);
  font-size: 1.2rem;
}

.solution-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.courses {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.course-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.course-card:hover::before {
  transform: scaleX(1);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.course-card.featured {
  border: 2px solid var(--primary-color);
  position: relative;
}

.course-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
}

.course-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.course-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.course-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.course-details {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.course-duration,
.course-level {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.course-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature {
  background: var(--background-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.courses-cta {
  background: white;
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.platform-features {
  padding: 120px 0;
  background: var(--background-primary);
}

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.feature-large {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: var(--radius-xl);
  padding: 60px;
  color: white;
  position: relative;
  overflow: hidden;
}

.feature-large::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.feature-text h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.feature-list i {
  font-size: 1.2rem;
  opacity: 0.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.platform-demo {
  text-align: center;
  background: var(--background-secondary);
  border-radius: var(--radius-xl);
  padding: 60px;
}

.demo-content h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.demo-video {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}

.demo-thumbnail {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 102, 204, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.play-button:hover {
  background: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.success-stories {
  padding: 120px 0;
  background: var(--background-secondary);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.story-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--success-color),
    var(--secondary-color)
  );
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.story-card.featured {
  grid-column: span 2;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.story-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.story-info h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.story-role,
.story-location {
  font-size: 0.9rem;
  opacity: 0.8;
}

.story-content h5 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.story-card.featured .story-content h5 {
  color: white;
}

.story-content p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.story-results {
  display: flex;
  gap: 20px;
}

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

.result-number {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  color: var(--success-color);
}

.story-card.featured .result-number {
  color: #ffd700;
}

.result-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.story-timeline {
  display: flex;
  gap: 20px;
  align-items: center;
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 10px;
  height: 2px;
  background: var(--success-color);
}

.timeline-date {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.8rem;
  opacity: 0.8;
}

.story-achievements {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.achievement i {
  color: var(--success-color);
}

.story-impact {
  display: flex;
  gap: 20px;
}

.impact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.impact-item i {
  color: var(--success-color);
}

.story-transformation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.transformation-before,
.transformation-after {
  padding: 15px;
  border-radius: var(--radius-sm);
}

.transformation-before {
  background: rgba(239, 68, 68, 0.1);
}

.transformation-after {
  background: rgba(16, 185, 129, 0.1);
}

.transformation-before h6,
.transformation-after h6 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.transformation-before ul,
.transformation-after ul {
  list-style: none;
  font-size: 0.9rem;
}

.transformation-before li,
.transformation-after li {
  margin-bottom: 4px;
}

.story-progress {
  display: flex;
  gap: 10px;
  align-items: center;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.progress-step.completed {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
}

.progress-step.current {
  background: rgba(0, 102, 204, 0.1);
  color: var(--primary-color);
}

.stories-cta {
  text-align: center;
  margin-top: 80px;
  background: white;
  padding: 60px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.stories-cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.stories-cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.mission-vision {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mission-vision-content {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.mission-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-text h2 {
  font-size: 1.2rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.mission-text h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.3;
}

.mission-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.mission-principles {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.principle {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.principle-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.principle-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.principle-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.mission-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.vision-content h2 {
  font-size: 1.2rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.vision-content h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 60px;
  line-height: 1.3;
}

.vision-goals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.goal-item {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.goal-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.goal-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.goal-text h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.goal-text p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.vision-quote {
  background: white;
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.vision-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 4rem;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
}

.vision-quote blockquote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.vision-quote cite {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: normal;
}

.team {
  padding: 120px 0;
  background: var(--background-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.team-member {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-member.featured {
  grid-column: span 2;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
}

.member-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.team-member.featured .member-avatar {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
}

.member-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.team-member.featured .member-info h3 {
  color: white;
}

.member-role {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.team-member.featured .member-role {
  color: #ffd700;
}

.member-experience {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.team-member.featured .member-experience {
  color: rgba(255, 255, 255, 0.8);
}

.member-description p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.team-member.featured .member-description p {
  color: rgba(255, 255, 255, 0.9);
}

.member-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.specialty {
  background: var(--background-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.team-member.featured .specialty {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.member-achievements {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.team-member.featured .achievement {
  color: rgba(255, 255, 255, 0.9);
}

.achievement i {
  color: var(--success-color);
}

.team-member.featured .achievement i {
  color: #ffd700;
}

.team-approach {
  background: var(--background-secondary);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
}

.approach-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.approach-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.approach-features {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.approach-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.approach-feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.testimonials {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-showcase {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 25px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.stat-content {
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--success-color),
    var(--secondary-color)
  );
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
  grid-column: span 2;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.testimonial-card.featured .testimonial-avatar {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
}

.testimonial-info h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.testimonial-card.featured .testimonial-info h4 {
  color: white;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.testimonial-card.featured .testimonial-role {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-rating {
  display: flex;
  gap: 2px;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 0.9rem;
}

.testimonial-content p {
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.testimonial-card.featured .testimonial-content p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-highlight {
  background: rgba(255, 107, 53, 0.1);
  padding: 15px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-style: italic;
}

.testimonial-card.featured .testimonial-highlight {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: #ffd700;
}

.testimonial-highlight i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.testimonial-card.featured .testimonial-highlight i {
  color: #ffd700;
}

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

.video-testimonial {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: white;
  padding: 20px;
}

.video-thumbnail {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
}

.video-play {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 204, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.video-play:hover {
  background: var(--primary-color);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.video-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.testimonials-cta {
  text-align: center;
  background: white;
  padding: 60px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.testimonials-cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.testimonials-cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.faq {
  padding: 120px 0;
  background: var(--background-primary);
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.faq-category {
  padding: 12px 24px;
  border: 2px solid var(--border-color);
  background: transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 500;
  color: var(--text-secondary);
}

.faq-category.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.faq-category:hover:not(.active) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.faq-category-content {
  display: none;
}

.faq-category-content.active {
  display: block;
}

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--background-secondary);
}

.faq-question h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.faq-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--background-secondary);
  padding: 40px;
  border-radius: var(--radius-lg);
  margin-top: 60px;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.cta-final {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

.cta-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.cta-main h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.benefit-item i {
  color: #00ff88;
  font-size: 1.1rem;
}

.cta-pricing {
  margin-bottom: 40px;
}

.pricing-highlight {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.price-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.price-old {
  font-size: 1.5rem;
  text-decoration: line-through;
  opacity: 0.7;
}

.price-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
}

.price-desc {
  font-size: 1rem;
  margin-bottom: 8px;
}

.price-saving {
  font-size: 1.1rem;
  font-weight: 600;
  color: #00ff88;
}

.cta-actions {
  text-align: center;
  margin-bottom: 30px;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.cta-guarantee i {
  color: #00ff88;
}

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

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.9);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.urgency-badge i {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.cta-testimonial {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.testimonial-quote i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 20px;
}

.testimonial-quote p {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.author-info {
  text-align: left;
}

.author-info strong {
  display: block;
  font-size: 1rem;
}

.author-info span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer {
  background: var(--background-dark);
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: white;
}

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

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

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.newsletter-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: white;
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-input {
  display: flex;
  gap: 10px;
}

.newsletter-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

.newsletter-input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.checkbox-label input {
  margin: 0;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  background: transparent;
  flex-shrink: 0;
  margin-top: 2px;
}

.newsletter-consent a {
  color: var(--primary-color);
  text-decoration: none;
}

.newsletter-consent a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.legal-links a:hover {
  color: var(--primary-color);
}

.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-copyright p {
  margin-bottom: 4px;
}

.footer-badges {
  display: flex;
  gap: 30px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.badge-item i {
  color: var(--success-color);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-medium);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.success-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform var(--transition-medium);
}

.success-notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
}

.notification-icon {
  width: 40px;
  height: 40px;
  background: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.notification-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.notification-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.notification-close {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 5px;
  transition: color var(--transition-fast);
}

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

@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .hero-stats {
    gap: 30px;
  }

  .solution-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-badges {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 30px 0;
    box-shadow: var(--shadow-lg);
    gap: 20px;
    transition: top var(--transition-medium);
  }

  .nav-menu.active .nav-list {
    top: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .nav-toggle-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .nav-toggle-icon:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .nav-toggle-icon:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .story-card.featured {
    grid-column: span 1;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-member.featured {
    grid-column: span 1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card.featured {
    grid-column: span 1;
  }

  .testimonials-stats {
    flex-direction: column;
    align-items: center;
  }

  .vision-goals {
    grid-template-columns: 1fr;
  }

  .approach-features {
    flex-direction: column;
    gap: 20px;
  }

  .faq-categories {
    flex-wrap: wrap;
    gap: 10px;
  }

  .faq-category {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .faq-contact {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-benefits {
    grid-template-columns: 1fr;
  }

  .newsletter-input {
    flex-direction: column;
  }

  .legal-links {
    flex-wrap: wrap;
    gap: 15px;
  }

  .solution-section {
    padding: 40px 30px;
  }

  .courses-cta {
    padding: 40px 30px;
  }

  .platform-demo {
    padding: 40px 30px;
  }

  .stories-cta {
    padding: 40px 30px;
  }

  .team-approach {
    padding: 40px 30px;
  }

  .testimonials-cta {
    padding: 40px 30px;
  }

  .vision-quote {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 100px 0 60px;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .course-card {
    padding: 20px;
  }

  .feature-card {
    padding: 20px;
  }

  .story-card {
    padding: 20px;
  }

  .team-member {
    padding: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .price-tag {
    flex-direction: column;
    gap: 8px;
  }

  .price-current {
    font-size: 2rem;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .success-notification {
    top: 15px;
    right: 15px;
    left: 15px;
  }

  .notification-content {
    padding: 15px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-arrow {
    animation: none;
  }

  .hero-overlay::before {
    animation: none;
  }

  .cta-final::before {
    animation: none;
  }

  .urgency-badge i {
    animation: none;
  }
}
