:root {
    --ink: #0B1A2B;
    --cream: #F0F8F8;
    --gold: #0CABA8;
    --gold-light: #2DD4BF;
    --rust: #0B8FC6;
    --sage: #0E7C86;
    --white: #FFFFFF;
    --grey: #64748B;
    --light-grey: #E8F4F4;
    --border: rgba(11,26,43,0.12);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  img { max-width: 100%; height: auto; }
  /* Global anchor reset — prevents browser blue underline on navigation elements */
  a { text-decoration: none; color: inherit; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(11,26,43,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(12,171,168,0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
    transition: all 0.3s;
  }

  nav.scrolled {
    background: rgba(11,26,43,0.97);
    border-bottom-color: rgba(12,171,168,0.3);
  }

  nav.scrolled .nav-links a { color: var(--white); }
  nav.scrolled .nav-cta { background: var(--gold); color: var(--ink); text-decoration: none; }

  .logo-wrap { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
  .nav-logo-img { height: 42px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
  .nav-links a { font-size: 13px; font-weight: 500; color: var(--white); text-decoration: none; padding: 6px 14px; border-radius: 4px; transition: all 0.2s; cursor: pointer; letter-spacing: 0.02em; }
  .nav-links a:hover { background: rgba(12,171,168,0.12); color: var(--gold); }

  .nav-dropdown { position: relative; padding-bottom: 8px; margin-bottom: -8px; }
  .nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
  .dropdown-menu { visibility: hidden; opacity: 0; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-radius: 8px; min-width: 200px; box-shadow: 0 12px 40px rgba(0,0,0,0.12); padding: 8px; padding-top: 16px; list-style: none; transition: opacity 0.2s ease, visibility 0.2s ease; pointer-events: none; }
  .nav-dropdown:hover .dropdown-menu { visibility: visible; opacity: 1; pointer-events: auto; transition-delay: 0s; }
  .nav-dropdown .dropdown-menu { transition-delay: 0.3s; }
  .dropdown-menu li a { display: block; color: var(--ink) !important; font-size: 13px; padding: 10px 14px; border-radius: 6px; }
  .dropdown-menu li a:hover { background: var(--light-grey); color: var(--gold) !important; }

  .nav-cta { background: var(--gold); color: var(--ink) !important; border-radius: 6px; padding: 8px 18px !important; font-weight: 600 !important; transition: all 0.2s !important; margin-left: 8px; }
  .nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

  /* ─── PAGE WRAPPER ─── */
  .page-wrap { padding-top: 72px; min-height: 100vh; }

  /* ─── HERO ─── */
  .hero { min-height: calc(100vh - 72px); background: var(--ink); position: relative; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
  .hero-bg-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(12,171,168,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(14,124,134,0.15) 0%, transparent 40%); }
  .hero-grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(12,171,168,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(12,171,168,0.04) 1px, transparent 1px); background-size: 60px 60px; }
  .hero-left { position: relative; z-index: 2; padding: 80px 5vw 80px 8vw; display: flex; flex-direction: column; justify-content: center; }
  .hero-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(12,171,168,0.15); border: 1px solid rgba(12,171,168,0.3); color: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 32px; width: fit-content; animation: fadeUp 0.8s ease both; }
  .hero-label::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

  @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }

  .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(42px, 5.5vw, 78px); font-weight: 800; color: var(--white); line-height: 1.08; margin-bottom: 28px; animation: fadeUp 0.8s 0.15s ease both; }
  .hero h1 em { color: var(--gold); font-style: italic; }
  .hero-sub { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.7; max-width: 440px; margin-bottom: 44px; animation: fadeUp 0.8s 0.3s ease both; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.8s 0.45s ease both; }

  .btn-primary { background: var(--gold); color: var(--ink); font-weight: 700; font-size: 14px; padding: 14px 28px; border-radius: 6px; border: none; cursor: pointer; transition: all 0.2s; letter-spacing: 0.02em; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(12,171,168,0.35); }

  .btn-outline { background: transparent; color: var(--white); font-weight: 600; font-size: 14px; padding: 14px 28px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.25); cursor: pointer; transition: all 0.2s; letter-spacing: 0.02em; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-stats { display: flex; gap: 40px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); animation: fadeUp 0.8s 0.6s ease both; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; color: var(--gold); }
  .stat-label { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

  .hero-right { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 60px 8vw 60px 4vw; }
  .hero-cards { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 340px; animation: fadeLeft 0.8s 0.3s ease both; }
  .hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 24px; cursor: pointer; transition: all 0.3s; position: relative; overflow: hidden; text-decoration: none; color: inherit; display: block; }
  .hero-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); transform: scaleY(0); transition: transform 0.3s; }
  .hero-card:hover { background: rgba(12,171,168,0.08); border-color: rgba(12,171,168,0.3); transform: translateX(6px); }
  .hero-card:hover::before { transform: scaleY(1); }
  .hero-card-icon { font-size: 28px; margin-bottom: 12px; }
  .hero-card h3 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--white); margin-bottom: 8px; }
  .hero-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
  .hero-card-arrow { position: absolute; top: 24px; right: 20px; color: var(--gold); font-size: 18px; opacity: 0; transition: all 0.3s; }
  .hero-card:hover .hero-card-arrow { opacity: 1; transform: translateX(4px); }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeLeft { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }

  /* ─── SECTIONS ─── */
  .section { padding: 96px 8vw; }
  .section-dark { background: var(--ink); color: var(--white); }
  .section-sage { background: var(--sage); color: var(--white); }
  .section-light { background: var(--light-grey); }
  .section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
  .section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.5vw, 52px); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
  .section-sub { font-size: 16px; line-height: 1.75; color: var(--grey); max-width: 560px; }
  .section-dark .section-sub { color: rgba(255,255,255,0.6); }

  /* ─── CHALLENGE ─── */
  .challenge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
  .challenge-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .challenge-card { background: var(--white); border-radius: 12px; padding: 28px 24px; border: 1px solid var(--border); transition: all 0.3s; }
  .challenge-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
  .challenge-card-icon { font-size: 26px; margin-bottom: 12px; }
  .challenge-card h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
  .challenge-card p { font-size: 13px; color: var(--grey); line-height: 1.6; }
  .challenge-featured { background: var(--ink); color: var(--white); grid-column: span 2; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; border: none; }
  .challenge-featured h4 { color: var(--white); font-size: 18px; }
  .challenge-featured p { color: rgba(255,255,255,0.6); }

  /* ─── SERVICES ─── */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 56px; }
  .service-item { background: var(--white); padding: 48px 36px; transition: all 0.3s; cursor: pointer; text-decoration: none; color: inherit; display: block; }
  .service-item:hover { background: var(--ink); }
  .service-item:hover .service-title, .service-item:hover .service-num { color: var(--gold); }
  .service-item:hover .service-desc { color: rgba(255,255,255,0.6); }
  .service-num { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--gold); margin-bottom: 20px; transition: color 0.3s; }
  .service-icon { font-size: 32px; margin-bottom: 16px; }
  .service-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; transition: color 0.3s; }
  .service-desc { font-size: 14px; color: var(--grey); line-height: 1.7; transition: color 0.3s; }

  /* ─── PROCESS ─── */
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; position: relative; }
  .process-steps::before { content: ''; position: absolute; top: 36px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, var(--gold), rgba(12,171,168,0.2)); }
  .process-step { padding: 0 24px; text-align: center; }
  .step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--white); border: 2px solid var(--gold); display: grid; place-items: center; margin: 0 auto 24px; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; color: var(--gold); position: relative; z-index: 1; transition: all 0.3s; }
  .process-step:hover .step-num { background: var(--gold); color: var(--ink); transform: scale(1.1); }
  .step-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
  .step-desc { font-size: 13px; color: var(--grey); line-height: 1.6; }

  /* ─── PROGRAMS ─── */
  .programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
  .program-card { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; }
  .program-card-inner { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 44px 40px; height: 100%; transition: all 0.4s; position: relative; overflow: hidden; }
  .program-card-inner::before { content: ''; position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(12,171,168,0.06); transition: all 0.4s; }
  .program-card:hover .program-card-inner { background: rgba(12,171,168,0.08); border-color: rgba(12,171,168,0.3); }
  .program-card:hover .program-card-inner::before { transform: scale(2); }
  .program-badge { display: inline-block; background: rgba(12,171,168,0.2); color: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 24px; }
  .program-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
  .program-desc { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
  .program-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
  .program-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.7); }
  .program-features li::before { content: '✓'; width: 20px; height: 20px; background: rgba(12,171,168,0.2); color: var(--gold-light); border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }

  /* ─── TESTIMONIALS ─── */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
  .testimonial-card { background: var(--white); border-radius: 12px; padding: 36px 28px; border: 1px solid var(--border); transition: all 0.3s; }
  .testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: var(--gold); }
  .testimonial-quote { font-family: 'Playfair Display', serif; font-size: 52px; color: var(--gold); line-height: 0.8; margin-bottom: 16px; opacity: 0.4; }
  .testimonial-text { font-size: 15px; line-height: 1.75; color: var(--ink); margin-bottom: 24px; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; font-family: 'Playfair Display', serif; font-size: 17px; color: var(--gold); font-weight: 700; }
  .author-name { font-weight: 600; font-size: 14px; }
  .author-role { font-size: 12px; color: var(--grey); margin-top: 2px; }
  .stars { color: var(--gold); font-size: 13px; margin-bottom: 16px; }

  /* ─── JOBS ─── */
  .jobs-hero { background: var(--ink); padding: 80px 8vw; position: relative; overflow: hidden; }
  .jobs-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(12,171,168,0.05); }
  .jobs-search-bar { display: flex; gap: 12px; margin-top: 40px; max-width: 700px; }
  .search-input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 14px 20px; color: var(--white); font-size: 15px; font-family: 'DM Sans', sans-serif; outline: none; transition: all 0.2s; }
  .search-input::placeholder { color: rgba(255,255,255,0.35); }
  .search-input:focus { border-color: var(--gold); background: rgba(12,171,168,0.06); }
  .jobs-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
  .filter-chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 500; padding: 6px 16px; border-radius: 100px; cursor: pointer; transition: all 0.2s; }
  .filter-chip:hover, .filter-chip.active { background: rgba(12,171,168,0.15); border-color: var(--gold); color: var(--gold-light); }
  .jobs-content { display: grid; grid-template-columns: 280px 1fr; gap: 40px; padding: 56px 8vw; }
  .sidebar-section { margin-bottom: 36px; }
  .sidebar-title { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
  .sidebar-option { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; cursor: pointer; transition: color 0.2s; }
  .sidebar-option:hover { color: var(--gold); }
  .sidebar-option input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; }
  .jobs-list { display: flex; flex-direction: column; gap: 16px; }
  .job-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 32px; display: grid; grid-template-columns: 1fr auto; gap: 20px; cursor: pointer; transition: all 0.3s; position: relative; }
  .job-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold); transform: scaleY(0); transition: transform 0.3s; border-radius: 4px 0 0 4px; }
  .job-card:hover { border-color: rgba(12,171,168,0.4); transform: translateX(4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
  .job-card:hover::before { transform: scaleY(1); }
  .job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
  .job-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; }
  .tag-type { background: rgba(14,124,134,0.1); color: var(--sage); }
  .tag-level { background: rgba(12,171,168,0.1); color: #0E7C86; }
  .tag-new { background: rgba(11,143,198,0.1); color: var(--rust); }
  .job-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; margin-bottom: 8px; }
  .job-meta { font-size: 13px; color: var(--grey); display: flex; gap: 16px; flex-wrap: wrap; }
  .job-salary { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--sage); text-align: right; white-space: nowrap; }
  .job-posted { font-size: 12px; color: var(--grey); text-align: right; margin-top: 4px; }
  .job-toggle { margin-top: 12px; font-size: 13px; color: var(--gold); font-weight: 600; }
  .apply-btn { margin-top: 16px; background: var(--ink); color: var(--white); border: none; padding: 10px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
  .apply-btn:hover { background: var(--gold); color: var(--ink); }
  .job-requirements { display: none; grid-column: 1/-1; padding-top: 20px; margin-top: 16px; border-top: 1px solid var(--border); font-size: 14px; line-height: 1.7; color: var(--grey); }
  .job-requirements h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--ink); margin: 16px 0 10px; }
  .job-requirements h4:first-child { margin-top: 0; }
  .job-requirements ul { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
  .job-card.expanded .job-requirements { display: block; }
  .job-card.expanded .job-toggle .toggle-text { display: none; }

  /* ─── EMPLOYER HERO ─── */
  .employer-hero { background: var(--ink); padding: 100px 8vw; position: relative; overflow: hidden; }
  .employer-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: rgba(12,171,168,0.04); }
  .employer-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
  .feature-card { background: var(--white); border-radius: 12px; padding: 32px 28px; border: 1px solid var(--border); transition: all 0.3s; }
  .feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--gold); }
  .feature-icon-wrap { font-size: 32px; margin-bottom: 16px; }
  .feature-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; margin-bottom: 10px; }
  .feature-desc { font-size: 14px; color: var(--grey); line-height: 1.7; }

  /* ─── HR PACKAGES ─── */
  .hr-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
  .package-card { background: var(--white); border-radius: 16px; padding: 40px 32px; border: 1px solid var(--border); transition: all 0.3s; position: relative; }
  .package-card.featured { background: var(--ink); color: var(--white); transform: scale(1.04); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
  .package-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
  .package-card.featured:hover { transform: scale(1.04) translateY(-6px); }
  .package-badge { position: absolute; top: 24px; right: 24px; background: var(--gold); color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
  .package-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; margin-bottom: 8px; }
  .package-desc { font-size: 14px; color: var(--grey); line-height: 1.65; margin-bottom: 28px; }
  .package-features-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
  .package-feature { font-size: 14px; display: flex; align-items: flex-start; gap: 10px; color: var(--ink); }
  .package-feature::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

  /* ─── ABOUT ─── */
  .about-hero { background: var(--ink); padding: 100px 8vw; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-visual { position: relative; }
  .about-main-img { width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--sage) 0%, rgba(14,124,134,0.4) 100%); border-radius: 16px; display: grid; place-items: center; font-size: 80px; }
  .about-accent-box { position: absolute; bottom: -24px; right: -24px; background: var(--gold); color: var(--ink); padding: 28px 24px; border-radius: 12px; text-align: center; }
  .accent-num { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; display: block; }
  .accent-label { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; }
  .values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 64px; }
  .value-card { background: var(--white); border-radius: 12px; padding: 32px 28px; border: 1px solid var(--border); border-left: 4px solid var(--gold); transition: all 0.3s; }
  .value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
  .value-icon { font-size: 28px; margin-bottom: 14px; }
  .value-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
  .value-desc { font-size: 14px; color: var(--grey); line-height: 1.7; }

  /* ─── CONTACT ─── */
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 80px 8vw; align-items: start; }
  .contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 32px; }
  .contact-icon { width: 48px; height: 48px; background: var(--ink); border-radius: 12px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
  .contact-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-bottom: 6px; }
  .contact-value { font-size: 15px; font-weight: 500; }
  .contact-form { background: var(--white); border-radius: 20px; padding: 48px 44px; border: 1px solid var(--border); box-shadow: 0 4px 40px rgba(0,0,0,0.06); }
  .form-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; margin-bottom: 8px; }
  .form-sub { font-size: 14px; color: var(--grey); margin-bottom: 32px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { margin-bottom: 20px; }
  .form-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
  .form-input, .form-select, .form-textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 8px; padding: 13px 16px; font-size: 15px; font-family: 'DM Sans', sans-serif; color: var(--ink); background: var(--cream); outline: none; transition: all 0.2s; }
  .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(12,171,168,0.08); }
  .form-textarea { resize: vertical; min-height: 120px; }
  .form-submit { width: 100%; background: var(--ink); color: var(--white); border: none; padding: 16px; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.2s; letter-spacing: 0.03em; }
  .form-submit:hover { background: var(--gold); color: var(--ink); }

  /* ─── FOOTER ─── */
  footer { background: var(--ink); color: var(--white); padding: 72px 8vw 40px; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
  .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; cursor: pointer; }
  .footer-logo-img { height: 38px; width: auto; filter: brightness(0) invert(1); }
  .footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 28px; }
  .footer-social { display: flex; gap: 10px; }
  .social-btn { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: grid; place-items: center; font-size: 15px; cursor: pointer; transition: all 0.2s; text-decoration: none; color: var(--white); }
  .social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
  .footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; cursor: pointer; }
  .footer-links a:hover { color: var(--white); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; }
  .footer-legal { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; }
  .footer-legal a { color: rgba(255,255,255,0.5); text-decoration: none; margin-left: 20px; }
  .footer-legal a:hover { color: var(--gold); }
  a.footer-legal { color: rgba(255,255,255,0.5); text-decoration: none; margin-left: 16px; cursor: pointer; }
  a.footer-legal:hover { color: var(--gold); }

  /* ─── LEGAL PAGES ─── */
  .legal-hero { background: var(--ink); padding: 80px 8vw 60px; text-align: center; }
  .legal-hero .section-eyebrow { color: var(--gold-light); }
  .legal-hero .section-title { color: var(--white); font-size: clamp(32px, 4vw, 48px); }
  .legal-hero .section-sub { color: rgba(255,255,255,0.6); margin-top: 12px; font-size: 15px; }
  .legal-content { max-width: 800px; margin: 0 auto; padding: 60px 6vw 80px; }
  .legal-content h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--ink); margin: 40px 0 16px; padding-top: 20px; border-top: 1px solid var(--border); }
  .legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
  .legal-content p { font-size: 15px; line-height: 1.8; color: #3b4a5a; margin-bottom: 14px; }
  .legal-content ul { list-style: none; padding: 0; margin-bottom: 18px; }
  .legal-content ul li { position: relative; padding-left: 24px; font-size: 15px; line-height: 1.8; color: #3b4a5a; margin-bottom: 8px; }
  .legal-content ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
  .legal-content a { color: var(--gold); text-decoration: none; font-weight: 500; }
  .legal-content a:hover { text-decoration: underline; }
  .legal-effective { display: inline-block; background: rgba(12,171,168,0.1); border: 1px solid rgba(12,171,168,0.2); border-radius: 6px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--sage); margin-bottom: 32px; }
  .legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; padding: 12px 24px; border-radius: 8px; background: var(--ink); color: var(--white); font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.2s; border: none; font-family: 'DM Sans', sans-serif; }
  .legal-back:hover { background: var(--gold); color: var(--ink); }

  /* ─── MISC ─── */
  .breadcrumb { background: var(--light-grey); padding: 14px 8vw; font-size: 13px; color: var(--grey); display: flex; gap: 8px; align-items: center; }
  .breadcrumb a { color: var(--gold); text-decoration: none; cursor: pointer; }

  .cta-band { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); padding: 72px 8vw; text-align: center; position: relative; overflow: hidden; }
  .cta-band::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px); background-size: 40px 40px; }
  .cta-band-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; color: var(--ink); margin-bottom: 16px; position: relative; }
  .cta-band-sub { font-size: 16px; color: rgba(11,26,43,0.75); margin-bottom: 36px; position: relative; }
  .cta-band-btns { display: flex; gap: 14px; justify-content: center; position: relative; }

  .btn-dark { background: var(--ink); color: var(--white); text-decoration: none; font-weight: 700; font-size: 14px; padding: 14px 30px; border-radius: 6px; border: none; cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
  .btn-dark:hover { background: rgba(11,26,43,0.85); transform: translateY(-2px); }
  .btn-white-outline { background: transparent; color: var(--white); text-decoration: none; font-weight: 600; font-size: 14px; padding: 14px 30px; border-radius: 6px; border: 2px solid var(--white); cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
  .btn-white-outline:hover { background: var(--white); color: var(--ink); }
  .cta-band .btn-white-outline { color: var(--ink); border-color: var(--ink); }
  .cta-band .btn-white-outline:hover { background: var(--ink); color: var(--white); }

  .submit-cv-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; min-height: calc(100vh - 72px); }
  .cv-sidebar { background: var(--ink); padding: 80px 6vw; }
  .cv-form-area { padding: 80px 6vw; background: var(--cream); }

  .upload-zone { border: 2px dashed rgba(12,171,168,0.4); border-radius: 12px; padding: 48px 24px; text-align: center; cursor: pointer; transition: all 0.3s; background: rgba(12,171,168,0.03); margin-bottom: 24px; }
  .upload-zone:hover { border-color: var(--gold); background: rgba(12,171,168,0.06); }
  .upload-icon { font-size: 40px; margin-bottom: 12px; }
  .upload-text { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
  .upload-hint { font-size: 13px; color: var(--grey); }

  .vacancy-form-page { max-width: 760px; margin: 0 auto; padding: 80px 4vw; }

  .mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
  .mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
  nav.scrolled .mobile-menu-btn span { background: var(--white); }

  .mobile-nav { display: none; position: fixed; inset: 0; background: var(--ink); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--white); text-decoration: none; padding: 10px 0; transition: color 0.2s; cursor: pointer; }
  .mobile-nav a:hover { color: var(--gold); }
  .mobile-close { position: absolute; top: 24px; right: 5vw; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }

  /* ─── REVEAL — visible by default, animate when JS adds .js-loaded to body ─── */
  .reveal { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
  body.js-loaded .reveal { opacity: 0; transform: translateY(20px); }
  body.js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }

  button { cursor: pointer; }
  a[onclick] { cursor: pointer; }
  .footer-legal a { cursor: pointer; }

  .success-message { background: rgba(14,124,134,0.1); border: 1px solid var(--sage); color: var(--sage); padding: 16px 20px; border-radius: 8px; font-size: 14px; font-weight: 500; display: none; text-align: center; margin-top: 16px; }

  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 60px 6vw; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .hero-btns { flex-wrap: wrap; }
    .challenge-grid { grid-template-columns: 1fr; gap: 40px; }
    .challenge-cards { grid-template-columns: 1fr; }
    .challenge-featured { grid-column: 1; grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .programs-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .jobs-content { grid-template-columns: 1fr; }
    .jobs-sidebar { display: none; }
    .jobs-search-bar { flex-direction: column; }
    .jobs-search-bar .search-input { max-width: 100% !important; }
    .job-card { grid-template-columns: 1fr; gap: 8px; }
    .job-salary { text-align: left; }
    .job-posted { text-align: left; }
    .employer-features { grid-template-columns: 1fr; }
    .employer-hero { padding: 80px 6vw; }
    .hr-packages { grid-template-columns: 1fr; }
    .package-card.featured { transform: none; }
    .about-hero { grid-template-columns: 1fr; gap: 40px; padding: 80px 6vw; }
    .about-accent-box { right: 16px; bottom: -16px; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-form { padding: 32px 24px; }
    .submit-cv-layout { grid-template-columns: 1fr; }
    .cv-sidebar { display: none; }
    .cv-form-area { padding: 48px 5vw; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .cta-band-btns { flex-wrap: wrap; }
    .section { padding: 64px 6vw; }
    .section-eyebrow { justify-content: flex-start; }
    .legal-content { padding: 40px 5vw 60px; }
    .vacancy-form-page { padding: 48px 5vw; }
  }

  @media (max-width: 480px) {
    .hero-left { padding: 40px 5vw; }
    .hero h1 { font-size: clamp(32px, 8vw, 42px); }
    .hero-stats { gap: 20px; }
    .hero-stats > div { min-width: calc(50% - 20px); }
    .stat-num { font-size: 26px; }
    .section { padding: 48px 5vw; }
    .section-title { font-size: clamp(24px, 6vw, 30px); }
    .process-steps { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .program-card-inner { padding: 32px 24px; }
    .program-title { font-size: 22px; }
    .service-item { padding: 32px 24px; }
    .feature-card { padding: 28px 24px; }
    .package-card { padding: 28px 24px; }
    .testimonial-card { padding: 28px 20px; }
    .challenge-featured { padding: 24px 20px; }
    .jobs-hero { padding: 60px 5vw; }
    .cta-band { padding: 48px 5vw; }
    .about-accent-box { position: relative; right: auto; bottom: auto; margin-top: 16px; display: inline-block; }
    .about-main-img { font-size: 60px; }
    .legal-hero { padding: 60px 5vw 40px; }
    .contact-form { padding: 24px 18px; }
    .breadcrumb { padding: 12px 5vw; font-size: 12px; }
    .footer-bottom > div { flex-wrap: wrap; justify-content: center; }
  }
