*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:   #1a2340;
    --navy2:  #243050;
    --accent: #e8512a;
    --accent2:#f47c55;
    --gold:   #f5a623;
    --light:  #f7f8fc;
    --white:  #ffffff;
    --text:   #2d3142;
    --muted:  #6b7280;
    --border: #e4e7ef;
    --radius: 12px;
    --shadow: 0 2px 16px rgba(26,35,64,0.09);
  }

  body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }

  a { color: inherit; text-decoration: none; }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #2e4070 100%);
    color: white;
    padding: 72px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(232,81,42,0.18) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.4);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    max-width: 720px;
    margin: 0 auto 18px;
    letter-spacing: -.01em;
    color:white;
  }
  .hero h1 span { color: var(--accent2); }
  .hero-sub {
    font-size: clamp(15px, 2.2vw, 18px);
    color: rgba(255,255,255,0.78);
    max-width: 580px;
    margin: 0 auto 36px;
  }
  .hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: background .2s, transform .15s;
  }
  .btn-primary:hover { background: #d0431e; transform: translateY(-1px); }
  .btn-outline {
    border: 2px solid rgba(255,255,255,0.45);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: border-color .2s, background .2s;
  }
  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 52px;
    flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .hero-stat { text-align: center; }
  .hero-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--white); }
  .hero-stat span { font-size: 13px; color: rgba(255,255,255,0.6); }

  /* ── SHARED ── */
  .section { padding: 72px 24px; }
  .section-light { background: var(--light); }
  .section-white { background: var(--white); }
  .container { max-width: 1080px; margin: 0 auto; }
  .section-label {
    font-size: 16px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 10px;
  }
  .section-title {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 800; color: var(--navy);
    line-height: 1.2; margin-bottom: 14px;
  }
  .section-sub { font-size: 16px; color: var(--muted); max-width: 580px; }

  /* ── WHY US ── */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 44px;
  }
  .why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: box-shadow .2s, transform .2s;
  }
  .why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
  .why-icon {
    width: 44px; height: 44px;
    background: rgba(232,81,42,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
  }
  .why-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .why-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

  /* ── COURSES ── */
  .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin-top: 44px;
  }
  .course-card {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    transition: border-color .2s, box-shadow .2s;
    cursor: pointer;
  }
  .course-card:hover { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,81,42,0.08); }
  .course-code {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: .04em;
  }
  .course-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .course-card p { font-size: 16px; color: var(--muted); }

  /* ── PROCESS ── */
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    margin-top: 52px;
    position: relative;
  }
  .process-step {
    text-align: center;
    padding: 0 24px 32px;
    position: relative;
  }
  .process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -10px; top: 22px;
    font-size: 20px;
    color: var(--border);
  }
  .step-num {
    width: 52px; height: 52px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800;
    margin: 0 auto 18px;
  }
  .process-step h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .process-step p { font-size: 16px; color: var(--muted); }

  /* ── TESTIMONIALS ── */
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 44px;
  }
  .testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
  }
  .testi-card::before {
    content: '\201C';
    position: absolute;
    top: 16px; left: 22px;
    font-size: 56px;
    color: var(--accent);
    opacity: .18;
    line-height: 1;
    font-family: Georgia, serif;
  }
  .testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
  .testi-card p { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 18px; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 38px; height: 38px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700;
  }
  .testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
  .testi-course { font-size: 12px; color: var(--muted); }

  /* ── SEO CONTENT ── */
  .seo-content { max-width: 780px; }
  .seo-content h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin: 40px 0 12px; }
  .seo-content h2:first-child { margin-top: 0; }
  .seo-content h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
  .seo-content p { font-size: 15px; color: var(--text); margin-bottom: 14px; line-height: 1.75; }
  .seo-content ul { padding-left: 20px; margin-bottom: 14px; }
  .seo-content ul li { font-size: 15px; color: var(--text); margin-bottom: 6px; line-height: 1.65; }

  /* ── FAQ ── */
  .faq-list { margin-top: 40px; max-width: 720px; }
  .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
  }
  .faq-q {
    width: 100%; background: none; border: none;
    padding: 18px 22px;
    text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 15px; font-weight: 700; color: var(--navy);
    gap: 12px;
  }
  .faq-q:hover { background: var(--light); }
  .faq-toggle { font-size: 20px; color: var(--accent); flex-shrink: 0; transition: transform .2s; }
  .faq-a {
    display: none;
    padding: 0 22px 18px;
    font-size: 14px; color: var(--muted); line-height: 1.7;
  }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }

  /* ── BOTTOM CTA ── */
  .cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2e4070 100%);
    color: var(--white);
    text-align: center;
    padding: 72px 24px;
  }
  .cta-section h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 800; margin-bottom: 14px; color:white; }
  .cta-section p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 500px; margin: 0 auto 36px; }

  /* ── FOOTER NOTE ── */
  .footer-note { text-align: center; padding: 20px 24px; font-size: 13px; color: var(--muted); background: var(--light); border-top: 1px solid var(--border); }

  @media (max-width: 600px) {
    .process-step:not(:last-child)::after { display: none; }
    .hero-stats { gap: 20px 28px; }
    .hero { padding: 52px 20px 56px; }
    .section { padding: 48px 20px; }
    .cta-section { padding: 52px 20px; }
    .why-grid, .testi-grid { gap: 14px; margin-top: 32px; }
    .courses-grid { gap: 10px; margin-top: 32px; grid-template-columns: repeat(2, 1fr); }
    .process-steps { margin-top: 36px; }
    .faq-list { margin-top: 28px; }
  }