/*
Theme Name: Brightway Digital
Theme URI: https://brightwaydigital.co.za
Author: Brightway Digital
Version: 2.0.0
Description: Premium WordPress theme for Brightway Digital.
License: GNU General Public License v2 or later
Text Domain: brightway-digital
*/

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --blue-900: #0f172a;
    --blue-800: #1e293b;
    --blue-700: #1e3a8a;
    --blue-600: #1e40af;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-100: #dbeafe;
    --slate-50:  #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-500: #64748b;
    --slate-700: #334155;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-card: 0 4px 24px rgba(15,23,42,0.08);
    --shadow-hover: 0 20px 60px rgba(15,23,42,0.16);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--blue-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
.navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    padding: 0; transition: var(--transition);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1rem; color: #fff; letter-spacing: -1px;
    box-shadow: 0 4px 12px rgba(30,64,175,0.35);
}
.nav-name { font-size: 1.2rem; font-weight: 800; color: var(--blue-900); letter-spacing: -0.5px; }
.nav-name span { color: var(--blue-500); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 0.95rem; color: var(--slate-700); transition: color 0.2s; }
.nav-links a:hover { color: var(--blue-600); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.7rem 1.5rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); color: #fff !important; box-shadow: 0 4px 16px rgba(37,99,235,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.45); }
.btn-white { background: #fff; color: var(--blue-600) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.28); }
.btn-ghost { background: rgba(255,255,255,0.07); color: #fff !important; border: 1px solid rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--blue-900); border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero {
    background: #080f1e;
    color: #fff; padding: 0; position: relative; overflow: hidden;
    min-height: 92vh; display: flex; flex-direction: column;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(96,165,250,0.18) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 4rem;
    max-width: 1160px; margin: 0 auto; padding: 7rem 24px 5rem;
    position: relative; z-index: 1; flex: 1;
}
.hero-left { display: flex; flex-direction: column; align-items: flex-start; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(59,130,246,0.12); border: 1px solid rgba(96,165,250,0.25);
    color: var(--blue-400); padding: 0.4rem 1rem; border-radius: 100px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 1.75rem;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--blue-400); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }
.hero h1 { font-size: clamp(2.4rem, 4vw, 3.75rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.035em; margin-bottom: 1.5rem; }
.hero h1 .accent {
    background: linear-gradient(135deg, var(--blue-400), #a78bfa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual {
    width: 100%; max-width: 480px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 2rem; backdrop-filter: blur(12px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
    animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.visual-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 1.5rem; }
.visual-dot { width: 10px; height: 10px; border-radius: 50%; }
.visual-dot:nth-child(1){background:#ff5f57} .visual-dot:nth-child(2){background:#febc2e} .visual-dot:nth-child(3){background:#28c840}
.visual-line { height: 1px; flex:1; background: rgba(255,255,255,0.08); margin-left: 0.5rem; }
.visual-metric { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); border-radius: 12px; padding: 1.25rem 1.5rem; margin-bottom: 1rem; display: flex; align-items: center; justify-content: space-between; }
.visual-metric-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.3rem; }
.visual-metric-val { font-size: 1.6rem; font-weight: 900; color: #fff; letter-spacing: -0.03em; }
.visual-metric-badge { font-size: 0.75rem; font-weight: 700; color: #34d399; background: rgba(52,211,153,0.12); padding: 0.25rem 0.6rem; border-radius: 100px; }
.visual-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-top: 1.25rem; }
.visual-bar-item { flex:1; border-radius: 4px 4px 0 0; background: rgba(59,130,246,0.25); }
.visual-bar-item.active { background: linear-gradient(to top, var(--blue-600), var(--blue-400)); }
.visual-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.25rem; }
.visual-tag { font-size: 0.72rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 100px; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-orb-1 { width: 500px; height: 500px; background: rgba(59,130,246,0.15); top: -100px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(139,92,246,0.1); bottom: 0; left: 20%; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; }

/* ── STATS ── */
.stats { background: var(--white); padding: 4rem 0; border-bottom: 1px solid var(--slate-200); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 900; color: var(--blue-600); letter-spacing: -0.03em; line-height: 1; }
.stat-label { font-size: 0.9rem; color: var(--slate-500); font-weight: 500; margin-top: 0.4rem; }

/* ── SHARED ── */
section { padding: 6rem 0; }
.section-tag { display: inline-block; color: var(--blue-600); font-weight: 700; font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 1rem; }
.section-desc { font-size: 1.05rem; color: var(--slate-500); line-height: 1.8; max-width: 680px; }

/* ── CLIENTS ── */
.clients { background: var(--slate-50); padding: 4rem 0; position: relative; overflow: hidden; }
.clients::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue-600), var(--blue-400), #818cf8); }
.clients-header { text-align: center; margin-bottom: 2.5rem; }
.clients-header .section-tag { background: var(--blue-100); color: var(--blue-600); border-radius: 100px; padding: 0.35rem 1rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; }
.clients-header .section-title { color: var(--blue-900); font-size: 1.75rem; }
.clients-header .section-desc { margin: 0 auto; color: var(--slate-500); font-size: 0.95rem; }
.clients-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.client-card { background: #fff; border: 1.5px solid var(--slate-200); border-radius: 20px; padding: 2rem; text-decoration: none; display: flex; flex-direction: column; gap: 1.5rem; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; color: var(--blue-900); box-shadow: 0 2px 8px rgba(15,23,42,0.05); }
.client-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-600), var(--blue-400)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.client-card:hover { border-color: #bfdbfe; box-shadow: 0 16px 48px rgba(30,64,175,0.12); transform: translateY(-4px); }
.client-card:hover::after { transform: scaleX(1); }
.client-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.client-card-logo { width: 72px; height: 72px; border-radius: 16px; background: var(--slate-50); border: 1.5px solid var(--slate-200); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; transition: all 0.35s ease; }
.client-card:hover .client-card-logo { border-color: var(--blue-400); background: #fff; box-shadow: 0 6px 20px rgba(59,130,246,0.18); }
.client-card img { max-width: 54px; max-height: 54px; width: auto; height: auto; object-fit: contain; display: block; transition: transform 0.35s ease; }
.client-card:hover img { transform: scale(1.08); }
.client-card-arrow { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--slate-200); display: flex; align-items: center; justify-content: center; color: var(--slate-400); flex-shrink: 0; transition: all 0.35s ease; }
.client-card:hover .client-card-arrow { background: var(--blue-600); border-color: var(--blue-600); color: #fff; transform: translate(3px,-3px); box-shadow: 0 6px 16px rgba(30,64,175,0.35); }
.client-card-body { display: flex; flex-direction: column; gap: 0.4rem; }
.client-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--blue-900); margin: 0; letter-spacing: -0.025em; transition: color 0.3s; line-height: 1.2; }
.client-card:hover h3 { color: var(--blue-600); }
.client-card p { font-size: 0.875rem; color: var(--slate-500); margin: 0; line-height: 1.5; }
.client-tag { display: inline-flex; align-items: center; background: var(--slate-100); color: var(--slate-600); font-size: 0.65rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 100px; letter-spacing: 0.5px; text-transform: uppercase; border: 1px solid var(--slate-200); width: fit-content; margin-top: 0.25rem; transition: all 0.3s ease; }
.client-card:hover .client-tag { background: var(--blue-100); border-color: #bfdbfe; color: var(--blue-600); }
@media (min-width: 600px) { .clients { padding: 5rem 0; } .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } .clients-header .section-title { font-size: 2.25rem; } }
@media (min-width: 960px) { .clients { padding: 7rem 0; } .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } .clients-header .section-title { font-size: 2.75rem; } .client-card { padding: 2.5rem; } .client-card-logo { width: 80px; height: 80px; border-radius: 18px; } .client-card img { max-width: 60px; max-height: 60px; } .client-card h3 { font-size: 1.25rem; } }

/* ── SERVICES ── */
.services { background: #080f1e; padding: 4rem 0; position: relative; overflow: hidden; }
.services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4), transparent); }
.services .section-tag { color: var(--blue-400); background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); border-radius: 100px; padding: 0.3rem 0.9rem; }
.services .section-title { color: #fff; }
.services .section-desc { color: rgba(255,255,255,0.5); }
.services-grid { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; overflow: hidden; }
.service-card { background: rgba(255,255,255,0.02); border: none; border-bottom: 1px solid rgba(255,255,255,0.07); border-radius: 0; padding: 1.75rem 1.5rem; display: flex; align-items: flex-start; gap: 1.25rem; transition: background 0.3s ease; position: relative; overflow: hidden; box-shadow: none; }
.service-card:last-child { border-bottom: none; }
.service-card::after { display: none; }
.service-card:hover { background: rgba(59,130,246,0.06); transform: none; box-shadow: none; }
.service-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); display: flex; align-items: center; justify-content: center; color: var(--blue-400); flex-shrink: 0; margin-bottom: 0; transition: all 0.3s ease; }
.service-card:hover .service-icon { background: rgba(59,130,246,0.2); border-color: rgba(59,130,246,0.4); box-shadow: 0 0 20px rgba(59,130,246,0.2); }
.service-icon svg { width: 22px; height: 22px; }
.service-body { flex: 1; min-width: 0; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.9); margin: 0 0 0.4rem; letter-spacing: -0.01em; transition: color 0.3s; }
.service-card:hover h3 { color: #fff; }
.service-card p { color: rgba(255,255,255,0.45); line-height: 1.65; font-size: 0.85rem; margin: 0; }
@media (min-width: 600px) { .services { padding: 5rem 0; } .services-grid { display: grid; grid-template-columns: repeat(2,1fr); flex-direction: unset; } .service-card { border-right: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); padding: 2rem; } .service-card:nth-child(2n) { border-right: none; } .service-card:nth-last-child(-n+2) { border-bottom: none; } }
@media (min-width: 960px) { .services { padding: 7rem 0; } .services .section-title { font-size: 2.75rem; } .services-grid { grid-template-columns: repeat(3,1fr); } .service-card { padding: 2.5rem 2rem; border-right: 1px solid rgba(255,255,255,0.07); border-bottom: none; } .service-card:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.07); } .service-card:nth-child(3n) { border-right: none; } .service-card h3 { font-size: 1.1rem; } .service-card p { font-size: 0.9rem; } .service-icon { width: 48px; height: 48px; } .service-icon svg { width: 24px; height: 24px; } }

/* ── REVIEWS ── */
.reviews { background: #080f1e; position: relative; overflow: hidden; padding: 0; }
.reviews-hero { position: relative; min-height: 220px; display: flex; align-items: flex-start; overflow: hidden; }
.reviews-hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1400&q=80&auto=format&fit=crop'); background-size: cover; background-position: center 40%; filter: grayscale(10%) brightness(0.4); z-index: 0; }
.reviews-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,15,30,0.25) 0%, rgba(8,15,30,0.8) 75%, #080f1e 100%); }
.reviews-hero-title { position: relative; z-index: 1; padding: 2rem 1.25rem 5rem; text-align: left; }
.reviews-hero-title .eyebrow { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 0.25rem; }
.reviews-hero-title h2 { font-size: clamp(2.75rem, 11vw, 6rem); font-weight: 900; line-height: 0.9; letter-spacing: -0.02em; color: #fff; text-transform: uppercase; margin: 0 0 0.25rem; }
.reviews-hero-title h2 .outline { -webkit-text-stroke: 2px rgba(255,255,255,0.9); color: transparent; }
.reviews-hero-title .sub { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 3px; text-transform: uppercase; display: block; }
.reviews-slider-wrap { position: relative; z-index: 2; margin-top: -60px; padding: 0 1.25rem; }
.reviews-slider { overflow: hidden; }
.reviews-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.review-card { min-width: 100%; box-sizing: border-box; padding: 0; background: none; border: none; box-shadow: none; }
.review-card-inner { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; padding: 2.5rem 1.75rem 2.25rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.25rem; }
.review-card:hover { transform: none; box-shadow: none; }
.review-quote { font-size: 3rem; line-height: 1; color: rgba(255,255,255,0.2); font-family: Georgia, serif; letter-spacing: -4px; }
.review-text { font-size: 0.8rem; color: rgba(255,255,255,0.85); line-height: 1.9; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; max-width: 520px; }
.review-author { font-size: 0.7rem; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.review-author::before { content: '— '; }
.review-stars { color: #f59e0b; font-size: 0.8rem; letter-spacing: 2px; }
.reviewer { display: none; }
.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding: 1.75rem 0 2.5rem; }
.reviews-nav-btn { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.25); background: transparent; color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; }
.reviews-nav-btn:hover { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.reviews-nav-dots { display: flex; gap: 0.5rem; align-items: center; }
.reviews-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.25); transition: all 0.3s ease; cursor: pointer; border: none; padding: 0; }
.reviews-dot.active { background: var(--blue-400); width: 20px; border-radius: 3px; }
.reviews-google-bar { display: flex; align-items: center; justify-content: center; padding: 1.25rem 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.google-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 0.75rem 1.25rem; }
.google-logo { width: 20px; height: 20px; }
.google-g { width: 16px; height: 16px; }
.google-badge-score { font-size: 1.4rem; font-weight: 900; color: #fff; line-height: 1; }
.google-badge-stars { color: #f59e0b; font-size: 0.9rem; }
.google-badge-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ── WHY US ── */
.results { background: var(--blue-900); color: #fff; }
.results .section-tag { color: var(--blue-400); }
.results .section-title { color: #fff; }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.result-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); }
.result-card:hover { background: rgba(59,130,246,0.12); border-color: rgba(96,165,250,0.3); transform: translateY(-4px); }
.result-desc { font-size: 0.925rem; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* ── PROCESS ── */
.process { background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 3rem; position: relative; }
.process-steps::before { content:''; position:absolute; top:28px; left:12.5%; right:12.5%; height:2px; background: linear-gradient(90deg, var(--blue-600), var(--blue-400)); z-index:0; }
.process-step { text-align:center; padding: 0 1rem; position:relative; z-index:1; }
.step-num { width:56px; height:56px; border-radius:50%; margin:0 auto 1.25rem; background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); color:#fff; font-weight:900; font-size:1.1rem; display:flex; align-items:center; justify-content:center; box-shadow: 0 4px 20px rgba(30,64,175,0.4); border: 3px solid #fff; }
.process-step h3 { font-size:1rem; font-weight:700; margin-bottom:0.5rem; }
.process-step p { font-size:0.875rem; color:var(--slate-500); line-height:1.6; }

/* ── CAREERS ── */
.careers {
    background: linear-gradient(160deg, #080f1e 0%, #0d1a35 60%, #080f1e 100%);
    color: #fff; text-align: center; position: relative; overflow: hidden; padding: 7rem 0;
}
.careers::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(96,165,250,0.07) 1px, transparent 1px); background-size: 32px 32px; }
.careers .section-tag { color: var(--blue-400); background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); border-radius: 100px; padding: 0.3rem 0.9rem; }
.careers .section-title { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.careers .section-desc { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; }
.careers-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(59,130,246,0.12); filter: blur(80px); top: -100px; right: -100px; pointer-events: none; }

/* ── CTA ── */
.cta { background: #080f1e !important; padding: 0 0 6rem !important; }
.cta-box {
    background: linear-gradient(135deg, #1a237e 0%, #1e3a8a 40%, #1e40af 100%);
    border-radius: 24px; padding: 4rem 3.5rem; position: relative; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 80px rgba(30,64,175,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
    display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; text-align: left;
}
.cta-box::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%; pointer-events: none; }
.cta-box::after { content: ''; position: absolute; bottom: -80px; left: 30%; width: 300px; height: 300px; background: rgba(99,102,241,0.15); border-radius: 50%; filter: blur(60px); pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.cta-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.75rem; display: block; }
.cta-box h2 { font-size: clamp(1.6rem, 2.5vw, 2.5rem); font-weight: 900; color: #fff; margin-bottom: 1rem; letter-spacing: -0.03em; line-height: 1.1; }
.cta-box p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 480px; line-height: 1.75; margin: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 0.85rem; position: relative; z-index: 1; flex-shrink: 0; }
.cta-actions .btn { white-space: nowrap; justify-content: center; min-width: 190px; }
@media (max-width: 1100px) {
    .cta-box { grid-template-columns: 1fr; text-align: center; padding: 3.5rem 2.5rem; }
    .cta-box p { max-width: 600px; margin: 0 auto; }
    .cta-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .cta-actions .btn { min-width: 160px; }
}
@media (max-width: 480px) {
    .cta-box { padding: 2.5rem 1.5rem; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; min-width: unset; }
}
/* ── FOOTER ── */
.footer { background: var(--blue-900); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name { font-size: 1.3rem; font-weight: 800; color: #fff; margin: 0.75rem 0 0.5rem; }
.footer-brand-name span { color: var(--blue-400); }
.footer-tagline { font-size: 0.9rem; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--blue-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.875rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); }
.social-link:hover { background: var(--blue-500); color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: repeat(2,1fr); gap: 2rem; }
    .process-steps::before { display: none; }
}
@media (max-width: 640px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 1.5rem; border-bottom: 1px solid var(--slate-200); box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 1.25rem; z-index: 99; }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; padding-top: 5rem; }
    .hero-right { display: flex; justify-content: center; }
    .hero-visual { max-width: 100%; }
    .hero h1 { font-size: 2.4rem; }
    .results-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-actions, .hero-actions { flex-direction: column; align-items: center; }
}
