:root {
  --red: #E8192C;
  --red-dark: #BD1E2C;
  --red-light: #FDEAEC;
  --navy: #4A0E16;          /* Đỏ tối ấm — footer, mockup-nav (sáng hơn #1C0A0D) */
  --navy-mid: #6B1520;      /* Đỏ tối trung — hover state */
  --blue: #BD1E2C;          /* Alias = red-dark — dùng cho IELTS (cùng màu logo) */
  --blue-mid: #9B1824;      /* Hover IELTS */
  --blue-light: #FDEAEC;    /* Nền nhạt IELTS = red-light */
  --gold: #FFF0D6;          /* Highlight kem ấm — dùng trên nền đỏ/tối */
  --gold-accent: #A0522D;   /* Accent nâu đỏ ấm — dùng trên nền sáng */
  --gold-light: #FDF0E8;    /* Nền nhạt ấm */
  --cream: #faf8f4;
  --warm-gray: #f0ede6;
  --border: #e5e0d6;
  --border-dark: #c8c0b0;
  --text: #1a1410;
  --text-mid: #4a4035;
  --text-muted: #7a7060;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow: 0 2px 16px rgba(28, 10, 13, 0.08);
  --shadow-lg: 0 8px 40px rgba(28, 10, 13, 0.12);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  min-width: 320px;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Lora", serif;
  line-height: 1.15;
}
h1 {
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -1.5px;
}
h2 {
  font-size: 33px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 19px;
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
.red {
  color: var(--red);
}
.gold {
  color: var(--gold-accent);
}
.muted {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.section-label {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.section-label.blue {
  color: var(--blue);
}
.section-label.gold {
  color: var(--gold-accent);
}
.divider {
  height: 1px;
  background: var(--border);
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.grid4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}
/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(189, 30, 44, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-dark);
}
.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn-white {
  background: #fff;
  color: var(--red);
  font-weight: 700;
}
.btn-white:hover {
  background: #FAEAEB;
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(189,30,44,0.3);
}
.btn-lg {
  padding: 14px 30px;
  font-size: 15px;
  border-radius: 10px;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 7px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}
/* BADGES */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-red {
  background: var(--red-light);
  color: var(--red);
}
.badge-blue {
  background: var(--blue-light);
  color: var(--blue);
}
.badge-gold {
  background: var(--gold-light);
  color: var(--red-dark);
}
.badge-dark {
  background: var(--navy);
  color: #fff;
}
.badge-gray {
  background: var(--warm-gray);
  color: var(--text-muted);
}
/* CARDS */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.card-flat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-cream {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-navy {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
}
/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(16px, 4vw, 60px);
  height: 68px;
  box-shadow: 0 1px 12px rgba(28, 10, 13, 0.06);
}
.nav-logo {
  font-family: "Lora", serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.logo-red {
  color: var(--red);
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 7px;
  transition: all 0.2s;
  cursor: pointer;
}
.nav-link:hover,
.nav-link.active {
  color: var(--red);
  background: var(--red-light);
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  cursor: pointer;
}
.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.nav.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
/* MOCKUP PAGE NAV */
.mockup-nav {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 0 60px;
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.mnav-item {
  padding: 11px 18px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.mnav-item:hover {
  color: var(--red);
  background: var(--red-light);
}
.mnav-item.active {
  color: var(--red);
  border-bottom-color: var(--red);
  background: var(--red-light);
}
/* STICKY BAR */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #fff;
  border-top: 2px solid var(--border);
  color: var(--text);
  padding: 14px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(28, 10, 13, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s;
}
.sticky-bar.show {
  transform: translateY(0);
}
/* ZALO FLOAT */
.zalo-float {
  position: fixed;
  bottom: 80px;
  right: 28px;
  z-index: 299;
  width: 56px;
  height: 56px;
  background: #0068ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 104, 255, 0.4);
  cursor: pointer;
  transition: transform 0.2s;
}
.zalo-float:hover {
  transform: scale(1.1);
}
.zalo-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
html.nav-open,
body.nav-open {
  overflow: hidden;
}
.nav-open .zalo-float,
.nav-open .sticky-bar {
  display: none !important;
}
/* PAGE */
.page {
  display: none;
}
.page.active {
  display: block;
}
/* body_class() includes "page" on static Pages — override so the SPA .page rule does not hide the whole site */
body.page {
  display: block !important;
}
/* HERO — Split layout: trái trắng, phải đỏ */
.hero {
  background: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.hero::before {
  display: none;
}
/* Cột trái — nền trắng */
.hero-left {
  padding: 72px 56px 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
/* Cột phải — nền đỏ tươi */
.hero-right {
  background: var(--red);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 40px 40px;
}
.hero-right::before {
  content: "SAT";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Lora", serif;
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
/* Badge #1 góc trên phải */
.hero-badge-top {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}
/* Floating student cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 2;
}
.hero-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateX(40px);
}
.hero-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red-light);
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.hero-card-sub {
  font-size: 12px;
  color: var(--text-muted);
}
.hero-card-score {
  margin-left: auto;
  font-family: "Lora", serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  flex-shrink: 0;
}
@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
/* Vertical Scrolling Marquee for Hero Cards */
.hero-cards-marquee {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  right: 20px;
  max-width: 340px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 2;
  padding: 40px 0;
  /* Premium vertical fadeout mask at boundaries */
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}
.hero-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scrollVerticalMarquee 35s linear infinite;
  padding: 20px 10px;
}
.hero-cards-marquee:hover .hero-marquee-track {
  animation-play-state: paused;
}
.hero-marquee-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}
/* Phá cách: tạo độ nghiêng so le zig-zag nhẹ nhàng cho các card */
.hero-marquee-card:nth-child(odd) {
  transform: rotate(-1.5deg) translateX(-6px);
}
.hero-marquee-card:nth-child(even) {
  transform: rotate(1.5deg) translateX(6px);
}
/* Khi hover: làm thẳng lại, phóng to nhẹ nhàng tạo chiều sâu */
.hero-marquee-card:hover {
  transform: scale(1.06) rotate(0deg) translateX(0) translateY(-2px) !important;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  z-index: 10;
}
.hero-marquee-card .hero-card-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(232, 25, 44, 0.15);
}
.hero-marquee-card .hero-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.hero-marquee-card .hero-card-sub {
  font-size: 11px;
  color: var(--text-muted);
}
.hero-marquee-card .hero-card-score {
  margin-left: auto;
  font-family: "Lora", serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--red);
  flex-shrink: 0;
}

@keyframes scrollVerticalMarquee {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
/* Override hero text colors — trên nền trắng */
.hero-left .hero-eyebrow {
  background: var(--red-light);
  border: 1px solid rgba(189,30,44,0.2);
  color: var(--red);
}
.hero-left .hero-eyebrow .dot {
  background: var(--red);
}
.hero-left h1 {
  color: var(--text);
}
.hero-left h1 .hero-highlight {
  color: var(--red);
}
.hero-left p {
  color: var(--text-mid);
}
.hero-left .hero-stats {
  border-top: 1px solid var(--border);
}
.hero-left .stat-num {
  color: var(--red);
}
.hero-left .stat-label {
  color: var(--text-muted);
}
.hero-left .google-rating {
  background: var(--cream);
  border: 1px solid var(--border);
}
.hero-left .stars {
  color: #f59e0b;
}
/* Responsive hero */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 48px 24px 40px;
  }
  .hero-right {
    min-height: 320px;
    padding: 24px 20px 32px;
  }
  .hero-right::before {
    font-size: 120px;
  }
  .hero-cards {
    max-width: 100%;
  }
  .hero-card:nth-child(2),
  .hero-card:nth-child(3) {
    margin-left: 0;
  }
}
.hero-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  max-width: 100%;
  flex-wrap: wrap;
  white-space: normal;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
.stat-num {
  font-family: "Lora", serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  line-height: 1.4;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.google-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 14px;
}
.stars {
  color: #fbbc04;
  font-size: 16px;
  letter-spacing: -1px;
}
/* STRIPS */
.school-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 16px 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.strip-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-right: 8px;
}
.school-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 5px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
}
.social-proof-bar {
  background: var(--warm-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.sp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.sp-num {
  font-family: "Lora", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
}
/* TRACK CARDS */
.track-card {
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.track-sat {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
}
.track-ielts {
  background: #fff;
  border: 2px solid var(--border);
}
.track-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}
.track-sat .track-tag {
  background: rgba(189, 30, 44, 0.25);
  color: #ffb3b9;
}
.track-ielts .track-tag {
  background: var(--blue-light);
  color: var(--blue);
}
.track-clist {
  list-style: none;
  margin: 16px 0 24px;
}
.track-clist li {
  font-size: 14px;
  padding: 5px 0 5px 20px;
  position: relative;
  opacity: 0.85;
}
.track-clist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.track-ielts .track-clist li::before {
  color: var(--blue);
}
/* WHY CARDS */
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.2s;
}
.why-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 24px rgba(189, 30, 44, 0.08);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: var(--red-light);
}
/* GUARANTEE */
.guarantee-section {
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}
/* TESTIMONIALS */
.testi-big {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.testi-big::before {
  content: "\201C";
  font-family: "Lora", serif;
  font-size: 120px;
  color: rgba(189, 30, 44, 0.2);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}
.testi-score {
  font-family: "Lora", serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin: 20px 0 12px;
}
.testi-journey {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 8px 14px;
  margin: 10px 0;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.testi-small {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: box-shadow 0.2s;
}
.testi-small:hover {
  box-shadow: var(--shadow);
}
.testi-small-score {
  font-family: "Lora", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.avatar-sm {
  width: 34px;
  height: 34px;
  font-size: 11px;
}
.avatar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar-name {
  font-size: 14px;
  font-weight: 600;
}
.avatar-sub {
  font-size: 12px;
  color: var(--text-muted);
}
.score-chip {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.univ-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--warm-gray);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  margin: 3px;
}
/* COMPARE TABLE */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th {
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  text-align: left;
}
.compare-table th.hi {
  background: var(--red-light);
  color: var(--red);
}
.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.compare-table td:first-child {
  font-weight: 700;
  color: var(--red);
}
.compare-table td.hi {
  background: #fffafa;
  font-weight: 700;
  color: var(--red);
}
/* TEACHER */
.teacher-section {
  background: #fff;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.teacher-photo-frame {
  border-radius: var(--radius-xl);
  background: var(--cream);
  border: 1px solid var(--border);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
}
.teacher-quote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  font-family: "Lora", serif;
  font-size: 20px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.5;
}
.eatr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.eatr-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.eatr-icon {
  font-size: 18px;
}
.eatr-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.eatr-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
/* PARENT */
.parent-worry {
  background: #fff;
  border: 1px solid #e8a0a7;
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.parent-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.parent-a {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
}
/* COURSES */
.check-list {
  list-style: none;
  margin: 14px 0;
}
.check-list li {
  font-size: 13.5px;
  color: var(--text-mid);
  padding: 4px 0 4px 22px;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.course-price {
  font-family: "Lora", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  margin: 10px 0 4px;
}
/* STEPS */
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.step-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.step-row:last-child {
  border-bottom: none;
}
/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-q {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-a {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
/* IELTS LEVELS */
.level-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  background: #fff;
  transition: all 0.25s;
  text-align: center;
}
.level-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.level-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 4px 24px rgba(189, 30, 44, 0.15);
}
.level-num {
  font-family: "Lora", serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  margin: 12px 0 8px;
}
/* RESOURCES & BLOG */
.resource-card,
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: all 0.2s;
}
.resource-card:hover,
.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.resource-img,
.blog-img {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.resource-img {
  height: 88px;
  font-size: 36px;
}
.blog-img {
  height: 110px;
  font-size: 40px;
}
.resource-body,
.blog-body {
  padding: 18px;
}
.tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag-sat {
  background: var(--red-light);
  color: var(--red);
}
.tag-ielts {
  background: var(--blue-light);
  color: var(--blue);
}
.tag-free {
  background: #e8f5e9;
  color: #1b5e20;
}
.tag-du-hoc {
  background: var(--gold-light);
  color: var(--red-dark);
}
.tag-hv {
  background: #f3e8ff;
  color: #6b21a8;
}
/* TABS */
.tab-row {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
}
.tab {
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.tab:hover {
  color: var(--red);
}
.tab.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
/* FORM */
.form-group {
  margin-bottom: 18px;
}
.form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-textarea {
  resize: vertical;
  min-height: 90px;
}
/* URGENCY */
.urgency-chip {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
  display: inline-block;
}
/* CTA BAND */
.cta-band {
  background: var(--red);
  padding: 72px 60px;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  font-size: 16px;
}
/* SECTIONS */
.section {
  padding: 72px 60px;
}
.section.alt {
  background: var(--cream);
}
/* BAR CHART */
.bar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 150px;
  padding: 0 4px;
  margin-top: 16px;
}
.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}
.bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  min-height: 8px;
}
.bar-lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: center;
}
.bar-pct {
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
/* FOOTER */
.footer {
  background: var(--cream);
  border-top: 2px solid var(--border);
  color: var(--text);
  padding: 64px 60px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: "Lora", serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  display: block;
  margin-bottom: 14px;
}
.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-link {
  display: block;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--red);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}
/* INFO ROWS */
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child {
  border-bottom: none;
}
.info-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
/* JOURNEY BREADCRUMB */
.journey-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.journey-bar span {
  color: var(--red);
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  .nav {
    height: auto !important;
    padding-block: 10px !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
  }
  .nav.is-open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 100vh !important;
    overflow: auto !important;
    align-items: flex-start !important;
    align-content: flex-start !important;
    background: #fff !important;
  }
  .nav-logo {
    order: 1 !important;
    flex: 0 0 auto !important;
  }
  .nav-cta {
    order: 2 !important;
    display: flex !important;
    flex: 1 1 auto !important;
    justify-content: center !important;
  }
  .nav-toggle {
    order: 3 !important;
    display: inline-flex !important;
    flex: 0 0 auto !important;
  }
  .nav-links {
    order: 4 !important;
    display: none !important;
    width: 100% !important;
  }
  .nav.is-open .nav-links {
    display: flex !important;
  }
  .nav-links {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    padding: 6px 0 !important;
  }
  .nav-link {
    width: 100% !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
    white-space: normal !important;
  }
  .nav-cta span {
    white-space: nowrap !important;
  }
  .nav-cta button {
    display: none !important;
  }
  .nav.is-open .nav-toggle {
    order: 2 !important;
  }
  .nav.is-open .nav-links {
    order: 3 !important;
  }
  .nav.is-open .nav-cta {
    order: 4 !important;
    flex: 0 0 100% !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
    gap: 10px !important;
    align-items: start !important;
    padding: 6px 0 !important;
  }
  .nav.is-open .nav-cta span {
    grid-column: 1/-1 !important;
    white-space: normal !important;
  }
  .nav.is-open .nav-cta button {
    display: inline-flex !important;
    width: 100% !important;
    justify-content: center !important;
  }
  .mockup-nav {
    display: none !important;
  }
}
@media print {
  .mockup-nav,
  .sticky-bar,
  .zalo-float {
    display: none !important;
  }
  .page {
    display: block !important;
  }
}

/* Auto-extracted inline styles */
.va-style-184 {
  margin-bottom: 12px;
}
.va-style-419 {
  border-top: 4px solid var(--blue);
}
.va-style-241 {
  font-size: 28px;
  margin-bottom: 14px;
}
.va-style-182 {
  background: var(--cream);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 32px;
}
.va-style-381 {
  font-family: "Lora", serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--blue);
}
.va-style-364 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 8px;
}
.va-style-45 {
  background: #0068ff;
  color: #fff;
  gap: 10px;
}
.va-style-367 {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 80px;
  opacity: 0.08;
  font-family: "Lora", serif;
  font-weight: 900;
  line-height: 1;
}
.va-style-284 {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.va-style-390 {
  display: flex;
  gap: 40px;
}
.va-style-314 {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 48px;
}
.va-style-255 {
  background: var(--cream);
  border-radius: 10px;
  padding: 14px 18px;
}
.va-style-43 {
  background: var(--cream);
  border-radius: 10px;
  padding: 4px;
  display: flex;
  margin-bottom: 28px;
}
.va-style-63 {
  font-size: 14px;
}
.va-style-247 {
  font-size: 13px;
  color: var(--blue);
  line-height: 1.7;
}
.va-style-397 {
  background: var(--blue-light);
  border: 1px solid #e8a0a7;
  border-radius: 12px;
  padding: 20px 24px;
}
.va-style-164 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.va-style-418 {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.va-style-180 {
  color: var(--text);
  font-size: 22px;
  margin-bottom: 8px;
}
.va-style-350 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.va-style-382 {
  background: linear-gradient(135deg, #FAEAEB, #fff);
  padding: 28px 28px 20px;
}
.va-style-379 {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
}
.va-style-15 {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.va-style-376 {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 18px;
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.va-style-61 {
  display: flex;
  align-items: center;
}
.va-style-133 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.va-style-354 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.va-style-235 {
  font-size: 12px;
  color: var(--text-muted);
}
.va-style-20 {
  padding: 16px 20px;
}
.va-style-371 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 10px;
}
.va-style-81 {
  color: var(--text);
  font-weight: 700;
}
.va-style-2 {
  color: var(--text-muted);
  font-size: 13px;
  margin-left: 12px;
}
.va-style-57 {
  color: var(--text);
}
.va-style-374 {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #E8303F 100%);
  border-radius: 18px;
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.va-style-189 {
  background: #e8f5e9;
}
.va-style-317 {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}
.va-style-238 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
}
.va-style-218 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.75;
}
.va-style-185 {
  margin-bottom: 16px;
  padding: 6px 18px;
}
.va-style-140 {
  font-size: 11px;
  color: var(--text-muted);
}
.va-style-423 {
  background: var(--red-dark);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.va-style-178 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.va-style-406 {
  font-size: 14px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 8px;
}
.va-style-134 {
  margin-top: 20px;
}
.va-style-120 {
  width: 220px;
}
.va-style-224 {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.va-style-398 {
  font-size: 13px;
  color: var(--text-muted);
}
.va-style-23 {
  padding: 16px 20px;
  font-weight: 700;
}
.va-style-377 {
  max-width: 580px;
  margin: 12px auto;
}
.va-style-124 {
  margin-top: 12px;
}
.va-style-245 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text);
}
.va-style-42 {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: var(--red);
  color: #fff;
  transition: all 0.2s;
}
.va-style-265 {
  background: var(--cream);
  border-radius: 10px;
  padding: 16px 20px;
}
.va-style-380 {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
}
.va-style-361 {
  font-size: 22px;
  flex-shrink: 0;
}
.va-style-429 {
  color: var(--text);
  margin-bottom: 20px;
}
.va-style-106 {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
}
.va-style-92 {
  background: linear-gradient(135deg, var(--red-light), #fff);
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.va-style-126 {
  background: var(--gold-light);
  border: 1px solid #e8a0a7;
  border-radius: 8px;
  padding: 6px 12px;
  display: inline-flex;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red-dark);
  margin-bottom: 10px;
}
.va-style-260 {
  font-size: 13px;
  color: var(--red-dark);
  line-height: 1.7;
}
.va-style-228 {
  text-align: right;
  font-weight: 700;
  color: var(--red);
}
.va-style-32 {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  outline: none;
  resize: vertical;
  min-height: 80px;
}
.va-style-28 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}
.va-style-387 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.va-style-352 {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
}
.va-style-316 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.va-style-339 {
  background: var(--red-light);
  border: 1.5px solid #dba5a0;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
}
.va-style-40 {
  margin-bottom: 20px;
  font-size: 18px;
}
.va-style-248 {
  background: var(--blue-light);
  border-radius: 10px;
  padding: 14px 18px;
  border: 1px solid #e8a0a7;
}
.va-style-410 {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.va-style-67 {
  color: var(--blue);
}
.va-style-303 {
  font-size: 12px;
  color: var(--text);
}
.va-style-276 {
  background: linear-gradient(135deg, #FAEAEB, var(--cream));
  height: 170px;
  display: block;
  overflow: hidden;
}
.va-style-276 img,
.va-style-274 img,
.va-style-278 img,
.va-style-277 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.va-style-290 {
  color: var(--text);
  margin-bottom: 14px;
}
.va-style-97 {
  text-align: center;
  margin-bottom: 48px;
}
.va-style-243 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.va-style-11 {
  margin-left: auto;
}
.va-style-117 {
  color: var(--red-dark);
  margin-bottom: 6px;
}
.va-style-64 {
  color: #fff;
}
.va-style-269 {
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  padding: 64px 60px;
  color: #fff;
}
.va-style-85 {
  font-size: 12px;
}
.va-style-71 {
  margin-bottom: 24px;
}
.va-style-232 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--text);
}
.va-style-87 {
  margin-bottom: 8px;
}
.va-style-414 {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.va-style-76 {
  font-size: 14px;
  color: var(--red-dark);
  opacity: 0.85;
  line-height: 1.7;
}
.va-style-111 {
  max-width: 720px;
}
.va-style-217 {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.va-style-282 {
  width: 48px;
  height: 48px;
  background: var(--warm-gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.va-style-358 {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  color: #fff;
}

.va-style-358 h1,
.va-style-358 h2,
.va-style-358 h3 {
  color: #fff;
}

.va-style-358 .va-style-54 {
  color: var(--gold);
}
.va-style-242 {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px;
}
.va-style-49 {
  font-weight: 600;
  color: #fff;
  font-size: 14px;
}
.va-style-272 {
  margin-bottom: 10px;
}
.va-style-278 {
  background: linear-gradient(135deg, var(--red-light), var(--cream));
  height: 170px;
  display: block;
  overflow: hidden;
}
.va-style-287 {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.va-style-385 {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.va-style-25 {
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}
.va-style-391 {
  background: var(--red-dark);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.va-style-163 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.va-style-280 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.va-style-318 {
  padding: 24px 28px;
}
.va-style-127 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  overflow: hidden;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.va-style-31 {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}
.va-style-36 {
  margin-bottom: 14px;
}
.va-style-257 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  border-left: 5px solid var(--red);
}
.va-style-212 {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-muted);
}
.va-style-216 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
}
.va-style-147 {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.va-style-103 {
  font-size: 12px;
  color: var(--text-muted);
}
.va-style-198 {
  margin-bottom: 4px;
}
.va-style-155 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy), #3A1218);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
}
.va-style-156 .va-style-155 {
  background: linear-gradient(135deg, rgba(74, 14, 22, 0.35), rgba(58, 18, 24, 0.35));
}
.va-style-161 {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
}
.va-style-312 {
  background: #e5e0d6;
}
.va-style-223 {
  background: var(--red);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.va-style-422 {
  padding: 60px 60px 0;
}
.va-style-298 {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 10px;
}
.va-style-48 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.va-style-173 {
  background: rgba(189, 30, 44, 0.1);
  border: 1px solid rgba(189, 30, 44, 0.25);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.va-style-399 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.va-style-322 {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}
.va-style-205 {
  text-align: center;
  display: block;
}
.va-style-311 {
  background: #dba5a0;
}
.va-style-213 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}
.va-style-293 {
  padding: 40px 60px 0;
}
.va-style-78 {
  font-size: 20px;
  flex-shrink: 0;
}
.va-style-345 {
  font-family: "Lora", serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
}
.va-style-174 {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.va-style-4 {
  font-weight: 700;
  font-size: 14px;
}
.va-style-338 {
  max-width: 520px;
  margin: 12px auto;
}
.va-style-17 {
  font-size: 40px;
}
.va-style-149 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
}
.va-style-171 {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.va-style-13 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.va-style-196 {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}
.va-style-214 {
  margin-top: 0;
}
.va-style-104 {
  font-size: 28px;
  font-weight: 900;
  font-family: "Lora", serif;
  color: #fff;
}
.va-style-230 {
  text-align: right;
  font-weight: 700;
}
.va-style-226 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.va-style-77 {
  font-weight: 700;
  color: var(--red-dark);
  margin-bottom: 6px;
}
.va-style-69 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  cursor: pointer;
}
.va-style-262 {
  background: var(--gold-light);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.va-style-285 {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.va-style-90 {
  color: var(--blue);
  font-weight: 700;
}
.va-style-96 {
  max-width: 540px;
  margin: 12px auto;
}
.va-style-292 {
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  border-radius: 20px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.va-style-236 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.va-style-327 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.va-style-110 {
  color: var(--red);
}
.va-style-152 {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.va-style-343 {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 36px 60px;
  text-align: center;
}
.va-style-153 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3A1218, #5C1E28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
}
.va-style-94 {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(189, 30, 44, 0.15);
}
.va-style-116 {
  font-size: 14px;
  color: var(--red-dark);
  opacity: 0.85;
  max-width: 640px;
  line-height: 1.7;
}
.va-style-83 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.va-style-344 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.va-style-306 {
  font-size: 14px;
  font-weight: 700;
  color: var(--red-dark);
}
.va-style-261 {
  background: var(--gold-light);
  border-radius: 10px;
  padding: 14px 18px;
}
.va-style-183 {
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
}
.va-style-393 {
  background: linear-gradient(
    135deg,
    var(--red-dark) 0%,
    var(--red) 50%,
    #e74c3c 100%
  );
  padding: 64px 60px;
  color: #fff;
}
.va-style-275 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.va-style-9 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 240px;
}
.va-style-80 {
  background: var(--blue);
  color: #fff;
  width: 100%;
  justify-content: center;
}
.va-style-283 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.va-style-39 {
  display: none;
}
.va-style-211 {
  background: var(--red-light);
  color: var(--red);
}
.va-style-119 {
  background: var(--gold-light);
  border-top: 3px solid var(--gold-accent);
  border-bottom: 1px solid #e8a0a7;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.va-style-131 {
  color: rgba(255, 255, 255, 0.5);
}
.va-style-320 {
  text-align: center;
}
.va-style-202 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 10px;
}
.va-style-1 {
  display: flex;
  gap: 10px;
}
.va-style-100 {
  font-size: 24px;
}
.va-style-346 {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px 40px;
  text-align: center;
}
.va-style-426 {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(189, 30, 44, 0.4);
  aspect-ratio: 4/5;
  display: block;
  position: relative;
}
.va-style-268 {
  max-width: 680px;
}
.va-style-79 {
  background: var(--gold-light);
  border: 1px solid #e8a0a7;
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.va-style-138 {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}
.va-style-263 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  border-left: 5px solid var(--gold-accent);
}
.va-style-289 {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 24px;
}
.va-style-8 {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.va-style-308 {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
}
.va-style-254 {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}
.va-style-264 {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
}
.va-style-82 {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
}
.va-style-191 {
  background: var(--gold-light);
}
.va-style-98 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.va-style-145 {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 0 14px;
}
.va-style-362 {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 28px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.va-style-233 {
  gap: 24px;
}
.va-style-84 {
  padding: 20px 28px;
}
.va-style-47 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.va-style-54 {
  color: var(--red);
}
.va-style-400 {
  background: var(--red);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.va-style-348 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 40px;
}
.va-style-101 {
  display: flex;
  align-items: center;
  gap: 16px;
}
.va-style-33 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.va-style-5 {
  color: var(--text-muted);
  font-size: 12px;
}
.va-style-129 {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}
.va-style-118 {
  font-size: 48px;
  flex-shrink: 0;
}
.va-style-123 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  overflow: hidden;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.va-style-302 {
  font-size: 14px;
  font-weight: 700;
  color: var(--red-dark);
}
.va-style-324 {
  font-size: 28px;
  color: var(--text-muted);
}
.va-style-37 {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  outline: none;
}
.va-style-60 {
  font-size: 12px;
  color: var(--text-muted);
}
.va-style-186 {
  max-width: 1000px;
  margin: 0 auto;
}
.va-style-114 {
  color: #fff; font-weight: 700;
}
.va-style-30 {
  padding: 60px;
}
.va-style-336 {
  text-align: center;
  background: var(--red);
  border-radius: 10px;
  padding: 14px 20px;
}
.va-style-141 {
  font-weight: 700;
  font-size: 13px;
}
.va-style-41 {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: all 0.2s;
}
.va-style-396 {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.va-style-193 {
  max-width: 560px;
}
.va-style-192 {
  max-width: 560px;
  margin-bottom: 36px;
}
.va-style-294 {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}
.va-style-328 {
  background: linear-gradient(90deg, var(--red-light), #fff);
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.va-style-220 {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.va-style-430 {
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  padding: 48px 60px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.va-style-277 {
  background: linear-gradient(135deg, #e8ecf1, var(--cream));
  height: 170px;
  display: block;
  overflow: hidden;
}
.va-style-368 {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #E8303F 100%);
  border-radius: 18px;
  padding: 28px;
  color: #fff;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.va-style-234 {
  background: var(--cream);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 60px;
  border: 1px solid var(--border);
}
.va-style-304 {
  background: var(--red-dark);
}
.va-style-105 {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
}
.va-style-296 {
  font-size: 13px;
  font-weight: 700;
}
.va-style-56 {
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
}
.va-style-334 {
  width: 40px;
  height: 40px;
  background: var(--red-light);
  border-radius: 50%;
  display: block;
  object-fit: cover;
}
.va-style-244 {
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin: 12px auto;
  font-size: 14px;
}
.va-style-372 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.va-style-113 {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.va-style-424 {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding: 0 20px;
  line-height: 1.7;
}
.va-style-200 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 14px;
}
.va-style-203 {
  gap: 28px;
}
.va-style-27 {
  width: 100%;
  border-collapse: collapse;
}
.va-style-143 {
  width: 34px;
  height: 34px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.va-style-21 {
  padding: 16px 20px;
  font-weight: 600;
  color: var(--text-muted);
}
.va-style-99 {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}
.va-style-416 {
  font-size: 11px;
  font-weight: 700;
  color: var(--red-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.va-style-18 {
  height: 280px;
  background: linear-gradient(135deg, #d5e8d4, #dae8fc);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.va-style-369 {
  background: linear-gradient(135deg, #0068ff, #0084ff);
  border-radius: 18px;
  padding: 28px;
  color: #fff;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.va-style-240 {
  color: var(--text);
  font-size: 17px;
  margin-bottom: 16px;
}
.va-style-386 {
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(189, 30, 44, 0.15);
}
.va-style-70 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.va-style-395 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.va-style-408 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.va-style-137 {
  background: var(--cream);
  padding: 1px 5px;
  border-radius: 3px;
}
.va-style-3 {
  color: var(--red);
  background: rgba(189, 30, 44, 0.2);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 10px;
}
.va-style-65 {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #E8303F 100%);
}
.va-style-50 {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.va-style-199 {
  font-size: 26px;
  margin-bottom: 10px;
}
.va-style-102 {
  background: var(--red);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.va-style-258 {
  background: var(--warm-gray);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.va-style-333 {
  background: linear-gradient(90deg, #FAEAEB, #fff);
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.va-style-231 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.va-style-246 {
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 60px;
}
.va-style-59 {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 12px 60px;
  font-size: 13px;
  color: var(--text-muted);
}
.va-style-14 {
  font-size: 20px;
}
.va-style-237 {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.va-style-201 {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 4px;
}
.va-style-326 {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
}
.va-style-44 {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.va-style-305 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex: 1;
}
/* Bar nằm trong container height */
.va-style-305 > div:first-child {
  /* bar element — align to bottom of container */
  align-self: flex-end;
}
/* Label và % nằm ngoài container, có padding riêng */
.va-style-60,
.va-style-303 {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}
.va-style-310,
.va-style-308,
.va-style-306,
.va-style-302 {
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
  text-align: center;
}
.va-style-175 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}
.va-style-168 {
  font-size: 52px;
  margin-bottom: 8px;
}
.va-style-165 {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.va-style-274 {
  background: linear-gradient(135deg, #FAEAEB, var(--cream));
  height: 170px;
  display: block;
  overflow: hidden;
}
.va-style-208 {
  font-size: 11px;
  background: #fef3c7;
  color: var(--red-dark);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #fcd34d;
}
.va-style-89 {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.2s;
}
.va-style-194 {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--warm-gray);
  border: 4px solid var(--border);
  display: block;
  object-fit: cover;
}
.va-style-148 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--red-dark), var(--navy));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
}
.va-style-52 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.va-style-68 {
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.va-style-167 {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
}
.va-style-253 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  border-left: 5px solid var(--blue);
}
.va-style-177 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}
.va-style-378 {
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}
.va-style-7 {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2;
}
.va-style-286 {
  background: var(--red-dark);
  color: #fff;
}
.va-style-166 {
  font-size: 20px;
  margin-bottom: 10px;
}
.va-style-342 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.va-style-341 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.va-style-427 {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
}
.va-style-19 {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 60px;
}
.va-style-412 {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px;
}
.va-style-411 {
  align-items: center;
  gap: 80px;
}
.va-style-35 {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  outline: none;
  background: #fff;
}
.va-style-420 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.va-style-250 {
  font-size: 17px;
  line-height: 1.4;
}
.va-style-394 {
  background: #fff;
  border: 1px solid #e8a0a7;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text-mid);
}
.va-style-325 {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-muted);
}
.va-style-404 {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
}
.va-style-321 {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}
.va-style-206 {
  text-align: center;
  margin-bottom: 44px;
}
.va-style-181 {
  background: var(--red-light);
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}
.va-style-195 {
  background: var(--cream);
  padding: 56px 60px;
  display: flex;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.va-style-401 {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.va-style-162 {
  flex-shrink: 0;
}
.va-style-288 {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
}
.va-style-428 {
  color: var(--text-mid);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
}
.va-style-122 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.va-style-271 {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.va-style-229 {
  padding: 10px 0;
  color: var(--text-mid);
}
.va-style-360 {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.va-style-169 {
  flex-shrink: 0;
  text-align: center;
}
.va-style-402 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.va-style-26 {
  background: var(--navy);
  color: #fff;
}
.va-style-329 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.va-style-315 {
  width: 40px;
  height: 40px;
  background: var(--gold-light);
  border-radius: 50%;
  display: block;
  object-fit: cover;
}
.va-style-222 {
  color: #fff;
  margin-bottom: 8px;
}
.va-style-136 {
  gap: 20px;
}
.va-style-313 {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  justify-content: center;
  height: 180px;
  padding-top: 0;
  overflow: visible;
  border-bottom: 2px solid var(--border);
  margin-bottom: 12px;
}
.va-style-159 {
  margin-bottom: 32px;
}
.va-style-197 {
  color: var(--text-mid);
}
.va-style-383 {
  font-family: "Lora", serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--red);
}
.va-style-179 {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 540px;
  margin: 0 auto;
}
.va-style-207 {
  font-size: 11px;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid #aed6f1;
}
.va-style-209 {
  margin-left: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}
.va-style-384 {
  background: linear-gradient(135deg, #FAEAEB, #fff);
  padding: 28px 28px 20px;
}
.va-style-407 {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.va-style-291 {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 16px;
}
.va-style-157 {
  color: var(--red);
}
.va-style-91 {
  font-family: "Lora", serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--blue);
}
.va-style-266 {
  gap: 28px;
  margin-bottom: 60px;
}
.va-style-58 {
  cursor: pointer;
  color: var(--blue);
}
.va-style-86 {
  font-family: "Lora", serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--blue);
}
.va-style-359 {
  flex-shrink: 0;
  white-space: nowrap;
}
.va-style-112 {
  background: linear-gradient(
    135deg,
    var(--red-dark) 0%,
    var(--red) 60%,
    #E8303F 100%
  );
  padding: 64px 60px;
  color: #fff;
}
.va-style-267 {
  color: var(--red);
}
.va-style-66 {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.va-style-347 {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.va-style-331 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}
.va-style-115 {
  background: var(--red-dark);
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}
.va-style-297 {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}
.va-style-300 {
  text-align: center;
  margin-bottom: 32px;
}
.va-style-310 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}
.va-style-365 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.va-style-135 {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
  margin-top: 12px;
}
.va-style-417 {
  border-top: 4px solid var(--gold-accent);
}
.va-style-299 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.va-style-252 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.va-style-330 {
  width: 40px;
  height: 40px;
  background: #FAEAEB;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}
.va-style-351 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.va-style-281 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}
.va-style-323 {
  text-align: center;
  background: var(--red-dark);
  border-radius: 10px;
  padding: 14px 20px;
}
.va-style-370 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.va-style-309 {
  background: var(--red);
}
.va-style-6 {
  display: flex;
  gap: 20px;
}
.va-style-24 {
  border-bottom: 1px solid var(--border);
}
.va-style-349 {
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  padding: 64px 60px;
  text-align: center;
}
.va-style-55 {
  color: #fff;
  margin-bottom: 16px;
}
.va-style-72 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.va-style-154 {
  width: 34px;
  height: 34px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.va-style-279 {
  display: flex;
  gap: 8px;
}
.va-style-219 {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.va-style-373 {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.va-style-51 {
  display: flex;
  gap: 14px;
  align-items: center;
}
.va-style-139 {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}
.va-style-29 {
  text-align: center;
  margin-bottom: 36px;
}
.va-style-22 {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.va-style-170 {
  background: linear-gradient(135deg, #FAEAEB, #fff);
  border: 2px solid var(--red);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  gap: 40px;
  align-items: center;
}
.va-style-150 {
  position: relative;
  padding-top: 56.25%;
}
.va-style-225 {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}
.va-style-221 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}
.va-style-251 {
  background: var(--blue-light);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.va-style-332 {
  text-align: center;
  background: var(--blue);
  border-radius: 10px;
  padding: 14px 20px;
}
.va-style-144 {
  padding: 12px 16px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.va-style-88 {
  background: linear-gradient(135deg, var(--red-light), #fff);
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.va-style-388 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.va-style-121 {
  margin-bottom: 28px;
  max-width: 520px;
}
.va-style-357 {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.va-style-337 {
  background: linear-gradient(90deg, var(--red-light), #fff);
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.va-style-12 {
  font-size: 13px;
  color: var(--text-muted);
}
.va-style-227 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}
.va-style-425 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.va-style-307 {
  background: var(--red-dark);
}
.va-style-366 {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.va-style-73 {
  font-size: 36px;
  margin-bottom: 14px;
}
.va-style-273 {
  padding: 22px;
}
.va-style-188 {
  font-size: 17px;
}
.va-style-413 {
  font-size: 16px;
  margin-bottom: 10px;
}
.va-style-107 {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.va-style-125 {
  font-size: 13.5px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
}
.va-style-256 {
  background: var(--red-light);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.va-style-363 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}
.va-style-156 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 10px;
}
.va-style-93 {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}
.va-style-409 {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.va-style-130 {
  margin-top: 4px;
}
.va-style-34 {
  margin-bottom: 20px;
}
.va-style-62 {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}
.va-style-176 {
  font-size: 24px;
  margin-bottom: 12px;
}
.va-style-53 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.va-style-109 {
  color: #fff;
  margin-bottom: 18px;
}
.va-style-74 {
  text-align: center;
  padding: 26px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.va-style-356 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  max-width: 480px;
}
.va-style-158 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.va-style-335 {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
}
.va-style-295 {
  background: var(--cream);
  padding: 48px 60px;
  border-bottom: 1px solid var(--border);
}
.va-style-301 {
  border-top: 2px solid var(--border-dark);
  margin-top: 0;
  padding-top: 16px;
  text-align: center;
}
.va-style-204 {
  max-width: 520px;
  margin: 10px auto 0;
}
.va-style-108 {
  color: #fff;
  font-weight: 900;
}
.va-style-259 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  border-left: 5px solid var(--navy);
}
.va-style-190 {
  background: var(--blue-light);
}
.va-style-172 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  color: var(--gold);
  margin-bottom: 4px;
}
.va-style-187 {
  margin-top: 8px;
}
.va-style-46 {
  gap: 10px;
}
.va-style-142 {
  flex: 1;
}
.va-style-10 {
  height: 36px;
  width: auto;
}
.va-style-355 {
  text-align: right;
  flex-shrink: 0;
}
.va-style-403 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.va-style-151 {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.va-style-421 {
  border-top: 4px solid var(--red);
}
.va-style-353 {
  font-family: "Lora", serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  font-weight: 900;
}
.va-style-146 {
  font-size: 20px;
  margin-left: 4px;
  color: #fff;
}
.va-style-239 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.va-style-16 {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.va-style-95 {
  margin-bottom: 48px;
}
.va-style-319 {
  font-size: 18px;
  font-weight: 700;
  color: var(--red-dark);
}
.va-style-375 {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: 18px;
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.va-style-75 {
  margin-bottom: 60px;
}
.va-style-392 {
  color: #fff; font-weight: 900;
}
.va-style-415 {
  border-top: 4px solid var(--navy);
}
.va-style-215 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.va-style-389 {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}
.va-style-405 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.va-style-38 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.va-style-340 {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.va-style-210 {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.va-style-270 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.va-style-249 {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.va-style-128 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.va-style-132 {
  color: #fff;
}
.va-style-160 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (UNIFIED FIXES)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden !important;
    width: 100% !important;
    min-width: 320px !important;
  }

  * {
    box-sizing: border-box !important;
  }

  h1 {
    font-size: 36px !important;
    line-height: 1.2 !important;
  }
  h2 {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }

  .section,
  .section.alt {
    padding: 50px 20px !important;
  }
  .hero {
    padding: 60px 20px !important;
  }
  .footer {
    padding: 50px 20px 30px !important;
  }
  .cta-band {
    padding: 50px 20px !important;
  }
  .page {
    padding-bottom: 170px !important;
  }

  .va-style-113 {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
  }

  .va-style-160 {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .nav {
    height: auto !important;
    padding: 0 20px !important;
    padding-block: 10px !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
  }
  .nav-logo {
    order: 1 !important;
    flex: 0 0 auto !important;
  }
  .nav-cta {
    order: 2 !important;
    display: flex !important;
    flex: 1 1 auto !important;
    justify-content: center !important;
  }
  .nav-toggle {
    order: 3 !important;
    display: inline-flex !important;
    flex: 0 0 auto !important;
  }
  .nav-links {
    order: 4 !important;
    display: none !important;
    width: 100% !important;
  }
  .nav.is-open .nav-links {
    display: flex !important;
  }
  .nav-links {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    padding: 6px 0 !important;
  }
  .nav-link {
    width: 100% !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
    white-space: normal !important;
  }
  .nav-cta span {
    white-space: nowrap !important;
  }
  .nav-cta button {
    display: none !important;
  }
  .nav.is-open .nav-toggle {
    order: 2 !important;
  }
  .nav.is-open .nav-links {
    order: 3 !important;
  }
  .nav.is-open .nav-cta {
    order: 4 !important;
    flex: 0 0 100% !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
    gap: 10px !important;
    align-items: start !important;
    padding: 6px 0 !important;
  }
  .nav.is-open .nav-cta span {
    grid-column: 1/-1 !important;
    white-space: normal !important;
  }
  .nav.is-open .nav-cta button {
    display: inline-flex !important;
    width: 100% !important;
    justify-content: center !important;
  }
  .teacher-section {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 60px 20px !important;
  }

  .mockup-nav {
    display: none !important;
  }

  /* Sticky Bottom Bar */
  .sticky-bar {
    padding: 14px 20px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .sticky-bar .btn-sm {
    width: auto !important;
  }
  .sticky-bar .btn {
    white-space: nowrap !important;
  }
  .sticky-bar > div:last-child {
    width: 100% !important;
    flex-wrap: wrap !important;
    display: flex !important;
  }

  /* Grids to single column */
  .grid2,
  .grid3,
  .grid4,
  .eatr-grid,
  .va-style-156,
  .va-style-38 {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    display: grid !important;
  }
  .va-style-279 {
    flex-wrap: wrap !important;
  }
  .va-style-279 .btn-sm {
    width: auto !important;
  }
  .va-style-270 {
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }
  .compare-table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    width: 100% !important;
  }
  .compare-table th,
  .compare-table td {
    white-space: nowrap !important;
  }
  .va-style-28 {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .va-style-27 {
    min-width: 720px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Hero Stats Fix */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }

  /* Overrides for inline-extracted classes that break layout */
  .va-style-430,
  .va-style-56,
  .va-style-292,
  .va-style-195,
  .va-style-119,
  .va-style-170,
  .va-style-358,
  .va-style-380,
  .va-style-83,
  .va-style-350,
  .va-style-283,
  .va-style-273 {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 30px 20px !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .va-style-426 {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    height: auto !important;
  }

  .va-style-194 {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
  }

  .va-style-390,
  .va-style-178,
  .va-style-370,
  .va-style-351,
  .va-style-164,
  .va-style-347,
  .va-style-106,
  .va-style-427,
  .va-style-243 {
    flex-direction: column !important;
    display: flex !important;
    gap: 16px !important;
  }

  .va-style-379 {
    align-items: flex-start !important;
  }
  .va-style-120 {
    width: 100% !important;
  }

  /* Force wrap on flex rows */
  .school-strip,
  .social-proof-bar,
  .info-row,
  .step-row,
  .avatar-row,
  .va-style-217 {
    flex-wrap: wrap !important;
  }

  /* Breadcrumbs */
  .va-style-59 {
    padding: 12px 20px !important;
    white-space: normal !important;
    line-height: 1.6 !important;
  }

  .va-style-422,
  .va-style-293 {
    padding: 30px 20px 0 !important;
  }

  /* Zalo Float */
  .zalo-float {
    bottom: 120px !important;
    right: 20px !important;
    width: 48px !important;
    height: 48px !important;
  }
  .zalo-float svg {
    width: 24px !important;
    height: 24px !important;
  }

  /* Button Fixes */
  .btn {
    white-space: normal !important;
    text-align: center !important;
    height: auto !important;
    justify-content: center !important;
  }
  .btn-lg {
    padding: 12px 20px !important;
    width: 100% !important;
  }
  .btn-sm {
    padding: 8px 12px !important;
    width: 100% !important;
    font-size: 12px !important;
  }

  /* Reset all max-widths causing overflow */
  .va-style-111,
  .va-style-377,
  .va-style-186,
  .va-style-218,
  .va-style-268,
  .va-style-348,
  .va-style-193,
  .va-style-192,
  .va-style-294,
  .va-style-244,
  .va-style-428,
  .va-style-179,
  .va-style-219,
  .va-style-121,
  .va-style-356,
  .va-style-204,
  .va-style-183,
  .va-style-96,
  .va-style-338,
  .va-style-116 {
    max-width: 100% !important;
    width: 100% !important;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 32px !important;
  }
  h2 {
    font-size: 24px !important;
  }

  .nav-logo {
    font-size: 18px !important;
  }
  .va-style-10 {
    height: 28px !important;
  }
  .va-style-30,
  .va-style-349,
  .va-style-295,
  .va-style-343 {
    padding: 15px;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
  }

  .va-style-391,
  .va-style-102 {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px !important;
    padding: 20px !important;
  }

  .va-style-112,
  .va-style-393,
  .va-style-269 {
    padding: 40px 20px !important;
  }

  .va-style-118 {
    font-size: 32px !important;
  }
}

/* ============================================================
   CONTEXT-AWARE COLOR OVERRIDES
   Chữ highlight trên nền đỏ -> dùng gold thay vì đỏ
   ============================================================ */

/* Hero: "SAT & IELTS" trên nền đỏ gradient */
.hero .va-style-157,
.hero .va-style-55 .va-style-157 {
  color: #fff;
  font-weight: 900;
}

/* Teacher section trên nền đỏ */
.teacher-section .va-style-157 {
  color: #fff;
  font-weight: 900;
}

/* Track SAT card trên nền đỏ */
.track-sat .va-style-157 {
  color: #fff;
  font-weight: 900;
}

/* Testi big card trên nền đỏ */
.testi-big .va-style-157 {
  color: #fff;
  font-weight: 900;
}

/* Các section đỏ lớn (va-style-393, va-style-292, va-style-430, va-style-56, va-style-246, va-style-349) */
.va-style-393 .va-style-157,
.va-style-292 .va-style-157,
.va-style-430 .va-style-157,
.va-style-56 .va-style-157,
.va-style-246 .va-style-157,
.va-style-349 .va-style-157 {
  color: #fff;
  font-weight: 900;
}

/* va-style-182 (AI platform block) trên nền đỏ */
.va-style-182 .va-style-157 {
  color: #fff;
  font-weight: 900;
}

/* CTA band đỏ */
.cta-band .va-style-157 {
  color: #fff;
  font-weight: 900;
}

/* ============================================================
   IELTS BLUE THEME — đảm bảo nhất quán
   ============================================================ */

/* Section label màu xanh cho IELTS */
.section-label.blue,
.va-style-418 {
  color: var(--blue);
}

/* IELTS featured card border */
.level-card.featured {
  border-color: var(--blue);
}

/* va-style-419 border top xanh */
.va-style-419 {
  border-top-color: var(--blue);
}

/* ============================================================
   HERO CARD ANIMATIONS — tách riêng để delay hoạt động đúng
   ============================================================ */
.hero-card {
  opacity: 0;
  transform: translateX(40px);
}
.hero-card.visible {
  animation: cardSlideIn 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-card.visible.floating {
  animation: cardSlideIn 0.4s cubic-bezier(0.22,1,0.36,1) forwards,
             cardFloat 1.5s ease-in-out 0.4s infinite;
}
.hero-card:nth-child(1).visible { animation-delay: 0.1s; }
.hero-card:nth-child(1).visible.floating { animation-delay: 0.1s, 0.5s; }
.hero-card:nth-child(2).visible { animation-delay: 0.22s; margin-left: 20px; }
.hero-card:nth-child(2).visible.floating { animation-delay: 0.22s, 0.62s; }
.hero-card:nth-child(3).visible { animation-delay: 0.34s; margin-left: 40px; }
.hero-card:nth-child(3).visible.floating { animation-delay: 0.34s, 0.74s; }

/* ============================================================
   SITE-WIDE BRIGHTNESS — section headings trên nền sáng
   ============================================================ */

/* Teacher section — text tối trên nền trắng */
.teacher-section h2,
.teacher-section h3,
.teacher-section .section-label {
  color: var(--text);
}
.teacher-section .section-label {
  color: var(--red);
}
.teacher-section p {
  color: var(--text-mid);
}
.teacher-section .teacher-quote {
  color: var(--text-mid);
  border-left-color: var(--red);
}

/* Page heroes (va-style-430, 56, 349, 269) — text tối */
.va-style-430 h1, .va-style-430 h2, .va-style-430 h3,
.va-style-56 h1, .va-style-56 h2,
.va-style-349 h1, .va-style-349 h2,
.va-style-269 h1, .va-style-269 h2 {
  color: var(--text);
}
.va-style-430 p, .va-style-56 p, .va-style-349 p, .va-style-269 p {
  color: var(--text-mid);
}
.va-style-430 .section-label,
.va-style-56 .section-label,
.va-style-349 .section-label,
.va-style-269 .section-label {
  color: var(--red);
}

/* va-style-246 (parent du hoc) — text tối */
.va-style-246 h2, .va-style-246 h3, .va-style-246 p {
  color: var(--text);
}
.va-style-246 .section-label { color: var(--red); }

/* va-style-292 (resources hero) */
.va-style-292 h1, .va-style-292 h2, .va-style-292 p { color: var(--text); }

/* va-style-427 (teacher stats row) */
.va-style-427 {
  display: flex;
  gap: 40px;
  margin: 28px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* va-style-426 (teacher photo frame) */
.va-style-426 {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* va-style-424 (teacher photo caption) */
.va-style-424 {
  color: var(--text-muted);
}

/* va-style-423 (teacher badge) */
.va-style-423 {
  background: var(--red);
  color: #fff;
}

.va-style-426 .va-style-424 {
  color: rgba(255, 255, 255, 0.75);
}

.va-style-426 .va-style-423 {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
}

/* va-style-397 (teacher mentions box) */
.va-style-397 {
  background: var(--red-light);
  border: 1px solid rgba(189,30,44,0.15);
}

/* va-style-396 (teacher mentions label) */
.va-style-396 {
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
}

/* va-style-394 (mention badge) */
.va-style-394 {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin: 3px;
}

/* va-style-340 (university badge trong results) */
.va-style-340 {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin: 4px;
}

/* va-style-342 (results univ label) */
.va-style-342 {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* va-style-343 (results univ section) */
.va-style-343 {
  background: var(--cream);
  padding: 32px 60px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

/* va-style-346 (results stat item) */
.va-style-346 {
  text-align: center;
}

/* va-style-347 (results stats row) */
.va-style-347 {
  display: flex;
  gap: 48px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

/* va-style-55 (h1 trên hero sáng) */
.va-style-55 {
  color: var(--text);
}

/* va-style-53 (contact hero p) */
.va-style-53 {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* va-style-49 (contact info label) */
.va-style-49 {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

/* va-style-48 (contact info sub) */
.va-style-48 {
  font-size: 13px;
  color: var(--text-muted);
}

/* va-style-50 (contact info icon) */
.va-style-50 {
  font-size: 20px;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}

/* va-style-51 (contact info row) */
.va-style-51 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

/* va-style-52 (contact info list) */
.va-style-52 {
  margin: 24px 0 32px;
}

/* ============================================================
   RESPONSIVE — hero split
   ============================================================ */
@media (max-width: 900px) {
  .hero-left .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .va-style-343 { padding: 24px 20px; }
  .va-style-347 { gap: 24px; }
  .va-style-427 { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .hero-card:nth-child(2) { margin-left: 0; }
  .hero-card:nth-child(3) { margin-left: 0; }
}

/* ============================================================
   GLOBAL BRIGHTNESS OVERRIDES
   Đảm bảo chữ không bị chìm vào nền sáng
   ============================================================ */

/* Tất cả section nền sáng (cream/white) — chữ phải tối */
.va-style-430,
.va-style-56,
.va-style-349,
.va-style-269,
.va-style-292,
.va-style-246,
.va-style-412,
.va-style-422 {
  color: var(--text);
}

/* Heading trong section sáng */
.va-style-430 h1, .va-style-430 h2, .va-style-430 h3,
.va-style-56 h1, .va-style-56 h2, .va-style-56 h3,
.va-style-349 h1, .va-style-349 h2, .va-style-349 h3,
.va-style-269 h1, .va-style-269 h2, .va-style-269 h3,
.va-style-292 h1, .va-style-292 h2, .va-style-292 h3,
.va-style-246 h1, .va-style-246 h2, .va-style-246 h3,
.va-style-412 h1, .va-style-412 h2, .va-style-412 h3,
.va-style-422 h1, .va-style-422 h2, .va-style-422 h3 {
  color: var(--text);
}

/* Paragraph trong section sáng */
.va-style-430 p, .va-style-56 p, .va-style-349 p,
.va-style-269 p, .va-style-292 p, .va-style-246 p,
.va-style-412 p, .va-style-422 p {
  color: var(--text-mid);
}

/* Section label trong section sáng */
.va-style-430 .section-label,
.va-style-56 .section-label,
.va-style-349 .section-label,
.va-style-269 .section-label,
.va-style-292 .section-label,
.va-style-246 .section-label,
.va-style-412 .section-label,
.va-style-422 .section-label {
  color: var(--red);
}

/* va-style-182 (AI platform) — nền cream, chữ tối */
.va-style-182 {
  color: var(--text);
}
.va-style-182 h1, .va-style-182 h2, .va-style-182 h3 {
  color: var(--text);
}
.va-style-182 p {
  color: var(--text-mid);
}

/* Teacher section — nền trắng */
.teacher-section {
  color: var(--text);
}
.teacher-section h1, .teacher-section h2, .teacher-section h3 {
  color: var(--text);
}
.teacher-section p {
  color: var(--text-mid);
}

/* va-style-404 (teacher card) — nền cream */
.va-style-404 {
  color: var(--text);
}
.va-style-404 h3 { color: var(--text); }
.va-style-404 p { color: var(--text-mid); }

/* va-style-408 (teacher quote box) */
.va-style-408 p { color: var(--text-mid); }

/* va-style-397 (teacher mentions) */
.va-style-397 { color: var(--text); }

/* va-style-394 (mention badge) */
.va-style-394 { color: var(--text-mid); }

/* va-style-343 (results university section) */
.va-style-343 { color: var(--text); }

/* va-style-329 (testimonial card) */
.va-style-329 { color: var(--text); }
.va-style-329 h3 { color: var(--text); }

/* va-style-337, va-style-333, va-style-328 (testi card headers) */
.va-style-337, .va-style-333, .va-style-328 { color: var(--text); }

/* va-style-12 (label nhỏ trong testi) */
.va-style-12 { color: var(--text-muted); }

/* va-style-4 (tên trong testi) */
.va-style-4 { color: var(--text); font-weight: 600; }

/* va-style-314 (score distribution section) */
.va-style-314 { color: var(--text); }
.va-style-300 { color: var(--text); }

/* va-style-299 (Google review card) */
.va-style-299 { color: var(--text); }
.va-style-297 { color: var(--text-mid); font-style: italic; }
.va-style-296 { color: var(--text); font-weight: 600; font-size: 13px; }

/* va-style-234 (payment info section) */
.va-style-234 { color: var(--text); }
.va-style-232 { color: var(--text); font-weight: 700; margin-bottom: 12px; }
.va-style-227 { color: var(--text); font-weight: 700; margin-bottom: 12px; }
.va-style-229 { color: var(--text-mid); }
.va-style-228 { color: var(--red); font-weight: 700; }
.va-style-230 { color: var(--red); font-weight: 700; }

/* va-style-257, va-style-253, va-style-263, va-style-259 (parent Q&A cards) */
.va-style-257, .va-style-253, .va-style-263, .va-style-259 {
  color: var(--text);
}
.va-style-250 { color: var(--text); }
.va-style-249 { color: var(--text-mid); font-size: 14px; line-height: 1.7; }

/* va-style-265, va-style-261, va-style-255 (parent note boxes) */
.va-style-265 p, .va-style-261 p, .va-style-255 p { color: var(--text-mid); }

/* va-style-248 (parent info box) */
.va-style-248 p { color: var(--text-mid); }

/* va-style-247 (parent info text) */
.va-style-247 { color: var(--text-mid); }

/* va-style-44 (contact form container) */
.va-style-44 { color: var(--text); }

/* va-style-40 (form heading) */
.va-style-40 { color: var(--text); }

/* va-style-31 (form note) */
.va-style-31 { color: var(--text-muted); font-size: 12px; text-align: center; margin-top: 10px; }

/* va-style-13 (schedule course name) */
.va-style-13 { color: var(--text); font-weight: 600; }

/* va-style-21 (schedule price IELTS) */
.va-style-21 { color: var(--red); font-weight: 700; }

/* va-style-23 (schedule course name cell) */
.va-style-23 { color: var(--text); font-weight: 600; }

/* va-style-22 (schedule time) */
.va-style-22 { color: var(--text-muted); font-size: 13px; }

/* va-style-20 (schedule cell) */
.va-style-20 { color: var(--text-mid); }

/* va-style-16 (map placeholder text) */
.va-style-16 { color: var(--text-muted); }

/* va-style-17 (map icon) */
.va-style-17 { font-size: 48px; }

/* va-style-18 (map container) */
.va-style-18 { background: var(--cream); border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.va-style-18 { padding: 0; overflow: hidden; min-height: 360px; display: block; }
.va-style-18 iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* va-style-19 (map section) */
.va-style-19 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }

/* va-style-15 (contact info card) */
.va-style-15 { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }

/* va-style-11 (map button) */
.va-style-11 { margin-top: 16px; }

/* va-style-9 (footer description) */
.va-style-9 { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 240px; }

/* va-style-7 (footer contact info) */
.va-style-7 { font-size: 13px; color: var(--text-muted); line-height: 2; margin-top: 16px; }

/* va-style-8 (footer google rating) */
.va-style-8 { font-size: 12px; color: var(--text-muted); }

/* va-style-6 (footer bottom links) */
.va-style-6 { display: flex; gap: 20px; }
.va-style-5 { color: var(--text-muted); font-size: 12px; }
.va-style-5:hover { color: var(--red); }

/* va-style-60 (nav phone) */
.va-style-60 { font-size: 13px; color: var(--text-muted); }

/* va-style-57 (breadcrumb current) */
.va-style-57 { color: var(--text); }

/* va-style-58 (breadcrumb link) */
.va-style-58 { color: var(--red); cursor: pointer; }

/* va-style-59 (breadcrumb bar) */
.va-style-59 { background: var(--cream); border-bottom: 1px solid var(--border); padding: 12px 60px; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }

/* va-style-54 (highlight text) — đỏ trên nền sáng */
.va-style-54 { color: var(--red); }

/* va-style-157 (highlight text) — đỏ trên nền sáng */
.va-style-157 { color: var(--red); }

/* Override: trên nền đỏ, highlight dùng gold kem */
.hero-right .va-style-157,
.va-style-393 .va-style-157,
.va-style-112 .va-style-157,
.testi-big .va-style-157,
.track-sat .va-style-157,
.cta-band .va-style-157,
.va-style-358 .va-style-157,
.va-style-376 .va-style-157,
.va-style-374 .va-style-157,
.va-style-368 .va-style-157,
.va-style-375 .va-style-157,
.va-style-65 .va-style-157,
.va-style-223 .va-style-157,
.va-style-102 .va-style-157 {
  color: #fff;
  font-weight: 900;
}

/* va-style-54 trên nền đỏ */
.va-style-393 .va-style-54,
.va-style-112 .va-style-54,
.va-style-430 .va-style-54,
.va-style-56 .va-style-54,
.va-style-349 .va-style-54,
.va-style-269 .va-style-54,
.cta-band .va-style-54,
.va-style-223 .va-style-54 {
  color: #fff;
  font-weight: 900;
}

/* va-style-114 (CTA highlight) */
.cta-band .va-style-114 { color: var(--gold); }

/* va-style-67 (blue highlight) — đỏ trên nền sáng */
.va-style-67 { color: var(--red); }

/* va-style-64 (IELTS CTA highlight) — trên nền đỏ */
.va-style-65 .va-style-64 { color: #fff; }

/* ============================================================
   SAT/IELTS HERO PADDING FIX — không bị trống 2 bên
   ============================================================ */
.va-style-393,
.va-style-112 {
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ============================================================
   PAGE HERO — Split layout giống trang chủ (SAT, IELTS)
   ============================================================ */
.page-hero {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}

/* Cột trái — nền trắng */
.page-hero-left {
  padding: 64px 56px 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero-left .hero-eyebrow {
  background: var(--red-light);
  border: 1px solid rgba(189,30,44,0.2);
  color: var(--red);
  margin-bottom: 24px;
}
.page-hero-left .hero-eyebrow .dot {
  background: var(--red);
}
.page-hero-left h1 {
  color: var(--text);
  font-size: 46px;
  margin-bottom: 0;
}
.page-hero-left .hero-highlight {
  color: var(--red);
}
/* IELTS page hero — dùng màu đỏ logo */
.page-hero--ielts .page-hero-left .hero-eyebrow {
  background: var(--red-light);
  border-color: rgba(189,30,44,0.2);
  color: var(--red);
}
.page-hero--ielts .page-hero-left .hero-eyebrow .dot {
  background: var(--red);
}
.page-hero--ielts .page-hero-left .hero-highlight {
  color: var(--red);
}
.page-hero--ielts .page-hero-stat {
  border-color: rgba(189,30,44,0.15) !important;
}
.page-hero--ielts .stat-dark {
  color: var(--red) !important;
}

/* Stats trên nền trắng */
.page-hero-stat {
  background: var(--cream) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px;
  padding: 12px 16px !important;
}
.stat-dark {
  color: var(--red) !important;
  font-size: 26px !important;
  font-weight: 900 !important;
  font-family: "Lora", serif;
  line-height: 1;
}
.stat-label-dark {
  color: var(--text-muted) !important;
  font-size: 12px !important;
  margin-top: 4px;
}

/* Cột phải — nền đỏ */
.page-hero-right {
  background: var(--red);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 40px 40px;
}
.page-hero-right--ielts {
  background: var(--red);
}

/* Watermark text */
.page-hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-family: "Lora", serif;
  font-size: 160px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Floating course cards */
.page-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 2;
}
.page-hero-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  opacity: 0;
  animation: cardSlideIn 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}
.page-hero-card:nth-child(1) { animation-delay: 0.1s; animation: cardSlideIn 0.4s cubic-bezier(0.22,1,0.36,1) 0.1s forwards, cardFloat 1.5s ease-in-out 0.5s infinite; }
.page-hero-card:nth-child(2) { animation-delay: 0.22s; margin-left: 16px; animation: cardSlideIn 0.4s cubic-bezier(0.22,1,0.36,1) 0.22s forwards, cardFloat 1.5s ease-in-out 0.62s infinite; }
.page-hero-card:nth-child(3) { animation-delay: 0.34s; margin-left: 32px; animation: cardSlideIn 0.4s cubic-bezier(0.22,1,0.36,1) 0.34s forwards, cardFloat 1.5s ease-in-out 0.74s infinite; }
.page-hero-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.page-hero-right--ielts .page-hero-card-icon {
  background: var(--red-light);
}
.page-hero-right--ielts .page-hero-card-score {
  color: var(--red);
}
.page-hero-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.page-hero-card-sub {
  font-size: 11px;
  color: var(--text-muted);
}
.page-hero-card-score {
  margin-left: auto;
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--red);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-hero-left {
    padding: 48px 24px 40px;
  }
  .page-hero-right {
    min-height: 280px;
    padding: 24px 20px 32px;
  }
  .page-hero-watermark {
    font-size: 100px;
  }
  .page-hero-cards {
    max-width: 100%;
  }
  .page-hero-card:nth-child(2),
  .page-hero-card:nth-child(3) {
    margin-left: 0;
  }
}

/* ============================================================
   RESPONSIVE FIXES
   ============================================================ */
@media (max-width: 768px) {
  .va-style-59 { padding: 10px 20px; }
  .va-style-430, .va-style-56, .va-style-349, .va-style-269 {
    padding: 32px 20px !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .va-style-246 { padding: 32px 20px !important; }
  .va-style-19 { grid-template-columns: 1fr !important; }
  .va-style-276, .va-style-274, .va-style-278, .va-style-277 { height: 140px; }
  .va-style-18 { min-height: 280px; }
  .va-style-18 iframe { min-height: 280px; }
}

/* ============================================================
   FINAL CONTRAST FIXES — highest specificity
   ============================================================ */

/* Teacher hero (va-style-430) — cream background, ALL text DARK */
.va-style-430 { color: var(--text) !important; }
.va-style-430 h1,
.va-style-430 h2,
.va-style-430 h3,
.va-style-430 .va-style-429 { color: var(--text) !important; }
.va-style-430 p,
.va-style-430 .va-style-428 { color: var(--text-mid) !important; }
.va-style-430 .va-style-54,
.va-style-430 .va-style-353 { color: var(--red) !important; }
.va-style-430 .va-style-398 { color: var(--text-muted) !important; }
.va-style-430 .section-label,
.va-style-430 .va-style-110 { color: var(--red) !important; letter-spacing: 3px; }

/* Buttons trong teacher hero — nền cream, dùng btn đỏ chuẩn */
.va-style-430 .btn-white {
  background: var(--red) !important;
  color: #fff !important;
  border: none !important;
}
.va-style-430 .btn-white:hover {
  background: var(--red-dark) !important;
}
.va-style-430 .btn-outline-white {
  background: transparent !important;
  color: var(--text) !important;
  border: 1.5px solid var(--border-dark) !important;
}
.va-style-430 .btn-outline-white:hover {
  border-color: var(--red) !important;
  color: var(--red) !important;
}
.va-style-430 .btn-primary { color: #fff !important; }

/* Stats trong teacher hero */
.va-style-430 .va-style-427 { border-top-color: var(--border) !important; }
.va-style-430 .va-style-427 > div > .va-style-353 { color: var(--red) !important; }
.va-style-430 .va-style-427 > div > .va-style-398 { color: var(--text-muted) !important; }

/* Contact hero (va-style-56) — cream background */
.va-style-56 h1, .va-style-56 .va-style-55 { color: var(--text) !important; }
.va-style-56 p, .va-style-56 .va-style-53 { color: var(--text-mid) !important; }
.va-style-56 .va-style-54 { color: var(--red) !important; }
.va-style-56 .section-label, .va-style-56 .va-style-110 { color: var(--red) !important; }

/* Results hero (va-style-349) — cream background */
.va-style-349 h1, .va-style-349 .va-style-55 { color: var(--text) !important; }
.va-style-349 p, .va-style-349 .va-style-348 { color: var(--text-mid) !important; }
.va-style-349 .va-style-54 { color: var(--red) !important; }
.va-style-349 .va-style-345 { color: var(--red) !important; }
.va-style-349 .va-style-344 { color: var(--text-muted) !important; }
.va-style-349 .section-label, .va-style-349 .va-style-110 { color: var(--red) !important; }

/* Parent hero (va-style-269) — cream background */
.va-style-269 h1, .va-style-269 .va-style-109 { color: var(--text) !important; }
.va-style-269 p, .va-style-269 .va-style-107 { color: var(--text-mid) !important; }
.va-style-269 .va-style-267 { color: var(--red) !important; }
.va-style-269 .section-label, .va-style-269 .va-style-110 { color: var(--red) !important; }

/* SAT hero (va-style-393) — RED background, all text WHITE */
.va-style-393 { color: #fff; }
.va-style-393 h1, .va-style-393 .va-style-109 { color: #fff !important; }
.va-style-393 p, .va-style-393 .va-style-107 { color: rgba(255,255,255,0.85) !important; }
.va-style-393 .va-style-392 { color: #fff !important; font-weight: 900; }
.va-style-393 .va-style-110 { color: rgba(255,255,255,0.75) !important; }
.va-style-393 .va-style-104 { color: #fff !important; }
.va-style-393 .va-style-103 { color: rgba(255,255,255,0.75) !important; }
.va-style-393 .va-style-105 {
  background: rgba(255,255,255,0.18) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
}

/* IELTS hero (va-style-112) — RED background, all text WHITE */
.va-style-112 { color: #fff; }
.va-style-112 h1, .va-style-112 .va-style-109 { color: #fff !important; }
.va-style-112 p, .va-style-112 .va-style-107 { color: rgba(255,255,255,0.85) !important; }
.va-style-112 .va-style-108 { color: #fff !important; font-weight: 900; }
.va-style-112 .va-style-110 { color: rgba(255,255,255,0.75) !important; }
.va-style-112 .va-style-104 { color: #fff !important; }
.va-style-112 .va-style-103 { color: rgba(255,255,255,0.75) !important; }
.va-style-112 .va-style-105 {
  background: rgba(255,255,255,0.18) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
}

/* CTA band — RED background */
.cta-band h2 { color: #fff !important; }
.cta-band p { color: rgba(255,255,255,0.85) !important; }
.cta-band .va-style-114 { color: #fff !important; font-weight: 700; }

/* va-style-182 AI platform — cream background */
.va-style-182 .va-style-181 { background: var(--red-light) !important; color: var(--red-dark) !important; }
.va-style-182 .va-style-180 { color: var(--text) !important; }
.va-style-182 .va-style-175 { color: var(--text) !important; }
.va-style-182 .va-style-174 { color: var(--text-muted) !important; }
.va-style-182 .va-style-172 { color: var(--text) !important; font-weight: 700; }
.va-style-182 .va-style-171 { color: var(--text-muted) !important; }
.va-style-182 .va-style-179 { color: var(--text-muted) !important; }
.va-style-182 .va-style-177 { background: #fff !important; border: 1px solid var(--border) !important; }
.va-style-182 .va-style-173 { background: var(--red-light) !important; border: 1px solid rgba(189,30,44,0.15) !important; }
/* va-style-182 AI platform — bump body text +1px (scoped, no impact elsewhere) */
.va-style-182 .va-style-179 { font-size: 15px !important; }
.va-style-182 .va-style-175 { font-size: 14px !important; }
.va-style-182 .va-style-174 { font-size: 14px !important; }
.va-style-182 .va-style-172 { font-size: 14px !important; }
.va-style-182 .va-style-171 { font-size: 14px !important; }

/* va-style-246 parent du hoc — cream background */
.va-style-246 .va-style-240 { color: var(--text) !important; }
.va-style-246 .va-style-242 { background: #fff !important; border: 1px solid var(--border) !important; }
.va-style-246 .va-style-238 { background: #fff !important; border: 1px solid var(--border) !important; }
.va-style-246 .va-style-237 { color: var(--red-dark) !important; }
.va-style-246 .va-style-239 { color: var(--text) !important; }
.va-style-246 .va-style-235 { color: var(--text-muted) !important; }
.va-style-246 .va-style-244 { color: var(--text-mid) !important; }
.va-style-246 .va-style-245 { color: var(--text) !important; }

/* va-style-404 teacher card — cream */
.va-style-404 .va-style-399 { color: var(--text) !important; }
.va-style-404 .va-style-398 { color: var(--text-muted) !important; }
.va-style-404 .va-style-403 { color: var(--red) !important; }
.va-style-404 .va-style-400 { background: var(--red) !important; color: #fff !important; }

/* va-style-408 teacher quote box */
.va-style-408 { background: var(--red-light) !important; border-left: 3px solid var(--red) !important; }
.va-style-408 p, .va-style-406 { color: var(--text-mid) !important; }
.va-style-405 { color: var(--red) !important; font-weight: 700; }

/* va-style-292 resources hero — cream */
.va-style-292 .va-style-290 { color: var(--text) !important; }
.va-style-292 .va-style-289 { color: var(--text-mid) !important; }
.va-style-292 .va-style-291 { background: var(--red) !important; color: #fff !important; }

/* va-style-329 testimonial cards — white */
.va-style-329 .va-style-325 { color: var(--text-muted) !important; }
.va-style-329 .va-style-322 { color: var(--red) !important; }
.va-style-329 .va-style-335 { color: var(--red) !important; }
.va-style-329 .va-style-331 { color: var(--red) !important; }
.va-style-329 .va-style-319 { color: var(--red) !important; }
.va-style-329 .va-style-12 { color: var(--text-muted) !important; }
.va-style-329 .va-style-4 { color: var(--text) !important; font-weight: 600; }
.va-style-329 .va-style-317 { color: var(--text-mid) !important; }

/* Keep achieved score text white on red/blue card backgrounds */
.va-style-336 .va-style-322,
.va-style-332 .va-style-322,
.va-style-323 .va-style-322 {
  color: #fff !important;
}

/* va-style-299 Google review cards — white */
.va-style-299 .va-style-298 { color: #f59e0b !important; }
.va-style-299 .va-style-297 { color: var(--text-mid) !important; }
.va-style-299 .va-style-296 { color: var(--text) !important; }

/* va-style-2 misc text */
.va-style-2 { color: var(--text-muted) !important; }

/* ============================================================
   IELTS PAGE — dung cung mau do logo
   ============================================================ */
/* Placement test banner */
#page-ielts .va-style-102 {
  background: var(--red) !important;
}
/* IELTS CTA band */
#page-ielts .cta-band {
  background: var(--red) !important;
}
/* IELTS guarantee bar */
#page-ielts .va-style-391 {
  background: var(--red-dark) !important;
}
/* IELTS section labels */
#page-ielts .section-label {
  color: var(--red) !important;
}
/* IELTS featured card */
#page-ielts .va-style-94 {
  border-color: var(--red) !important;
  box-shadow: 0 8px 40px rgba(232,25,44,0.15) !important;
}
/* IELTS badge blue -> red */
#page-ielts .badge-blue {
  background: var(--red-light) !important;
  color: var(--red) !important;
}
/* IELTS check marks */
#page-ielts .va-style-90 {
  color: var(--red) !important;
}
/* IELTS skill icons */
#page-ielts .va-style-73 {
  background: var(--red-light) !important;
  width: 54px !important;
  height: 54px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 16px !important;
  border: 1px solid rgba(189,30,44,0.15) !important;
  box-shadow: 0 10px 26px rgba(189, 30, 44, 0.12) !important;
  font-size: 22px !important;
  margin-bottom: 14px !important;
}
/* IELTS price color */
#page-ielts .va-style-91,
#page-ielts .va-style-86 {
  color: var(--red) !important;
}
/* IELTS highlight text */
#page-ielts .va-style-67 {
  color: var(--red) !important;
}
/* IELTS btn-blue -> do */
#page-ielts .btn-blue {
  background: var(--red) !important;
}
#page-ielts .btn-blue:hover {
  background: var(--red-dark) !important;
  box-shadow: 0 4px 16px rgba(189,30,44,0.35) !important;
}
/* IELTS va-style-80 */
#page-ielts .va-style-80 {
  background: var(--red) !important;
}

/* ============================================================
   STICKY BAR — nền sáng
   ============================================================ */
.sticky-bar .va-style-63 { color: var(--text) !important; font-weight: 600; }
.sticky-bar .va-style-62 { color: var(--text-muted) !important; }
.sticky-bar .va-style-54 { color: var(--red) !important; }
.sticky-bar strong { color: var(--red) !important; }
/* Buttons trong sticky-bar sáng */
.sticky-bar .btn-outline-white {
  color: var(--text) !important;
  border-color: var(--border-dark) !important;
  background: transparent !important;
}
.sticky-bar .btn-outline-white:hover {
  border-color: var(--red) !important;
  color: var(--red) !important;
}
.sticky-bar .btn-white {
  background: var(--red) !important;
  color: #fff !important;
}
.sticky-bar .btn-white:hover {
  background: var(--red-dark) !important;
}

/* ============================================================
   BAR CHART — cấu trúc đúng
   va-style-313 = wrapper toàn bộ chart (flex row)
   va-style-305 = 1 cột (flex column: bar-area + label + %)
   bar elements = nằm trong bar-area align bottom
   ============================================================ */
.va-style-313 {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  justify-content: center;
  /* Không set height ở đây — để bars tự quyết định */
  overflow: visible;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.va-style-305 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex: 1;
  min-width: 0;
}
/* Bar element — tự align bottom trong cột */
.va-style-312,
.va-style-311,
.va-style-309,
.va-style-307,
.va-style-304 {
  width: 100%;
  border-radius: 6px 6px 0 0;
  display: block;
}
/* Heights theo tỉ lệ đúng: max=32% → 160px */
.va-style-312 { background: #e5e0d6; height: 40px; }   /* 8%  */
.va-style-311 { background: #dba5a0; height: 100px; }  /* 20% */
.va-style-309 { background: var(--red); height: 160px; } /* 32% ← cao nhất */
.va-style-307 { background: var(--red-dark); height: 140px; } /* 28% */
.va-style-304 { background: var(--red-dark); height: 60px; }  /* 12% */

/* Label tên (1200-1299, ...) */
.va-style-60,
.va-style-303 {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
  margin-top: 8px;
  line-height: 1.3;
}
/* % số */
.va-style-310 { font-size: 13px; font-weight: 700; color: var(--text-muted); margin-top: 3px; }
.va-style-308 { font-size: 13px; font-weight: 700; color: var(--red); margin-top: 3px; }
.va-style-306 { font-size: 13px; font-weight: 700; color: var(--red-dark); margin-top: 3px; }
.va-style-302 { font-size: 13px; font-weight: 700; color: var(--red-dark); margin-top: 3px; }

@media (min-width: 900px) {
  .va-style-313 {
    max-width: 620px;
    margin-inline: auto;
  }

  .va-style-305 {
    flex: 0 0 auto;
    width: clamp(56px, 6vw, 92px);
  }

  .va-style-312 { height: 22px; }
  .va-style-311 { height: 56px; }
  .va-style-309 { height: 92px; }
  .va-style-307 { height: 80px; }
  .va-style-304 { height: 34px; }

  .va-style-60,
  .va-style-303 {
    font-size: 10px;
    margin-top: 6px;
  }

  .va-style-310,
  .va-style-308,
  .va-style-306,
  .va-style-302 {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .va-style-313 { gap: 6px; }
  .va-style-312 { height: 28px; }
  .va-style-311 { height: 70px; }
  .va-style-309 { height: 112px; }
  .va-style-307 { height: 98px; }
  .va-style-304 { height: 42px; }
  .va-style-60, .va-style-303 { font-size: 9px; }
  .va-style-310, .va-style-308, .va-style-306, .va-style-302 { font-size: 11px; }
}
