/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --indigo: #4f46e5; --indigo-dark: #3730a3; --sky: #0ea5e9; --cyan: #06b6d4;
  --slate-900: #0f172a; --slate-800: #1e293b; --slate-700: #334155;
  --slate-600: #475569; --slate-500: #64748b; --slate-400: #94a3b8;
  --slate-200: #e2e8f0; --slate-100: #f1f5f9; --slate-50: #f8fafc; --white: #ffffff;
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; background: var(--white); color: var(--slate-800); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
#navbar.scrolled { border-color: var(--slate-100); box-shadow: 0 1px 12px rgba(0,0,0,.06); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo svg { height: 38px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a { padding: .5rem 1rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: .9rem; color: var(--slate-600); transition: all .2s; }
.nav-links a:hover { background: #eef2ff; color: var(--indigo); }
.nav-cta { padding: .5rem 1.25rem !important; border-radius: 50px !important; background: linear-gradient(135deg, var(--sky), var(--indigo)) !important; color: white !important; box-shadow: 0 2px 8px rgba(79,70,229,.25); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(79,70,229,.35) !important; }
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: .4rem .6rem; border-radius: 8px; color: var(--slate-600); font-size: 1.4rem; transition: background .2s; }
.nav-mobile-btn:hover { background: var(--slate-100); }
.nav-mobile-menu { display: none; position: absolute; top: 64px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--slate-100); padding: .75rem 1.5rem 1rem; flex-direction: column; gap: .25rem; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { display: block; padding: .75rem 1rem; border-radius: 8px; text-decoration: none; font-weight: 600; color: var(--slate-700); transition: all .2s; }
.nav-mobile-menu a:hover { background: #eef2ff; color: var(--indigo); }
.nav-mobile-menu .nav-cta { text-align: center; margin-top: .4rem; border-radius: 10px !important; }
@media(max-width: 768px) { .nav-links { display: none; } .nav-mobile-btn { display: block; } }

/* ─── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0a1628 0%, #0f2744 40%, #0c3d5e 100%);
  color: white; padding: 5rem 1.5rem 4.5rem; position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -120px; right: -120px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(14,165,233,.12) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -180px; left: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(99,102,241,.1) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); border-radius: 50px; padding: .4rem 1.1rem; font-size: .85rem; font-weight: 600; margin-bottom: 1.75rem; backdrop-filter: blur(8px); }
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 800; line-height: 1.12; margin-bottom: 1.25rem; letter-spacing: -.02em; }
.hero h1 span { background: linear-gradient(90deg, #67e8f9, #a5b4fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.72); margin-bottom: .75rem; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.hero-sub { font-size: .82rem !important; color: rgba(255,255,255,.38) !important; margin-bottom: 2.5rem !important; }
.btn-hero { display: inline-flex; align-items: center; gap: .75rem; padding: 1rem 2.25rem; border-radius: 16px; background: white; color: var(--indigo); font-weight: 800; font-size: 1.05rem; border: none; cursor: pointer; transition: all .3s; box-shadow: 0 4px 24px rgba(0,0,0,.2); font-family: inherit; }
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,.28); }
.hero-stats { margin-top: 2.75rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 2.25rem; }
.hero-stat { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.58); font-size: .875rem; font-weight: 500; }
.hero-stat-icon { font-size: 1.1rem; }

/* ─── SECTIONS ───────────────────────────────────────────────────────────────── */
.section-white { padding: 4.5rem 1.5rem; background: white; }
.section-tinted { padding: 4.5rem 1.5rem; background: linear-gradient(135deg, var(--slate-50) 0%, #eef2ff22 100%); }
.section-tinted2 { padding: 4.5rem 1.5rem; background: var(--slate-50); }
.section-border-b { border-bottom: 1px solid var(--slate-100); }
.section-border-t { border-top: 1px solid var(--slate-100); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 2.75rem; }
.section-title h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--slate-900); margin-bottom: .4rem; letter-spacing: -.01em; }
.section-title p { color: var(--slate-500); font-size: 1rem; }

/* ─── HOW IT WORKS ───────────────────────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.how-card { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: 18px; padding: 1.75rem 1.75rem 1.75rem 2rem; position: relative; transition: all .25s; }
.how-card:hover { border-color: #c7d2fe; box-shadow: 0 6px 20px rgba(79,70,229,.09); transform: translateY(-2px); }
.how-num { position: absolute; top: -14px; left: -14px; width: 32px; height: 32px; border-radius: 50%; background: var(--indigo); color: white; font-size: .75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 10px rgba(79,70,229,.4); }
.how-emoji { font-size: 2.2rem; margin-bottom: .85rem; display: block; }
.how-card h3 { font-weight: 700; color: var(--slate-800); margin-bottom: .4rem; font-size: 1.05rem; }
.how-card p { color: var(--slate-500); font-size: .9rem; line-height: 1.65; }

/* ─── RIASEC ─────────────────────────────────────────────────────────────────── */
.riasec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }
.riasec-card { background: white; border: 1px solid var(--slate-100); border-radius: 14px; padding: 1.25rem; transition: all .2s; }
.riasec-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.07); border-color: var(--slate-200); transform: translateY(-1px); }
.riasec-card-top { display: flex; align-items: center; gap: .75rem; margin-bottom: .6rem; }
.riasec-emoji { font-size: 1.6rem; }
.riasec-code { font-size: .68rem; font-weight: 800; color: var(--slate-400); text-transform: uppercase; letter-spacing: .1em; }
.riasec-name { font-weight: 700; color: var(--slate-800); font-size: .95rem; line-height: 1.2; }
.riasec-card p { color: var(--slate-500); font-size: .83rem; line-height: 1.55; }

/* ─── QUIZ ───────────────────────────────────────────────────────────────────── */
.quiz-wrap { max-width: 680px; margin: 0 auto; }
.quiz-progress-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; }
.quiz-progress-label span { font-size: .85rem; font-weight: 600; color: var(--slate-600); }
.quiz-pct { color: var(--indigo) !important; font-weight: 800 !important; }
.progress-bar { height: 8px; background: var(--slate-200); border-radius: 50px; overflow: hidden; margin-bottom: .6rem; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--sky), var(--indigo)); border-radius: 50px; transition: width .5s cubic-bezier(.4,0,.2,1); }
.progress-dots { display: flex; justify-content: space-between; margin-bottom: 1.75rem; }
.progress-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--slate-200); transition: background .3s, transform .3s; }
.progress-dot.done { background: var(--indigo); }
.progress-dot.current { background: var(--sky); transform: scale(1.3); }
.quiz-card { background: white; border: 1px solid var(--slate-100); border-radius: 22px; padding: 2rem 2rem 1.5rem; box-shadow: 0 4px 24px rgba(0,0,0,.05); transition: opacity .25s, transform .25s; }
.quiz-card.animating { opacity: .35; transform: scale(.97); }
.quiz-card h2 { font-size: 1.3rem; font-weight: 800; color: var(--slate-900); margin-bottom: 1.5rem; line-height: 1.4; letter-spacing: -.01em; }
.quiz-options { display: flex; flex-direction: column; gap: .75rem; }
.quiz-option { width: 100%; text-align: left; padding: 1rem 1.25rem; border-radius: 12px; border: 2px solid var(--slate-200); background: var(--slate-50); color: var(--slate-700); font-family: inherit; font-size: .95rem; font-weight: 600; cursor: pointer; transition: all .2s; line-height: 1.4; }
.quiz-option:hover { border-color: #a5b4fc; background: #eef2ff; color: var(--indigo); }
.quiz-option.selected { border-color: var(--indigo); background: #eef2ff; color: var(--indigo); transform: scale(.99); }
.quiz-back { margin-top: 1.25rem; display: flex; align-items: center; gap: .4rem; background: none; border: none; color: var(--slate-400); font-family: inherit; font-size: .85rem; font-weight: 600; cursor: pointer; transition: color .2s; padding: 0; }
.quiz-back:hover { color: var(--slate-600); }

/* ─── RESULTS ────────────────────────────────────────────────────────────────── */
.results-hero { background: linear-gradient(135deg, #0a1628, #0f2744, #0c3d5e); color: white; text-align: center; padding: 3.5rem 1.5rem 3rem; }
.results-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: .5rem; letter-spacing: -.02em; }
.results-hero p { color: rgba(255,255,255,.72); font-size: 1rem; }
.results-inner { max-width: 760px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.radar-wrap { background: white; border: 1px solid var(--slate-100); border-radius: 20px; padding: 1.75rem; margin-bottom: 1.5rem; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.radar-wrap h3 { font-weight: 800; color: var(--slate-800); margin-bottom: .25rem; font-size: 1.05rem; }
.radar-wrap p { font-size: .85rem; color: var(--slate-500); margin-bottom: 1rem; }
.radar-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-top: 1.25rem; }
.radar-badge { font-size: .75rem; font-weight: 700; padding: .3rem .8rem; border-radius: 50px; }
.profile-card { background: white; border: 1px solid var(--slate-100); border-radius: 22px; overflow: hidden; margin-bottom: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.profile-header { background: linear-gradient(135deg, #eef2ff, #e0f2fe); padding: 1.75rem 2rem; border-bottom: 1px solid var(--slate-100); }
.profile-header h2 { font-size: 1.65rem; font-weight: 800; color: var(--slate-900); margin-bottom: .35rem; }
.profile-header p { color: var(--slate-600); line-height: 1.6; }
.profile-body { padding: 1.75rem 2rem; }
.careers-title { font-weight: 800; color: var(--slate-800); font-size: 1.05rem; margin-bottom: 1.1rem; }
.career-item { border: 1px solid var(--slate-100); border-radius: 14px; padding: 1.25rem 1.4rem; margin-bottom: 1rem; transition: all .2s; }
.career-item:hover { border-color: #c7d2fe; box-shadow: 0 3px 12px rgba(79,70,229,.07); }
.career-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: .6rem; flex-wrap: wrap; }
.career-title { font-weight: 800; color: var(--slate-800); font-size: 1rem; }
.career-link { flex-shrink: 0; display: inline-flex; align-items: center; gap: .3rem; font-size: .75rem; font-weight: 700; color: var(--indigo); background: #eef2ff; padding: .3rem .8rem; border-radius: 50px; text-decoration: none; transition: all .2s; }
.career-link:hover { background: #c7d2fe; }
.career-desc { color: var(--slate-600); font-size: .88rem; line-height: 1.65; margin-bottom: .8rem; }
.skills-wrap { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .8rem; }
.skill-tag { font-size: .75rem; font-weight: 600; color: var(--slate-600); background: var(--slate-100); padding: .25rem .65rem; border-radius: 50px; }
.career-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-top: .85rem; border-top: 1px solid var(--slate-100); }
.career-meta-label { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-400); margin-bottom: .25rem; }
.career-meta-value { font-size: .85rem; color: var(--slate-700); font-weight: 700; }
.career-edu-list { list-style: none; }
.career-edu-list li { font-size: .8rem; color: var(--slate-600); display: flex; align-items: flex-start; gap: .4rem; margin-bottom: .25rem; }
.career-edu-list li::before { content: '✓'; color: #10b981; font-size: .75rem; flex-shrink: 0; margin-top: 1px; font-weight: 800; }
.result-actions { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
@media(min-width: 500px) { .result-actions { flex-direction: row; } }
.blog-cta-box { background: linear-gradient(135deg, #eef2ff, #e0f2fe); border: 1px solid #c7d2fe; border-radius: 18px; padding: 1.5rem; margin-bottom: 1.5rem; }
.blog-cta-box h3 { font-weight: 800; color: var(--slate-800); margin-bottom: .3rem; }
.blog-cta-box p { color: var(--slate-600); font-size: .9rem; margin-bottom: 1rem; line-height: 1.55; }
.blog-cta-box a { display: inline-flex; align-items: center; gap: .5rem; padding: .65rem 1.25rem; border-radius: 10px; background: white; border: 1px solid #c7d2fe; color: var(--indigo); font-weight: 700; font-size: .88rem; text-decoration: none; transition: all .2s; }
.blog-cta-box a:hover { background: #eef2ff; }

/* ─── BUTTONS ────────────────────────────────────────────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.75rem; border-radius: 12px; border: none; background: linear-gradient(135deg, var(--sky), var(--indigo)); color: white; font-family: inherit; font-weight: 700; font-size: .95rem; cursor: pointer; transition: all .2s; box-shadow: 0 2px 10px rgba(79,70,229,.25); }
.btn-primary:hover { box-shadow: 0 6px 20px rgba(79,70,229,.38); transform: translateY(-2px); }
.btn-secondary { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .9rem 1.5rem; border-radius: 12px; border: 1.5px solid var(--slate-200); background: white; color: var(--slate-700); font-family: inherit; font-weight: 700; font-size: .95rem; cursor: pointer; transition: all .2s; }
.btn-secondary:hover { background: var(--slate-50); border-color: var(--slate-300); }
.result-actions .btn-primary { flex: 1; }

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.testi-card { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: 18px; padding: 1.5rem; transition: all .2s; }
.testi-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); transform: translateY(-2px); }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: .75rem; letter-spacing: .05em; }
.testi-text { color: var(--slate-700); font-size: .9rem; line-height: 1.65; font-style: italic; margin-bottom: 1rem; }
.testi-footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.testi-name { font-weight: 700; color: var(--slate-800); font-size: .88rem; }
.testi-level { color: var(--slate-500); font-size: .78rem; }
.testi-profile { font-size: .72rem; font-weight: 700; color: var(--indigo); background: #eef2ff; padding: .25rem .65rem; border-radius: 50px; white-space: nowrap; }

/* ─── BLOG ───────────────────────────────────────────────────────────────────── */
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1.75rem; flex-wrap: wrap; gap: 1rem; }
.blog-header h2 { font-size: 1.75rem; font-weight: 800; color: var(--slate-900); letter-spacing: -.01em; }
.blog-header p { color: var(--slate-500); margin-top: .2rem; font-size: .95rem; }
.blog-link-all { display: flex; align-items: center; gap: .3rem; text-decoration: none; color: var(--indigo); font-weight: 700; font-size: .9rem; transition: color .2s; white-space: nowrap; }
.blog-link-all:hover { color: var(--indigo-dark); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.blog-card { background: white; border: 1px solid var(--slate-100); border-radius: 18px; overflow: hidden; text-decoration: none; transition: all .25s; display: block; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.09); border-color: #c7d2fe; }
.blog-card-img { height: 115px; background: linear-gradient(135deg, #eef2ff, #e0f2fe); display: flex; align-items: center; justify-content: center; font-size: 2.75rem; overflow: hidden; }
.blog-card-body { padding: 1.25rem 1.4rem; }
.blog-meta { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; }
.blog-cat { font-size: .7rem; font-weight: 700; color: var(--indigo); background: #eef2ff; padding: .2rem .65rem; border-radius: 50px; }
.blog-time { font-size: .72rem; color: var(--slate-400); font-weight: 500; }
.blog-card h3 { font-weight: 700; color: var(--slate-800); font-size: .95rem; margin-bottom: .4rem; line-height: 1.4; transition: color .2s; }
.blog-card:hover h3 { color: var(--indigo); }
.blog-card p { color: var(--slate-500); font-size: .82rem; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ─── CTA SECTION ────────────────────────────────────────────────────────────── */
.section-cta { padding: 5rem 1.5rem; background: linear-gradient(135deg, #0a1628, #0f2744, #0c3d5e); color: white; }
.section-cta h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: .75rem; letter-spacing: -.02em; }
.section-cta p { color: rgba(255,255,255,.72); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.btn-cta { display: inline-flex; align-items: center; gap: .75rem; padding: 1rem 2.25rem; border-radius: 16px; background: white; color: var(--indigo); font-weight: 800; font-size: 1.05rem; border: none; cursor: pointer; transition: all .3s; font-family: inherit; box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,.28); }

/* ─── FAQ ────────────────────────────────────────────────────────────────────── */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--slate-200); border-radius: 14px; overflow: hidden; margin-bottom: .75rem; transition: border-color .2s; }
.faq-item:hover { border-color: #c7d2fe; }
.faq-btn { width: 100%; text-align: left; padding: 1.1rem 1.4rem; background: white; border: none; display: flex; justify-content: space-between; align-items: center; font-family: inherit; font-size: .95rem; font-weight: 700; color: var(--slate-800); cursor: pointer; transition: background .2s; gap: 1rem; }
.faq-btn:hover { background: var(--slate-50); }
.faq-chevron { flex-shrink: 0; transition: transform .25s; color: var(--slate-400); font-size: 1.1rem; line-height: 1; display: inline-block; }
.faq-chevron.open { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; padding: 0 1.4rem; }
.faq-answer.open { max-height: 200px; padding: 0 1.4rem 1.1rem; }
.faq-answer p { color: var(--slate-600); font-size: .9rem; line-height: 1.65; }

/* ─── SEO CONTENT ────────────────────────────────────────────────────────────── */
.seo-inner { max-width: 760px; margin: 0 auto; }
.seo-inner h2 { font-size: 1.35rem; font-weight: 800; color: var(--slate-900); margin: 2rem 0 .75rem; letter-spacing: -.01em; }
.seo-inner h2:first-child { margin-top: 0; }
.seo-inner p { color: var(--slate-600); line-height: 1.75; margin-bottom: .75rem; }
.seo-inner ul { list-style: none; margin-bottom: 1rem; }
.seo-inner ul li { color: var(--slate-600); padding: .35rem 0 .35rem 1.6rem; position: relative; line-height: 1.55; }
.seo-inner ul li::before { content: '→'; position: absolute; left: 0; color: var(--indigo); font-weight: 700; }
.seo-inner strong { color: var(--slate-800); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
footer { background: var(--slate-900); color: var(--slate-400); padding: 3rem 1.5rem 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; padding-bottom: 2rem; }
.footer-brand p { font-size: .85rem; max-width: 300px; line-height: 1.65; }
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { color: var(--slate-400); text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 1.25rem 0 1.5rem; font-size: .78rem; color: var(--slate-600); max-width: 1100px; margin: 0 auto; }

/* ─── INNER PAGES ────────────────────────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, #0a1628 0%, #0f2744 60%, #0c3d5e 100%); color: white; padding: 3.5rem 1.5rem 3rem; }
.page-hero-inner { max-width: 760px; margin: 0 auto; }
.page-breadcrumb { font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: .75rem; }
.page-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.page-breadcrumb a:hover { color: white; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: .4rem; letter-spacing: -.02em; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1rem; }
.page-main { padding: 3.5rem 1.5rem 4rem; }
.page-content { max-width: 760px; margin: 0 auto; }
.page-content h3 { font-size: 1.2rem; font-weight: 800; color: var(--slate-900); margin: 2rem 0 .65rem; }
.page-content h3:first-child { margin-top: 0; }
.page-content p { color: var(--slate-600); line-height: 1.75; margin-bottom: .75rem; }
.page-content a { color: var(--indigo); text-decoration: underline; }
.page-content a:hover { color: var(--indigo-dark); }
.page-content strong { color: var(--slate-800); }
blockquote { border-left: 3px solid var(--indigo); padding: .75rem 1.25rem; margin: 1.25rem 0; background: #eef2ff; border-radius: 0 12px 12px 0; font-style: italic; color: var(--slate-700); }
.about-intro { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.25rem; background: linear-gradient(135deg, #eef2ff, #e0f2fe); border-radius: 16px; padding: 1.5rem; }
.about-avatar { font-size: 3rem; flex-shrink: 0; }
.about-intro h2 { font-size: 1.35rem; font-weight: 800; color: var(--slate-900); margin-bottom: .4rem; }
.about-intro p { color: var(--slate-600); line-height: 1.7; font-size: .95rem; }
.about-list { list-style: none; margin: .75rem 0 1rem; }
.about-list li { color: var(--slate-600); padding: .5rem 0 .5rem 2rem; position: relative; line-height: 1.55; border-bottom: 1px solid var(--slate-100); }
.about-list li:last-child { border-bottom: none; }
.about-list li::before { content: attr(data-icon); position: absolute; left: 0; }
.about-contact { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 14px; padding: 1.25rem 1.5rem; margin-top: 2rem; }
.about-contact h3 { margin-top: 0 !important; margin-bottom: .4rem; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media(max-width: 640px) {
  section, .section-white, .section-tinted, .section-tinted2, .section-cta { padding: 3rem 1rem; }
  .career-meta { grid-template-columns: 1fr; }
  .profile-body { padding: 1.25rem; }
  .profile-header { padding: 1.25rem; }
  .how-card { padding: 1.5rem 1.5rem 1.5rem 1.75rem; }
  .page-main { padding: 2rem 1rem 3rem; }
  .page-hero { padding: 2.5rem 1rem 2rem; }
}
