:root {
  --primary-blue: #0159a7;
  --secondary-blue: #5adeed;
  --gradient-main: linear-gradient(135deg, #0159a7 0%, #5adeed 100%);
  --gradient-light: linear-gradient(135deg, #f0fbff 0%, #e6f9ff 100%);
  --gradient-card: linear-gradient(
    135deg,
    rgba(1, 89, 167, 0.05) 0%,
    rgba(90, 222, 237, 0.05) 100%
  );
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --accent-orange: #f97316;
  --accent-yellow: #fbbf24;
  --success: #00c94a;
  --danger: #ef4444;
  --warning: #f59e0b;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --shadow-sm: 0 2px 8px rgba(1, 89, 167, 0.08);
  --shadow: 0 4px 20px rgba(1, 89, 167, 0.12);
  --shadow-lg: 0 10px 40px rgba(1, 89, 167, 0.15);
  --shadow-xl: 0 20px 60px rgba(1, 89, 167, 0.2);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

/* ===== RESET & BASE ===== */
* {
  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,
    sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--gray-900);
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

p {
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 900px;
  margin: 0 auto;
}

.container-xs {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
  position: relative;
}

.section-lg {
  padding: 120px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-gradient {
  background: var(--gradient-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  color: var(--primary-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  position: relative;
  display: inline-block;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-main);
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
  letter-spacing: 0.025em;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--warning) 100%
  );
  color: var(--white);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.25rem;
}

.btn-m {
    padding: 12px 28px;
    font-size: 1rem;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(1, 89, 167, 0.2);
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO SECTION ===== */
.hero {
  background: var(--gradient-light);
  padding: 50px 0 00px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%230159a7" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>');
  opacity: 0.5;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-main);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  animation: pulse 3s infinite;
}
.hero-text {
    padding-bottom: 40px;
}
.hero-text h1 {
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    var(--gray-900) 0%,
    var(--primary-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p,
.hero-text li {
  font-size: 1.25rem;
  color: var(--gray-600);
}

.hero-text ul {
  padding-left: 20px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  margin-bottom: -10px;
  margin-left: 20px;
}

.hero-mockup {
  width: 100%;
  border-radius: var(--radius-xl);
/* filter: drop-shadow(3px 10px 40px #0159a7);
animation: float 6s ease-in-out infinite; */
}

/* ===== BRAND STORY SECTION ===== */
.brand-story {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.brand-story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%230159a7" fill-opacity="0.02"><circle cx="20" cy="20" r="1"/></g></svg>');
}

.story-content {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.story-title {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}

.story-section {
  margin-bottom: 50px;
  padding: 0 20px;
}

.story-quote {
  background: var(--gradient-card);
  border-left: 5px solid var(--secondary-blue);
  padding: 24px 32px;
  margin: 30px 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gray-700);
  position: relative;
}

.story-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--secondary-blue);
  position: absolute;
  top: -10px;
  left: 10px;
  opacity: 0.3;
  font-family: serif;
}

.story-highlight {
  background: var(--gradient-main);
  color: var(--white);
  padding: 32px 40px;
  border-radius: var(--radius-xl);
  margin: 40px 0;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.story-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="15" cy="15" r="1"/></g></svg>');
}

.story-highlight h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.story-highlight p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

.story-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.story-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.story-cta {
  text-align: center;
}

.story-cta h3 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.story-cta p {
  margin-bottom: 30px;
  color: var(--gray-600);
}
/* ===== ENHANCED BRAND STORY STYLES ===== */

/* Story Grid Layout */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-grid.reverse {
  direction: rtl;
}

.story-grid.reverse > * {
  direction: ltr;
}

/* Story Images */
.story-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: translateY(-5px);
}

.image-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 30px 20px 20px;
  color: white;
}

.image-caption {
  font-size: 0.9rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Story Text Content */
.story-text-content {
  padding: 20px 0;
}


.story-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-blue),
    transparent
  );
  transform: translateY(-50%);
}

.story-divider span {
  background: var(--white);
  color: var(--secondary-blue);
  padding: 15px 25px;
  font-size: 1.5rem;
  border-radius: 50%;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Transformation Showcase */
.transformation-showcase {
  background: var(--gradient-light);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  margin: 50px 0;
  border: 2px solid rgba(1, 89, 167, 0.1);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.before, .after {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.before {
  border-left: 4px solid #ff6b6b;
}

.after {
  border-left: 4px solid #4ecdc4;
}

.ba-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: #ff6b6b;
  color: white;
  font-size: 1.5rem;
}

.ba-icon.success {
  background: #4ecdc4;
}

.arrow-transform {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--primary-blue);
  font-weight: 600;
}

.arrow-transform i {
  font-size: 2rem;
  margin-bottom: 10px;
  animation: pulse 2s infinite;
}

.arrow-transform span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.before h4, .after h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--gray-800);
}

.before ul, .after ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.before li, .after li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.before li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: bold;
}

.after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ecdc4;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .story-grid.reverse {
    direction: ltr;
  }
  
  .before-after {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .arrow-transform {
    order: 2;
    display: none;
  }
  
  .arrow-transform i {
    transform: rotate(90deg);
  }
  
  .transformation-showcase {
    padding: 30px 20px;
  }
  
  .image-container img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .story-section {
    padding: 0;
  }
  
  .transformation-showcase {
    padding: 20px 15px;
  }
  
  .before, .after {
    padding: 20px;
  }
  p {
    font-size: 1rem;
  }
}

/* ===== STATS SECTION ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
}

/* Stat Icons */
.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.3);
}

.stat-item:hover .stat-icon::before {
  opacity: 1;
}


/* ===== FEATURE CARDS ===== */
.feature-card {
  text-align: center;
  position: relative;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: var(--shadow);
  position: relative;
}

.feature-card > .feature-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  background: var(--gradient-main);
  border-radius: 50%;
  opacity: 0.2;
}

/* ===== CURRICULUM ===== */
.curriculum-item {
  display: flex;
  align-items: flex-start;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--secondary-blue);
}

.curriculum-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow);
}

.curriculum-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-right: 24px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

/* ===== BENEFITS ===== */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  border-left: 4px solid var(--secondary-blue);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateX(4px);
  background: rgba(90, 222, 237, 0.1);
}

.benefit-icon {
  color: var(--primary-blue);
  font-size: 1.5rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== TOOLS GRID ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.tool-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tool-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--gradient-main);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: var(--shadow);
}

/* ===== INSTRUCTOR ===== */
.instructor-card {
  display: flex;
  align-items: start;
  gap: 32px;
}

.instructor-avatar {
  width: 50%;
}
.instructor-avatar img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.instructor-content {
  width: 50%;
}
.instructor-content p {
  font-size: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  position: relative;
  padding: 40px 32px 32px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: var(--secondary-blue);
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 24px;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-700);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author h4 {
    margin-bottom: 0;
}

.testimonial-author p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 0;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

/* ===== TARGET AUDIENCE ===== */
.audience-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 2px solid;
}

.audience-card.positive {
  border-color: var(--success);
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.05) 0%,
    rgba(34, 197, 94, 0.02) 100%
  );
}

.audience-card.negative {
  border-color: var(--danger);
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.05) 0%,
    rgba(239, 68, 68, 0.02) 100%
  );
}

.audience-list {
  list-style: none;
  padding: 0;
  color: var(--gray-600);
  font-size: 1.125rem;
  line-height: 1.8;
}

.audience-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.audience-list i {
  margin-top: 4px;
  flex-shrink: 0;
}

/* ===== VALUE CARDS STYLES ===== */

/* Value Icon Styles */
.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.value-icon-negative {
  background: rgba(239, 68, 68, 0.2);
}

.value-icon-positive {
  background: rgba(34, 197, 94, 0.2);
}

.value-icon i {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.value-icon-negative i {
  color: #ff2222;
}

.value-icon-positive i {
  color: var(--success);
}

/* Hover effects for icons */
.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-card:hover .value-icon i {
  transform: rotate(5deg);
}

/* Value Title Styles */
.value-title {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.value-title-negative {
  color: #ff2222;
}

.value-title-positive {
  color: var(--success);
}

/* Value List Styles */
.value-list {
  list-style: none;
  padding: 0;
  color: var(--gray-600);
  text-align: left;
  font-size: 1.25rem;
}

/* Value Item Styles */
.value-item {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
}

.value-item:last-child {
  margin-bottom: 0;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 8px;
  transform: translateX(5px);
}

/* Value Item Icon Styles */
.value-item-icon {
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.value-item-icon-negative {
  color: #ff2222;
}

.value-item-icon-positive {
  color: var(--success);
}

.value-item:hover .value-item-icon {
  transform: scale(1.2);
}

/* Value Item Text */
.value-item span {
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Enhanced animations for featured card */
.value-card.featured:hover .value-icon-positive {
  background: rgba(34, 197, 94, 0.3);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.value-card:first-child:hover .value-icon-negative {
  background: rgba(239, 68, 68, 0.3);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .value-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
  }
  
  .value-icon i {
      font-size: 2rem;
  }
  
  .value-title {
      font-size: 1.3rem;
      margin-bottom: 16px;
  }
  
  .value-item {
      margin-bottom: 10px;
      gap: 10px;
  }
  
  .value-item span {
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .value-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 16px;
  }
  
  .value-icon i {
      font-size: 1.5rem;
  }
  
  .value-title {
      font-size: 1.2rem;
  }
  
  .value-item span {
      font-size: 0.85rem;
  }
}


/* ===== FAQ ===== */
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.faq-question {
  padding: 24px 28px;
  background: var(--gray-50);
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--gradient-card);
}

.faq-question i {
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-answer.active {
  padding: 24px 28px;
  max-height: 300px;
}

/* ===== URGENCY SECTION ===== */
.urgency-section {
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}

.urgency-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.3"><circle cx="30" cy="30" r="1.5"/></g></svg>');
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
  width: 80px;
  height: 80px;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 60px;
  height: 60px;
  animation-delay: 4s;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  min-width: 100px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.countdown-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.2);
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-yellow);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
  font-family: "Courier New", monospace;
}

.countdown-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-separator {
  color: var(--accent-yellow);
  font-size: 2rem;
  font-weight: 800;
  align-self: center;
  text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.value-card {
  background: var(--white);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1px solid var(--danger);
  text-align: center;
}

.value-card.featured {
  border: 2px solid var(--success);
  position: relative;
}

.value-card.featured::before {
  content: "KHUYẾN MÃI";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--success);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-breakdown {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-total {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(251, 191, 36, 0.5);
  margin-top: 32px;
}

/* ===== CTA SECTION ===== */

.cta-section .section-header {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.form-container {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 24px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
  font-family: inherit;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.form-select option {
  color: var(--gray-800);
  background: var(--white);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 70px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--gray-700);
  color: var(--gray-300);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links a {
  color: var(--secondary-blue);
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--accent-orange);
  transform: translateY(-2px);
}
.header {
  width: 100%;
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-glass);
  background-color: var(--primary-blue);
}
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo img {
  height: 80px;
}
.button--header {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.footer-content p {
    color: var(--gray-300);
}
.menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-lg {
    padding: 80px 0;
  }

  .hero {
    padding: 50px 0 0px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .instructor-card {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .curriculum-item {
    text-align: start;
    gap: 15px;
    padding: 20px;
  }

  .curriculum-number {
    margin-right: 0;
  }

  .form-container {
    padding: 32px 24px;
  }

  .countdown-timer {
    flex-wrap: wrap;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-item {
    min-width: 80px;
    padding: 16px 12px;
  }

  .countdown-separator {
    font-size: 1.5rem;
  }

  .value-cards {
    grid-template-columns: 1fr;
  }
  .story-quote {
    padding: 20px 24px;
  }

  .story-highlight {
    padding: 24px 28px;
  }
}

@media (max-width: 480px) {
  .container{
    padding: 0 15px;
  }

  .section {
    padding: 50px 0;
  }

  .card {
    padding: 24px 20px;
  }

  .btn {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .btn-lg {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .story-quote {
    padding: 16px 20px;
    font-size: 1.1rem;
  }

  .story-highlight {
    padding: 20px 24px;
  }
  .instructor-avatar,.instructor-content {
    width: 100%;
  }
  .hero-text {
    text-align: start;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.mb-0 {
  margin-bottom: 0;
}

.mt-4 {
  margin-top: 2rem;
}

.relative {
  position: relative;
}

.z-10 {
  z-index: 10;
}

.nav__toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-list li a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  transition: .3s ;
}
.menu-list li a:hover {
  color: var(--accent-yellow);
}


/* Mobile styles */
@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .menu-list {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 1rem;
    display: none;
  }

  .menu-list.active {
    display: flex;
  }

  .btn {
    width: 100%;
    margin-top: 0rem;
    text-align: center;
  }
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .header-btn {
    padding: 12px 24px;
    width: auto;
  }
}

/* ===== CTA SECTION STYLES ===== */

/* CTA Section Container */
.cta-section {
  text-align: center;
}

/* Main CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--warning) 100%);
  color: #1f2937;
  padding: 24px 48px;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
  transition: var(--transition);
  border: 3px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

/* CTA Button Hover Effects */
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(251, 191, 36, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-button:active {
  transform: translateY(-1px);
}

/* CTA Button Animation Effect */
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

/* CTA Button Icons */
.cta-button-icon {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

.cta-button-arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-button-arrow {
  transform: translateX(5px);
}

/* Pulse animation for rocket icon */
@keyframes pulse {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
}

/* CTA Features Container */
.cta-features {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Individual CTA Feature */
.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: var(--radius-md);
}

.cta-feature:hover {
  transform: translateY(-2px);
}

/* CTA Feature Icon */
.cta-feature-icon {
  color: #3cff84;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* CTA Feature Text */
.cta-feature-text {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-button {
      padding: 20px 36px;
      font-size: 1.1rem;
      gap: 10px;
  }
  
  .cta-button-icon {
      font-size: 1.3rem;
  }
  
  .cta-features {
      gap: 16px;
      margin-top: 20px;
  }
  
  .cta-feature {
      gap: 6px;
      padding: 6px 10px;
  }
  
  .cta-feature-text {
      font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .cta-button {
      padding: 18px 32px;
      font-size: 1rem;
      border-radius: 40px;
  }
  
  .cta-features {
      flex-direction: column;
      gap: 12px;
      margin-top: 16px;
  }
  
  .cta-feature {
      justify-content: center;
      width: 100%;
      max-width: 250px;
  }
  .stats-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin-top: 20px;
  }
  .stat-number {
      font-size: 2rem;
  }
}

/* Additional Enhancement: Breathing effect for urgent CTA */
@keyframes breathe {
  0%, 100% {
      box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
  }
  50% {
      box-shadow: 0 15px 50px rgba(251, 191, 36, 0.5);
  }
}

.cta-button {
  animation: breathe 3s ease-in-out infinite;
}

.cta-button:hover {
  animation: none;
}

/* Loading state (optional) */
.cta-button.loading {
  pointer-events: none;
  opacity: 0.8;
}

.cta-button.loading .cta-button-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}
