/* ============================================
   CAREERS.CSS – Premium Investor Relations page for Hybrid Angel Energy
   inherits global.css, nav.css, footer.css
   ============================================ */

/* ---------- reused variables from about_us (for consistency) ---------- */
:root {
    --gold-primary: #e6b800;
    --gold-gradient: linear-gradient(135deg, #e6b800 0%, #ffd966 100%);
    --navy-ultra-deep: #051220;
    --navy-deep: #0a1929;
    --navy-medium: #1a2a3a;
    --white-pure: #ffffff;
    --white-off: #fafbfc;
    --gray-100: #f0f2f4;
    --gray-200: #e2e6ea;
    --gray-300: #cbd0d6;
    --gray-400: #9aa6b5;
    --gray-500: #7c8a9a;
    --gray-600: #5f6c7a;
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.03);
    --shadow-md: 0 15px 35px rgba(0,0,0,0.05);
    --shadow-lg: 0 25px 50px rgba(0,0,0,0.08);
    --shadow-xl: 0 35px 70px rgba(0,0,0,0.12);
    --transition-slow: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-medium: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: 0.2s ease;
  }
  
  /* ---------- reuse typography & utility classes from about_us (inline definitions) ---------- */
  .gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }
  
  .section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
  }
  
  .eyebrow-premium {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
  }
  
  .eyebrow-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--gold-primary);
    transform: translateY(-50%);
  }
  
  .title-premium {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--navy-deep);
  }
  
  .subtitle-premium {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.6;
  }
  
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .delay-1 { transition-delay: 0.1s; }
  .delay-2 { transition-delay: 0.2s; }
  .delay-3 { transition-delay: 0.3s; }
  .delay-4 { transition-delay: 0.4s; }
  .delay-5 { transition-delay: 0.5s; }
  
  /* ---------- HERO (mirrors about_us) ---------- */
  .careers-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
  }
  
  .hero-backdrop {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
  }
  
  .hero-image-fallback img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  
  .overlay.multi-layer {
    background: linear-gradient(135deg, rgba(5,18,32,0.95) 0%, rgba(10,25,41,0.85) 70%);
  }
  
  .overlay-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="rgba(230,184,0,0.02)"/></svg>');
    background-size: 60px 60px;
    opacity: 0.3;
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    color: var(--white-pure);
    padding: 0 20px;
  }
  
  .breadcrumb-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 0.95rem;
    flex-wrap: wrap;
  }
  
  .breadcrumb-premium a { 
    color: rgba(255,255,255,0.7); 
    transition: color 0.3s; 
    text-decoration: none;
  }
  
  .breadcrumb-premium a:hover { 
    color: var(--gold-primary); 
  }
  
  .breadcrumb-premium .separator { 
    color: var(--gold-primary); 
    font-size: 0.8rem; 
  }
  
  .breadcrumb-premium .current {
    color: var(--white-pure); 
    font-weight: 600;
    position: relative;
  }
  
  .breadcrumb-premium .current::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 100%; height: 2px;
    background: var(--gold-primary);
  }
  
  .hero-title-group { 
    margin-bottom: 40px; 
  }
  
  .hero-pre-title {
    display: inline-block;
    font-size: 0.9rem; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 6px; 
    color: var(--gold-primary);
    margin-bottom: 20px; 
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 10px;
  }
  
  .hero-title {
    font-size: 5.2rem; 
    font-weight: 800; 
    font-family: var(--font-display);
    line-height: 1; 
    margin-bottom: 25px;
  }
  
  .gold-text { 
    color: var(--gold-primary); 
    text-shadow: 0 0 20px rgba(230,184,0,0.3); 
  }
  
  .hero-subtitle {
    font-size: 1.4rem; 
    font-weight: 400;
    color: rgba(255,255,255,0.9); 
    max-width: 700px;
  }
  
  .hero-metrics {
    display: flex; 
    align-items: center; 
    gap: 40px;
    margin-bottom: 50px; 
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
  }
  
  .metric-item { 
    display: flex; 
    flex-direction: column; 
  }
  
  .metric-value {
    font-size: 2.2rem; 
    font-weight: 800; 
    font-family: var(--font-display);
    color: var(--gold-primary); 
    line-height: 1; 
    margin-bottom: 8px;
  }
  
  .metric-label {
    font-size: 0.9rem; 
    color: rgba(255,255,255,0.7);
    text-transform: uppercase; 
    letter-spacing: 2px;
  }
  
  .metric-divider { 
    width: 1px; 
    height: 40px; 
    background: rgba(255,255,255,0.2); 
  }
  
  .hero-cta .btn-scroll {
    display: inline-flex; 
    align-items: center; 
    gap: 15px;
    padding: 16px 32px; 
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px; 
    color: var(--white-pure); 
    font-weight: 600;
    transition: 0.4s;
    text-decoration: none;
  }
  
  .hero-cta .btn-scroll:hover {
    background: var(--gold-primary); 
    color: var(--navy-deep);
    border-color: var(--gold-primary); 
    transform: translateY(-3px);
  }
  
  .btn-icon {
    width: 32px; 
    height: 32px; 
    background: rgba(255,255,255,0.1);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
  }
  
  .hero-shapes .shape {
    position: absolute; 
    background: rgba(230,184,0,0.03);
    border-radius: 50%; 
    z-index: 5;
  }
  
  .shape-1 { top: 20%; right: 10%; width: 300px; height: 300px; }
  .shape-2 { bottom: 10%; left: 5%; width: 200px; height: 200px; }
  .shape-3 { top: 60%; right: 20%; width: 150px; height: 150px; }
  
  /* ---------- CULTURE / PARTNERSHIP SECTION ---------- */
  .culture-premium { 
    padding: 120px 0; 
    background: var(--white-pure); 
  }
  
  .culture-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr;
    gap: 80px; 
    align-items: center;
  }
  
  .section-tag {
    display: flex; 
    align-items: center; 
    gap: 20px; 
    margin-bottom: 30px;
  }
  
  .tag-line { 
    width: 60px; 
    height: 2px; 
    background: var(--gold-primary); 
  }
  
  .tag-text {
    font-size: 0.9rem; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 3px; 
    color: var(--gold-primary);
  }
  
  .section-title-large {
    font-size: 3.2rem; 
    font-weight: 800; 
    font-family: var(--font-display);
    line-height: 1.1; 
    margin-bottom: 30px; 
    color: var(--navy-deep);
  }
  
  .culture-text .lead {
    font-size: 1.4rem; 
    font-weight: 600; 
    color: var(--navy-deep);
    margin-bottom: 25px; 
    line-height: 1.5;
  }
  
  .culture-text p {
    font-size: 1.05rem; 
    color: var(--gray-600); 
    line-height: 1.8; 
    margin-bottom: 20px;
  }
  
  .culture-stats {
    display: flex; 
    gap: 40px; 
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .stat-badge {
    display: flex; 
    flex-direction: column;
  }
  
  .stat-badge-number {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 5px;
  }
  
  .stat-badge-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .culture-visual .visual-stack {
    display: grid; 
    gap: 20px;
  }
  
  .visual-primary {
    border-radius: 24px; 
    overflow: hidden; 
    position: relative;
    aspect-ratio: 1.2;
  }
  
  .visual-primary img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
  }
  
  .visual-caption {
    position: absolute; 
    bottom: 20px; 
    left: 20px;
    background: rgba(10,25,41,0.7); 
    backdrop-filter: blur(8px);
    color: white; 
    padding: 10px 20px; 
    border-radius: 40px;
    display: flex; 
    align-items: center; 
    gap: 10px;
    font-size: 0.9rem; 
    border: 1px solid rgba(255,255,255,0.2);
  }
  
  .visual-secondary {
    border-radius: 20px; 
    overflow: hidden; 
    aspect-ratio: 1.5;
    margin-top: -40px; 
    margin-left: auto; 
    width: 80%;
  }
  
  .visual-secondary img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
  }
  
  /* ---------- INVESTMENT PILLARS ---------- */
  .pillars-premium { 
    padding: 80px 0; 
    background: var(--white-off); 
  }
  
  .pillars-grid {
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    padding: 0 20px;
  }
  
  .pillar-card {
    background: var(--white-pure); 
    padding: 40px 30px;
    border-radius: 24px; 
    box-shadow: var(--shadow-md); 
    text-align: center;
    transition: 0.4s;
  }
  
  .pillar-card:hover {
    transform: translateY(-12px); 
    box-shadow: var(--shadow-xl);
  }
  
  .pillar-icon-large {
    width: 80px; 
    height: 80px; 
    background: rgba(230,184,0,0.08);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 25px; 
    font-size: 2rem; 
    color: var(--gold-primary);
  }
  
  .pillar-card h3 {
    font-size: 1.3rem; 
    font-weight: 700; 
    color: var(--navy-deep);
    margin-bottom: 15px;
  }
  
  .pillar-card p { 
    color: var(--gray-600); 
    line-height: 1.6; 
  }
  
  /* ---------- INVESTMENT OPPORTUNITIES (formerly open positions) ---------- */
  .positions-premium { 
    padding: 100px 0; 
    background: var(--white-pure); 
  }
  
  .filter-tabs {
    display: flex; 
    justify-content: center; 
    gap: 12px;
    margin-bottom: 50px; 
    flex-wrap: wrap;
    padding: 0 20px;
  }
  
  .filter-tab {
    padding: 8px 24px; 
    border-radius: 50px; 
    font-weight: 600;
    background: var(--gray-100); 
    color: var(--gray-700);
    transition: 0.3s; 
    border: 1px solid transparent;
    cursor: pointer;
  }
  
  .filter-tab.active, 
  .filter-tab:hover {
    background: var(--gold-primary); 
    color: var(--navy-deep);
  }
  
  .positions-list {
    max-width: 900px; 
    margin: 0 auto;
    padding: 0 20px;
    transition: opacity 0.2s ease;
  }
  
  .position-item {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    padding: 30px; 
    background: var(--white-off); 
    border-radius: 20px;
    margin-bottom: 16px; 
    transition: 0.3s;
    border: 1px solid var(--gray-200);
    cursor: default;
  }
  
  .position-item:hover {
    background: var(--white-pure); 
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
    transform: translateX(5px);
  }
  
  .position-left { 
    display: flex; 
    gap: 20px; 
    align-items: center; 
  }
  
  .position-icon {
    width: 56px; 
    height: 56px; 
    background: rgba(230,184,0,0.08);
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.6rem; 
    color: var(--gold-primary);
    flex-shrink: 0;
  }
  
  .position-meta h3 {
    font-size: 1.3rem; 
    font-weight: 700; 
    color: var(--navy-deep);
    margin-bottom: 8px;
  }
  
  .position-tags {
    display: flex; 
    gap: 15px; 
    flex-wrap: wrap;
  }
  
  .tag-location, 
  .tag-type, 
  .tag-dept {
    font-size: 0.8rem; 
    display: flex; 
    align-items: center; 
    gap: 5px;
  }
  
  .tag-location { 
    color: var(--gray-600); 
  }
  
  .tag-type {
    background: var(--gray-200); 
    padding: 3px 12px; 
    border-radius: 30px;
    font-weight: 600; 
    color: var(--navy-deep);
  }
  
  .tag-dept { 
    color: var(--gold-primary); 
    font-weight: 600; 
  }
  
  .position-right { 
    display: flex; 
    align-items: center; 
  }
  
  .position-badge {
    font-size: 0.75rem; 
    font-weight: 700; 
    text-transform: uppercase;
    padding: 5px 12px; 
    background: var(--navy-deep); 
    color: white;
    border-radius: 30px; 
    letter-spacing: 1px;
  }
  
  .positions-footnote {
    text-align: center; 
    margin-top: 40px;
    font-size: 1rem; 
    color: var(--gray-600);
  }
  
  .positions-footnote a { 
    color: var(--gold-primary); 
    font-weight: 700; 
    text-decoration: none;
  }
  
  /* ---------- INVESTOR TESTIMONIALS ---------- */
  .testimonials-premium { 
    padding: 100px 0; 
    background: var(--white-off); 
  }
  
  .testimonial-grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    padding: 0 20px;
  }
  
  .testimonial-card {
    background: var(--white-pure); 
    border-radius: 30px;
    overflow: hidden; 
    box-shadow: var(--shadow-md);
  }
  
  .testimonial-media {
    height: 220px; 
    overflow: hidden;
  }
  
  .testimonial-media img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
  }
  
  .testimonial-content {
    padding: 30px; 
    position: relative;
  }
  
  .quote-icon {
    font-size: 2rem; 
    color: var(--gold-primary); 
    opacity: 0.2;
    position: absolute; 
    top: 20px; 
    right: 20px;
  }
  
  .testimonial-text {
    font-size: 1rem; 
    line-height: 1.8; 
    color: var(--gray-700);
    margin-bottom: 20px; 
    font-style: italic;
  }
  
  .testimonial-author h4 {
    font-size: 1.1rem; 
    font-weight: 700; 
    color: var(--navy-deep);
  }
  
  .testimonial-author span {
    font-size: 0.85rem; 
    color: var(--gray-500);
  }
  
  /* ---------- INSTITUTIONAL PARTNERS PROGRAM (formerly graduate) ---------- */
  .graduate-premium { 
    padding: 100px 0; 
    background: var(--white-pure); 
  }
  
  .graduate-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: center;
    padding: 0 20px;
  }
  
  .graduate-description {
    font-size: 1.2rem; 
    color: var(--gray-600); 
    margin: 30px 0;
    line-height: 1.6;
  }
  
  .graduate-features {
    list-style: none; 
    margin-bottom: 40px;
  }
  
  .graduate-features li {
    margin-bottom: 15px; 
    display: flex; 
    gap: 12px;
    font-size: 1rem; 
    color: var(--gray-700);
  }
  
  .graduate-features i { 
    color: var(--gold-primary); 
    font-size: 1.2rem; 
  }
  
  .graduate-visual {
    position: relative; 
    border-radius: 30px; 
    overflow: hidden;
  }
  
  .graduate-visual img { 
    width: 100%; 
    height: auto; 
    display: block; 
  }
  
  .graduate-badge {
    position: absolute; 
    bottom: 30px; 
    left: 30px;
    background: var(--gold-primary); 
    color: var(--navy-deep);
    padding: 12px 24px; 
    border-radius: 50px; 
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .graduate-badge i {
    font-size: 1rem;
  }
  
  /* ---------- GRADUATE EMAIL APPLICATION (for institutional partnerships) ---------- */
  .graduate-apply-email {
    margin-top: 35px;
    background: linear-gradient(135deg, rgba(230,184,0,0.03) 0%, rgba(10,25,41,0.02) 100%);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  .graduate-apply-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 4px 0 0 4px;
  }
  
  .graduate-apply-email:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
  }
  
  .graduate-email-wrapper {
    display: flex;
    gap: 25px;
    align-items: center;
  }
  
  .graduate-email-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--navy-deep);
    box-shadow: 0 10px 20px rgba(230, 184, 0, 0.2);
    flex-shrink: 0;
    transition: all 0.4s ease;
  }
  
  .graduate-apply-email:hover .graduate-email-icon {
    transform: scale(1.05) rotate(5deg);
    background: var(--navy-deep);
    color: var(--gold-primary);
  }
  
  .graduate-email-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 10px;
  }
  
  .graduate-email-content p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 15px;
  }
  
  .graduate-email-address {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }
  
  .email-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--navy-deep);
    color: white;
    border-radius: 60px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid transparent;
  }
  
  .email-link i {
    font-size: 1.1rem;
    color: var(--gold-primary);
    transition: all 0.3s ease;
  }
  
  .email-link:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 184, 0, 0.3);
    border-color: var(--gold-primary);
  }
  
  .email-link:hover i {
    color: var(--navy-deep);
  }
  
  .email-deadline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-500);
    background: rgba(230, 184, 0, 0.08);
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 500;
  }
  
  .email-deadline::before {
    content: '⏰';
    font-size: 1rem;
  }
  
  /* ---------- DUE DILIGENCE PROCESS ---------- */
  .process-premium { 
    padding: 80px 0; 
    background: var(--white-off); 
  }
  
  .process-steps {
    max-width: 800px; 
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .step {
    display: flex; 
    gap: 30px; 
    align-items: flex-start;
    margin-bottom: 40px;
  }
  
  .step-number {
    font-size: 3rem; 
    font-weight: 800; 
    font-family: var(--font-display);
    color: var(--gold-primary); 
    opacity: 0.5; 
    line-height: 1;
    min-width: 70px;
  }
  
  .step-content h3 {
    font-size: 1.4rem; 
    font-weight: 700; 
    color: var(--navy-deep);
    margin-bottom: 8px;
  }
  
  .step-content p { 
    color: var(--gray-600); 
    font-size: 1rem; 
    line-height: 1.6;
  }
  
  /* ---------- CTA ---------- */
  .careers-cta-premium { 
    padding: 80px 0 120px; 
    background: var(--white-off); 
  }
  
  .cta-premium-card {
    background: linear-gradient(135deg, #051220 0%, #0a1929 100%);
    border-radius: 40px; 
    padding: 80px 60px; 
    position: relative;
    overflow: hidden;
    margin: 0 20px;
  }
  
  .cta-bg-pattern {
    position: absolute; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(230,184,0,0.05) 0%, transparent 50%);
  }
  
  .cta-content { 
    position: relative; 
    z-index: 5; 
    text-align: center; 
    color: white; 
  }
  
  .cta-title { 
    font-size: 3rem; 
    font-weight: 800; 
    font-family: var(--font-display); 
    margin-bottom: 20px; 
  }
  
  .cta-text { 
    font-size: 1.3rem; 
    color: rgba(255,255,255,0.9); 
    margin-bottom: 40px; 
  }
  
  .cta-actions { 
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    margin-bottom: 30px; 
    flex-wrap: wrap;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
  
  .btn-cta-primary {
    background: var(--gold-primary);
    color: var(--navy-deep);
  }
  
  .btn-cta-primary:hover { 
    background: white; 
    transform: translateY(-3px); 
    box-shadow: 0 20px 40px rgba(230,184,0,0.3); 
  }
  
  .btn-cta-secondary {
    background: transparent; 
    color: white; 
    border: 2px solid rgba(255,255,255,0.3);
  }
  
  .btn-cta-secondary:hover { 
    background: white; 
    color: var(--navy-deep); 
    border-color: white; 
    transform: translateY(-3px); 
  }
  
  .cta-guarantee { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    color: rgba(255,255,255,0.7); 
    font-size: 0.9rem; 
    flex-wrap: wrap;
  }
  
  .cta-guarantee i { 
    color: var(--gold-primary); 
  }
  
  /* ---------- INVESTOR CONTACT MESSAGE (formerly email cv) ---------- */
  .email-cv-message {
    max-width: 900px;
    margin: 50px auto 30px;
    background: linear-gradient(135deg, rgba(230,184,0,0.05) 0%, rgba(10,25,41,0.02) 100%);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
  }
  
  .email-cv-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
  }
  
  .email-cv-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
  }
  
  .email-icon {
    width: 100px;
    height: 100px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--navy-deep);
    box-shadow: 0 15px 30px rgba(230,184,0,0.3);
    flex-shrink: 0;
    transition: all 0.4s ease;
  }
  
  .email-cv-message:hover .email-icon {
    transform: scale(1.05) rotate(5deg);
    background: var(--navy-deep);
    color: var(--gold-primary);
  }
  
  .email-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 15px;
  }
  
  .email-text p {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .email-text a {
    color: var(--gold-primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .email-text a:hover {
    border-bottom-color: var(--gold-primary);
  }
  
  .email-note {
    display: inline-block;
    font-size: 0.95rem;
    color: var(--gray-500);
    background: rgba(230,184,0,0.08);
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: 10px;
  }
  
  /* ---------- INVESTOR CONTACT INFO (new) ---------- */
  .investor-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0 10px;
  }
  
  .investor-email-link,
  .investor-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--navy-deep);
    color: white;
    border-radius: 60px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid transparent;
  }
  
  .investor-email-link i,
  .investor-phone-link i {
    color: var(--gold-primary);
    transition: all 0.3s ease;
  }
  
  .investor-email-link:hover,
  .investor-phone-link:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230,184,0,0.25);
    border-color: var(--gold-primary);
  }
  
  .investor-email-link:hover i,
  .investor-phone-link:hover i {
    color: var(--navy-deep);
  }
  
  .investor-phone-link {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--navy-deep);
  }
  
  .investor-phone-link i {
    color: var(--gold-primary);
  }
  
  .investor-phone-link:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
  }
  
  /* ---------- NO RESULTS MESSAGE ---------- */
  .no-results-message {
    text-align: center;
    padding: 80px 40px;
    background: var(--white-off);
    border-radius: 30px;
    margin-top: 30px;
    border: 1px dashed var(--gray-300);
  }
  
  .no-results-content i {
    font-size: 3.5rem;
    color: var(--gold-primary);
    opacity: 0.5;
    margin-bottom: 25px;
  }
  
  .no-results-content h4 {
    font-size: 1.6rem;
    color: var(--navy-deep);
    margin-bottom: 15px;
  }
  
  .no-results-content p {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 15px;
  }
  
  .no-results-suggestion {
    font-size: 1rem !important;
    color: var(--gray-500) !important;
  }
  
  .no-results-suggestion a {
    color: var(--gold-primary);
    font-weight: 600;
    text-decoration: none;
  }
  
  /* ---------- RESPONSIVE BREAKPOINTS ---------- */
  
  /* Extra Large Devices */
  @media (max-width: 1400px) {
    .hero-title { 
      font-size: 4.5rem; 
    }
    
    .title-premium { 
      font-size: 2.8rem; 
    }
    
    .section-title-large {
      font-size: 2.8rem;
    }
  }
  
  /* Large Devices */
  @media (max-width: 1200px) {
    .hero-title { 
      font-size: 4.2rem; 
    }
    
    .title-premium { 
      font-size: 2.6rem; 
    }
    
    .culture-grid, 
    .graduate-grid { 
      grid-template-columns: 1fr; 
      gap: 50px; 
    }
    
    .pillars-grid { 
      grid-template-columns: repeat(2, 1fr); 
    }
    
    .testimonial-grid { 
      grid-template-columns: repeat(2, 1fr); 
    }
    
    .section-title-large {
      font-size: 2.6rem;
    }
  }
  
  /* Medium Devices */
  @media (max-width: 992px) {
    .hero-title { 
      font-size: 3.5rem; 
    }
    
    .hero-metrics { 
      flex-direction: column; 
      align-items: flex-start; 
      gap: 20px;
    }
    
    .metric-divider { 
      display: none; 
    }
    
    .process-steps .step { 
      flex-direction: column; 
      gap: 10px; 
    }
    
    .step-number {
      min-width: auto;
    }
    
    .culture-stats {
      gap: 30px;
    }
    
    .email-cv-content {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }
    
    .investor-contact-info {
      justify-content: center;
    }
    
    .email-text h3 {
      font-size: 1.6rem;
    }
    
    .email-text p {
      font-size: 1.1rem;
    }
  }
  
  /* Tablets */
  @media (max-width: 768px) {
    .hero-title { 
      font-size: 2.8rem; 
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }
    
    .hero-metrics {
      padding: 20px 0;
    }
    
    .metric-value {
      font-size: 1.8rem;
    }
    
    .pillars-grid { 
      grid-template-columns: 1fr; 
    }
    
    .testimonial-grid { 
      grid-template-columns: 1fr; 
    }
    
    .position-item { 
      flex-direction: column; 
      align-items: flex-start; 
      gap: 20px; 
    }
    
    .position-right { 
      align-self: flex-start; 
    }
    
    .cta-actions { 
      flex-direction: column; 
      width: 100%;
    }
    
    .cta-title { 
      font-size: 2.2rem; 
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
      width: 100%;
      justify-content: center;
    }
    
    .section-title-large {
      font-size: 2.2rem;
    }
    
    .culture-text .lead {
      font-size: 1.2rem;
    }
    
    .culture-stats {
      flex-direction: column;
      gap: 20px;
    }
    
    .email-cv-message {
      padding: 40px 30px;
    }
    
    .email-icon {
      width: 80px;
      height: 80px;
      font-size: 2rem;
    }
    
    .investor-contact-info {
      flex-direction: column;
      align-items: stretch;
      gap: 15px;
    }
    
    .investor-email-link,
    .investor-phone-link {
      justify-content: center;
      width: 100%;
    }
    
    .email-text h3 {
      font-size: 1.4rem;
    }
    
    .email-text p {
      font-size: 1rem;
    }
    
    .graduate-email-wrapper {
      flex-direction: column;
      text-align: center;
    }
    
    .graduate-email-address {
      flex-direction: column;
      align-items: stretch;
      gap: 15px;
    }
    
    .email-link {
      justify-content: center;
    }
    
    .email-deadline {
      justify-content: center;
    }
    
    .filter-tabs {
      gap: 8px;
    }
    
    .filter-tab {
      padding: 6px 18px;
      font-size: 0.9rem;
    }
  }
  
  /* Small Tablets and Large Phones */
  @media (max-width: 576px) {
    .hero-title { 
      font-size: 2.2rem; 
    }
    
    .hero-pre-title {
      font-size: 0.8rem;
      letter-spacing: 4px;
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
    
    .breadcrumb-premium { 
      flex-wrap: wrap; 
      gap: 8px;
    }
    
    .hero-cta .btn-scroll {
      padding: 14px 28px;
      font-size: 0.95rem;
    }
    
    .metric-value {
      font-size: 1.5rem;
    }
    
    .metric-label {
      font-size: 0.8rem;
    }
    
    .section-title-large {
      font-size: 1.8rem;
    }
    
    .title-premium {
      font-size: 2rem;
    }
    
    .subtitle-premium {
      font-size: 1rem;
    }
    
    .position-item {
      padding: 20px;
    }
    
    .position-icon {
      width: 48px;
      height: 48px;
      font-size: 1.3rem;
    }
    
    .position-meta h3 {
      font-size: 1.1rem;
    }
    
    .position-tags {
      gap: 10px;
    }
    
    .tag-type {
      padding: 2px 10px;
    }
    
    .position-badge {
      font-size: 0.7rem;
      padding: 4px 10px;
    }
    
    .stat-badge-number {
      font-size: 1.8rem;
    }
    
    .no-results-message {
      padding: 50px 20px;
    }
    
    .no-results-content h4 {
      font-size: 1.3rem;
    }
    
    .no-results-content p {
      font-size: 1rem;
    }
    
    .email-cv-message {
      padding: 30px 20px;
    }
    
    .email-text h3 {
      font-size: 1.3rem;
    }
    
    .graduate-apply-email {
      padding: 25px 20px;
    }
    
    .graduate-email-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }
    
    .graduate-email-content h4 {
      font-size: 1.2rem;
    }
    
    .email-link {
      padding: 10px 20px;
      font-size: 0.95rem;
    }
    
    .cta-title {
      font-size: 1.8rem;
    }
    
    .cta-text {
      font-size: 1rem;
    }
    
    .cta-premium-card {
      padding: 40px 20px;
    }
    
    .cta-guarantee {
      font-size: 0.8rem;
    }
  }
  
  /* Small Phones */
  @media (max-width: 375px) {
    .hero-title { 
      font-size: 1.8rem; 
    }
    
    .hero-pre-title {
      font-size: 0.7rem;
      letter-spacing: 3px;
    }
    
    .breadcrumb-premium {
      font-size: 0.85rem;
    }
    
    .pillar-card {
      padding: 30px 20px;
    }
    
    .pillar-icon-large {
      width: 70px;
      height: 70px;
      font-size: 1.6rem;
    }
    
    .pillar-card h3 {
      font-size: 1.1rem;
    }
    
    .pillar-card p {
      font-size: 0.9rem;
    }
    
    .testimonial-media {
      height: 180px;
    }
    
    .testimonial-content {
      padding: 20px;
    }
    
    .testimonial-text {
      font-size: 0.9rem;
    }
    
    .cta-title {
      font-size: 1.5rem;
    }
  }
  
  /* Landscape Orientation on Mobile */
  @media (max-width: 768px) and (orientation: landscape) {
    .careers-hero {
      min-height: auto;
      padding: 100px 0 80px;
    }
    
    .hero-title {
      font-size: 2.4rem;
    }
    
    .hero-metrics {
      flex-direction: row;
      gap: 20px;
    }
    
    .metric-divider {
      display: block;
    }
    
    .testimonial-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Touch Device Optimizations */
  @media (hover: none) and (pointer: coarse) {
    .pillar-card:hover,
    .position-item:hover,
    .testimonial-card:hover,
    .btn-cta-primary:hover,
    .btn-cta-secondary:hover,
    .email-link:hover,
    .investor-email-link:hover,
    .investor-phone-link:hover {
      transform: none;
    }
    
    .pillar-card:active,
    .position-item:active,
    .btn-cta-primary:active,
    .btn-cta-secondary:active,
    .email-link:active,
    .investor-email-link:active,
    .investor-phone-link:active {
      transform: scale(0.98);
    }
    
    .filter-tab {
      -webkit-tap-highlight-color: transparent;
    }
    
    input, 
    select, 
    textarea,
    button {
      font-size: 16px !important; /* Prevents zoom on iOS */
    }
  }
  
  /* Print Styles */
  @media print {
    .careers-hero,
    .hero-cta,
    .btn-cta-primary,
    .btn-cta-secondary,
    .filter-tabs {
      display: none;
    }
    
    .pillar-card,
    .position-item,
    .testimonial-card {
      box-shadow: none;
      border: 1px solid #ddd;
      break-inside: avoid;
    }
  }
  
  /* Accessibility Improvements */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
  
  /* High Contrast Mode Support */
  @media (prefers-contrast: high) {
    .gold-gradient {
      background: none;
      color: var(--gold-primary);
    }
    
    .btn-cta-primary,
    .btn-cta-secondary,
    .investor-email-link,
    .investor-phone-link {
      border: 2px solid currentColor;
    }
  }