:root {
    --navy: #0B1E3D;
    --navy-mid: #122849;
    --teal: #00C9A7;
    --teal-dark: #00A387;
    --gold: #F5A623;
    --sky: #E8F4FD;
    --off-white: #F7F9FC;
    --white: #FFFFFF;
    --text-dark: #0B1E3D;
    --text-mid: #3A5173;
    --text-muted: #6B87A8;
    --border: rgba(11,30,61,0.08);
    --shadow-soft: 0 4px 24px rgba(11,30,61,0.07);
    --shadow-card: 0 8px 40px rgba(11,30,61,0.10);
    --radius: 14px;
    --radius-sm: 8px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
  }

  h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.2; }

  a { color: inherit; text-decoration: none; }

  img { max-width: 100%; display: block; }

  /* ===== NAVBAR ===== */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(11,30,61,0.97);
    backdrop-filter: blur(12px);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem; font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
  }

  .nav-logo span { color: var(--teal); }

  .nav-links {
    display: flex; align-items: center; gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.875rem; font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--teal); }

  .nav-cta {
    background: var(--teal);
    color: var(--navy) !important;
    font-weight: 600 !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    transition: background 0.2s, transform 0.15s !important;
  }

  .nav-cta:hover { background: #00e0bc !important; transform: translateY(-1px); }

  .mobile-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    color: white; font-size: 1.5rem;
    padding: 4px 8px; line-height: 1;
    flex-shrink: 0;
  }

  /* Mobile slide-down menu */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0.5rem 0 1rem;
    position: relative; z-index: 99;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    padding: 0.85rem 5%;
    font-size: 0.95rem; font-weight: 500;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s, background 0.2s;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--teal); background: rgba(255,255,255,0.03); }
  .mobile-menu .mobile-cta {
    margin: 0.75rem 5% 0;
    background: var(--teal); color: var(--navy) !important;
    font-weight: 700; text-align: center;
    border-radius: 50px; border-bottom: none;
  }

  /* ===== TICKER ===== */
  .ticker-wrap {
    background: var(--teal);
    padding: 10px 0;
    overflow: hidden;
  }

  .ticker-track {
    display: flex; gap: 0;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }

  .ticker-track:hover { animation-play-state: paused; }

  .ticker-item {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 0 2.5rem;
    font-size: 0.82rem; font-weight: 600;
    color: var(--navy);
  }

  .ticker-sep { color: rgba(11,30,61,0.4); }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ===== RESPONSIVE NAV ===== */
  @media (max-width: 900px) {
    .nav-links { display: none !important; }
    .mobile-toggle { display: block; }
  }
  
    /* ===== HERO ===== */
  .hero {
    background: var(--navy);
    padding: 100px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,201,167,0.12) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute; bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,201,167,0.12);
    border: 1px solid rgba(0,201,167,0.3);
    color: var(--teal);
    font-size: 0.8rem; font-weight: 600;
    padding: 6px 14px; border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px; text-transform: uppercase;
  }

  .badge-dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: pulse 1.8s ease-in-out infinite; }

  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--teal);
    position: relative;
  }

  .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.75;
  }

  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

  .btn-primary {
    background: var(--teal);
    color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 50px; border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
  }

  .btn-primary:hover { background: #00ddb7; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,201,167,0.35); }

  .btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.2);
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
  }

  .btn-outline:hover { border-color: var(--teal); color: var(--teal); }

  .cta-section .btn-outline,
  .training-section .btn-outline {
    color: rgba(255,255,255,0.85);
  }

  .hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem; font-weight: 800;
    color: var(--white);
  }

  .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

  /* Hero Visual */
  .hero-visual { position: relative; }

  .hero-card-stack { position: relative; height: 420px; }

  .hero-card {
    position: absolute;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 1.5rem;
    animation: float 4s ease-in-out infinite;
  }

  .hero-card:nth-child(1) { top: 0; left: 0; width: 280px; animation-delay: 0s; }
  .hero-card:nth-child(2) { top: 130px; right: 0; width: 260px; animation-delay: 1.2s; }
  .hero-card:nth-child(3) { bottom: 0; left: 40px; width: 300px; animation-delay: 2.4s; }

  @keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .card-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 0.75rem;
  }

  .icon-teal { background: rgba(0,201,167,0.15); }
  .icon-gold { background: rgba(245,166,35,0.15); }
  .icon-blue { background: rgba(56,139,253,0.15); }

  .card-title { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 0.25rem; }
  .card-sub { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

  .card-progress { margin-top: 1rem; }
  .progress-label { display: flex; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
  .progress-bar { height: 4px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
  .progress-fill { height: 100%; border-radius: 4px; background: var(--teal); }

  .card-tag {
    display: inline-block;
    padding: 3px 10px; border-radius: 50px;
    font-size: 0.72rem; font-weight: 600; margin-top: 0.75rem;
  }

  .tag-live { background: rgba(0,201,167,0.15); color: var(--teal); border: 1px solid rgba(0,201,167,0.3); }
  .tag-popular { background: rgba(245,166,35,0.15); color: var(--gold); border: 1px solid rgba(245,166,35,0.3); }

  /* ===== TRUST BAR ===== */
  .trust-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 5%;
  }

  .trust-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap;
  }

  .trust-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.875rem; font-weight: 500; color: var(--text-mid);
  }

  .trust-icon { font-size: 1.1rem; }

  /* ===== SECTIONS ===== */
  section { padding: 80px 5%; }

  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-tag {
    display: inline-block;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }

  .section-title em { font-style: normal; color: var(--teal-dark); }

  .section-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
  }

  .section-header { margin-bottom: 3rem; }

  /* ===== TOPICS GRID ===== */
  .topics-section { background: var(--white); }

  .topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
  }

  .topic-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
  }

  .topic-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--teal);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }

  .topic-card:hover {
    border-color: rgba(0,201,167,0.3);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
  }

  .topic-card:hover::before { transform: scaleX(1); }

  .topic-emoji { font-size: 2rem; margin-bottom: 1rem; }

  .topic-name {
    font-family: 'Syne', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: var(--navy); margin-bottom: 0.4rem;
  }

  .topic-desc { font-size: 0.855rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }

  .topic-arrow {
    font-size: 0.8rem; font-weight: 600; color: var(--teal-dark);
    display: flex; align-items: center; gap: 5px;
  }

  .topic-badge {
    position: absolute; top: 1rem; right: 1rem;
    font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.5px;
  }

  .badge-new { background: rgba(0,201,167,0.1); color: var(--teal-dark); border: 1px solid rgba(0,201,167,0.25); }
  .badge-hot { background: rgba(245,166,35,0.1); color: #C77C00; border: 1px solid rgba(245,166,35,0.25); }
  .badge-live { background: rgba(220,38,38,0.1); color: #B91C1C; border: 1px solid rgba(220,38,38,0.2); }

  /* ===== TRAINING ===== */
  .training-section { background: var(--navy); }

  .training-section .section-title { color: var(--white); }
  .training-section .section-lead { color: rgba(255,255,255,0.55); }
  .training-section .section-tag { color: var(--teal); }

  .training-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  }

  .training-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2.25rem;
    transition: all 0.25s;
    position: relative; overflow: hidden;
  }

  .training-card.featured {
    border-color: rgba(0,201,167,0.4);
    background: rgba(0,201,167,0.06);
  }

  .training-card:hover { transform: translateY(-3px); border-color: rgba(0,201,167,0.5); }

  .training-type {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    color: var(--teal); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 6px;
  }

  .training-card h3 {
    font-size: 1.4rem; font-weight: 800;
    color: var(--white); margin-bottom: 0.75rem;
  }

  .training-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; line-height: 1.7; }

  .training-features { list-style: none; margin-bottom: 2rem; }

  .training-features li {
    font-size: 0.875rem; color: rgba(255,255,255,0.7);
    padding: 0.4rem 0;
    display: flex; align-items: center; gap: 10px;
  }

  .training-features li::before {
    content: '';
    width: 16px; height: 16px; flex-shrink: 0;
    background: var(--teal);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='currentColor' d='M12.7 4.3a1 1 0 0 1 0 1.4l-5 5a1 1 0 0 1-1.4 0l-2-2a1 1 0 0 1 1.4-1.4L7 8.6l4.3-4.3a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='currentColor' d='M12.7 4.3a1 1 0 0 1 0 1.4l-5 5a1 1 0 0 1-1.4 0l-2-2a1 1 0 0 1 1.4-1.4L7 8.6l4.3-4.3a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E") no-repeat center;
  }

  .training-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 600;
    color: var(--teal);
    transition: gap 0.2s;
    text-decoration: none;
  }

  .training-link:hover { gap: 12px; }

  /* ===== STATS BAND — overflow fix ===== */
  .stats-band {
    background: var(--teal);
    padding: 60px 5%;
    overflow: hidden; /* Fix: prevents stat numbers from causing horizontal overflow */
  }

  .stats-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem; text-align: center;
  }

  .stat-box { padding: 1.5rem; min-width: 0; /* Fix: allow grid children to shrink */ }

  .stat-box .number {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.75rem); /* Fix: clamp prevents overflow on small screens */
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
    white-space: nowrap;
  }

  .stat-box .label {
    font-size: clamp(0.72rem, 1.2vw, 0.875rem); /* Fix: scale label text down on narrow viewports */
    font-weight: 500;
    color: rgba(11,30,61,0.7);
    word-break: break-word;
  }

  /* ===== RESOURCES ===== */
  .resources-section { background: var(--off-white); }

  .resources-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .resource-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.25s;
    text-decoration: none;
    display: block;
    color: inherit;
  }

  .resource-card:hover {
    border-color: rgba(0,201,167,0.35);
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
  }

  .res-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--sky); margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    transition: background 0.2s;
  }

  .resource-card:hover .res-icon { background: rgba(0,201,167,0.12); }

  .res-name { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
  .res-desc { font-size: 0.78rem; color: var(--text-muted); }

  /* ===== COMMUNITY ===== */
  .community-section { background: var(--white); }

  .community-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }

  .community-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }

  .community-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex; flex-direction: column; gap: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
  }

  .community-card:hover { border-color: rgba(0,201,167,0.4); background: rgba(0,201,167,0.03); transform: translateY(-2px); }

  .comm-platform { font-size: 1.5rem; }
  .comm-name { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--navy); }
  .comm-desc { font-size: 0.78rem; color: var(--text-muted); }

  /* ===== REVIEWS SLIDER ===== */
  .reviews-section { background: var(--off-white); }

  .reviews-section .section-tag { color: var(--teal-dark); }

  .slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
  }

  .review-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }

  .review-card {
    flex: 0 0 100%;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .review-stars {
    display: flex; gap: 4px;
    font-size: 1.1rem;
    color: var(--gold);
  }

  .review-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    font-style: italic;
  }

  .review-text::before { content: '\201C'; }
  .review-text::after  { content: '\201D'; }

  .review-author {
    display: flex; align-items: center; gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }

  .review-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
  }

  .review-name {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    color: var(--navy);
  }

  .review-role {
    font-size: 0.8rem; color: var(--text-muted);
    margin-top: 2px;
  }

  .review-badge {
    margin-left: auto;
    font-size: 0.7rem; font-weight: 700;
    padding: 3px 10px; border-radius: 50px;
    background: rgba(0,201,167,0.1); color: var(--teal-dark);
    border: 1px solid rgba(0,201,167,0.25);
    white-space: nowrap;
  }

  /* Controls */
  .slider-controls {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-top: 1.75rem;
  }

  .slider-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--navy);
    transition: all 0.2s;
    flex-shrink: 0;
  }

  .slider-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--navy); }

  .review-dots {
    display: flex; gap: 8px; align-items: center;
  }

  .review-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.25s;
    border: none; padding: 0;
  }

  .review-dot.active {
    background: var(--teal-dark);
    width: 24px; border-radius: 4px;
  }

  /* ===== CTA ===== */
  .cta-section {
    background: var(--navy);
    padding: 100px 5%;
    text-align: center;
    position: relative; overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0,201,167,0.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .cta-inner { position: relative; max-width: 700px; margin: 0 auto; }

  .cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; color: var(--white);
    margin-bottom: 1.25rem; letter-spacing: -0.5px;
  }

  .cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; }

  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ===== FOOTER ===== */
  footer {
    background: #07132A;
    padding: 60px 5% 30px;
  }

  .footer-inner { max-width: 1200px; margin: 0 auto; }

  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); margin: 1rem 0 1.5rem; line-height: 1.7; max-width: 280px; }

  .footer-logo { font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 800; color: white; }
  .footer-logo span { color: var(--teal); }

  .social-row { display: flex; gap: 10px; }

  .social-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: rgba(255,255,255,0.6);
    transition: all 0.2s;
    text-decoration: none;
  }

  .social-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--navy); }

  .footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.875rem; font-weight: 700; color: white; margin-bottom: 1rem; }

  .footer-col ul { list-style: none; }

  .footer-col ul li { margin-bottom: 0.6rem; }

  .footer-col ul li a { font-size: 0.855rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--teal); }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.3);
    flex-wrap: wrap; gap: 1rem;
  }

  .footer-bottom a { color: rgba(255,255,255,0.4); }
  .footer-bottom a:hover { color: var(--teal); }

  /* Scroll animations */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .training-grid { grid-template-columns: 1fr; }
    .community-inner { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-top .footer-brand { grid-column: span 2; }
    .review-card { padding: 2rem 1.5rem; }
  }

  @media (max-width: 600px) {
    .hero { padding: 60px 5% 50px; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-top .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; text-align: center; }
    section { padding: 60px 5%; }
    .community-grid { grid-template-columns: 1fr; }
    .trust-inner { gap: 1.25rem; justify-content: flex-start; }
    .cta-actions { flex-direction: column; align-items: center; }
    .review-card { padding: 1.5rem 1.25rem; }
    .review-text { font-size: 0.95rem; }
    .review-badge { display: none; }
  }
  
  /* ===== CSS VARIABLES (match site theme) ===== */
:root {
  --teal: #00C9A7;
  --teal-dark: #009E85;
  --navy: #0A1F44;
  --gold: #F5A623;
  --white: #fff;
  --off-white: #F8FAFC;
  --border: #E4EAF2;
  --text-dark: #1A2B45;
  --text-muted: #6B7A95;
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===== SHARED SECTION PATTERNS ===== */
section { padding: 80px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }

.section-tag {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-title em { font-style: normal; color: var(--teal-dark); }

.section-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ===== PAGE HERO ===== */
.tr-hero {
  background: var(--navy);
  padding: 90px 5% 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.tr-hero::before {
  content: '';
  position: absolute; top: -200px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,201,167,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.tr-hero::after {
  content: '';
  position: absolute; bottom: -160px; left: -120px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.tr-hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }

.tr-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,201,167,0.12);
  border: 1px solid rgba(0,201,167,0.3);
  color: var(--teal);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.8px; text-transform: uppercase;
}

.tr-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.8px;
  line-height: 1.15;
}

.tr-hero h1 em { font-style: normal; color: var(--teal); }

.tr-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.tr-hero-stats {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.5rem;
}

.tr-stat { text-align: center; }

.tr-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--teal); line-height: 1;
}

.tr-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: 4px;
}

.tr-hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--teal); color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  padding: 0.9rem 2rem; border-radius: 50px;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; text-decoration: none;
}

.btn-primary:hover { background: #00ddb7; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,201,167,0.35); }

.btn-outline {
  background: transparent; color: rgba(255,255,255,0.85);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  padding: 0.9rem 2rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; text-decoration: none;
}

.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* ===== COURSE OPTIONS ===== */
.courses-section { background: var(--off-white); }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.course-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
}

.course-card:hover {
  box-shadow: 0 16px 40px rgba(10,31,68,0.1);
  transform: translateY(-4px);
}

.course-card.featured {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(0,201,167,0.15);
}

.course-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--navy);
  font-size: 0.7rem; font-weight: 800;
  padding: 4px 16px; border-radius: 50px;
  letter-spacing: 0.8px; text-transform: uppercase;
  white-space: nowrap;
}

.course-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,201,167,0.15), rgba(0,201,167,0.05));
  border: 1.5px solid rgba(0,201,167,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.course-type {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}

.course-name {
  font-size: 1.25rem; font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.course-desc {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 1.5rem;
}

.course-features {
  list-style: none;
  margin-bottom: 1.75rem;
  flex: 1;
}

.course-features li {
  font-size: 0.875rem; color: var(--text-dark);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.5;
}

.course-features li:last-child { border-bottom: none; }

.course-features li::before {
  content: '✓';
  color: var(--teal); font-weight: 700;
  font-size: 0.8rem; margin-top: 2px; flex-shrink: 0;
}

.course-price-row {
  display: flex; align-items: flex-end; gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.course-price {
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}

.course-price-orig {
  font-size: 1rem; color: var(--text-muted);
  text-decoration: line-through; margin-bottom: 2px;
}

.course-price-note {
  font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 3px;
}

.course-lang-pills {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.lang-pill {
  font-size: 0.72rem; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.2);
  color: var(--teal-dark);
}

.wa-btn {
  width: 100%;
  background: #25D366; color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  padding: 0.85rem 1.5rem; border-radius: 50px;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s; text-decoration: none;
}

.wa-btn:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); }

/* ===== SYLLABUS ===== */
.syllabus-section { background: var(--white); }

.syllabus-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  align-items: center;
}

.syllabus-pills {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.5rem;
}

.syl-pill {
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 18px; border-radius: 50px;
  display: flex; align-items: center; gap: 6px;
}

.syl-pill span { color: var(--teal); font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.05rem; }

.syllabus-stats-box {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.syl-stat { text-align: center; }
.syl-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--teal); line-height: 1;
}
.syl-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.modules-accordion { display: grid; gap: 0.75rem; }

.mod-item {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.mod-item.is-open { border-color: rgba(0,201,167,0.4); }

.mod-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  user-select: none;
}

.mod-header:hover { background: rgba(0,201,167,0.04); }

.mod-num {
  background: var(--teal);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 0.75rem;
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.mod-title-text {
  font-size: 0.93rem; font-weight: 700;
  color: var(--text-dark); flex: 1;
}

.mod-tag {
  font-size: 0.68rem; font-weight: 600;
  padding: 2px 8px; border-radius: 50px;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.2);
  color: var(--teal-dark);
  white-space: nowrap;
}

.mod-chevron {
  color: var(--teal); font-size: 0.8rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.mod-item.is-open .mod-chevron { transform: rotate(180deg); }

.mod-body {
  display: none;
  padding: 0 1.25rem 1.25rem;
}

.mod-item.is-open .mod-body { display: block; }

.mod-topics {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}

.mod-topic {
  font-size: 0.78rem; color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 50px;
  line-height: 1.4;
}

.mod-topic.new-topic {
  background: rgba(245,166,35,0.08);
  border-color: rgba(245,166,35,0.3);
  color: #b07800;
}

/* ===== WHO IS THIS FOR ===== */
.for-who-section { background: var(--navy); overflow: hidden; position: relative; }

.for-who-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,201,167,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.for-who-section .section-title { color: var(--white); }
.for-who-section .section-lead { color: rgba(255,255,255,0.55); }

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.who-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background 0.2s, border-color 0.2s;
  position: relative; z-index: 1;
}

.who-card:hover {
  background: rgba(0,201,167,0.08);
  border-color: rgba(0,201,167,0.25);
}

.who-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }

.who-title {
  font-size: 0.92rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.4rem;
}

.who-desc { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ===== REVIEWS SLIDER ===== */
.reviews-section { background: var(--off-white); }

.reviews-slider-wrap {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.review-slide {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  min-width: calc((100% - 3rem) / 3);
  flex-shrink: 0;
  display: flex; flex-direction: column;
}

.rs-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }

.rs-quote {
  font-size: 0.92rem; color: var(--text-dark);
  line-height: 1.75; flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.rs-footer { display: flex; align-items: center; gap: 0.85rem; }

.rs-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.rs-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.rs-source { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2rem;
}

.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}

.slider-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--navy); }

.slider-dots {
  display: flex; gap: 6px; align-items: center;
}

.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.slider-dot.active {
  background: var(--teal); width: 22px; border-radius: 4px;
}

/* ===== WHY TECHGYAN ===== */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.why-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.why-card:hover {
  box-shadow: 0 12px 32px rgba(10,31,68,0.09);
  transform: translateY(-3px);
}

.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,201,167,0.15), rgba(0,201,167,0.05));
  border: 1.5px solid rgba(0,201,167,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}

.why-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.why-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ===== COUPON SECTION ===== */
.coupon-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a5e 100%);
  position: relative; overflow: hidden;
}

.coupon-section::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,201,167,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.coupon-inner {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto;
  text-align: center;
}

.coupon-inner .section-title { color: var(--white); }
.coupon-inner .section-lead { color: rgba(255,255,255,0.55); margin: 0 auto 2rem; }

.coupon-form {
  display: flex; gap: 0;
  max-width: 480px; margin: 0 auto 1rem;
  border-radius: 50px;
  overflow: hidden;
  border: 1.5px solid rgba(0,201,167,0.4);
  background: rgba(255,255,255,0.06);
}

.coupon-input {
  flex: 1;
  background: transparent; border: none; outline: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 0.9rem 1.5rem;
}

.coupon-input::placeholder { color: rgba(255,255,255,0.35); }

.coupon-btn {
  background: var(--teal); color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  padding: 0.9rem 1.75rem;
  border: none; cursor: pointer;
  border-radius: 0 50px 50px 0;
  transition: background 0.2s;
  white-space: nowrap;
}

.coupon-btn:hover { background: #00ddb7; }

.coupon-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.coupon-perks {
  display: flex; gap: 2rem; justify-content: center;
  flex-wrap: wrap; margin-top: 2rem;
}

.coupon-perk {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 6px;
}

.coupon-perk::before { content: '✓'; color: var(--teal); font-weight: 700; }

#coupon-msg {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  min-height: 1.2em;
  font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section { background: var(--off-white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item.is-open { border-color: rgba(0,201,167,0.35); }

.faq-q {
  padding: 1.1rem 1.25rem;
  font-size: 0.9rem; font-weight: 700; color: var(--navy);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  user-select: none;
}

.faq-q:hover { background: rgba(0,201,167,0.03); }

.faq-icon {
  color: var(--teal); font-size: 0.85rem;
  transition: transform 0.3s; flex-shrink: 0;
}

.faq-item.is-open .faq-icon { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.75;
}

.faq-item.is-open .faq-a { display: block; }

/* ===== COMMUNITY / SOCIAL PROOF ===== */
.community-section { background: var(--white); }

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.community-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: box-shadow 0.2s;
}

.community-card:hover { box-shadow: 0 8px 24px rgba(10,31,68,0.08); }

.community-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--teal); line-height: 1;
  margin-bottom: 0.4rem;
}

.community-card-label {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.5;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--navy);
  text-align: center;
  padding: 90px 5%;
  position: relative; overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,201,167,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }

.cta-inner h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 1rem; letter-spacing: -0.5px;
}

.cta-inner h2 em { color: var(--teal); font-style: normal; }

.cta-inner p { color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 2.5rem; }

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .syllabus-intro { grid-template-columns: 1fr; gap: 2rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .review-slide { min-width: calc((100% - 1.5rem) / 2); }
}

@media (max-width: 600px) {
  section { padding: 60px 5%; }
  .tr-hero { padding: 70px 5% 60px; }
  .tr-hero-stats { gap: 1.5rem; }
  .courses-grid { grid-template-columns: 1fr; }
  .review-slide { min-width: 100%; }
  .for-who-grid { grid-template-columns: 1fr 1fr; }
  .coupon-form { flex-direction: column; border-radius: var(--radius); }
  .coupon-btn { border-radius: 0 0 var(--radius) var(--radius); }
  .cta-actions { flex-direction: column; align-items: center; }
}

  /* ===== PAGE HERO ===== */
  .page-hero {
    background: var(--navy);
    padding: 80px 5% 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .page-hero::before {
    content: '';
    position: absolute; top: -200px; right: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,201,167,0.13) 0%, transparent 65%);
    pointer-events: none;
  }

  .page-hero::after {
    content: '';
    position: absolute; bottom: -120px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 65%);
    pointer-events: none;
  }

  .page-hero-inner {
    position: relative; z-index: 1;
    max-width: 780px; margin: 0 auto;
  }

  .page-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,201,167,0.12);
    border: 1px solid rgba(0,201,167,0.3);
    color: var(--teal);
    font-size: 0.78rem; font-weight: 700;
    padding: 6px 16px; border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.8px; text-transform: uppercase;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
  }

  .page-hero h1 em { font-style: normal; color: var(--teal); }

  .page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 600px; margin: 0 auto 2.5rem;
  }

  /* Aggregate score strip */
  .score-strip {
    display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .score-item { text-align: center; }

  .score-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem; font-weight: 800;
    color: var(--teal);
    line-height: 1;
  }

  .score-stars { font-size: 0.9rem; color: var(--gold); margin: 4px 0 2px; letter-spacing: 2px; }
  .score-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 500; }

  /* ===== SECTION BASE ===== */
  section { padding: 80px 5%; }
  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-tag {
    display: inline-block;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
  }

  .section-title em { font-style: normal; color: var(--teal-dark); }

  .section-lead {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
  }

  .section-header { margin-bottom: 3rem; }

  /* ===== HIGHLIGHT CARD (first review, featured) ===== */
  .featured-review-section { background: var(--white); }

  .featured-card {
    background: linear-gradient(135deg, var(--navy) 0%, #122849 100%);
    border: 1px solid rgba(0,201,167,0.3);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
  }

  .featured-card::before {
    content: '\201C';
    position: absolute; top: -10px; left: 30px;
    font-size: 10rem; line-height: 1;
    color: rgba(0,201,167,0.08);
    font-family: Georgia, serif;
    pointer-events: none;
  }

  .featured-card-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start;
  }

  .featured-stars { font-size: 1.2rem; color: var(--gold); letter-spacing: 3px; margin-bottom: 1.25rem; }

  .featured-text {
    font-size: 1.15rem; line-height: 1.85;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
  }

  .featured-author {
    display: flex; align-items: center; gap: 1rem;
  }

  .avatar-lg {
    width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem; font-weight: 800;
    color: var(--navy);
  }

  .author-name {
    font-family: 'Syne', sans-serif;
    font-size: 1rem; font-weight: 700; color: var(--white);
  }

  .author-sub { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 3px; }

  .featured-meta {
    display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end;
  }

  .meta-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600;
  }

  .pill-teal { background: rgba(0,201,167,0.15); color: var(--teal); border: 1px solid rgba(0,201,167,0.3); }
  .pill-gold { background: rgba(245,166,35,0.12); color: var(--gold); border: 1px solid rgba(245,166,35,0.25); }
  .pill-grey { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.1); }

  /* ===== FEEDBACK TABLE CARD ===== */
  .fb-table-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.25s, transform 0.25s;
  }

  .fb-table-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
  }

  .fb-card-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.75rem;
    background: var(--navy);
    gap: 1rem; flex-wrap: wrap;
  }

  .fb-trainee-info { display: flex; align-items: center; gap: 0.9rem; }

  .avatar-sm {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem; font-weight: 800;
    color: var(--navy);
  }

  .fb-name {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem; font-weight: 700; color: var(--white);
  }

  .fb-contact { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

  .fb-overall {
    display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
  }

  .fb-overall .stars { font-size: 1rem; color: var(--gold); letter-spacing: 2px; }
  .fb-overall .score-tag {
    font-size: 0.72rem; font-weight: 700; padding: 2px 10px; border-radius: 50px;
    background: rgba(0,201,167,0.2); color: var(--teal);
    border: 1px solid rgba(0,201,167,0.3);
  }

  /* Table inside card */
  .fb-table { width: 100%; border-collapse: collapse; }

  .fb-table tr { border-bottom: 1px solid var(--border); }
  .fb-table tr:last-child { border-bottom: none; }

  .fb-table td {
    padding: 0.85rem 1.75rem;
    font-size: 0.875rem;
    vertical-align: top;
  }

  .fb-table td:first-child {
    width: 42%;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
  }

  .fb-table td:last-child {
    color: var(--text-dark);
    font-weight: 400;
  }

  .fb-table tr:nth-child(even) td { background: var(--off-white); }

  .inline-stars { color: var(--gold); letter-spacing: 1px; font-size: 0.9rem; }

  .badge-yes {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.75rem; font-weight: 700; padding: 2px 10px; border-radius: 50px;
    background: rgba(0,201,167,0.1); color: var(--teal-dark);
    border: 1px solid rgba(0,201,167,0.25);
  }

  .badge-good {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.75rem; font-weight: 700; padding: 2px 10px; border-radius: 50px;
    background: rgba(245,166,35,0.1); color: #8a5a00;
    border: 1px solid rgba(245,166,35,0.25);
  }

  /* ===== REVIEW GRID (cards) ===== */
  .reviews-grid-section { background: var(--off-white); }

  .reviews-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
  }

  .review-card-grid {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.25s;
    display: flex; flex-direction: column; gap: 1rem;
    position: relative;
    overflow: hidden;
  }

  .review-card-grid::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 100%);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }

  .review-card-grid:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
    border-color: rgba(0,201,167,0.25);
  }

  .review-card-grid:hover::after { transform: scaleX(1); }

  .rc-stars { font-size: 1rem; color: var(--gold); letter-spacing: 2px; }

  .rc-quote {
    font-size: 0.93rem; line-height: 1.8;
    color: var(--text-mid);
    flex: 1;
  }

  .rc-quote::before { content: '\201C'; color: var(--teal); font-size: 1.2em; }
  .rc-quote::after  { content: '\201D'; color: var(--teal); font-size: 1.2em; }

  .rc-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }

  .rc-author { display: flex; align-items: center; gap: 0.75rem; }

  .rc-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, #006b59 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem; font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
  }

  .rc-name {
    font-family: 'Syne', sans-serif;
    font-size: 0.875rem; font-weight: 700; color: var(--navy);
  }

  .rc-location { font-size: 0.75rem; color: var(--text-muted); margin-top: 1px; }

  .rc-topic {
    font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
    background: rgba(0,201,167,0.08); color: var(--teal-dark);
    border: 1px solid rgba(0,201,167,0.2);
    white-space: nowrap;
  }

  /* ===== CTA BAND ===== */
  .cta-section {
    background: var(--navy);
    padding: 90px 5%;
    text-align: center;
    position: relative; overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0,201,167,0.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .cta-inner { position: relative; max-width: 700px; margin: 0 auto; }

  .cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; color: var(--white);
    margin-bottom: 1.25rem; letter-spacing: -0.5px;
  }

  .cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; }

  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  .btn-primary {
    background: var(--teal); color: var(--navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 50px; border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s; text-decoration: none;
  }

  .btn-primary:hover { background: #00ddb7; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,201,167,0.35); }

  .btn-outline {
    background: transparent; color: rgba(255,255,255,0.85);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.2);
    cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s; text-decoration: none;
  }

  .btn-outline:hover { border-color: var(--teal); color: var(--teal); }

  /* ===== FOOTER (shared) ===== */
  footer { background: #07132A; padding: 60px 5% 30px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); margin: 1rem 0 1.5rem; line-height: 1.7; max-width: 280px; }
  .footer-logo { font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 800; color: white; }
  .footer-logo span { color: var(--teal); }
  .social-row { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: rgba(255,255,255,0.6);
    transition: all 0.2s; text-decoration: none;
  }
  .social-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--navy); }
  .footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.875rem; font-weight: 700; color: white; margin-bottom: 1rem; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul li a { font-size: 0.855rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--teal); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom a { color: rgba(255,255,255,0.4); }
  .footer-bottom a:hover { color: var(--teal); }

  /* ===== EXPANDABLE REVIEW CARDS ===== */
  .review-card-grid {
    cursor: pointer;
  }

  .rc-expand-hint {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--teal-dark);
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 0.25rem;
  }

  .rc-chevron {
    display: inline-block;
    transition: transform 0.3s ease;
    font-style: normal;
    color: var(--teal);
  }

  .review-card-grid.is-open .rc-chevron {
    transform: rotate(180deg);
  }

  .rc-detail-panel {
    display: none;
    border-top: 2px solid rgba(0,201,167,0.2);
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
    border-bottom: 1.5px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    margin-top: -4px;
    background: var(--white);
  }

  .review-card-grid.is-open + .rc-detail-panel {
    display: block;
  }

  .review-card-grid.is-open {
    border-color: rgba(0,201,167,0.35);
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: none;
    transform: none;
  }

  .rc-detail-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
  }

  .rc-detail-table tr {
    border-bottom: 1px solid var(--border);
  }

  .rc-detail-table tr:last-child {
    border-bottom: none;
  }

  .rc-detail-table td {
    padding: 0.55rem 0.5rem;
    vertical-align: top;
  }

  .rc-detail-table td:first-child {
    width: 44%;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
  }

  .rc-detail-table td:last-child {
    color: var(--text-dark);
  }

  .rc-detail-table tr:nth-child(even) td {
    background: var(--off-white);
  }

  /* ===== BATCHES SECTION ===== */
  .batches-section {
    background: var(--off-white);
    padding: 90px 5%;
  }

  .batches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .batch-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  }

  .batch-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
  }

  .batch-card--ongoing {
    border-color: rgba(0,201,167,0.3);
  }

  .batch-card--ongoing::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 100%);
  }

  .batch-card--future {
    border-style: dashed;
    border-color: rgba(11,30,61,0.15);
    background: linear-gradient(135deg, var(--white) 0%, var(--sky) 100%);
  }

  .batch-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    width: fit-content;
  }

  .batch-status--live {
    background: rgba(0,201,167,0.12);
    border: 1px solid rgba(0,201,167,0.35);
    color: var(--teal-dark);
  }

  .batch-status--soon {
    background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.35);
    color: #b87a00;
  }

  .batch-live-dot {
    width: 7px; height: 7px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
  }

  .batch-icon {
    font-size: 2.5rem;
    line-height: 1;
  }

  .batch-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.3px;
  }

  .batch-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
  }

  .batch-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .batch-meta-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .batch-meta-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .batch-future-msg {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .batch-future-msg p {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.75;
  }

  .batch-future-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .batch-future-perks li {
    font-size: 0.875rem;
    color: var(--text-mid);
    font-weight: 500;
  }

  .wa-btn--outline {
    background: transparent !important;
    color: #25D366 !important;
    border: 2px solid #25D366 !important;
  }

  .wa-btn--outline:hover {
    background: #25D366 !important;
    color: var(--white) !important;
  }

  @media (max-width: 768px) {
    .batches-grid {
      grid-template-columns: 1fr;
    }
    .batch-meta-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 480px) {
    .batch-meta-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ===== SCROLL REVEAL ===== */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .featured-card-inner { grid-template-columns: 1fr; }
    .featured-meta { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
    .reviews-masonry { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-top .footer-brand { grid-column: span 2; }
  }

  @media (max-width: 600px) {
    .page-hero { padding: 60px 5% 50px; }
    .score-strip { gap: 1.5rem; }
    .fb-card-header { flex-direction: column; align-items: flex-start; }
    .fb-overall { align-items: flex-start; }
    .fb-table td:first-child { width: 45%; white-space: normal; }
    .featured-card { padding: 2rem 1.5rem; }
    section { padding: 60px 5%; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-top .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; align-items: center; }
  }