:root {
    --eu-color-primary: #101735;
    --eu-color-primary-dark: #080c1f;
    --eu-color-accent: #febc00;
    --eu-color-accent-soft: #ffd04a;
    --eu-color-white: #ffffff;

    --eu-font-heading: inherit;
    --eu-font-body: inherit;

    --eu-radius-card: 30px;
    --eu-radius-pill: 999px;

    --eu-shadow-card: 0 24px 70px rgba(0, 0, 0, 0.24);
    --eu-shadow-card-hover: 0 34px 95px rgba(0, 0, 0, 0.36);

    --eu-transition-fast: 0.2s ease;
    --eu-transition-normal: 0.3s ease;

    --eu-container: 1180px;
    --eu-gutter: 32px;
}
/* ── Course Finder Premium ── */
  #course-finder {
    position: relative;
    min-height: 88vh;
    display: flex; align-items: center;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  }

  /* Background */
  .cf-bg { position: absolute; inset: 0; z-index: 0; }
  .cf-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
  .cf-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(105deg, rgba(5,8,30,0.96) 0%, rgba(10,15,45,0.82) 40%, rgba(10,15,45,0.35) 70%, rgba(5,8,30,0.15) 100%);
  }

  /* Orbs */
  .cf-orb {
    position: absolute; border-radius: 50%; z-index: 1; filter: blur(80px); pointer-events: none;
  }
  .cf-orb--gold {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(254,188,0,0.12) 0%, transparent 70%);
    top: -80px; left: -60px;
  }
  .cf-orb--blue {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(99,120,255,0.1) 0%, transparent 70%);
    bottom: -60px; left: 200px;
  }

  /* Layout */
  .cf-content {
    position: relative; z-index: 2;
    width: 100%; max-width: 1240px; margin: 0 auto;
    padding: 80px 40px;
    display: grid; grid-template-columns: 1fr 420px;
    gap: 64px; align-items: center;
  }

  /* Left headline */
  .cf-eyebrow {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: rgba(254,188,0,0.8); margin-bottom: 24px;
  }
  .cf-eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #febc00;
    box-shadow: 0 0 8px rgba(254,188,0,0.8);
  }
  .cf-big-title {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 800; color: #fff; line-height: 1.05;
    margin-bottom: 20px; letter-spacing: -.02em;
  }
  .cf-big-title em {
    color: #febc00; font-style: normal;
    text-shadow: 0 0 40px rgba(254,188,0,0.3);
  }
  .cf-big-desc {
    font-size: 1rem; color: rgba(255,255,255,0.55);
    line-height: 1.7; margin-bottom: 36px; max-width: 400px;
  }
  .cf-stats {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; padding: 16px 24px;
    backdrop-filter: blur(8px); width: fit-content;
  }
  .cf-stat { text-align: center; padding: 0 20px; }
  .cf-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #febc00; line-height: 1; }
  .cf-stat span { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
  .cf-stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

  /* Glass card */
  .cf-card {
    background: rgba(8,12,38,0.72);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 32px;
    box-shadow:
      0 32px 80px rgba(0,0,0,0.45),
      inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .cf-card-header {
    display: flex; align-items: flex-start; gap: 14px; margin-bottom: 26px;
    padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .cf-card-header-icon {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    background: rgba(254,188,0,0.1); border: 1px solid rgba(254,188,0,0.25);
    display: flex; align-items: center; justify-content: center;
  }
  .cf-card-eyebrow { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(254,188,0,0.7); margin-bottom: 4px; }
  .cf-card-title { font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1.2; }

  /* Form */
  .cf-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
  .cf-field { display: flex; flex-direction: column; gap: 6px; }
  .cf-label { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: .08em; }
  .cf-select-wrap { position: relative; }
  .cf-select {
    width: 100%; padding: 12px 38px 12px 16px;
    border: 1px solid rgba(255,255,255,0.12); border-radius: 10px;
    background: rgba(255,255,255,0.06);
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: 0.88rem; color: rgba(255,255,255,0.85); outline: none;
    appearance: none; cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }
  .cf-select option { background: #0d1535; color: #fff; }
  .cf-select:focus { border-color: rgba(254,188,0,0.5); background: rgba(255,255,255,0.09); }
  .cf-chevron {
    position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
    stroke: rgba(255,255,255,0.3); pointer-events: none; width: 11px; height: 11px;
  }

  /* Mode pills */
  .cf-mode-pills { display: flex; gap: 8px; }
  .cf-pill {
    flex: 1; padding: 9px 8px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.5);
    cursor: pointer; transition: all 0.18s;
  }
  .cf-pill:hover { border-color: rgba(254,188,0,0.35); color: rgba(255,255,255,0.8); }
  .cf-pill.active { background: rgba(254,188,0,0.12); border-color: rgba(254,188,0,0.5); color: #febc00; }

  /* CTA button */
  .cf-btn {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    width: 100%; padding: 14px; border-radius: 12px; border: none;
    background: linear-gradient(135deg, #febc00 0%, #ffd234 100%);
    color: #0a0f28; font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: 0.92rem; font-weight: 800; cursor: pointer; letter-spacing: .01em;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 28px rgba(254,188,0,0.35);
  }
  .cf-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(254,188,0,0.45); }
  .cf-btn:active { transform: translateY(0); }

  /* Separator */
  .cf-sep {
    display: flex; align-items: center; gap: 10px;
    margin: 20px 0 16px; color: rgba(255,255,255,0.2); font-size: 0.7rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  }
  .cf-sep::before, .cf-sep::after {
    content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08);
  }

  /* Quick links */
  .cf-links { display: flex; flex-direction: column; gap: 2px; }
  .cf-link {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 10px; border-radius: 10px;
    text-decoration: none; transition: background 0.15s;
    border: 1px solid transparent;
  }
  .cf-link:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); }
  .cf-link--gold:hover { background: rgba(254,188,0,0.07); border-color: rgba(254,188,0,0.2); }
  .cf-link-icon { font-size: 1.25rem; flex-shrink: 0; width: 24px; text-align: center; }
  .cf-link-info { flex: 1; min-width: 0; }
  .cf-link-info strong { display: block; font-size: 0.83rem; font-weight: 800; color: #fff; margin-bottom: 1px; }
  .cf-link-info span  { font-size: 0.7rem; color: rgba(255,255,255,0.35); }
  .cf-link-tag {
    font-size: 0.67rem; font-weight: 800; color: #febc00;
    background: rgba(254,188,0,0.1); border: 1px solid rgba(254,188,0,0.2);
    padding: 2px 8px; border-radius: 50px; white-space: nowrap; flex-shrink: 0;
  }
  .cf-link-arr { stroke: rgba(255,255,255,0.2); flex-shrink: 0; transition: stroke 0.2s, transform 0.2s; }
  .cf-link:hover .cf-link-arr { stroke: #febc00; transform: translateX(3px); }

  /* Responsive */
  @media (max-width: 1024px) {
    .cf-content { grid-template-columns: 1fr; max-width: 520px; padding: 60px 24px; }
    .cf-headline { text-align: center; }
    .cf-eyebrow, .cf-stats { justify-content: center; }
    .cf-big-desc { margin: 0 auto 36px; }
    #course-finder { min-height: auto; }
  }
  @media (max-width: 600px) {
    .cf-content { padding: 48px 20px; }
    .cf-big-title { font-size: 2.6rem; }
    .cf-card { padding: 24px 20px; }
    .cf-stats { padding: 14px 16px; }
    .cf-stat { padding: 0 12px; }
  }