:root {
    --navy: #0B2D72;
    --gold: #C6A84E;
    --light-gold: #E7D8A1;
    --grey: #5A5A5A;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--navy);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 60px 0;
}

.center {
    text-align: center;
}

.logo {
    height: 120px; /* was 60px */
	width: auto;
}

.navbar {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.hero h1 {
    font-family: 'Aptos Black', serif;
    font-size: 42px;
    font-weight: 600;
}

.subtitle {
    color: var(--grey);
    margin-top: 20px;
    font-size: 18px;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 30px auto;
}

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--white);
}

.methodology h2 {
    font-family: 'Aptos Display', serif;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.pillar-card {
    padding: 30px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    background: var(--white);
}

.pillar-card h3 {
    margin-bottom: 10px;
}

.assessment-card {
    background: #FAFAFA;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.question p {
    margin-bottom: 15px;
}

.question label {
    display: block;
    margin-bottom: 10px;
    color: var(--grey);
}

.progress-bar {
    height: 6px;
    background: #eee;
    margin-top: 30px;
}

.progress-fill {
    width: 20%;
    height: 100%;
    background: var(--gold);
}

.results .score {
    font-size: 48px;
    font-weight: 600;
    margin: 20px 0;
}

.footer {
    border-top: 1px solid #eee;
    padding: 30px 0;
    font-size: 14px;
    color: var(--grey);
}

.hidden {
    display: none;
}
.chart-container {
    max-width: 500px;
    margin: 40px auto;
}

.pillar-insights {
    margin-top: 40px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pillar-insights div {
    padding: 15px;
    border-left: 4px solid var(--gold);
    margin-bottom: 15px;
    background: #fafafa;
}
/* Assessment Page Minimal Layout */

.assessment-body {
    background: #FFFFFF;
}

.assessment-header {
    padding: 20px 40px;
    border-bottom: 1px solid #E5E7EB;
}

.logo-small {
    height: 60px;
    width: auto;
}

.assessment-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.assessment-card {
    max-width: 800px;
    width: 100%;
    background: #FAFAFA;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.assessment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #E5E7EB;
    background: #FFFFFF;
}

.logo-small {
    height: 60px;
    width: auto;
}

.home-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-decoration: none;
    color: #0B2D72;
    font-weight: 500;
    transition: 0.2s ease;
}

.home-link:hover {
    color: #C6A84E;
}
/* =========================
   ULTRA EXECUTIVE CINEMATIC
========================= */

.assessment-body {
    background:
        radial-gradient(circle at 50% 30%, rgba(198,168,78,0.25), transparent 40%),
        linear-gradient(135deg, #061a3a 0%, #020d1f 100%);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

/* Header */

.assessment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 50px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.logo-small {
    height: 60px;
}

.home-link {
    color: #F6E7BC;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.home-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255,255,255,0.7);
}

/* Assessment Card */

.assessment-section {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.assessment-card {
    max-width: 900px;
    width: 100%;
    padding: 70px;
    border-radius: 20px;

    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(25px);

    border: 1px solid rgba(255,255,255,0.2);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.7),
        0 0 40px rgba(198,168,78,0.25);

    position: relative;
}

/* Golden edge shine */

.assessment-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(120deg, #C6A84E, #F6E7BC, #C6A84E);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;   /* 🔥 THIS FIXES CLICK ISSUE */
}

/* Title */

.pillar-heading {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(90deg, #F6E7BC, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Questions */

.question p {
    font-weight: 500;
    margin-bottom: 10px;
}

.question label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

.question label:hover {
    color: #F6E7BC;
}

/* Navigation */

.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/* Buttons */

.btn-primary {
    padding: 14px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);

    background: linear-gradient(135deg, #C6A84E, #F6E7BC);
    color: #061a3a;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 25px rgba(198,168,78,0.6),
        0 0 15px rgba(255,255,255,0.6);
}

/* Progress */

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.2);
    margin-top: 40px;
    border-radius: 10px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #C6A84E, #F6E7BC);
    border-radius: 10px;
    box-shadow:
        0 0 15px rgba(198,168,78,0.9),
        0 0 25px rgba(255,255,255,0.5);
    transition: width 0.4s ease;
}

/* Results */

.results-card {
    max-width: 900px;
    margin: auto;
    padding: 70px;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.7),
        0 0 40px rgba(198,168,78,0.25);
}

.score {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(90deg, #F6E7BC, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 25px 0;
}