*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #0D1B2A; --navy-mid: #1B2E44; --gold: #C9A84C; --gold-light: #E8C97A;
    --cream: #F8F4EE; --text-dark: #1a1a1a; --text-mid: #212529; --text-light: #888;
    --white: #ffffff; --border: rgba(201,168,76,0.25);
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }
  [id] { scroll-margin-top: 80px; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(13,27,42,0.97); backdrop-filter: blur(8px);
    padding: 0 6vw; display: flex; align-items: center; justify-content: space-between;
    height: 68px; border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: box-shadow 0.3s ease;
  }
  nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
  .nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none;}
  .nav-logo-mark {
    width: 36px; height: 36px; background: var(--gold);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; color: var(--navy);
  }
  .nav-name { font-family: 'Montserrat', sans-serif; color: var(--white); font-size: 22px; font-weight: 700; letter-spacing: 0.3px; }
  .nav-links { display: flex; gap: 26px; list-style: none; }
  .nav-links a { color: var(--white); text-decoration: none; font-size: 14.5px; font-weight: 500; letter-spacing: 0.5px; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }
  .nav-cta {
    background: var(--gold); color: var(--navy); padding: 9px 20px; border-radius: 4px;
    font-size: 13.5px; font-weight: 700; text-decoration: none; letter-spacing: 0.3px;
    transition: all 0.2s; white-space: nowrap;
  }
  .nav-cta:hover { background: var(--gold-light); }

  /* Dropdown */
  .nav-dropdown { position: relative; }
  .nav-dropdown > a { cursor: pointer; display: flex; align-items: center; gap: 4px; }
  .dropdown-arrow { font-size: 10px; transition: transform 0.2s; }
  .nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
  .dropdown-menu {
    display: none; position: absolute; top: 100%; left: -16px; padding-top: 8px;
    background: var(--navy); border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px; padding: 20px 0 12px 0; min-width: 220px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3); z-index: 100;
  }
  .nav-dropdown:hover .dropdown-menu { display: block; }
  .dropdown-menu li { list-style: none; }
  .dropdown-menu a {
    display: block; padding: 10px 20px; font-size: 14px;
    color: var(--white); text-decoration: none; transition: all 0.2s;
    white-space: nowrap;
  }
  .dropdown-menu a:hover { background: rgba(201,168,76,0.1); color: var(--gold-light); padding-left: 24px; }

  /* HERO */
  .hero {
    min-height: 100vh;
    background-image: url('hero-bg.png');
    background-size: cover; background-position: center;
    display: flex; align-items: center; position: relative; overflow: hidden;
    padding: 100px 6vw 80px;
  }
  .hero-bg-lines {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0.04;
    background-image: repeating-linear-gradient(90deg, #C9A84C 0px, #C9A84C 1px, transparent 1px, transparent 80px),
      repeating-linear-gradient(0deg, #C9A84C 0px, #C9A84C 1px, transparent 1px, transparent 80px);
  }
  .hero-content { position: relative; max-width: 680px; background: rgba(13,27,42,0.85); padding: 40px 44px; border-radius: 12px; border: 1px solid rgba(201,168,76,0.15); }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light); font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
  }
  .hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
  h1 {
    font-family: 'Montserrat', sans-serif; color: var(--white);
    font-size: clamp(38px, 5vw, 56px); line-height: 1.12; font-weight: 700;
    margin-bottom: 24px;
  }
  h1 em { color: var(--gold); font-style: normal; }
  .hero-sub { color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.7; max-width: 550px; margin-bottom: 40px; font-weight: 300; }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--navy); padding: 15px 34px;
    border-radius: 4px; font-size: 15px; font-weight: 700; text-decoration: none;
    letter-spacing: 0.3px; transition: all 0.2s; display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline {
    border: 2px solid var(--white); background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 15px 34px; border-radius: 4px; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.2s; display: inline-block;
  }
  .btn-outline:hover { background: var(--white); color: var(--navy); }

  /* HERO GUARANTEE BANNER */
  .guarantee-banner {
    background: var(--gold); padding: 48px 6vw; display: flex;
    flex-direction: column; align-items: center; gap: 28px;
  }
  .guarantee-top { display: flex; align-items: center; gap: 20px; text-align: center; }
  .guarantee-banner .g-icon {
    width: 52px; height: 52px; background: var(--navy); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .guarantee-banner .g-icon svg { width: 26px; height: 26px; stroke: var(--gold); }
  .guarantee-banner .g-title {
    font-family: 'Montserrat', sans-serif; font-size: clamp(20px, 2.5vw, 26px);
    color: var(--navy); font-weight: 800; letter-spacing: 0.3px;
  }
  .guarantee-banner .g-sub {
    font-size: 15px; color: rgba(13,27,42,0.7); line-height: 1.6;
    max-width: 650px; text-align: center;
  }
  .guarantee-features {
    display: flex; gap: 32px; flex-wrap: wrap; justify-content: center;
  }
  .g-feature {
    display: flex; align-items: flex-start; gap: 10px; max-width: 320px;
  }
  .g-feature svg { width: 18px; height: 18px; stroke: var(--navy); flex-shrink: 0; margin-top: 3px; }
  .g-feature strong {
    font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--navy);
    font-weight: 700; display: block; margin-bottom: 2px;
  }
  .g-feature span { font-size: 13px; color: rgba(13,27,42,0.65); line-height: 1.5; }

  /* PATHWAY SELECTOR */
  .hero-pathways {
    display: flex; gap: 16px; margin-top: 40px; padding-top: 32px;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .pathway-card {
    flex: 1; display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.18);
    border-radius: 10px; padding: 22px 24px; text-decoration: none;
    transition: all 0.25s; cursor: pointer;
  }
  .pathway-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); transform: translateY(-2px); }
  .pathway-icon {
    width: 48px; height: 48px; background: rgba(201,168,76,0.12); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .pathway-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
  .pathway-text h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; color: var(--white); font-weight: 700; margin-bottom: 4px; }
  .pathway-text p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.4; }
  .hero-stats {
    display: flex; gap: 16px; margin-top: 56px;
  }
  .stat-card {
    flex: 1; text-align: center; padding: 28px 20px;
    background: rgba(13,27,42,0.55); border-radius: 50px;
  }
  .stat-card:last-child { border-right: none; }
  .stat-num { font-family: 'Montserrat', sans-serif; font-size: 46px; color: var(--white); font-weight: 700; line-height: 1; }
  .stat-label { color: rgba(255,255,255,0.7); font-size: 12px; letter-spacing: 0.8px; margin-top: 6px; }

  /* SECTIONS */
  section { padding: 90px 6vw; }
  .section-label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #9A7B2C; font-weight: 500; margin-bottom: 12px; display: block; }
  h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.18; margin-bottom: 16px; }
  .section-sub { color: var(--text-mid); font-size: 16px; line-height: 1.7; max-width: 560px; margin-bottom: 52px; font-weight: 300; }

  /* ABOUT */
  .about { background: var(--white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-visual { background: var(--navy); border-radius: 12px; padding: 48px 40px; position: relative; overflow: hidden; }
  .about-year { font-family: 'Montserrat', sans-serif; font-size: 80px; font-weight: 700; color: rgba(201,168,76,0.15); line-height: 1; margin-bottom: -20px; }
  .about-tagline { font-family: 'Montserrat', sans-serif; font-size: 26px; color: var(--white); font-weight: 600; line-height: 1.3; margin-bottom: 24px; position: relative; }
  .about-visual-sub { color: var(--white); font-size: 14px; line-height: 1.7; position: relative; }
  
  .about-points { list-style: none; display: flex; flex-direction: column; gap: 20px; }
  .about-point { display: flex; gap: 16px; align-items: flex-start; }
  .point-icon { width: 40px; height: 40px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .point-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
  .point-text h4 { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
  .point-text p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; max-width: 65ch; }

  /* ADVANTAGE BANNER */
  .advantage { background: var(--navy-mid); padding: 60px 6vw; color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
  .advantage-content { max-width: 500px; }
  .advantage-content h3 { font-family: 'Montserrat', sans-serif; font-size: 28px; color: var(--gold); margin-bottom: 16px; }
  .advantage-content p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.6; }
  .advantage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; flex: 1; min-width: 300px; }
  .adv-item { display: flex; gap: 12px; align-items: flex-start; }
  .adv-icon {
    width: 40px; height: 40px; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
    border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .adv-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
  .adv-item p { font-size: 14.5px; color: rgba(255,255,255,0.9); line-height: 1.5; }
  .advantage-callout {
    width: 100%; margin-top: 32px; padding: 28px 36px; text-align: center;
    background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25);
    border-radius: 10px;
  }
  .advantage-callout .callout-text {
    font-family: 'Montserrat', sans-serif; font-size: clamp(20px, 2.5vw, 26px);
    color: var(--gold); font-weight: 700; line-height: 1.3;
  }
  .advantage-callout .callout-sub {
    color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 8px; line-height: 1.5;
  }

  /* SERVICES */
  .services { background: var(--cream); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
  .service-card { background: var(--white); border: 1px solid rgba(0,0,0,0.07); border-radius: 12px; padding: 36px 30px; transition: all 0.3s ease; display: flex; flex-direction: column; }
  .service-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,0.08); }
  .service-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background 0.3s ease; }
  .service-card:hover .service-icon { background: var(--gold); }
  .service-card:hover .service-icon svg { stroke: var(--navy); }
  .service-icon svg { width: 24px; height: 24px; stroke: var(--gold); transition: stroke 0.3s ease; }
  .service-card h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 12px; }
  .service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; flex: 1; }
  .service-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
    font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none;
    transition: all 0.2s;
  }
  .service-link svg { width: 16px; height: 16px; stroke: var(--gold); transition: transform 0.2s; }
  .service-link:hover { color: var(--gold); }
  .service-link:hover svg { transform: translateX(4px); }

  /* SECTORS */
  .sectors { background: var(--navy); }
  .sectors h2, .sectors .section-sub { color: var(--white); }
  .sectors .section-sub { color: rgba(255,255,255,0.8); }
  .sectors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
  .sector-pill {
    border: 1px solid rgba(201,168,76,0.2); border-radius: 8px; padding: 20px 22px;
    background: rgba(255,255,255,0.02); transition: all 0.3s ease; cursor: default;
  }
  .sector-pill:hover {
    border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.08);
    transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,0.1);
  }
  .sector-pill .s-name {
    font-family: 'Montserrat', sans-serif; font-size: 18px; color: var(--white); font-weight: 600;
    transition: color 0.3s ease;
  }
  .sector-pill:hover .s-name { color: var(--gold-light); }

  /* PROCESS */
  .process { background: var(--white); }
  .process-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; position: relative;
  }
  .process-step {
    background: var(--cream); padding: 40px; border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05); position: relative;
    transition: all 0.3s ease;
  }
  .process-step:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.05); }
  .step-number {
    width: 50px; height: 50px; background: var(--navy); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif; font-weight: 700; font-size: 20px;
    border-radius: 8px; margin-bottom: 20px;
  }
  .process-step h4 { font-size: 18px; font-weight: 600; margin-bottom: 15px; color: var(--navy); }
  .process-step p { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; max-width: 65ch; }
  .step-arrow {
    display: none; position: absolute; top: 50%; right: -22px;
    transform: translateY(-50%); z-index: 2;
  }
  .step-arrow svg { width: 20px; height: 20px; stroke: var(--gold); opacity: 0.5; }
  @media (min-width: 901px) {
    .process-grid { grid-template-columns: repeat(3, 1fr); }
    .process-step:nth-child(-n+3) .step-arrow { display: block; }
    .process-step:nth-child(n+4) { grid-column: span 1; }
    .process-step:nth-child(4) { grid-column: 1 / 2; }
    .process-step:nth-child(4) .step-arrow { display: block; right: -22px; }
    .process-step:nth-child(5) .step-arrow { display: none; }
  }

  /* CONTACT */
  .contact { background: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .contact-info { display: flex; flex-direction: column; gap: 20px; }
  .info-card { background: var(--cream); border: 1px solid rgba(0,0,0,0.04); border-radius: 10px; padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start; }
  .info-icon { width: 40px; height: 40px; background: var(--navy); border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
  .info-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
  .info-content label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 4px; }
  .info-content p, .info-content a { font-size: 14px; color: var(--text-dark); font-weight: 400; text-decoration: none; line-height: 1.5; }
  .info-content a:hover { color: var(--gold); }
  .contact-form-wrap { background: var(--white); padding: 36px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.07); }
  .contact-form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .contact-form label { font-size: 12px; font-weight: 500; color: var(--text-mid); letter-spacing: 0.3px; }
  .contact-form input, .contact-form select, .contact-form textarea {
    background: var(--cream); border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px; padding: 11px 14px; font-size: 14px; font-family: 'Inter', sans-serif;
    color: var(--text-dark); outline: none; width: 100%; transition: border-color 0.2s;
  }
  .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
  .contact-form textarea { resize: none; height: 90px; }
  .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* FORM VALIDATION */
  .field.error input, .field.error select, .field.error textarea { border-color: #EF4444; }
  .field .error-msg { font-size: 11.5px; color: #EF4444; margin-top: 4px; display: none; }
  .field.error .error-msg { display: block; }

  /* BACK TO TOP */
  .back-to-top {
    position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px;
    background: var(--gold); color: var(--navy); border: none; border-radius: 50%;
    font-size: 20px; cursor: pointer; z-index: 99; display: none;
    align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s;
  }
  .back-to-top:hover { background: var(--gold-light); transform: translateY(-2px); }
  .back-to-top.visible { display: flex; }
  
  /* FOOTER */
  footer { background: var(--navy); padding: 48px 6vw 28px; border-top: 1px solid rgba(201,168,76,0.15); color: white;}
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; flex-wrap: wrap; gap: 32px; }
  .footer-brand p { color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 10px; max-width: 240px; line-height: 1.6; }
  .footer-links h4 { color: var(--gold); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
  .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13.5px; transition: color 0.2s; }
  .footer-links ul a:hover { color: var(--gold-light); }
  .footer-social { display: flex; gap: 12px; margin-top: 16px; }
  .footer-social a { color: rgba(255,255,255,0.4); transition: color 0.2s; display: flex; align-items: center; justify-content: center; }
  .footer-social a:hover { color: var(--gold-light); }
  .footer-social svg { width: 20px; height: 20px; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.3);}
  
  @media (max-width: 900px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding: 90px 6vw 60px; }
    .hero-content { max-width: 100%; }
    .hero-stats { flex-wrap: wrap; gap: 12px; }
    .stat-card { flex: 1 1 calc(25% - 12px); min-width: 100px; }
    .stat-num { font-size: 28px; }
    .hero-pathways { flex-direction: column; }
    .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 20px 6vw; gap: 16px; border-top: 1px solid rgba(201,168,76,0.15); }
    .nav-links.active { display: flex; }
    .nav-dropdown .dropdown-menu { position: static; border: none; box-shadow: none; background: rgba(255,255,255,0.05); border-radius: 0; padding: 8px 0 8px 20px; }
    .nav-toggle { display: block; }
    section { padding: 60px 6vw; }
    .advantage { flex-direction: column; align-items: flex-start; padding: 40px 6vw; }
    .advantage-list { grid-template-columns: 1fr; min-width: 0; width: 100%; }
    .contact-info iframe { height: 200px; }
    .team-grid { grid-template-columns: 1fr; }
    .team-card.featured { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
    .team-card.featured.compact { grid-template-columns: 1fr; text-align: center; }
    .team-card.featured .team-avatar, .team-card.featured.compact .team-avatar { margin: 0 auto 16px; }
    .footer-top { flex-direction: column; gap: 28px; }
    .footer-bottom { text-align: center; justify-content: center; }
    .form-grid-2 { grid-template-columns: 1fr; }
  }

  @media (max-width: 500px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-card { padding: 20px 16px; overflow-wrap: break-word; }
    .why-card h3 { font-size: 15px; }
    .why-card p { font-size: 13px; overflow-wrap: break-word; }
    .why-icon { width: 40px; height: 40px; margin-bottom: 12px; }
    .why-icon svg { width: 20px; height: 20px; }
  }
  /* WHY SEN PLACEMENT */
  .why-us { background: var(--navy); }
  .why-us h2, .why-us .section-sub { color: var(--white); }
  .why-us .section-sub { color: rgba(255,255,255,0.85); }
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
  .why-card {
    background: rgba(255,255,255,0.15); border: 1px solid rgba(201,168,76,0.5);
    border-radius: 12px; padding: 32px 28px; transition: all 0.3s; overflow-wrap: break-word;
  }
  .why-card:hover { border-color: rgba(201,168,76,0.8); background: rgba(255,255,255,0.2); transform: translateY(-3px); }
  .why-icon { width: 48px; height: 48px; background: rgba(201,168,76,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
  .why-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
  .why-card h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; color: #fff; font-weight: 700; margin-bottom: 10px; }
  .why-card p { font-size: 14px; color: #fff; line-height: 1.7; }

  /* LOGO WALL */
  .logos { background: var(--cream); padding: 60px 6vw; text-align: center; }
  .logos .section-label { margin-bottom: 8px; }
  .logos-title { font-family: 'Montserrat', sans-serif; font-size: 22px; color: var(--navy); font-weight: 700; margin-bottom: 36px; }
  .logo-strip { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; opacity: 0.85; }
  .logo-item { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; border: 1px solid rgba(13,27,42,0.12); padding: 10px 24px; border-radius: 8px; background: rgba(13,27,42,0.03); }

  /* TEAM */
  .team { background: var(--white); }
  .team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
  .team-card { text-align: center; padding: 32px 20px; background: var(--cream); border-radius: 12px; border: 1px solid rgba(0,0,0,0.04); transition: all 0.3s; }
  .team-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
  .team-card.featured {
    grid-column: 1 / -1; display: grid; grid-template-columns: 260px 1fr; gap: 40px;
    text-align: left; padding: 48px 40px; background: var(--navy); border: 1px solid rgba(201,168,76,0.2);
  }
  .team-card.featured.compact {
    grid-column: auto; display: grid; grid-template-columns: 120px 1fr; gap: 28px;
    padding: 32px 28px;
  }
  .team-card.featured:hover { border-color: rgba(201,168,76,0.5); }
  .team-card.featured .team-avatar { width: 140px; height: 140px; font-size: 48px; margin: 0; background: url('shantanusen.png') center/cover no-repeat; border: 2px solid rgba(201,168,76,0.3); color: transparent; }
  .team-card.featured .kuntala-avatar { background-image: url('kuntala.png'); }
  .team-card.featured .sharmistha-avatar { background-image: url('sharmistha.png'); }
  .team-card.featured.compact .team-avatar { width: 100px; height: 100px; }
  .team-card.featured h4 { font-size: 24px; color: #fff; margin-bottom: 4px; }
  .team-card.featured .team-role { font-size: 14px; margin-bottom: 20px; }
  .team-card.featured .team-exp { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
  .team-card.featured .team-bio { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 20px; }
  .team-card.featured .team-timeline { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
  .team-card.featured .team-phase { position: relative; padding-left: 24px; padding-bottom: 16px; border-left: 2px solid rgba(201,168,76,0.25); }
  .team-card.featured .team-phase:last-child { border-left-color: transparent; padding-bottom: 0; }
  .team-card.featured .team-phase::before { content: ''; position: absolute; left: -6px; top: 2px; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; }
  .team-card.featured .team-phase h5 { font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
  .team-card.featured .team-phase p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; }
  .team-card.featured .team-quote { padding: 16px 20px; background: rgba(255,255,255,0.06); border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; }
  .team-card.featured .team-quote p { font-size: 13px; color: rgba(255,255,255,0.9); line-height: 1.6; font-style: italic; }
  .team-avatar { width: 80px; height: 80px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 700; color: var(--gold); }
  .team-card h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
  .team-card .team-role { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
  .team-card .team-exp { font-size: 12px; color: var(--text-light); }

  /* JOBS PREVIEW */
  .jobs-preview { background: var(--white); }
  .jobs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
  .job-mini { background: var(--cream); border: 1px solid rgba(0,0,0,0.04); border-radius: 10px; padding: 28px 24px; transition: all 0.3s; }
  .job-mini:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
  .job-mini h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; color: var(--navy); font-weight: 700; margin-bottom: 8px; }
  .job-mini .job-mini-sector { font-size: 12px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
  .job-mini .job-mini-meta { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
  .job-mini a { font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
  .job-mini a:hover { color: var(--gold); }
  .jobs-cta { text-align: center; margin-top: 36px; }

  /* FAQ */
  .faq { background: var(--cream); }
  .faq-grid { max-width: 800px; }
  .faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
  .faq-q {
    width: 100%; background: none; border: none; padding: 20px 0; display: flex;
    justify-content: space-between; align-items: center; cursor: pointer;
    font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 600;
    color: var(--navy); text-align: left; transition: color 0.2s;
  }
  .faq-q:hover { color: var(--gold); }
  .faq-arrow { font-size: 20px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
  .faq-item.open .faq-arrow { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
  .faq-a p { font-size: 14.5px; color: var(--text-mid); line-height: 1.7; }

  @media (max-width: 480px) {
    .hero { min-height: auto; padding: 80px 5vw 50px; }
    h1 { font-size: 30px; }
    .hero-sub { font-size: 15px; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .hero-btns a { text-align: center; }
    .hero-stats { flex-direction: column; }
    .stat-card { border-right: none; padding: 20px; }
    .stat-card:last-child { border-bottom: none; }
    .pathway-card { padding: 16px; }
    section { padding: 50px 5vw; }
    .why-us { padding-bottom: 120px; }
    .contact-form-wrap { padding: 24px; }
    .nav-cta { padding: 7px 14px; font-size: 12px; }
    .nav-links { gap: 12px; }
  }
  /* On phones, the five secondary sectors wrap into contained rows. */
  @media (max-width: 600px) {
    .also-serving-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  }
