      /* ══ FD COURSE HERO ══ */
      .fd-hero {
        background: #7d2310;
        width: 100%;
      }
      .fd-hero-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 52px 32px 0;
        display: grid;
        grid-template-columns: 1fr 420px;
        gap: 40px;
        align-items: flex-end;
      }
      .fd-hero-left {
        padding-bottom: 52px;
      }
      .fd-hero-eyebrow {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 20px;
        letter-spacing: 0.03em;
      }
      .fd-hero-eyebrow::before {
        content: "";
        display: block;
        width: 48px;
        height: 2px;
        background: #fff;
        flex-shrink: 0;
      }
      .fd-hero-title {
        font-size: clamp(26px, 3.6vw, 48px);
        font-weight: 800;
        font-style: italic;
        color: #f5c518;
        line-height: 1.2;
        margin-bottom: 22px;
      }
      .fd-hero-desc {
        font-size: 14px;
        line-height: 1.85;
        color: rgba(255,255,255,0.88);
        margin-bottom: 14px;
        max-width: 520px;
      }
      .fd-hero-desc strong { color: #fff; }
      .fd-hero-cta {
        display: inline-block;
        margin-top: 10px;
        padding: 13px 32px;
        background: #fff;
        color: #c0392b;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 50px;
        transition: background 0.25s, transform 0.2s;
        font-family: 'Montserrat', sans-serif;
      }
      .fd-hero-cta:hover {
        background: #f5c518;
        color: #7D2310;
        transform: translateY(-2px);
      }
      .fd-hero-right {
        display: flex;
        justify-content: center;
        align-items: flex-end;
      }
      .fd-hero-img-frame {
        width: 100%;
        max-width: 420px;
        height: 440px;
        border-radius: 200px 200px 0 0;
        overflow: hidden;
        box-shadow: 0 16px 48px rgba(0,0,0,0.3);
        background: #5a1a0a;
      }
      .fd-hero-img-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
      }
      @media (max-width: 860px) {
        .fd-hero-inner {
          grid-template-columns: 1fr;
          padding: 40px 24px 0;
        }
        .fd-hero-right {
          order: -1;
        }
        .fd-hero-img-frame {
          max-width: 320px;
          height: 340px;
          margin: 0 auto;
        }
        .fd-hero-left {
          padding-bottom: 40px;
        }
      }

      /* ══ COURSES CARDS ══ */
      .fd-courses-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
      }
      .fd-course-card {
        background: #fff;
        border-radius: 18px;
        padding: 36px 28px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        border: 1px solid #eee;
        text-align: center;
        transition: box-shadow 0.3s, transform 0.3s;
      }
      .fd-course-card:hover {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        transform: translateY(-4px);
      }
      .fd-course-card-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 16px;
        color: #B1361E;
      }
      .fd-course-card h3 {
        font-size: 20px;
        font-weight: 700;
        color: #B1361E;
        margin-bottom: 8px;
      }
      .fd-course-card .duration {
        font-size: 14px;
        font-weight: 700;
        color: #333;
        margin-bottom: 14px;
      }
      .fd-course-card p {
        font-size: 14px;
        color: #666;
        line-height: 1.75;
      }

      /* ══ WHAT YOU LEARN GRID ══ */
      .fd-learn-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .fd-learn-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 4/3;
        cursor: pointer;
      }
      .fd-learn-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
      }
      .fd-learn-card:hover img { transform: scale(1.08); }
      .fd-learn-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 24px;
        transition: background 0.4s;
      }
      .fd-learn-card:hover .fd-learn-card-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.4) 100%);
      }
      .fd-learn-card-title {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 0;
        transition: margin-bottom 0.4s;
      }
      .fd-learn-card:hover .fd-learn-card-title { margin-bottom: 10px; }
      .fd-learn-card-text {
        color: rgba(255,255,255,0.9);
        font-size: 13px;
        line-height: 1.7;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease, opacity 0.4s ease;
      }
      .fd-learn-card:hover .fd-learn-card-text { max-height: 200px; opacity: 1; }

      /* ══ WHO SHOULD CHOOSE ══ */
      .fd-who-steps {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: center;
      }
      .fd-who-step {
        flex: 1;
        min-width: 180px;
        max-width: 220px;
        text-align: center;
      }
      .fd-who-step-icon {
        width: 110px;
        height: 110px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      }
      .fd-who-step-icon.active { background: #dfb5a8; }
      .fd-who-arrow {
        display: flex;
        align-items: center;
        padding-top: 40px;
        flex-shrink: 0;
      }

      /* ══ CAREER OPPORTUNITIES ══ */
      .fd-career-section {
        background: #7D2310;
        color: #fff;
        padding: 72px 24px;
      }
      .fd-career-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        max-width: 1100px;
        margin: 0 auto;
      }
      .fd-career-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        aspect-ratio: 1/1;
      }
      .fd-career-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
      }
      .fd-career-card:hover img { transform: scale(1.05); }
      .fd-career-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 24px;
        transition: background 0.4s;
      }
      .fd-career-card:hover .fd-career-card-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.4) 100%);
      }
      .fd-career-card-title {
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 0;
        transition: margin-bottom 0.4s;
      }
      .fd-career-card:hover .fd-career-card-title { margin-bottom: 10px; }
      .fd-career-card-text {
        color: rgba(255,255,255,0.9);
        font-size: 13px;
        line-height: 1.7;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease, opacity 0.4s ease;
      }
      .fd-career-card:hover .fd-career-card-text { max-height: 200px; opacity: 1; }

      /* ══ RESPONSIVE ══ */
      @media (max-width: 900px) {
        .fd-courses-grid { grid-template-columns: 1fr; }
        .fd-learn-grid { grid-template-columns: repeat(2, 1fr); }
        .fd-career-grid { grid-template-columns: repeat(2, 1fr); }
        .fd-mentors-left { flex: 1 1 100% !important; }
        .wcu-section { flex-direction: column; }
        .wcu-text-col { flex: 1 1 100% !important; max-width: 100% !important; min-width: 0 !important; padding: 48px 28px !important; }
        .wcu-img-col { min-height: 350px !important; }
        .wcu-popup { width: 90% !important; padding: 24px 20px !important; }
        .fd-testimonial-side { display: none !important; }
        .fd-faq-left { flex: 1 1 100% !important; }
        .fd-faq-right { padding-top: 0 !important; }
        .fd-partners-inner { justify-content: center !important; text-align: center; }
        .fd-partners-text { max-width: 100% !important; text-align: center; }
      }
      @media (max-width: 600px) {
        .fd-learn-grid { grid-template-columns: 1fr; }
        .fd-career-grid { grid-template-columns: 1fr; }
        .fd-who-steps { flex-direction: column; align-items: center; }
        .fd-who-arrow { display: none; }
        .fd-mentors-section { padding: 48px 16px !important; }
        .wcu-text-col { padding: 32px 18px !important; min-width: 0 !important; }
        .wcu-img-col { min-height: 280px !important; min-width: 0 !important; }
        .wcu-popup { width: 100% !important; padding: 20px 16px !important; }
        .fd-faq-section { padding: 48px 16px !important; }
        .fd-faq-inner { gap: 28px !important; }
        .fd-career-section { padding: 48px 16px; }
        .fd-partners-section { padding: 20px 16px !important; }
        .fd-who-step { max-width: 100%; min-width: 0 !important; }
      }
