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

:root {
  --dark: #111827;
  --dark-light: #1f2937;
  --dark-lighter: #374151;
  --green: #059669;
  --green-hover: #047857;
  --green-light: #a7f3d0;
  --green-bg: rgba(5, 150, 105, 0.08);
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --text: #374151;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.section-padding {
  padding: 100px 0;
}

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

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
}

.text-green {
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
}

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

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

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 0;
}

.logo-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo span {
  color: var(--green);
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

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

.nav-links a.active {
  color: var(--green);
}

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600 !important;
}

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

.nav-cta:hover {
  background: var(--green-hover) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.7) 50%, rgba(5, 150, 105, 0.12) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-split {
  display: flex;
  align-items: center;
  gap: 60px;
}

.robot-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.robot-svg {
  width: 150px;
  height: auto;
}

.hero-robot {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -40px;
}

.speech-popup {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 8px 20px;
  position: relative;
  min-width: 170px;
  text-align: center;
  animation: popup-fade 6s ease-in-out infinite;
}

.speech-popup::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(255, 255, 255, 0.12);
}

.speech-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: type-loop 6s steps(15) infinite;
  vertical-align: bottom;
}

.type-cursor {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #ffffff;
  animation: cursor-blink 0.7s step-end infinite, cursor-visibility 6s step-end infinite;
}

@keyframes popup-fade {
  0%, 5% { opacity: 0; }
  10% { opacity: 1; }
  85% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

@keyframes type-loop {
  0%, 8% { width: 0; }
  42% { width: 15ch; }
  80% { width: 15ch; }
  88%, 100% { width: 0; }
}

@keyframes cursor-blink {
  50% { opacity: 0; }
}

@keyframes cursor-visibility {
  0%, 8% { opacity: 0; }
  8.01% { opacity: 1; }
  88% { opacity: 1; }
  88.01%, 100% { opacity: 0; }
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(5, 150, 105, 0.12);
  color: var(--green-light);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 32px;
  margin-left: auto;
  border: 1px solid rgba(5, 150, 105, 0.3);
  flex-wrap: wrap;
}

.hero h1 {
  font-size: 3.8rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 .highlight {
  color: var(--green);
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray-300);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 32px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-300);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-points li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--green);
  font-family: 'Poppins', sans-serif;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 0;
}

.hero-projects {
  margin-top: 50px;
  padding-top: 36px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-projects h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: 0.3s ease;
}

.project-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(5, 150, 105, 0.3);
  transform: translateY(-2px);
}

.project-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.project-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.project-card p {
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.5;
  margin: 0;
}

/* Features / Why Choose */
.features-section {
  background: var(--gray-50);
}

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

.feature-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card p {
  flex: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--green);
  transition: var(--transition);
}

.feature-card:hover::before {
  height: 100%;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--green-bg);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* Digital Marketing section */
.dm-section {
  background: var(--white);
}

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

.dm-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.dm-text p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.skills-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}

.skills-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  padding: 8px 0;
}

.skills-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.dm-image img,
.future-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

/* Courses Grid */
.courses-section {
  background: var(--gray-50);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.course-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.08);
}

.course-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.course-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.course-body p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  flex: 1;
}

.course-topics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.course-topics li {
  background: var(--gray-100);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.course-meta {
  display: flex;
  gap: 16px;
  padding: 16px 28px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.85rem;
  color: var(--gray-500);
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Benefits */
.benefits-section {
  background: var(--dark);
  color: var(--white);
}

.benefits-section .section-header h2 {
  color: var(--white);
}

.benefits-section .section-header p {
  color: var(--gray-300);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.benefit-card p {
  flex: 1;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.benefit-icon {
  margin-bottom: 16px;
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
}

.benefit-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* Pricing */
.pricing-section {
  background: var(--gray-50);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 28px rgba(5, 150, 105, 0.12);
  transform: translateY(-4px);
}

.pricing-card h3 {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.price {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-sm {
  padding: 10px 28px;
  font-size: 0.85rem;
}

/* Combo Offers */
.combo-section {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--gray-200);
}

.combo-header {
  text-align: center;
  margin-bottom: 36px;
}

.combo-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.combo-header p {
  font-size: 1rem;
  color: var(--gray-500);
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}

.combo-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.3s ease;
}

.combo-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 28px rgba(5, 150, 105, 0.1);
  transform: translateY(-3px);
}

.combo-best {
  border-color: var(--green);
  background: linear-gradient(180deg, rgba(5, 150, 105, 0.04), var(--white));
}

.best-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 20px;
}

.combo-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.combo-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 18px;
}

.combo-price span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
  font-family: 'Inter', sans-serif;
}

.combo-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.combo-features li {
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.combo-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Payment Options */
.payment-section {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.payment-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 32px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.payment-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: 0.3s ease;
}

.payment-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.payment-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}

.payment-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.payment-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

.payment-card strong {
  color: var(--green);
}

/* Who Can Join */
.who-section {
  background: var(--white);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.who-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 28px 16px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.who-item:hover {
  border-color: var(--green);
  background: var(--green-bg);
  transform: translateY(-3px);
}

.who-icon {
  margin-bottom: 10px;
}

.who-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
}

.who-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Mission Vision */
.mission-section {
  background: var(--gray-50);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: var(--white);
  padding: 48px 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
}

.mv-icon {
  margin-bottom: 20px;
}

.mv-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
}

.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.mv-card ul {
  list-style: none;
}

.mv-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.mv-card ul li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Career / Future */
.future-section {
  background: var(--white);
}

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

.future-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.future-text p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.career-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}

.career-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--gray-50);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.career-list li:hover {
  border-color: var(--green);
  background: var(--green-bg);
}

.career-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials-section {
  background: var(--gray-50);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card blockquote {
  flex: 1;
}

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

.testimonial-stars {
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-author p {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--green);
}

.faq-question {
  width: 100%;
  background: var(--gray-50);
  border: none;
  padding: 20px 28px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

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

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--gray-400);
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  stroke: var(--green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 20px;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* CTA */
.cta-section {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(5, 150, 105, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(5, 150, 105, 0.06) 0%, transparent 60%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

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

.cta-section p {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta-benefits span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
  font-size: 0.95rem;
}

.cta-benefits span::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--green-bg);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Page Header (inner pages) */
.page-header {
  padding: 160px 0 80px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.breadcrumb a {
  color: var(--green);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #0a0e17;
  color: var(--gray-400);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand h3 span {
  color: var(--green);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-contact .contact-icon {
  color: var(--green);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer-bottom span {
  color: var(--green);
}

/* Schedule / Classes Page */
.schedule-section {
  background: var(--gray-50);
}

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

.batch-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.batch-body {
  flex: 1;
}

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

.batch-header {
  padding: 24px 28px;
  background: var(--dark);
  color: var(--white);
}

.batch-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.batch-header p {
  color: var(--green-light);
  font-size: 0.85rem;
}

.batch-body {
  padding: 28px;
}

.batch-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  color: var(--gray-600);
}

.batch-detail:last-child {
  border-bottom: none;
}

.batch-detail svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.batch-price {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  margin: 16px 0;
}

.batch-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-400);
}

/* Module accordion on classes page */
.module-list {
  max-width: 800px;
  margin: 0 auto;
}

.module-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.module-header {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.module-header:hover {
  background: var(--green-bg);
}

.module-header .module-num {
  color: var(--green);
  margin-right: 12px;
}

.module-header svg {
  width: 18px;
  height: 18px;
  stroke: var(--gray-400);
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
  flex-shrink: 0;
}

.module-item.active .module-header svg {
  transform: rotate(180deg);
  stroke: var(--green);
}

.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.module-item.active .module-body {
  max-height: 300px;
}

.module-body ul {
  list-style: none;
  padding: 0 24px 18px;
}

.module-body ul li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
}

.module-body ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Instructor cards */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.instructor-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

.instructor-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.instructor-info {
  padding: 24px;
}

.instructor-info h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.instructor-info .role {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.instructor-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--gray-500);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.contact-form {
  background: var(--gray-50);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

/* About page extras */
.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-image-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.about-image-grid img:first-child {
  grid-row: span 2;
  height: 100%;
}

.about-story p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--gray-600);
}

/* Partners / Trusted by */
.partners-section {
  background: var(--gray-50);
  text-align: center;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logos span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gray-300);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Scroll Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .dm-content,
  .future-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dm-image,
  .future-image {
    order: -1;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 64px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: 0.4s ease;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
    align-items: flex-start;
  }

  .nav-links.open {
    right: 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-split {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .hero-robot {
    margin-left: 0;
  }

  .robot-svg {
    width: 110px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-points {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

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

  .hero-projects h3 {
    text-align: center;
  }

  .stat-item h3 {
    font-size: 1.5rem;
  }

  .skills-list {
    grid-template-columns: 1fr;
  }

  .career-list {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .about-image-grid {
    grid-template-columns: 1fr;
  }

  .about-image-grid img:first-child {
    grid-row: span 1;
  }

  .contact-form {
    padding: 24px;
  }

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

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-benefits {
    flex-direction: column;
    align-items: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
  .partner-logos {
    gap: 24px;
  }
}
