/* ===== RESET & VARIABLES ===== */
:root {
    --bg: #0a0c10;
    --bg2: #111418;
    --bg3: #161b22;
    --panel: #1a1f28;
    --line: rgba(255,255,255,.07);
    --text: #e8ecf2;
    --muted: #8b95a8;
    --gold: #d4a72c;
    --gold-light: #f0c84a;
    --gold-dark: #b08a1e;
    --gold-bg: rgba(212,167,44,.1);
    --danger: #f87171;
    --success: #4ade80;
    --white: #fff;
    --shadow-sm: 0 4px 20px rgba(0,0,0,.3);
    --shadow: 0 20px 50px rgba(0,0,0,.45);
    --shadow-gold: 0 8px 30px rgba(212,167,44,.2);
    --radius: 16px;
    --radius-lg: 24px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Inter, system-ui, -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

/* ===== TOPBAR ===== */
.topbar { position: sticky; top: 0; z-index: 100; background: rgba(10,12,16,.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 42px; height: 42px; flex-shrink: 0; }
.brand-logo.small { width: 36px; height: 36px; }
.brand-logo svg { width: 100%; height: 100%; }
.brand-title { font-weight: 800; font-size: 16px; letter-spacing: .02em; }
.brand-sub { color: var(--muted); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 16px 20px 20px; border-top: 1px solid var(--line); background: var(--bg2); }
.mobile-nav a { padding: 10px 0; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav-actions { display: flex; gap: 10px; margin-top: 14px; }
.mobile-nav.open { display: flex; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: 999px; padding: 10px 22px; font-weight: 600; font-size: 14px; cursor: pointer; transition: all .2s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #111; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--text); border-color: rgba(255,255,255,.2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }

/* ===== EYEBROW / SECTION LABELS ===== */
.eyebrow { display: inline-block; color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 14px; }
.gold-text { color: var(--gold); }
.section-head { margin-bottom: 48px; }
.section-head.centered { text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.1; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 16px; max-width: 560px; }
.section-head.centered p { margin: 0 auto; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #0a0c10 0%, #0f1520 50%, #0a0c10 100%); }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a72c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-bg-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212,167,44,.08) 0%, transparent 60%), radial-gradient(ellipse 50% 80% at 10% 80%, rgba(59,130,246,.06) 0%, transparent 50%); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; padding: 100px 0 80px; }
.hero-content { max-width: 680px; }
.hero-content h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 1.02; margin-bottom: 22px; }
.hero-copy { color: var(--muted); font-size: 18px; line-height: 1.75; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== ABOUT ===== */
.about-section { padding: 90px 0; background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.about-img-placeholder { background: linear-gradient(135deg, var(--bg3), var(--panel)); border: 1px solid var(--line); border-radius: var(--radius-lg); min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: var(--muted); font-size: 14px; }
.about-img-placeholder.dark { background: linear-gradient(135deg, #0d1117, #161b22); }
.img-icon { font-size: 64px; }
.about-content h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.1; margin-bottom: 28px; }
.about-block { margin-bottom: 20px; }
.about-block h4 { color: var(--gold); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.about-block p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.mission-list { display: grid; gap: 8px; }
.mission-list li { color: var(--muted); font-size: 15px; padding-left: 20px; position: relative; }
.mission-list li::before { content: '▸'; position: absolute; left: 0; color: var(--gold); }
.about-content .btn { margin-top: 10px; }

/* ===== STATS ===== */
.stats-section { padding: 90px 0; background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.stats-img-wrap { order: 1; }
.stats-content { order: 0; }
.stats-content h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.stats-desc { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
.stats-checklist { display: grid; gap: 10px; margin-bottom: 32px; }
.stats-checklist li { color: var(--muted); font-size: 15px; padding-left: 24px; position: relative; }
.stats-checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.stats-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.stat-box { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 20px; }
.stat-box .stat-num { font-size: 38px; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-box .stat-suffix { font-size: 24px; font-weight: 700; color: var(--gold); }
.stat-box .stat-label { display: block; color: var(--muted); font-size: 13px; margin-top: 6px; }

/* ===== SERVICES ===== */
.services-section { padding: 90px 0; background: var(--bg2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--bg3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; transition: border-color .25s, transform .25s; }
.service-card:hover { border-color: rgba(212,167,44,.35); transform: translateY(-4px); }
.service-icon { font-size: 42px; margin-bottom: 18px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ===== PROCESS ===== */
.process-section { padding: 90px 0; background: var(--bg); }
.process-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.process-left h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.1; margin-bottom: 14px; }
.process-left > p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 36px; }
.process-steps { display: grid; gap: 20px; }
.process-step { display: flex; gap: 18px; align-items: flex-start; }
.step-icon { width: 52px; height: 52px; flex-shrink: 0; background: var(--gold-bg); border: 1px solid rgba(212,167,44,.2); border-radius: 14px; display: grid; place-items: center; font-size: 22px; }
.process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.process-step p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.process-img-placeholder { background: linear-gradient(135deg, var(--bg3), var(--panel)); border: 1px solid var(--line); border-radius: var(--radius-lg); min-height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.process-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-stat { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 16px; }
.mini-stat .stat-num { font-size: 28px; font-weight: 900; color: var(--gold); }
.mini-stat > span:nth-child(2) { font-size: 18px; font-weight: 700; color: var(--gold); }
.mini-stat > span:last-child { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }

/* ===== CTA ===== */
.cta-section { position: relative; padding: 100px 0; overflow: hidden; background: linear-gradient(135deg, #0d1117 0%, #111820 50%, #0d1117 100%); }
.cta-bg-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212,167,44,.07) 0%, transparent 65%); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.cta-inner p { color: var(--muted); font-size: 17px; line-height: 1.7; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--bg2); border-top: 1px solid var(--line); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-tagline { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--panel); border: 1px solid var(--line); display: grid; place-items: center; font-size: 13px; font-weight: 700; color: var(--muted); transition: .2s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col ul li a { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; color: var(--muted); font-size: 13px; }

/* ===== FLASH ===== */
.flash { position: fixed; right: 20px; bottom: 20px; z-index: 200; max-width: min(420px, calc(100% - 40px)); padding: 16px 20px; border-radius: var(--radius); font-weight: 600; font-size: 14px; box-shadow: var(--shadow); }
.flash-success { background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.25); color: #d3ffe0; }
.flash-error { background: rgba(248,113,113,.12); border: 1px solid rgba(248,113,113,.25); color: #ffd9d9; }

/* ===== MODALS ===== */
.modal { position: fixed; inset: 0; display: none; z-index: 150; }
.modal.active { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.75); backdrop-filter: blur(4px); }
.modal { overflow-y: auto; }
.modal-dialog { position: relative; width: min(1100px, calc(100% - 24px)); margin: 20px auto; background: linear-gradient(180deg, #141920, #0f1318); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 28px 36px; box-shadow: var(--shadow); }
.modal-dialog:not(.modal-wide) { width: min(520px, calc(100% - 24px)); }
.modal-close { position: absolute; right: 16px; top: 14px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); cursor: pointer; background: rgba(255,255,255,.06); color: var(--text); font-size: 22px; display: grid; place-items: center; transition: .2s; }
.modal-close:hover { background: rgba(255,255,255,.12); }
.modal-header.center { text-align: center; margin-bottom: 18px; }
.modal-brand-mark { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #111; font-weight: 900; font-size: 16px; display: grid; place-items: center; margin: 0 auto 10px; }
.modal-header h2 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 800; margin-bottom: 6px; }
.modal-header p { color: var(--muted); font-size: 13px; max-width: 500px; margin: 0 auto; line-height: 1.5; }

/* ===== FORMS ===== */
.auth-grid-form { display: grid; gap: 14px; }
.form-grid { display: grid; gap: 12px; }
.form-grid.three-col { grid-template-columns: repeat(3, 1fr); }
.field { display: grid; gap: 7px; }
.field span { color: #c8d0de; font-weight: 600; font-size: 13px; }
.field input, .field select { width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.04); color: var(--white); padding: 10px 14px; outline: none; transition: border-color .2s, box-shadow .2s; }
.field input::placeholder { color: #5a6478; }
.field input:focus, .field select:focus { border-color: rgba(212,167,44,.5); box-shadow: 0 0 0 3px rgba(212,167,44,.08); }
.field select option { background: #1a1f28; }
.field small, .form-error { color: #fdb5b5; font-size: 12px; }
.form-error-box { margin-bottom: 18px; padding: 12px 16px; border-radius: 12px; border: 1px solid rgba(248,113,113,.3); background: rgba(248,113,113,.1); color: #ffd9d9; font-weight: 600; font-size: 14px; }
.check-row { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; cursor: pointer; }
.check-row input { width: 17px; height: 17px; accent-color: var(--gold); cursor: pointer; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.form-actions.between { justify-content: space-between; align-items: center; }
.hidden { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid, .stats-grid, .process-inner { grid-template-columns: 1fr; gap: 40px; }
    .stats-img-wrap { order: 0; }
    .stats-content { order: 1; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: flex; }
    .hero-content h1 { font-size: clamp(32px, 8vw, 52px); }
    .services-grid { grid-template-columns: 1fr; }
    .stats-numbers { grid-template-columns: 1fr 1fr; }
    .process-mini-stats { grid-template-columns: 1fr 1fr; }
    .form-grid.three-col { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { grid-column: auto; }
}
@media (max-width: 520px) {
    .hero-actions, .cta-actions { flex-direction: column; }
    .btn-lg { width: 100%; }
    .form-grid.three-col { grid-template-columns: 1fr; }
    .stats-numbers, .process-mini-stats { grid-template-columns: 1fr; }
    .modal-dialog { padding: 22px 18px; }
    .form-actions.between { flex-direction: column; align-items: stretch; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}


/* ═══════════════════════════════════════════════════
   BPO WEBSITE STYLES
═══════════════════════════════════════════════════ */
:root {
    --navy:       #050d1f;
    --navy2:      #0a1628;
    --navy3:      #0f1f3d;
    --blue:       #2563eb;
    --blue-light: #3b82f6;
    --purple:     #7c3aed;
    --neon-glow:  0 0 20px rgba(37,99,235,.45), 0 0 40px rgba(37,99,235,.2);
    --neon-gold:  0 0 20px rgba(212,167,44,.4);
}
html,body { overflow-x:hidden; max-width:100%; }

/* NAV */
.bpo-nav { position:sticky;top:0;z-index:100;background:rgba(5,13,31,.95);backdrop-filter:blur(16px);border-bottom:1px solid rgba(37,99,235,.15); }

/* HERO SLIDER */
.bpo-hero { position:relative;height:100vh;min-height:580px;overflow:hidden; }
.bpo-slider-track { display:flex;height:100%;width:300%;transition:transform .75s cubic-bezier(.77,0,.18,1); }
.bpo-slide { width:33.333%;height:100%;position:relative;flex-shrink:0;background-size:cover;background-position:center;background-repeat:no-repeat; }
.bpo-slide-overlay { position:absolute;inset:0;background:linear-gradient(to right,rgba(5,13,31,.88) 40%,rgba(5,13,31,.4)); }
.bpo-slide-content { position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;padding:0 20px;max-width:700px; }
.bpo-slide-content h1 { font-size:clamp(2rem,5vw,3.6rem);font-weight:900;color:#fff;line-height:1.1;margin:.6rem 0 1.2rem; }
.bpo-slide-content p { color:rgba(255,255,255,.8);font-size:1.05rem;line-height:1.75;margin-bottom:2rem;max-width:520px; }
.bpo-hero-btns { display:flex;gap:1rem;flex-wrap:wrap; }
.bpo-eyebrow { display:inline-block;color:#d4a72c;font-size:.8rem;font-weight:700;letter-spacing:3px;text-transform:uppercase;margin-bottom:.8rem; }
.bpo-gold { color:#d4a72c; }
.bpo-slider-btn { position:absolute;top:50%;transform:translateY(-50%);background:rgba(37,99,235,.15);border:2px solid #2563eb;color:#fff;width:50px;height:50px;border-radius:50%;font-size:1.3rem;cursor:pointer;z-index:10;display:flex;align-items:center;justify-content:center;transition:background .2s; }
.bpo-slider-btn:hover { background:rgba(37,99,235,.4); }
.bpo-prev { left:1.2rem; }
.bpo-next { right:1.2rem; }
.bpo-slider-dots { position:absolute;bottom:1.8rem;left:50%;transform:translateX(-50%);display:flex;gap:.6rem;z-index:10; }
.bpo-dot { width:11px;height:11px;border-radius:50%;border:2px solid #2563eb;background:transparent;cursor:pointer;transition:background .2s; }
.bpo-dot.active { background:#2563eb; }

/* TRUST BAR */
.bpo-trust-bar { background:linear-gradient(90deg,#1d4ed8,#2563eb,#7c3aed);padding:2.2rem 0; }
.bpo-trust-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;text-align:center; }
.bpo-trust-num { font-size:2.4rem;font-weight:900;color:#fff;line-height:1; }
.bpo-trust-label { font-size:.82rem;font-weight:700;color:rgba(255,255,255,.8);letter-spacing:1px;margin-top:.3rem;text-transform:uppercase; }

/* SECTIONS */
.bpo-section { padding:5rem 0;background:var(--navy2); }
.bpo-section.bpo-dark { background:var(--navy); }
.bpo-section-head { margin-bottom:3rem; }
.bpo-section-head.centered { text-align:center; }
.bpo-section-head h2 { font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:900;color:#fff;line-height:1.15;margin:.5rem 0 1rem; }
.bpo-section-head p { color:rgba(255,255,255,.6);line-height:1.75;max-width:640px; }
.bpo-section-head.centered p { margin:0 auto; }

/* ABOUT */
.bpo-about-grid { display:grid;grid-template-columns:1fr 1fr;gap:3.5rem;align-items:start; }
.bpo-about-img { position:relative;border-radius:14px;overflow:hidden; }
.bpo-about-img img { width:100%;height:420px;object-fit:cover;display:block;border-radius:14px; }
.bpo-about-badge { position:absolute;bottom:-1rem;right:-1rem;background:#d4a72c;color:#111;padding:1rem 1.4rem;border-radius:10px;font-weight:900;box-shadow:var(--neon-gold);text-align:center; }
.bpo-badge-num { display:block;font-size:2rem;line-height:1; }
.bpo-badge-label { font-size:.78rem;font-weight:700;letter-spacing:1px; }
.bpo-pillars-grid { display:grid;grid-template-columns:1fr 1fr;gap:1.4rem; }
.bpo-pillar { background:var(--navy3);border:1px solid rgba(37,99,235,.2);border-radius:12px;padding:1.5rem;transition:border-color .25s,transform .25s; }
.bpo-pillar:hover { border-color:#2563eb;transform:translateY(-4px);box-shadow:var(--neon-glow); }
.bpo-pillar-icon { font-size:2rem;margin-bottom:.8rem; }
.bpo-pillar h4 { color:#fff;font-size:1rem;font-weight:800;margin-bottom:.5rem; }
.bpo-pillar p { color:rgba(255,255,255,.6);font-size:.88rem;line-height:1.65; }

/* CAMPAIGNS */
.bpo-campaigns-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem; }
.bpo-campaign-card { background:var(--navy3);border:1px solid rgba(37,99,235,.2);border-radius:14px;overflow:hidden;transition:transform .3s,border-color .3s,box-shadow .3s; }
.bpo-campaign-card:hover { transform:translateY(-6px);border-color:#2563eb;box-shadow:var(--neon-glow); }
.bpo-campaign-img { height:180px;overflow:hidden; }
.bpo-campaign-img img { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.bpo-campaign-card:hover .bpo-campaign-img img { transform:scale(1.06); }
.bpo-campaign-card h3 { color:#fff;font-size:1rem;font-weight:800;padding:1.2rem 1.2rem .5rem; }
.bpo-campaign-card p { color:rgba(255,255,255,.6);font-size:.87rem;line-height:1.6;padding:0 1.2rem 1.4rem; }

/* METRICS */
.bpo-metrics-section { position:relative;padding:5rem 0;background:var(--navy);overflow:hidden; }
.bpo-metrics-ghost { position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:clamp(5rem,15vw,12rem);font-weight:900;color:rgba(37,99,235,.06);white-space:nowrap;pointer-events:none;letter-spacing:.1em; }
.bpo-metrics-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;position:relative;z-index:2; }
.bpo-metric-card { background:var(--navy3);border:1px solid rgba(37,99,235,.25);border-radius:14px;padding:2rem 1.5rem;text-align:left;transition:border-color .25s,box-shadow .25s; }
.bpo-metric-card:hover { border-color:#2563eb;box-shadow:var(--neon-glow); }
.bpo-metric-label { color:rgba(255,255,255,.55);font-size:.82rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin-bottom:.8rem; }
.bpo-metric-num { font-size:3rem;font-weight:900;color:#fff;line-height:1; }

/* TOP PERFORMERS */
.bpo-performers-layout { display:grid;grid-template-columns:1fr;gap:1.5rem; }
.bpo-performer-featured { position:relative;border-radius:16px;overflow:hidden;height:420px; }
.bpo-performer-featured img { width:100%;height:100%;object-fit:cover;object-position:top; }
.bpo-performers-row { display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem; }
.bpo-performer-card { position:relative;border-radius:14px;overflow:hidden;height:280px; }
.bpo-performer-card img { width:100%;height:100%;object-fit:cover;object-position:top; }
.bpo-performer-overlay { position:absolute;inset:0;background:linear-gradient(to top,rgba(5,13,31,.95) 40%,transparent);display:flex;flex-direction:column;justify-content:flex-end;padding:1.5rem; }
.bpo-performer-payout { font-size:2.2rem;font-weight:900;color:#fff;line-height:1; }
.bpo-performer-sub { color:rgba(255,255,255,.65);font-size:.8rem;margin:.3rem 0 .7rem; }
.bpo-performer-badges { display:flex;gap:.5rem;flex-wrap:wrap; }
.bpo-badge-blue { background:#2563eb;color:#fff;font-size:.72rem;font-weight:800;padding:.25rem .7rem;border-radius:20px; }
.bpo-badge-gold { background:#d4a72c;color:#111;font-size:.72rem;font-weight:800;padding:.25rem .7rem;border-radius:20px; }

/* WHY JOIN US */
.bpo-why-grid { display:grid;grid-template-columns:repeat(5,1fr);gap:1.4rem;margin-bottom:3rem; }
.bpo-why-card { background:var(--navy3);border:1px solid rgba(37,99,235,.2);border-radius:12px;padding:1.8rem 1.2rem;text-align:center;transition:border-color .25s,transform .25s; }
.bpo-why-card:hover { border-color:#2563eb;transform:translateY(-4px);box-shadow:var(--neon-glow); }
.bpo-why-icon { font-size:2.2rem;margin-bottom:1rem; }
.bpo-why-card h4 { color:#fff;font-size:.95rem;font-weight:800;margin-bottom:.6rem; }
.bpo-why-card p { color:rgba(255,255,255,.58);font-size:.83rem;line-height:1.6; }
.bpo-awards-strip { display:flex;gap:2rem;justify-content:center;flex-wrap:wrap;padding:2rem;background:var(--navy3);border-radius:14px;border:1px solid rgba(212,167,44,.15); }
.bpo-award-item { display:flex;flex-direction:column;align-items:center;gap:.4rem;text-align:center; }
.bpo-award-item img { width:56px;height:56px;object-fit:contain;filter:brightness(1.2); }
.bpo-award-item span { color:#fff;font-size:.82rem;font-weight:700;max-width:120px; }
.bpo-award-item small { color:#d4a72c;font-size:.75rem;font-weight:700; }

/* BENEFITS */
.bpo-benefits-grid { display:grid;grid-template-columns:repeat(5,1fr);gap:1rem; }
.bpo-benefit-item { background:var(--navy3);border:1px solid rgba(37,99,235,.15);border-radius:10px;padding:1.2rem .8rem;text-align:center;transition:border-color .2s,transform .2s; }
.bpo-benefit-item:hover { border-color:#2563eb;transform:translateY(-3px); }
.bpo-benefit-item span { font-size:1.8rem;display:block;margin-bottom:.5rem; }
.bpo-benefit-item p { color:rgba(255,255,255,.65);font-size:.78rem;line-height:1.4;margin:0; }

/* CAREERS */
.bpo-careers-banner { position:relative;border-radius:16px;overflow:hidden;height:280px;margin-bottom:3rem; }
.bpo-careers-banner img { width:100%;height:100%;object-fit:cover; }
.bpo-careers-banner-overlay { position:absolute;inset:0;background:linear-gradient(to right,rgba(5,13,31,.9) 50%,rgba(5,13,31,.4));display:flex;flex-direction:column;justify-content:center;padding:2.5rem; }
.bpo-careers-banner-overlay h3 { color:#fff;font-size:1.8rem;font-weight:900;margin-bottom:.6rem; }
.bpo-careers-banner-overlay p { color:rgba(255,255,255,.7);margin-bottom:1.2rem;max-width:420px; }
.bpo-careers-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-bottom:2.5rem; }
.bpo-career-card { background:var(--navy3);border:1px solid rgba(37,99,235,.2);border-radius:12px;padding:1.8rem;transition:border-color .25s,transform .25s; }
.bpo-career-card:hover { border-color:#2563eb;transform:translateY(-4px);box-shadow:var(--neon-glow); }
.bpo-career-num { font-size:2.5rem;font-weight:900;color:rgba(37,99,235,.3);line-height:1;margin-bottom:.8rem; }
.bpo-career-card h4 { color:#fff;font-size:1rem;font-weight:800;margin-bottom:.6rem; }
.bpo-career-card p { color:rgba(255,255,255,.6);font-size:.87rem;line-height:1.65; }
.bpo-alt-routes { background:var(--navy3);border:1px solid rgba(212,167,44,.2);border-radius:14px;padding:2rem; }
.bpo-alt-routes h3 { color:#fff;font-weight:800;margin-bottom:.4rem; }
.bpo-alt-routes > p { color:rgba(255,255,255,.6);margin-bottom:1.2rem;font-size:.9rem; }
.bpo-alt-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:1rem; }
.bpo-alt-item { background:var(--navy2);border:1px solid rgba(37,99,235,.2);border-radius:10px;padding:1rem;text-align:center;color:rgba(255,255,255,.75);font-size:.9rem;font-weight:600; }

/* HOW WE HIRE */
.bpo-hire-steps { display:flex;align-items:flex-start;justify-content:center;flex-wrap:wrap;gap:.5rem; }
.bpo-hire-step { display:flex;flex-direction:column;align-items:center;text-align:center;max-width:110px; }
.bpo-hire-icon { width:60px;height:60px;background:rgba(37,99,235,.12);border:2px solid #2563eb;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin-bottom:.7rem; }
.bpo-hire-label { color:#fff;font-size:.78rem;font-weight:700;line-height:1.3; }
.bpo-hire-step small { color:rgba(255,255,255,.45);font-size:.7rem;margin-top:.3rem; }
.bpo-hire-arrow { color:#2563eb;font-size:1.5rem;margin-top:1.2rem;flex-shrink:0; }

/* BRANCHES */
.bpo-branches-wrap { display:grid;grid-template-columns:1fr 1fr;gap:3rem; }
.bpo-branches-heading { margin-bottom:1.2rem; }
.bpo-branch-card { display:flex;gap:1rem;align-items:center;background:var(--navy3);border:1px solid rgba(37,99,235,.2);border-radius:12px;overflow:hidden;margin-bottom:1rem;transition:border-color .25s; }
.bpo-branch-card:hover { border-color:#2563eb; }
.bpo-branch-card img { width:100px;height:80px;object-fit:cover;flex-shrink:0; }
.bpo-branch-info { padding:.8rem; }
.bpo-branch-info h4 { color:#fff;font-weight:800;font-size:.95rem;margin-bottom:.3rem; }
.bpo-branch-info p { color:rgba(255,255,255,.6);font-size:.83rem; }
.bpo-upcoming-grid { display:grid;grid-template-columns:1fr 1fr;gap:1rem; }
.bpo-upcoming-card { background:var(--navy3);border:1px solid rgba(37,99,235,.15);border-radius:10px;padding:1rem;transition:border-color .2s; }
.bpo-upcoming-card:hover { border-color:#2563eb; }
.bpo-upcoming-icon { font-size:1.4rem;margin-bottom:.4rem; }
.bpo-upcoming-card h5 { color:#fff;font-weight:800;font-size:.9rem;margin-bottom:.3rem; }
.bpo-upcoming-card p { color:rgba(255,255,255,.55);font-size:.8rem; }

/* CONTACT */
.bpo-contact-grid { display:grid;grid-template-columns:1fr 1.6fr;gap:3rem;align-items:start; }
.bpo-contact-info { display:flex;flex-direction:column;gap:1.5rem; }
.bpo-contact-item { display:flex;gap:1rem;align-items:flex-start; }
.bpo-contact-icon { font-size:1.5rem;flex-shrink:0;margin-top:.2rem; }
.bpo-contact-item strong { display:block;color:#fff;font-weight:800;margin-bottom:.3rem; }
.bpo-contact-item p { color:rgba(255,255,255,.6);font-size:.88rem;margin:.1rem 0; }
.bpo-contact-form { display:flex;flex-direction:column;gap:1rem; }
.bpo-form-row { display:grid;grid-template-columns:1fr 1fr;gap:1rem; }
.bpo-contact-form textarea { width:100%;border-radius:12px;border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.04);color:#fff;padding:10px 14px;outline:none;resize:vertical;font:inherit;transition:border-color .2s; }
.bpo-contact-form textarea:focus { border-color:rgba(37,99,235,.5); }

/* FOOTER */
.bpo-footer { background:var(--navy);border-top:1px solid rgba(37,99,235,.15);padding:4rem 0 0; }
.bpo-footer-grid { display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.07); }
.bpo-footer-brand p { color:rgba(255,255,255,.5);font-size:.88rem;line-height:1.7;max-width:260px;margin-bottom:1.2rem; }
.bpo-social { width:36px;height:36px;border-radius:50%;background:rgba(37,99,235,.12);border:1px solid rgba(37,99,235,.3);display:inline-flex;align-items:center;justify-content:center;color:#3b82f6;font-weight:900;font-size:.82rem;text-decoration:none;margin-right:.4rem;transition:background .2s; }
.bpo-social:hover { background:#2563eb;color:#fff; }
.bpo-footer-col h5 { color:#fff;font-size:.85rem;font-weight:800;text-transform:uppercase;letter-spacing:1px;margin-bottom:1rem; }
.bpo-footer-col ul { list-style:none;padding:0;display:flex;flex-direction:column;gap:.6rem; }
.bpo-footer-col ul li a { color:rgba(255,255,255,.5);font-size:.88rem;text-decoration:none;transition:color .2s; }
.bpo-footer-col ul li a:hover { color:#d4a72c; }
.bpo-footer-bottom { display:flex;justify-content:space-between;align-items:center;padding:1.4rem 0;color:rgba(255,255,255,.4);font-size:.82rem;flex-wrap:wrap;gap:.8rem; }
.bpo-footer-bottom a { color:rgba(255,255,255,.4);text-decoration:none;font-size:.82rem; }
.bpo-footer-bottom a:hover { color:#d4a72c; }

/* ═══ RESPONSIVE ═══ */
@media (max-width:1100px) {
    .bpo-why-grid { grid-template-columns:repeat(3,1fr); }
    .bpo-benefits-grid { grid-template-columns:repeat(4,1fr); }
    .bpo-footer-grid { grid-template-columns:1fr 1fr; }
    .bpo-footer-brand { grid-column:1/-1; }
}
@media (max-width:900px) {
    .bpo-about-grid { grid-template-columns:1fr; }
    .bpo-campaigns-grid { grid-template-columns:repeat(2,1fr); }
    .bpo-metrics-grid { grid-template-columns:repeat(2,1fr); }
    .bpo-performers-row { grid-template-columns:1fr 1fr; }
    .bpo-careers-grid { grid-template-columns:repeat(2,1fr); }
    .bpo-branches-wrap { grid-template-columns:1fr; }
    .bpo-contact-grid { grid-template-columns:1fr; }
    .bpo-trust-grid { grid-template-columns:repeat(2,1fr); }
    .bpo-alt-grid { grid-template-columns:repeat(2,1fr); }
    .bpo-upcoming-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:640px) {
    .bpo-hero { height:85vh;min-height:500px; }
    .bpo-prev,.bpo-next { display:none; }
    .bpo-campaigns-grid,.bpo-metrics-grid,.bpo-careers-grid,
    .bpo-why-grid,.bpo-benefits-grid,.bpo-footer-grid,
    .bpo-performers-row,.bpo-alt-grid,.bpo-upcoming-grid { grid-template-columns:1fr; }
    .bpo-pillars-grid { grid-template-columns:1fr; }
    .bpo-trust-grid { grid-template-columns:repeat(2,1fr); }
    .bpo-hire-steps { flex-direction:column;align-items:center; }
    .bpo-hire-arrow { transform:rotate(90deg);margin:0; }
    .bpo-form-row { grid-template-columns:1fr; }
    .bpo-hero-btns { flex-direction:column; }
    .bpo-hero-btns .btn { width:100%; }
    .bpo-careers-banner { height:auto; }
    .bpo-careers-banner img { height:200px; }
    .bpo-performer-featured { height:300px; }
    .bpo-footer-grid { grid-template-columns:1fr; }
    .bpo-footer-brand { grid-column:auto; }
    .bpo-footer-bottom { flex-direction:column;text-align:center; }
}
