@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --primary: #2C3E50;
    --primary-light: #3d5166;
    --accent-gold: #F39C12;
    --accent-gold-dark: #E08E0B;
    --accent-green: #27AE60;
    --accent-red: #E74C3C;
    --neutral-light: #BDC3C7;
    --neutral-lighter: #ECF0F1;
    --neutral-mid: #95A5A6;
    --neutral-dark: #7F8C8D;
    --text-main: #2C3E50;
    --text-body: #333333;
    --text-secondary: #5D6D7E;
    --white: #FFFFFF;
    --bg-section-alt: #F4F6F7;
    --border-color: #DDE1E3;
    --shadow-sm: 0 2px 8px rgba(44,62,80,0.08);
    --shadow-md: 0 4px 20px rgba(44,62,80,0.12);
    --shadow-lg: 0 8px 40px rgba(44,62,80,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --container: 1280px;
    --section-pad: 100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-body); line-height: 1.75; }
a { color: var(--accent-gold); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--accent-gold-dark); }
img { display: block; max-width: 100%; height: auto; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad { padding: var(--section-pad) 0; }
.section-pad-sm { padding: 60px 0; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    text-decoration: none;
    line-height: 1;
}
.btn-primary {
    background: var(--accent-gold);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243,156,18,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--primary);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.label-tag {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 2px;
    margin-bottom: 16px;
}
.label-tag-green {
    background: var(--accent-green);
}
.label-tag-light {
    background: transparent;
    border: 1px solid var(--neutral-light);
    color: var(--neutral-dark);
}

.divider-line {
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 16px 0 28px;
}
.divider-line-center { margin: 16px auto 28px; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--accent-gold) !important; }
.bg-dark { background: var(--primary); }
.bg-alt { background: var(--bg-section-alt); }
.bg-light-gray { background: #F8F9FA; }

.section-header {
    margin-bottom: 56px;
}
.section-header.center { text-align: center; }

.section-header .subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
    margin-top: 8px;
}
.section-header.center .subtitle { margin: 8px auto 0; }

.disclaimer-banner {
    background: #FEF9EE;
    border-left: 4px solid var(--accent-gold);
    padding: 14px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

.info-note {
    background: var(--neutral-lighter);
    border-left: 3px solid var(--neutral-mid);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 24px 0;
    line-height: 1.6;
}

header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(44,62,80,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: box-shadow 0.3s;
}
header.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.01em;
}
.site-logo span {
    color: var(--accent-gold);
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-nav li a {
    display: block;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}
.site-nav li a:hover,
.site-nav li a.active {
    color: var(--accent-gold);
    background: rgba(243,156,18,0.1);
}
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}
.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.mobile-nav {
    display: none;
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav ul {
    list-style: none;
    padding: 12px 0;
    margin: 0;
}
.mobile-nav ul li a {
    display: block;
    padding: 12px 24px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s;
}
.mobile-nav ul li a:hover { color: var(--accent-gold); background: rgba(255,255,255,0.04); }

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 68px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--primary);
}
.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,62,80,0.88) 45%, rgba(44,62,80,0.45) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}
.hero-disclaimer {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(243,156,18,0.18);
    border: 1px solid rgba(243,156,18,0.4);
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.18;
}
.hero h1 span { color: var(--accent-gold); }
.hero .lead {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.hero-scroll-note {
    margin-top: 48px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.concept-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.concept-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}
.concept-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.concept-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.concept-card:hover::before { transform: scaleX(1); }
.card-icon {
    width: 48px;
    height: 48px;
    background: var(--neutral-lighter);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}
.concept-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.concept-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-text h2 { margin-bottom: 8px; }
.two-col-text p { color: var(--text-secondary); }
.two-col-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.two-col-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}
.two-col-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(44,62,80,0.08);
    pointer-events: none;
}

.factors-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.factors-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.factors-list li:last-child { border-bottom: none; }
.factors-list li .fl-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--neutral-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 700;
}
.factors-list li strong { color: var(--primary); font-size: 0.88rem; }

.stat-strip {
    background: var(--primary);
    padding: 56px 0;
}
.stat-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item {}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.stat-sep {
    width: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto;
}

.assessment-block {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}
.assessment-block::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(243,156,18,0.07);
    pointer-events: none;
}
.assessment-block::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}
.assessment-questions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 32px 0;
}
.aq-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s;
}
.aq-card:hover,
.aq-card.active {
    background: rgba(243,156,18,0.12);
    border-color: rgba(243,156,18,0.35);
}
.aq-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
}
.aq-card .aq-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.aq-option {
    padding: 5px 12px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: 'Inter', sans-serif;
    user-select: none;
}
.aq-option.selected,
.aq-option:hover {
    background: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.dash-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: box-shadow 0.25s, transform 0.25s;
}
.dash-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.dash-chart {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    position: relative;
}
.dash-chart svg {
    width: 72px;
    height: 72px;
    transform: rotate(-90deg);
}
.dash-chart .chart-track { fill: none; stroke: var(--neutral-lighter); stroke-width: 6; }
.dash-chart .chart-fill { fill: none; stroke-width: 6; stroke-linecap: round; }
.chart-fill-green { stroke: var(--accent-green); }
.chart-fill-gold { stroke: var(--accent-gold); }
.chart-fill-red { stroke: var(--accent-red); }
.chart-fill-blue { stroke: #3498DB; }
.chart-pct {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}
.dash-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}
.dash-info p { font-size: 0.82rem; color: var(--text-secondary); margin: 0; line-height: 1.5; }
.dash-tag {
    display: inline-block;
    padding: 2px 8px;
    font-size: 0.68rem;
    font-weight: 600;
    border-radius: 3px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.tag-green { background: rgba(39,174,96,0.12); color: var(--accent-green); }
.tag-gold { background: rgba(243,156,18,0.12); color: var(--accent-gold-dark); }
.tag-blue { background: rgba(52,152,219,0.12); color: #2980B9; }

.timeline {
    position: relative;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 12px; top: 6px; bottom: 6px;
    width: 2px;
    background: var(--border-color);
}
.timeline-item {
    position: relative;
    margin-bottom: 36px;
}
.timeline-dot {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--accent-gold);
}
.timeline-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}
.timeline-item p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }
.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}

.faq-list {}
.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-gold); }
.faq-question .faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--neutral-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    transition: background 0.2s, color 0.2s, transform 0.3s;
}
.faq-question.open .faq-icon {
    background: var(--accent-gold);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    padding: 0 0 20px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.faq-answer.open { display: block; }

.perspectives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.perspective-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    position: relative;
    transition: box-shadow 0.25s;
}
.perspective-card:hover { box-shadow: var(--shadow-md); }
.perspective-card::before {
    content: '\201C';
    position: absolute;
    top: 12px; left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--neutral-lighter);
    line-height: 1;
}
.perspective-card blockquote {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin: 16px 0 12px;
    padding-top: 12px;
}
.perspective-source {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--neutral-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.social-proof-strip {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 36px 0;
    text-align: center;
}
.sp-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}
.sp-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.image-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.image-grid-4 .img-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
}
.image-grid-4 .img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.image-grid-4 .img-item:hover img { transform: scale(1.04); }

.image-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.image-grid-3 .img-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.image-grid-3 .img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.image-grid-3 .img-item:hover img { transform: scale(1.04); }

.fullwidth-image-section {
    position: relative;
    height: 440px;
    overflow: hidden;
}
.fullwidth-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fullwidth-image-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(44,62,80,0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 40px;
}
.fullwidth-image-section .overlay h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 14px;
}
.fullwidth-image-section .overlay p {
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    font-size: 1.02rem;
}

.compliance-block {
    background: #FFFBF0;
    border: 1px solid rgba(243,156,18,0.25);
    border-radius: var(--radius-md);
    padding: 32px 36px;
}
.compliance-block h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.82rem;
}
.compliance-block p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.65;
}

.context-section {
    background: var(--primary);
    padding: 64px 0;
}
.context-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.context-inner h2 { color: var(--white); }
.context-inner p { color: rgba(255,255,255,0.72); }
.context-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.context-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.context-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(243,156,18,0.18);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.context-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.context-item p { font-size: 0.82rem; color: rgba(255,255,255,0.62); margin: 0; }

.chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
}
.chat-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s, background 0.25s;
    font-size: 1.4rem;
}
.chat-btn:hover {
    background: var(--accent-gold-dark);
    transform: scale(1.08);
}
.chat-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: none;
    flex-direction: column;
    border: 1px solid var(--border-color);
}
.chat-panel.open { display: flex; }
.chat-header {
    background: var(--primary);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-header-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}
.chat-header-subtitle {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
}
.chat-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    transition: color 0.2s;
}
.chat-close:hover { color: var(--white); }
.chat-messages {
    padding: 16px;
    flex: 1;
    max-height: 260px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chat-msg {
    background: var(--neutral-lighter);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--text-body);
    max-width: 90%;
    line-height: 1.5;
}
.chat-quick-btns {
    padding: 12px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.chat-quick-btn {
    background: var(--neutral-lighter);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-align: left;
}
.chat-quick-btn:hover {
    background: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    border-top: 3px solid var(--accent-gold);
    z-index: 9999;
    padding: 20px 0;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.show { display: block; }
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
    flex: 1;
    min-width: 200px;
}
.cookie-text strong { color: var(--white); }
.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.cookie-btn {
    padding: 9px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.cookie-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.cookie-btn-accept { background: var(--accent-gold); color: var(--white); }
.cookie-btn-decline { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn-policy { background: transparent; color: rgba(255,255,255,0.7); text-decoration: underline; padding: 9px 0; }

footer.site-footer {
    background: var(--primary);
    padding: 72px 0 0;
    color: rgba(255,255,255,0.75);
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-logo {
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 16px;
}
.footer-brand p { font-size: 0.82rem; line-height: 1.65; color: rgba(255,255,255,0.6); }
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent-gold); }
.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.62);
}
.footer-contact-item strong { color: rgba(255,255,255,0.85); display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.footer-hours h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
}
.footer-hours p { font-size: 0.82rem; color: rgba(255,255,255,0.62); line-height: 1.6; margin-bottom: 0; }
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-disclaimer-text {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    max-width: 800px;
}
.footer-disclaimer-text strong { color: rgba(255,255,255,0.6); }
.footer-disclaimer-text.big {
    max-width: 100%;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-educational-msg {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-align: right;
    white-space: nowrap;
}

.page-hero {
    background: var(--primary);
    padding: 120px 0 72px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(243,156,18,0.06);
}
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,0.72); font-size: 1rem; margin-top: 12px; max-width: 580px; }
.breadcrumb {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--accent-gold); }

.policy-content {
    max-width: 820px;
    margin: 0 auto;
}
.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}
.policy-content h3 {
    font-size: 1.1rem;
    margin-top: 28px;
    margin-bottom: 10px;
}
.policy-content p { font-size: 0.92rem; color: var(--text-secondary); }
.policy-content ul, .policy-content ol { font-size: 0.92rem; color: var(--text-secondary); }
.policy-content strong { color: var(--primary); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.value-card {
    border-top: 3px solid var(--accent-gold);
    padding: 28px 24px;
    background: var(--bg-section-alt);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.value-card h3 { font-size: 1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }

.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: flex-start;
}
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-body);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(243,156,18,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-disclaimer {
    font-size: 0.76rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-top: 12px;
    padding: 12px 14px;
    background: var(--bg-section-alt);
    border-radius: var(--radius-sm);
}

.contact-info-block {}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}
.contact-info-item:last-of-type { border-bottom: none; }
.ci-icon {
    width: 40px;
    height: 40px;
    background: var(--neutral-lighter);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.ci-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neutral-dark);
    margin-bottom: 3px;
}
.ci-value {
    font-size: 0.92rem;
    color: var(--primary);
    font-weight: 500;
}

.thankyou-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-section-alt);
    padding: 120px 24px 80px;
}
.thankyou-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 56px;
    text-align: center;
    max-width: 560px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
.thankyou-icon {
    width: 72px;
    height: 72px;
    background: rgba(39,174,96,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    color: var(--accent-green);
}
.thankyou-card h1 { font-size: 1.9rem; margin-bottom: 12px; }
.thankyou-card p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 28px; }

.assessment-loader {
    display: none;
    text-align: center;
    padding: 32px;
}
.loader-bar {
    width: 100%;
    max-width: 320px;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    margin: 16px auto;
    overflow: hidden;
}
.loader-bar-fill {
    height: 100%;
    background: var(--accent-gold);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}
.loader-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.reflection-journal {
    background: var(--bg-section-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.reflection-journal h3 { margin-bottom: 8px; font-size: 1.2rem; }
.reflection-journal p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 20px; }
.rj-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.rj-topic {
    padding: 6px 16px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: 'Inter', sans-serif;
}
.rj-topic.saved,
.rj-topic:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .stat-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .image-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    :root { --section-pad: 72px; }
    .two-col { grid-template-columns: 1fr; gap: 36px; }
    .two-col.reverse { direction: ltr; }
    .two-col-img img { height: 320px; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .perspectives-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .context-inner { grid-template-columns: 1fr; }
    .image-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-pad: 56px; }
    .site-nav { display: none; }
    .nav-burger { display: flex; }
    .hero { min-height: 100vh; }
    .assessment-block { padding: 36px 24px; }
    .assessment-questions { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .stat-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-bottom-inner { flex-direction: column; gap: 12px; }
    .footer-educational-msg { text-align: left; }
    .contact-form-wrap { padding: 28px 20px; }
    .thankyou-card { padding: 40px 28px; }
    .image-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .concept-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; align-items: flex-start; }
    .stat-strip-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
    .image-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .image-grid-3 { grid-template-columns: 1fr; }
    .chat-panel { width: 280px; right: -8px; }
    .cookie-btns { width: 100%; justify-content: flex-start; }
}
