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

:root {
  --blue: #26314c;
  --blue-light: #3a4b75;
  --blue-dark: #232d46;
  --yellow: #ffce00;
  --yellow-light: #fff8cc;
  --red: #dd0000;
  --black: #000000;
  --green: #10b981;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #26314c;
  --gray-800: #26314c;
  --font-main: 'Be Vietnam Pro', sans-serif;
  --font-heading: 'Nunito', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: #26314c;
  background: #fff;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  color: #fff;
  font-size: 16px;
  letter-spacing: -1px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  color: var(--blue-dark);
  letter-spacing: -0.5px;
}

.nav-logo-sub {
  font-size: 11px;
  color: var(--gray-600);
  font-weight: 500;
  margin-top: -2px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
  cursor: pointer;
  display: block;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: #eff6ff;
}

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.5);
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  z-index: 1000;
  background: #fff;
  padding: 80px 24px 40px;
  box-shadow: var(--shadow-lg);
  transition: right .3s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-panel.open {
  right: 0;
}

.mobile-nav-panel a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--gray-800);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s;
}

.mobile-nav-panel a:hover {
  background: #eff6ff;
  color: var(--blue);
}

.mobile-nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  border-radius: 30px !important;
  text-align: center;
  margin-top: 12px;
}

/* ===== PAGE ===== */
.page {
  animation: pageIn .4s ease both;
  flex: 1 0 auto;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pt-nav {
  padding-top: 64px;
}

/* ===== COMMON ===== */
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.3);
  transition: all .2s;
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 11px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn-yellow {
  background: var(--yellow);
  color: #78350f;
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 15px;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  transition: all .2s;
  display: inline-block;
}

.btn-yellow:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

section {
  padding: 72px 5%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--yellow-light);
  color: #92400e;
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(22px, 4vw, 40px);
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title span {
  color: var(--blue);
}

.section-sub {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}

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

.section-header .section-sub {
  max-width: 600px;
  margin: 0 auto;
}

.feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

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

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li strong {
  color: var(--gray-800);
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-800);
  color: #ffffff;
  border-radius: 40px;
  padding: 6px 16px 6px 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.3px;
}

.hero-badge-icon {
  background: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-hero {
  background: linear-gradient(160deg, #eff6ff 0%, #f0f9ff 50%, #fff 100%);
  padding: 40px 5% 20px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.breadcrumb span {
  cursor: pointer;
  color: var(--blue);
}

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

.tag {
  background: #eff6ff;
  color: var(--blue);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-100);
  transition: transform .2s, box-shadow .2s;
}

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

/* ===== NEW HERO ===== */
.hero-new {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-new-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-flag-bar {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 40px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.hero-flag-bar .flag-black { flex: 1; background: var(--black); }
.hero-flag-bar .flag-red { flex: 1; background: var(--red); }
.hero-flag-bar .flag-yellow { flex: 1; background: var(--yellow); }

.hero-new-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 100px; /* chừa khoảng cách cho cột cờ */
  padding-right: 40px;
  transform: translateY(-70px); /* Kéo nội dung lên trên một chút */
}

.hero-new-left {
  flex: 0 0 40%;
  max-width: 450px;
}

.hero-logo-large {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
}
.hero-brand {
  font-size: clamp(50px, 8vw, 90px);
  color: #1e293b;
  letter-spacing: -2px;
}
.hero-brand-sub {
  font-size: clamp(20px, 3vw, 36px);
  color: (--gray-600);
  font-weight: 700;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 30px;
}

.hero-circles {
  display: flex;
  gap: 16px;
}
.hero-circles span {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hero-new-right {
  flex: 0 0 60%;
  position: relative;
  min-height: 700px;
}

.hero-globe-img {
  position: absolute;
  top: -40px;
  width: 600px;
  mix-blend-mode: multiply;
  opacity: 0.9;
  left: -15%;
}

.hero-portrait {
  position: absolute;
  bottom: -80px;
  right: -40px;
  height: 700px;
  object-fit: contain;
  z-index: 3;
}

.hero-badge-float {
  position: absolute;
  top: 40%;
  right: 230px;
  background: #fff;
  padding: 12px 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  z-index: 2;
}
.hero-badge-float strong {
  font-size: 18px;
  color: #0f172a;
  font-weight: 800;
}
.hero-badge-float span {
  font-size: 13px;
  color: #64748b;
}

.hero-card-float {
  position: absolute;
  bottom: 60px;
  right: 310px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  width: 450px;
  z-index: 2;
}
.hero-card-float p {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 24px;
}
.hero-card-float .btn-more {
  background: #f1f5f9;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  transition: all 0.2s;
}
.hero-card-float .btn-more:hover {
  background: #e2e8f0;
}

.float-badge {
  position: absolute;
  border-radius: var(--radius);
  padding: 9px 14px;
  font-weight: 800;
  font-size: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.float-de {
  top: -18px;
  right: -18px;
  background: var(--yellow);
  color: #78350f;
}

.float-stars {
  bottom: -16px;
  left: 16px;
  background: #fff;
  color: var(--gray-800);
  font-size: 13px;
}

.stars {
  color: #f59e0b;
}

/* COURSES GRID */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.course-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  padding: 32px 14px;
  text-align: center;
  transition: all .25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.cc-level {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 30px;
  color: var(--blue);
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
  transition: color .25s;
}

.cc-name {
  font-weight: 700;
  font-size: 13px;
  position: relative;
  z-index: 1;
  transition: color .25s;
}

.cc-desc {
  font-size: 11px;
  color: var(--gray-600);
  margin-top: 4px;
  position: relative;
  z-index: 1;
  transition: color .25s;
}

.course-card.featured {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.course-card.featured .cc-level,
.course-card.featured .cc-name,
.course-card.featured .cc-desc {
  color: #fff !important;
}

/* WHY / TESTI */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-100);
  transition: transform .2s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #bfdbfe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.why-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--blue-dark);
  margin-bottom: 7px;
}

.why-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
}

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

.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-100);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.testi-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 10px;
}

.testi-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
}

.tav-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-dark);
}

.tav-info {
  font-size: 12px;
  color: var(--gray-600);
}

.av1 {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.av2 {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.av3 {
  background: linear-gradient(135deg, #34d399, #10b981);
}

.av4 {
  background: linear-gradient(135deg, #f472b6, #ec4899);
}

.av5 {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.av6 {
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
}

/* ===== COURSES PAGE ===== */
.cdc {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-100);
  margin-bottom: 28px;
  transition: transform .2s;
}

.cdc:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.cdc-header {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.cdc-badge {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 36px;
  color: #fff;
  width: 88px;
  height: 88px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cdc-body {
  padding: 0 32px 28px;
}

.cdc-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.meta-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-50);
  padding: 5px 12px;
  border-radius: 8px;
}

.cdc-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 18px;
}

.cdc-list {
  list-style: none;
  margin-bottom: 18px;
}

.cdc-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gray-600);
  padding: 5px 0;
  line-height: 1.6;
}

.cdc-list li::before {
  content: '•';
  color: var(--blue);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.cdc-goal {
  background: #f0f9ff;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}

.cdc-goal-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.cdc-goal li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 3px 0;
}

.price-badge {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  color: var(--blue);
  background: #eff6ff;
  padding: 7px 18px;
  border-radius: 12px;
}

.price-badge small {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  display: block;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-q {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-800);
}

.faq-q:hover {
  color: var(--blue);
}

.faq-a {
  padding: 0 0 16px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  display: none;
}

.faq-a.open {
  display: block;
}

.faq-arrow {
  transition: transform .3s;
  font-size: 18px;
  color: var(--blue);
}

.faq-arrow.open {
  transform: rotate(180deg);
}

/* ===== GERMANY PAGE ===== */
.reason-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-100);
  transition: transform .2s;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.reason-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 42px;
  color: #26314c;
  line-height: 1;
  margin-bottom: 10px;
}

.reason-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.reason-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
}

.path-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.path-header {
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.path-body {
  padding: 28px 32px;
  background: #fff;
}

.path-icon {
  font-size: 42px;
}

.path-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  margin-bottom: 6px;
}

.path-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
}

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}

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

.team-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 26px;
  color: #fff;
}

.team-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.team-bio {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

.team-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.team-tag {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

/* ===== REGISTER ===== */
.register-hero {
  background: linear-gradient(160deg, var(--blue-dark), var(--blue));
  padding: 100px 5% 64px;
  text-align: center;
}

.register-hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 46px);
  color: #fff;
  margin-bottom: 14px;
}

.register-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.reg-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.reg-option {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}

.reg-option:hover,
.reg-option.selected {
  border-color: var(--blue);
  background: #eff6ff;
}

.reg-option-icon {
  font-size: 34px;
  margin-bottom: 10px;
}

.reg-option-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--blue-dark);
  margin-bottom: 5px;
}

.reg-option-desc {
  font-size: 13px;
  color: var(--gray-600);
}

.form-section {
  background: var(--gray-50);
  padding: 60px 5%;
}

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  margin: 0 auto;
}

.form-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  background: #fff;
  color: var(--gray-800);
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 17px;
  transition: all .2s;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1.5px solid var(--gray-100);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.contact-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  color: var(--blue-dark);
  margin-bottom: 7px;
}

.contact-val {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.7;
}

.contact-val a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

/* ===== RECRUITMENT ===== */
.recruit-benefit {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--gray-100);
}

.recruit-benefit-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.recruit-benefit-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--blue-dark);
  margin-bottom: 7px;
}

.recruit-benefit-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ===== FOOTER ===== */
footer {
  background: var(--gray-800);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 5% 28px;
}

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

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  margin-bottom: 4px;
}

.footer-brand-slogan {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-bottom: 14px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  margin-bottom: 14px;
}

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

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
  cursor: pointer;
}

.footer-col ul li a:hover {
  color: var(--yellow);
}

.footer-hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 22px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15); 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background .2s;
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== MODALS ===== */
.success-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.success-modal.open {
  display: flex;
}

.success-box {
  background: #fff;
  border-radius: 24px;
  padding: 50px 42px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.success-icon {
  font-size: 58px;
  margin-bottom: 16px;
}

.success-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.success-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 26px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .hero-new-inner {
    flex-direction: column;
    padding: 0 5%;
  }
  .hero-new-left {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .hero-new-right {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .hero-portrait {
    position: relative;
    height: 380px;
    right: auto;
    bottom: auto;
    z-index: 3;
    margin-bottom: -40px;
  }
  .hero-card-float {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0;
    padding-top: 60px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    z-index: 2;
  }
  .hero-badge-float {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    z-index: 4;
    margin-bottom: -30px;
    align-self: flex-start;
    margin-left: 10px;
  }
  .hero-globe-img {
    width: 280px;
    left: -20px;
    top: -20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .cdc-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .path-header {
    flex-direction: column;
  }

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