/* ===== CSS RESET & VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors — Deep Navy Palette */
    --navy-900: #0F172A;
    --navy-800: #1E293B;
    --navy-700: #334155;
    --navy-600: #475569;

    --gold-100: #FEFCE8;
    --gold-200: #FFF7ED;
    --gold-300: #C5A059;
    --gold-400: #D8B978;
    --gold-500: #A8882D;
    --gold-600: #8B7024;

    /* Semantic Colors */
    --white: #FFFFFF;
    --bg-dark: #0F172A;
    --bg-light: #F8FAFC;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #334155;
    --gray-400: #475569;
    --gray-500: #475569;
    --gray-600: #94a3b8;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Transitions */
    --transition-fast: 0.1s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.4s ease;

    /* Shadows */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-glow: none;

    /* Gradients */
    --gradient-gold: var(--gold-300);
    --gradient-gold-text: var(--white);
    --gradient-dark: var(--navy-900);

    /* Borders */
    --border-thin: 1px solid #CBD5E1;
    --border-thick: 2px solid #CBD5E1;

    /* Semantic Colors */
    --primary: var(--navy-900);
    --accent: var(--gold-300);
}

/* ===== STRATEGY BRIEFING SECTION ===== */
.briefing-section {
    background: #F8FAFC;
    padding: 6rem 0;
}

.briefing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.briefing-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.briefing-subtitle {
    color: #64748B;
    font-size: 1.1rem;
}

.briefing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.briefing-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.briefing-step-item {
    display: flex;
    gap: 1.5rem;
}

.briefing-step-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.briefing-step-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.briefing-step-desc {
    color: #64748B;
}

.briefing-form-card {
    background: #ffffff;
    padding: 2.5rem;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
}

.briefing-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.briefing-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    border-radius: 4px;
    font-family: var(--font-primary);
}

.briefing-btn {
    width: 100%;
    background: var(--accent);
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-base);
}

.briefing-btn:hover {
    background: var(--gold-400);
}

@media (max-width: 900px) {
    .briefing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .briefing-form-card {
        padding: 1.5rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--navy-900);
    background: #FFFFFF;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--navy-900);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

strong {
    color: var(--gold-300);
    font-weight: 600;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--gold-300);
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: transform var(--transition-base);
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--gold-300);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-900);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition-base);
}

.nav-links a:hover {
    color: var(--gold-300);
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy-900);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    /* Reduced gap slightly for better fit */
    padding: 80px 20px;
    /* Space for top/bottom */
    overflow-y: auto;
    /* Enable scrolling if links overflow */
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    transition: color var(--transition-base);
}

.mobile-nav a:hover {
    color: var(--gold-300);
}

.nav-cta {
    display: none;
    /* Hidden — removed per request */
}

/* ===== BUTTONS ===== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1.1rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--gold-300);
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-base);
    overflow: hidden;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gold-300);
    color: #FFFFFF;
    border-color: var(--gold-300);
}

.btn-primary::after {
    display: none;
}

.btn-primary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-full {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) var(--space-md);
    padding-top: calc(var(--space-3xl) + 40px);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%),
        url('images/hero-bg.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-bg::after {
    display: none;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 0.2em;
}

.title-accent {
    display: block;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--gold-300);
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--gray-300);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-400);
    max-width: 740px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--gray-500);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: bounce 2.5s infinite;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--gold-300);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.section-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    margin-bottom: var(--space-sm);
    color: var(--white);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: var(--gold-400);
    opacity: 0.9;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    display: block;
}

/* ===== WHY SECTION ===== */
.why-section {
    background: var(--navy-800);
    border-bottom: 1px solid var(--navy-600);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-lg);
    border-left: 1px solid var(--navy-600);
}

.why-card {
    background: transparent;
    border: 1px solid var(--navy-600);
    border-left: none;
    border-radius: 0;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: none;
}

.why-card:hover {
    transform: none;
    background: var(--white);
    border-color: var(--white);
    color: var(--navy-900);
}

.why-card:hover .card-title,
.why-card:hover .card-text {
    color: var(--navy-900);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 0;
    margin-bottom: var(--space-md);
    color: var(--gold-300);
    position: relative;
    border: 1px solid var(--gold-300);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.card-text {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--navy-900);
    border-bottom: 1px solid var(--navy-600);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border: 1px solid var(--navy-600);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.service-card {
    position: relative;
    background: transparent;
    border: 1px solid var(--navy-600);
    margin: -1px 0 0 -1px;
    border-radius: 0;
    padding: var(--space-lg);
    transition: all var(--transition-base);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    display: none;
}

.service-card:hover {
    background: var(--gold-300);
    border-color: var(--gold-300);
    transform: none;
    box-shadow: none;
    z-index: 1;
}

.service-card:hover .service-title,
.service-card:hover .service-text,
.service-card:hover .service-number {
    color: #FFFFFF;
    opacity: 1;
}

.service-card:hover::before {
    display: none;
}

.service-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--navy-600);
    background: none;
    -webkit-text-fill-color: initial;
    opacity: 1;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--white);
    letter-spacing: -0.01em;
}

.service-text {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--navy-900);
    position: relative;
    padding-bottom: var(--space-3xl);
}

.contact-section::before {
    display: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 0.8fr 1fr;
        align-items: start;
    }
}

.contact-info {
    padding-top: var(--space-lg);
    text-align: center;
}

.contact-info .section-title {
    text-align: center;
    font-size: 2.5rem;
}

.contact-subtitle {
    color: var(--gray-400);
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    font-weight: 300;
}

.process-title {
    font-size: 0.9rem;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    left: 17px;
    width: 1px;
    height: calc(100% - 20px);
    background: rgba(0, 0, 0, 0.1);
}

.step-number {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--gold-300);
    color: var(--gold-300);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 0;
    z-index: 1;
    box-shadow: none;
}

.step-content {
    color: var(--gray-300);
    line-height: 1.6;
    padding-top: 4px;
    font-size: 1.05rem;
}

/* ===== FORM STYLES ===== */
.contact-form-wrapper {
    background: transparent;
    backdrop-filter: none;
    border: 1px solid var(--navy-600);
    border-radius: 0;
    padding: var(--space-xl);
    box-shadow: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-left: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    padding: 1rem 1.25rem;
    background: transparent;
    border: 1px solid var(--navy-600);
    border-radius: 0;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold-300);
    background: transparent;
    box-shadow: none;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
    background: var(--navy-800);
    border-bottom: 1px solid var(--navy-600);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--navy-600);
}

.leadership-card {
    background: transparent;
    backdrop-filter: none;
    border: 1px solid var(--navy-600);
    margin: -1px 0 0 -1px;
    border-radius: 0;
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.leadership-card:hover {
    border-color: var(--navy-600);
    background: var(--navy-800);
    transform: none;
    z-index: 1;
}

.leadership-card:hover .partner-name,
.leadership-card:hover .partner-role,
.leadership-card:hover .partner-bio,

/* New Partner Image Styles */
.partner-image-wrapper-new {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.partner-image-new {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 450px;
    /* Prevent over-sized vertical images */
    border: 1px solid var(--navy-600);
}

.leadership-card:hover .partner-value-prop {
    color: var(--white);
}

.partner-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 0;
    margin: 0 auto var(--space-md);
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: 1px solid var(--navy-600);
}

.partner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
    border: none;
    filter: grayscale(100%);
    transition: filter var(--transition-base);
}

.leadership-card:hover .partner-image {
    filter: grayscale(0%);
}

.partner-name {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 4px;
}

.partner-role {
    font-size: 0.9rem;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.partner-value-prop {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--gold-300);
}

.partner-bio,
.partner-desc {
    font-size: 1rem;
    color: var(--gray-300);
    line-height: 1.7;
    font-style: italic;
}

/* ===== PRESS / MARQUEE SECTION ===== */
.press-section {
    padding: var(--space-lg) 0;
    background: var(--navy-800);
    border-bottom: 1px solid var(--navy-600);
    overflow: hidden;
}

.press-title {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--navy-800), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--navy-800), transparent);
}

.marquee-track {
    display: flex;
    gap: var(--space-xl);
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.press-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gray-400);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Legacy — keep for backwards compat */
.press-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
    opacity: 0.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-900);
    border-top: 1px solid var(--navy-800);
    padding: var(--space-2xl) 0 var(--space-xl);
    color: var(--gray-400);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: invert(1) hue-rotate(180deg);
    mix-blend-mode: screen;
    margin-bottom: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand-col {
    text-align: center;
}

.footer a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer a:hover {
    color: var(--gold-300);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand-col .logo-icon {
    color: var(--gold-300);
}

.footer-brand-col .logo-text {
    color: var(--navy-900);
}

.footer-brand-col .footer-tagline {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    color: var(--gray-400);
}

.footer-col-title {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-300);
    margin-bottom: var(--space-md);
}

.footer-col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-col-links li a {
    font-size: 0.95rem;
    color: #94a3b8;
}

.footer-col-links li a:hover {
    color: var(--gold-300);
}

.footer-bottom {
    border-top: 1px solid rgba(203, 213, 225, 0.15);
    padding-top: var(--space-md);
    text-align: center;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.75rem;
}

/* Legacy footer (hidden now) */
.footer-content {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

/* ===== NEWSLETTER POPUP MODAL ===== */
.newsletter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.newsletter-overlay.active {
    display: flex;
}

.newsletter-modal {
    background: #FFFFFF;
    border: 1px solid var(--navy-600);
    padding: var(--space-xl);
    max-width: 460px;
    width: 100%;
    position: relative;
    text-align: center;
    animation: fadeInUp 0.4s ease-out;
}

.newsletter-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-base);
}

.newsletter-close:hover {
    color: var(--white);
}

.newsletter-modal h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.newsletter-modal p {
    color: var(--gray-400);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.newsletter-form input {
    padding: 0.9rem 1rem;
    border: 1px solid var(--navy-600);
    border-radius: 0;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    transition: border-color var(--transition-base);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-300);
}

.newsletter-form button {
    padding: 0.9rem 1.5rem;
    background: var(--gold-300);
    color: #FFFFFF;
    border: 1px solid var(--gold-300);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-base);
}

.newsletter-form button:hover {
    background: transparent;
    color: var(--gold-300);
}

/* ===== PAGE HEADER (for sub-pages) ===== */
.page-header {
    padding: calc(var(--space-3xl) + 60px) var(--space-md) var(--space-2xl);
    background: var(--navy-800);
    border-bottom: 1px solid var(--navy-600);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.page-header p {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Sub-page content area */
.page-content {
    padding: var(--space-2xl) 0;
}

.page-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.page-content p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    max-width: 800px;
}

.page-content .container {
    max-width: 900px;
}

/* Testimonial cards for Success Stories */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}



.testimonial-card {
    border: 1px solid var(--navy-600);
    padding: var(--space-lg);
    background: var(--navy-800);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--gray-200);
    /* Lighter for better contrast */
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    font-size: 1.05rem;
}

.testimonial-card cite {
    display: block;
    color: var(--gold-300);
    /* Brighter gold */
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
        --space-2xl: 3.5rem;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    /* Nav — force hide desktop links on mobile */
    .nav-links {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }

    .logo-icon {
        font-size: 1.8rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    /* Hero */
    .hero {
        padding-top: calc(var(--space-2xl) + 60px);
        padding-bottom: var(--space-2xl);
    }

    .hero-title {
        margin-bottom: var(--space-sm);
    }

    .title-line {
        font-size: 2.2rem;
    }

    .title-accent {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .section-header {
        margin-bottom: var(--space-xl);
    }

    .section-title {
        font-size: 2rem;
    }

    /* Grid stacking */
    .services-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
        border-right: none;
    }

    .service-card,
    .leadership-card {
        margin-right: 0;
        border-right: 1px solid var(--navy-600);
    }

    /* Center text */
    .hero-content,
    .section-header,
    .leadership-card,
    .service-card,
    .contact-info,
    .footer-content {
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .contact-info .section-title {
        text-align: center;
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: var(--space-lg);
    }

    .process-steps {
        max-width: 400px;
        margin: 0 auto;
        text-align: left;
    }

    .step {
        justify-content: flex-start;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }

    .footer-brand-col {
        margin-bottom: var(--space-sm);
    }

    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== STRATEGIES PAGE ===== */
.content-section {
    padding: var(--space-2xl) 0;
}

.content-intro {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-400);
}

.content-intro strong {
    color: var(--white);
    font-weight: 700;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.strategy-card {
    background: var(--navy-800);
    border: 1px solid var(--navy-600);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.scroll-line {
    position: absolute;
    bottom: 40px;
    left: 50%;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold-300), transparent);
    animation: scrollLoop 2s infinite;
}

@media (max-width: 768px) {
    .scroll-line {
        display: none;
        /* Hide on mobile to prevent overlap */
    }
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-300), var(--gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.strategy-card:hover::before {
    transform: scaleX(1);
}

.strategy-card:hover {
    border-color: var(--gold-300);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.strategy-icon {
    font-size: 1.6rem;
    color: var(--gold-300);
    margin-bottom: var(--space-sm);
}

.strategy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.strategy-card p {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Philosophy Section */
.philosophy-section {
    margin-bottom: var(--space-2xl);
}

.philosophy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.philosophy-item {
    padding: var(--space-lg);
    border-left: 3px solid var(--gold-300);
    transition: all var(--transition-base);
}

.philosophy-item:hover {
    background: var(--navy-800);
    border-left-color: var(--gold-400);
}

.philosophy-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-300);
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--space-xs);
}

.philosophy-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.philosophy-item p {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Download CTA */
.download-cta,
.subscribe-cta {
    margin-top: var(--space-xl);
}

.download-card,
.subscribe-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-card::before,
.subscribe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}

.download-card h2,
.subscribe-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #F8FAFC !important;
    margin-bottom: var(--space-sm);
}

.download-card p,
.subscribe-card p {
    color: #94A3B8 !important;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.7;
    font-size: 1.05rem;
}

.btn-primary {
    display: inline-block;
    background: var(--gold-300);
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--gold-300);
    padding: 0.8rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold-300);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--gold-300);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ===== NEWSLETTERS PAGE ===== */
.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
    .newsletter-grid {
        grid-template-columns: 1fr;
    }
}

.newsletter-card {
    background: var(--navy-800);
    border: 1px solid var(--navy-600);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.newsletter-card:hover {
    border-color: var(--gold-300);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.newsletter-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: #FFFFFF;
    padding: 0.3rem 0.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}

.newsletter-meta {
    margin-bottom: var(--space-sm);
}

.newsletter-date {
    color: var(--gold-300);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-300);
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.newsletter-excerpt {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.newsletter-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg) 0;
    flex-grow: 1;
}

.newsletter-highlights li {
    position: relative;
    color: var(--gray-600);
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-highlights li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: var(--gold-300);
    font-size: 0.7rem;
    top: 0.15rem;
}

/* ===== WHAT WE COVER — CARD GRID ===== */
.what-we-cover-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--navy-600);
}

.cover-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cover-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 6px;
    padding: 2rem 1.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.cover-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
    border-radius: 6px 6px 0 0;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.cover-card:hover {
    border-color: var(--gold-300);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cover-card:hover::before {
    transform: scaleX(1);
}

.cover-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--gold-300);
}

.cover-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cover-card-text {
    color: var(--gray-400);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* Last row — 2 cards centered */
.cover-cards-grid .cover-card:nth-child(4) {
    grid-column: 1 / 2;
}

.cover-cards-grid .cover-card:nth-child(5) {
    grid-column: 2 / 3;
}

@media (max-width: 1024px) {
    .cover-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cover-cards-grid .cover-card:nth-child(4),
    .cover-cards-grid .cover-card:nth-child(5) {
        grid-column: auto;
    }

    .cover-cards-grid .cover-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .cover-cards-grid {
        grid-template-columns: 1fr;
    }

    .cover-cards-grid .cover-card:last-child:nth-child(odd) {
        max-width: 100%;
    }
}

/* Active nav link */
.nav-links a.active {
    color: var(--gold-300);
}

/* ===== MOBILE RESPONSIVENESS OVERRIDES ===== */
@media (max-width: 600px) {

    /* Footer Alignment */
    .footer-grid {
        text-align: center;
        gap: var(--space-xl);
    }

    .footer-brand-col,
    .footer-col-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand-col div {
        justify-content: center;
    }

    /* Adjust Strategy/Leadership Grid Padding */
    .why-card,
    .service-card,
    .leadership-card {
        padding: var(--space-md);
    }
}

/* =========================================
   NEW HERO STYLES (Home Page Overhaul)
   ========================================= */

.hero-new {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    /* Adjusted padding to ensure text isn't cut off */
    overflow: hidden;
    color: var(--white);
    background: #0F172A;
    /* Fallback */
}

.hero-bg-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%),
        url('images/hero-bg.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
}

.hero-title-new {
    margin-bottom: var(--space-md);
}

.hero-title-new .title-line {
    color: var(--white) !important;
    /* Force white text */
    display: block;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.2em;
}

.hero-title-new .title-accent-new {
    display: block;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    color: var(--gold-300);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
}

.hero-subtitle-new {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #cbd5e1;
    margin: 0 auto 2rem;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
}

.hero-actions-new {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gold-300);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Chat FAB Styles */
.chat-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9999;
}

.chat-fab:hover {
    transform: scale(1.1) rotate(5deg);
}

.chat-fab svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Pulse ring animation on FAB */
.chat-fab-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--gold-500);
    animation: fabPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes fabPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Nudge tooltip */
.chat-nudge {
    position: fixed;
    bottom: 42px;
    right: 100px;
    background: rgba(17, 24, 39, 0.95);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    border-left: 3px solid var(--gold-500);
    font-size: 0.88rem;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: nudgeSlideIn 0.5s ease-out;
    max-width: 260px;
    line-height: 1.4;
}

.chat-nudge.show {
    display: flex;
}

@keyframes nudgeSlideIn {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.nudge-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 0 0 4px;
    line-height: 1;
    flex-shrink: 0;
}

.nudge-close:hover {
    color: #fff;
}

/* Chat Modal Styles */
.chat-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chat-modal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chat-header {
    background: var(--primary);
    padding: 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
}

.chat-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.bot {
    background: white;
    color: var(--dark);
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chat-message.user {
    background: var(--gold-500);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-input-area {
    padding: 1rem;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 0.5rem;
}

.chat-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.chat-input:focus {
    border-color: var(--gold-500);
}

.chat-send {
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.chat-send:hover {
    transform: scale(1.05);
}

/* Concierge V2 — Visual-First Styles */
.chat-header-info {
    display: flex;
    flex-direction: column;
}

.chat-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header-sub {
    font-size: 0.65rem;
    opacity: 0.6;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Progress Tracker */
.chat-progress {
    display: flex;
    gap: 5px;
    align-items: center;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.progress-dot.active {
    background: var(--gold-500, #C5A059);
    box-shadow: 0 0 6px rgba(197, 160, 89, 0.5);
}

.progress-dot.done {
    background: #4ADE80;
}

/* Segment Option Buttons */
.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 4px 0;
}

.chat-option-btn {
    background: linear-gradient(135deg, #0F172A, #1A2744);
    color: #E2E8F0;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    white-space: nowrap;
}

.chat-option-btn:hover {
    background: linear-gradient(135deg, #1A2744, #243352);
    border-color: var(--gold-500, #C5A059);
    color: var(--gold-300, #C5A059);
    transform: translateY(-1px);
}

.chat-option-btn.selected {
    background: var(--gold-500, #C5A059);
    color: #0F172A;
    border-color: var(--gold-500, #C5A059);
    font-weight: 600;
}

/* Scenario Bar */
.chat-scenarios {
    display: flex;
    gap: 4px;
    padding: 8px 10px;
    background: #0F172A;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    overflow-x: auto;
    flex-shrink: 0;
    align-items: center;
}

.scenario-label {
    font-size: 0.65rem;
    color: #64748B;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-right: 4px;
}

.scenario-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #94A3B8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 14px;
    font-size: 0.7rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transition: all 0.2s;
}

.scenario-btn:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.4);
    color: #C5A059;
}

/* ── VISUAL ELEMENTS ── */

/* Risk Gauge (inline SVG rendered by JS) */
.risk-gauge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    border-radius: 12px;
    margin: 8px 0;
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.risk-gauge-visual {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.risk-gauge-text {
    font-size: 0.78rem;
    line-height: 1.4;
    color: #CBD5E1;
}

.risk-gauge-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.risk-low {
    color: #4ADE80;
}

.risk-moderate {
    color: #FBBF24;
}

.risk-high {
    color: #F87171;
}

/* Scenario Result Cards */
.scenario-card {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    border-radius: 12px;
    padding: 14px;
    margin: 8px 0;
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.scenario-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.scenario-card-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #E2E8F0;
}

.scenario-card-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-caution {
    background: rgba(251, 191, 36, 0.15);
    color: #FBBF24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.badge-opportunity {
    background: rgba(74, 222, 128, 0.15);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.badge-critical {
    background: rgba(248, 113, 113, 0.15);
    color: #F87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
}

/* Visual Bar Charts (inline) */
.visual-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
}

.visual-bar-label {
    font-size: 0.68rem;
    color: #94A3B8;
    min-width: 70px;
    text-align: right;
}

.visual-bar-track {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    overflow: hidden;
}

.visual-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.8s ease;
}

.bar-green {
    background: linear-gradient(90deg, #22C55E, #4ADE80);
}

.bar-gold {
    background: linear-gradient(90deg, #B8860B, #C5A059);
}

.bar-red {
    background: linear-gradient(90deg, #DC2626, #F87171);
}

.bar-blue {
    background: linear-gradient(90deg, #2563EB, #60A5FA);
}

.visual-bar-value {
    font-size: 0.68rem;
    color: #E2E8F0;
    min-width: 40px;
    font-weight: 600;
}

/* Email Gate for PDF */
.email-gate {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    border-radius: 12px;
    padding: 14px;
    margin: 8px 0;
    border: 1px solid rgba(197, 160, 89, 0.25);
    text-align: center;
}

.email-gate h4 {
    color: var(--gold-500, #C5A059);
    font-size: 0.85rem;
    margin: 0 0 6px 0;
    font-family: 'Playfair Display', serif;
}

.email-gate p {
    color: #94A3B8;
    font-size: 0.72rem;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.email-gate-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #E2E8F0;
    font-size: 0.78rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    margin-bottom: 8px;
    box-sizing: border-box;
}

.email-gate-input:focus {
    border-color: var(--gold-500, #C5A059);
}

.email-gate-btn {
    width: 100%;
    padding: 9px;
    background: linear-gradient(135deg, #C5A059, #D4B76A);
    color: #0F172A;
    border: none;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.email-gate-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* CTA Booking Button */
.chat-cta-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 9px 18px;
    background: linear-gradient(135deg, #C5A059, #D4B76A);
    color: #0F172A;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.chat-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* ===== NEWSLETTER POPUP ===== */
.newsletter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.newsletter-overlay.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-modal {
    background: var(--white);
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid var(--gold-300);
}

.newsletter-overlay.active .newsletter-modal {
    transform: translateY(0);
}

.newsletter-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--navy-600);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.newsletter-close:hover {
    color: var(--gold-500);
}

.newsletter-title {
    font-family: var(--font-display);
    color: var(--navy-900);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.newsletter-desc {
    color: var(--gray-500);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #E2E8F0;
    font-family: var(--font-primary);
    font-size: 1rem;
}

.newsletter-form button {
    width: 100%;
    margin-bottom: 1rem;
}

/* ===== NEW HERO STYLES (FROM INDEX) ===== */
.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding-top: 80px;
    overflow: hidden;
}

/* Subpage Hero Override (Fixes Gap) */
.hero-new.subpage-hero {
    min-height: 60vh;
    padding-bottom: 4rem;
}

@media (max-width: 768px) {
    .hero-new.subpage-hero {
        min-height: 50vh;
        padding-top: 100px;
    }
}

/* Utility: Tight Padding */
.tight-padding {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.hero-bg-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Default Home Background */
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1518391846015-55a9cc003b25?auto=format&fit=crop&q=80') center/cover no-repeat;
    z-index: -1;
}

/* Page Specific Hero Backgrounds */
.hero-bg-about .hero-bg-new {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-bg-strategies .hero-bg-new {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1611974765270-ca12586343bb?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-bg-planning .hero-bg-new {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-bg-newsletters .hero-bg-new {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1586339949916-3e9457bef6d3?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-bg-success .hero-bg-new {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&q=80') center/cover no-repeat;
}

.hero-title-new {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.title-accent-new {
    color: var(--accent);
    display: block;
}

.hero-subtitle-new {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #E2E8F0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions-new {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ===== FINANCIAL PLANNING PAGE STYLES ===== */

/* Section Styles */
.fp-section {
    padding: 6rem 0;
    position: relative;
    border-bottom: 1px solid var(--navy-600);
}

.fp-section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    margin-bottom: 3rem;
    gap: 2rem;
}

.fp-section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--gold-300);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.fp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--white);
    letter-spacing: -0.02em;
}

.fp-section-desc {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 400px;
}

/* Strategy Cards */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fp-card {
    padding: 2.5rem;
    border: 1px solid var(--navy-600);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.fp-card:hover {
    border-color: var(--gold-300);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.fp-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold-300);
}

.fp-card p {
    color: #cbd5e1;
    /* Lighter gray for better legibility on dark bg */
    line-height: 1.7;
    font-size: 1.05rem;
}

.fp-card-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.55rem 1.1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-300);
    border: 1px solid var(--gold-300);
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fp-card-download:hover {
    background: var(--gold-300);
    color: var(--navy-900, #0f172a);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.fp-card-download svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Light section override — dark border/text for download buttons */
.fp-section-light .fp-card-download {
    color: var(--navy-800, #1e293b);
    border-color: var(--navy-800, #1e293b);
}

.fp-section-light .fp-card-download:hover {
    background: var(--navy-800, #1e293b);
    color: var(--gold-300);
}

/* VCF Offset Table */
.fp-table-container {
    margin-top: 3rem;
    overflow-x: auto;
    border: 1px solid var(--navy-600);
}

.fp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: transparent;
}

.fp-table th {
    background: var(--navy-900);
    color: #FFFFFF;
    padding: 1rem 1.25rem;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--navy-600);
}

.fp-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--navy-600);
    font-size: 0.95rem;
    color: var(--gray-400);
}

.fp-table .highlight-row {
    background: rgba(197, 160, 89, 0.08);
}

.fp-table .highlight-row td {
    font-weight: 700;
    color: var(--gold-300);
}

/* AI Interaction Section */
.fp-ai-section {
    background: var(--navy-800);
    border-bottom: 1px solid var(--navy-600);
    padding: 5rem 0;
}

.fp-ai-box {
    background: var(--navy-900);
    border: 1px solid var(--navy-600);
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.fp-ai-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.fp-ai-box>p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.fp-ai-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.fp-ai-btn {
    padding: 0.6rem 1.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: transparent;
    color: var(--gold-300);
    border: 1px solid var(--gold-300);
    cursor: pointer;
    transition: all 0.2s ease;
}

.fp-ai-btn:hover {
    background: var(--gold-300);
    color: #FFFFFF;
}

#ai-output {
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--gold-300);
    min-height: 100px;
    white-space: pre-wrap;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.fp-ai-box.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Dark-bg section variant */
.fp-section-dark {
    background: var(--navy-900);
}

.fp-section-dark .fp-section-title {
    color: #FFFFFF;
}

/* Light-bg section variant */
.fp-section-light {
    background: var(--navy-800);
}

/* Factsheet CTA */
.fp-cta {
    padding: 4rem 0;
}

.fp-cta-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fp-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}

.fp-cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #F8FAFC;
    margin-bottom: 1rem;
}

.fp-cta-card p {
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* FP Buttons */
.fp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--gold-300);
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.fp-btn-primary {
    background: var(--gold-300);
    color: #FFFFFF;
}

.fp-btn-primary:hover {
    background: transparent;
    color: var(--gold-300);
}

.fp-btn-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: var(--navy-600);
}

.fp-btn-outline:hover {
    border-color: var(--gold-300);
    color: var(--gold-300);
}

/* Mobile */
@media (max-width: 768px) {
    .fp-section-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fp-section-desc {
        max-width: 100%;
    }

    .fp-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .fp-table {
        min-width: 600px;
    }
}



/* Chat Fab Styles (Ensure no conflict) */
.chat-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-fab:hover {
    transform: scale(1.1);
}

.chat-fab svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.chat-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(0);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.chat-modal.active {
    transform: scale(1);
    opacity: 1;
}

/* ===== GLOBAL LAYOUT STANDARDIZATION ===== */
.section-light {
    background: var(--white);
    color: var(--navy-900);
}

.section-light h2,
.section-light h3,
.section-light h4 {
    color: var(--navy-900);
}

.section-light p,
.section-light li {
    color: var(--navy-800);
}

.section-dark {
    background: var(--navy-900);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p,
.section-dark li {
    color: var(--gray-400);
}

.section-alt {
    background: var(--navy-800);
    color: var(--white);
}

/* Light Mode Overrides for Strategy Components */
.section-light .strat-section-subtitle {
    color: var(--gold-500);
}

.section-light .model-name {
    color: var(--navy-900);
}

.section-light .model-id {
    color: var(--navy-600);
}

.section-light .model-btn:hover {
    background: var(--gray-100);
}

.section-light .model-btn.active {
    background: var(--navy-900);
}

.section-light .model-btn.active .model-name {
    color: var(--white);
}

.section-light .model-btn.active .model-id {
    color: var(--gold-300);
}

.section-light .model-btn {
    border-bottom-color: var(--gray-200);
}

/* Ensure chart wrapper stays dark for contrast */
.section-light .chart-wrapper {
    background: var(--navy-900);
    border-color: var(--navy-800);
}

.section-light .chart-wrapper p,
.section-light .chart-wrapper .model-detail-desc,
.section-light .chart-wrapper .stat-label {
    color: var(--gray-400) !important;
}

.section-light .chart-wrapper .stat-value,
.section-light .chart-wrapper .model-detail-title {
    color: var(--white) !important;
}

/* Ensure model selector sidebar stays dark */
.section-light .model-selector {
    background: var(--navy-800);
    border-color: var(--navy-600);
}

.section-light .model-btn .model-name {
    color: var(--white);
}

.section-light .model-btn .model-id {
    color: var(--gray-400);
}

.section-light .model-btn:hover {
    background: var(--navy-900);
}

.section-light .model-btn.active {
    background: var(--white);
}

.section-light .model-btn.active .model-name {
    color: var(--navy-900);
}

.section-light .model-btn.active .model-id {
    color: var(--navy-600);
}

/* ===== STRATEGIES PAGE STYLES ===== */

.strat-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--gold-300);
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.strat-btn-primary {
    background: var(--gold-300);
    color: #FFFFFF;
}

.strat-btn-primary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    color: #FFFFFF;
}

.strat-btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--navy-600);
}

.strat-btn-outline:hover {
    border-color: var(--gold-300);
    color: var(--gold-300);
}

/* Section Headers */
.strat-section {
    padding: 6rem 0;
    position: relative;
}

.strat-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.strat-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: var(--gold-400);
    opacity: 0.9;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.strat-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    color: var(--white);
    letter-spacing: -0.02em;
}

/* Portfolio Models */
.models-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .models-layout {
        flex-direction: row;
        align-items: flex-start;
    }
}

.models-sidebar {
    width: 100%;
}

@media (min-width: 1024px) {
    .models-sidebar {
        width: 45%;
    }
}

.models-main {
    width: 100%;
}

@media (min-width: 1024px) {
    .models-main {
        width: 55%;
    }
}

.model-selector {
    border: 1px solid var(--navy-600);
    background: var(--navy-800);
}

.model-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--navy-600);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.model-btn:last-child {
    border-bottom: none;
}

.model-btn:hover {
    background: var(--navy-900);
}

.model-btn.active {
    background: var(--white);
}

.model-btn.active .model-name {
    color: #FFFFFF;
}

.model-btn.active .model-id {
    color: var(--gold-300);
}

.model-btn.active .model-chevron {
    opacity: 1;
    color: var(--gold-300);
}

.model-id {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    display: block;
    margin-bottom: 0.25rem;
}

.model-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.model-chevron {
    opacity: 0;
    color: var(--gold-300);
    transition: opacity 0.2s ease;
    font-size: 1.2rem;
}

.chart-wrapper {
    background: var(--navy-800);
    border: 1px solid var(--navy-600);
    padding: 2.5rem;
    position: relative;
}

.chart-risk-label {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: var(--gold-400);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.chart-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pie-chart-container {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

.pie-chart-container svg {
    transform: rotate(-90deg);
}

.pie-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.legend-swatch {
    width: 12px;
    height: 12px;
    display: inline-block;
}

.model-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.model-detail-desc {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-box {
    border: 1px solid var(--navy-600);
    padding: 1rem;
    text-align: center;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

/* Approach Section */
.approach-section {
    background: var(--navy-800);
    border-top: 1px solid var(--navy-600);
    border-bottom: 1px solid var(--navy-600);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    border-left: 1px solid var(--navy-600);
    border-right: 1px solid var(--navy-600);
}

.approach-card {
    background: transparent;
    border-bottom: 1px solid var(--navy-600);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

@media (min-width: 1024px) {
    .approach-card {
        border-bottom: none;
        border-right: 1px solid var(--navy-600);
    }

    .approach-card:last-child {
        border-right: none;
    }
}

.approach-card:hover {
    background: var(--white);
}

.approach-card:hover .approach-card-title {
    color: #FFFFFF;
}

.approach-card:hover .approach-card-text {
    color: var(--navy-600);
}

.approach-card:hover .approach-icon {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.approach-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: transparent;
    margin-bottom: 1.5rem;
    color: var(--gold-300);
    border: 1px solid var(--gold-300);
    transition: all 0.2s ease;
    font-size: 1.8rem;
}

.approach-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    transition: color 0.2s ease;
}

.approach-card-text {
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

/* Risk Management Section */
.risk-section {
    background: var(--white);
    border-bottom: 1px solid var(--navy-600);
    color: var(--navy-900);
}

.risk-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .risk-layout {
        flex-direction: row;
        align-items: center;
    }
}

.risk-text {
    width: 100%;
}

@media (min-width: 1024px) {
    .risk-text {
        width: 50%;
    }
}

.risk-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.risk-text p {
    color: var(--navy-600);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
}

.risk-cards-wrapper {
    width: 100%;
}

@media (min-width: 1024px) {
    .risk-cards-wrapper {
        width: 50%;
    }
}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-card {
    background: var(--gold-300);
    border: 1px solid rgba(197, 160, 89, 0.3);
    margin: -1px 0 0 -1px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.risk-card:hover {
    background: var(--navy-900);
    border-color: var(--navy-900);
    z-index: 1;
}

.risk-card:hover .risk-number {
    color: rgba(255, 255, 255, 0.15);
}

.risk-card:hover .risk-card-title {
    color: #FFFFFF;
}

.risk-card:hover .risk-card-text {
    color: rgba(255, 255, 255, 0.85);
}

.risk-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.15);
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.risk-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
    transition: color 0.3s ease;
}

.risk-card-text {
    font-size: 1rem;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Factsheet CTA */
.factsheet-cta {
    padding: 4rem 0;
}

.factsheet-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.factsheet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}

.factsheet-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #F8FAFC;
    margin-bottom: 1rem;
}

.factsheet-card p {
    color: #94A3B8;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===== AI SUITE PAGE STYLES ===== */

.ai-header-bg {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('images/ai-bg.jpg');
    background-size: cover;
    background-position: center;
}

.ai-feature-card {
    background: #FFFFFF;
    border: 1px solid var(--accent);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(197, 160, 89, 0.2);
    transition: transform 0.3s ease;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
}

.ai-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    border: 1px solid var(--accent);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.ai-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-left: 3px solid var(--accent);
    color: var(--navy-600);
    font-size: 0.95rem;
    display: none;
    /* Hidden by default */
}

/* AI Suite Section Utilities */
.text-dark {
    color: var(--navy-900);
}

.bg-gray-50 {
    background-color: #f8fafc;
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #FFFFFF;
}

.border-dashed {
    border-style: dashed !important;
}

.max-w-900 {
    max-width: 900px;
}

.border-top-light {
    border-top: 1px solid #e2e8f0;
}

.hero-bg-ai .hero-bg-new {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95)), url('images/ai-bg.jpg') center/cover no-repeat;
}

.ai-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.ai-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    background-color: white;
}

.ai-grid-buttons-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.ai-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.ai-card-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}


.benefit-search-container {
    margin: 2rem auto 0;
    max-width: 600px;
}

/* ===== ABOUT PAGE STYLES ===== */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.content-body {
    padding: 1rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.value-card h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-600);
    /* Lighter gray for readability on dark */
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-light {
    color: var(--gray-600);
}

.text-white {
    color: var(--white);
}

.section-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}


/* ===== ABOUT PAGE STYLES ===== */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.content-body {
    padding: 1rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.value-card h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-600);
    /* Lighter gray for readability on dark */
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-light {
    color: #e2e8f0 !important;
}

.value-card p {
    color: #e2e8f0 !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-white {
    color: var(--white);
}

.section-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Fix for Logo Size - 2026 Rebrand */
.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ===== DEFINITIVE LAYOUT OVERRIDES ===== */
.fp-ai-section.section-light {
    background: var(--white) !important;
}

.strat-section.section-light {
    background: var(--white) !important;
}

.content-section.section-light {
    background: var(--white) !important;
}

.page-content.section-light {
    background: var(--white) !important;
}

/* Ensure chart wrapper stays dark for contrast on light background */
.section-light .chart-wrapper {
    background: var(--navy-900);
    border-color: var(--navy-800);
}

.section-dark {
    background: var(--navy-900);
    color: var(--white);
}

.section-alt {
    background: var(--navy-800);
    color: var(--white);
    position: relative;
}

/* Fix for AI Box in Light Sections */
.section-light .fp-ai-box {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-light .fp-ai-box h3 {
    color: var(--navy-900);
}

.section-light .fp-ai-box>p {
    color: var(--navy-700);
}

.section-light #ai-output {
    background: var(--gray-50);
    color: var(--navy-900);
    border-left-color: var(--gold-500);
}

/* Fix for Values Grid in Light Sections */
.section-light .value-card {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-light .value-card:hover {
    background: var(--gray-50);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.section-light .value-card h3 {
    color: var(--navy-900);
}

.section-light .value-card p {
    color: var(--navy-700) !important;
}

/* FIX: Ensure Newsletter Card text is visible when inside a .section-light container */
.section-light .newsletter-card .newsletter-title {
    color: var(--white) !important;
}

.section-light .newsletter-card .newsletter-excerpt {
    color: var(--gray-200) !important;
}

.section-light .newsletter-card .newsletter-highlights li {
    color: var(--gray-200) !important;
}

.section-light .newsletter-card .newsletter-highlights li::before {
    color: var(--gold-300) !important;
}

/* FIX: Cover cards inside section-light */
.section-light .what-we-cover-section {
    border-top-color: var(--navy-600);
}

.section-light .cover-card {
    background: var(--navy-800);
    border-color: var(--navy-600);
}

.section-light .cover-card:hover {
    border-color: var(--gold-300);
}

.section-light .cover-card-title {
    color: var(--white) !important;
}

.section-light .cover-card-text {
    color: var(--gray-200) !important;
}

/* ===== GLOBAL CTA SECTION ===== */
.global-cta-section {
    padding: 4rem 0;
    /* Uses inherited section-dark background mostly, or explicit */
    background: var(--navy-900);
    position: relative;
    z-index: 5;
}

.global-cta-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.global-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}

/* Bottom border glow */
.global-cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
    opacity: 0.5;
}

.global-cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #F8FAFC;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.global-cta-card p {
    color: #FFFFFF;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* ===== FAQ PAGE ===== */
.faq-section {
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: var(--bg-light);
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold-300);
}

.faq-category-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--gold-300);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-category-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--navy-900);
    font-weight: 700;
}

.faq-item {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold-400);
    box-shadow: 0 4px 16px rgba(197, 160, 89, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--gold-500);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--gold-300);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-400);
    line-height: 1.75;
    font-size: 0.98rem;
}

.faq-answer-inner p {
    margin-bottom: 1rem;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-answer-inner ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.faq-answer-inner ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.65;
}

.faq-answer-inner ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-300);
}

.faq-answer-inner ul li:last-child {
    margin-bottom: 0;
}

.faq-answer-inner strong {
    color: var(--navy-900);
}

@media (max-width: 768px) {
    .faq-category-header {
        gap: 0.75rem;
    }

    .faq-category-title {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer-inner {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.92rem;
    }
}

/* ===== BITCOIN NEWS TICKER ===== */
.news-ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(90deg, #0A0F1C 0%, #111827 50%, #0A0F1C 100%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding: 0;
    height: 38px;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.news-ticker.ticker-hidden {
    display: none;
}

/* Push all page content down when ticker is visible */
body.has-ticker {
    padding-top: 38px;
}

body.has-ticker .navbar {
    top: 38px;
}

body.has-ticker .mobile-nav {
    top: calc(70px + 38px);
}

.ticker-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    height: 100%;
    background: rgba(197, 160, 89, 0.1);
    border-right: 1px solid rgba(197, 160, 89, 0.2);
    flex-shrink: 0;
    white-space: nowrap;
}

.ticker-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #EF4444;
    animation: tickerPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes tickerPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0);
    }
}

.ticker-live-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-300, #C5A059);
}

.ticker-scroll-container {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ticker-scroll-content {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    padding-left: 20px;
}

.ticker-scroll-content:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-headline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #E2E8F0;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
}



.ticker-date {
    color: var(--gold-300, #C5A059);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.ticker-separator {
    color: rgba(197, 160, 89, 0.4);
    font-size: 0.6rem;
}

.ticker-updated {
    font-size: 0.65rem;
    color: #64748B;
    white-space: nowrap;
    padding: 0 0.5rem;
    flex-shrink: 0;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

.ticker-dismiss {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    border-left: 1px solid rgba(197, 160, 89, 0.2);
    color: #64748B;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.2s, background 0.2s;
}

.ticker-dismiss:hover {
    color: #E2E8F0;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .news-ticker {
        height: 34px;
    }

    body.has-ticker {
        padding-top: 34px;
    }

    body.has-ticker .navbar {
        top: 34px;
    }

    body.has-ticker .mobile-nav {
        top: calc(70px + 34px);
    }

    .ticker-live-badge {
        padding: 0 10px;
    }

    .ticker-live-text {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .ticker-headline {
        font-size: 0.72rem;
    }

    .ticker-date {
        font-size: 0.65rem;
    }

    .ticker-dismiss {
        width: 34px;
        height: 34px;
    }

    .ticker-updated {
        display: none;
    }
}

/* ===== QUICK ANSWER BOX (TL;DR for AI Citation) ===== */
.quick-answer-box {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-left: 4px solid var(--gold-300);
    border-radius: 8px;
    padding: 1.75rem 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.quick-answer-box::before {
    content: 'QUICK ANSWER';
    display: block;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-300);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.quick-answer-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-200);
    margin: 0;
}

.quick-answer-box strong {
    color: var(--white);
}

/* ===== BITCOIN RECOVERY PAGE ===== */
.btc-recovery-section {
    padding: var(--space-xl) 0;
}

.btc-recovery-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 0.75rem;
}

.btc-recovery-section h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-300);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.btc-recovery-section p,
.btc-recovery-section li {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-200);
}

.btc-recovery-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.btc-recovery-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.btc-recovery-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-300);
    font-weight: 600;
}

/* Data Tables for Settlement Matrix & Vector Table */
.data-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

.data-table thead {
    background: rgba(197, 160, 89, 0.12);
}

.data-table th {
    padding: 0.85rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-300);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    white-space: nowrap;
}

.data-table td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-200);
    vertical-align: top;
}

.data-table tbody tr:hover {
    background: rgba(197, 160, 89, 0.05);
}

.data-table .highlight-cell {
    color: var(--gold-300);
    font-weight: 600;
}

.data-table .negative-cell {
    color: #F87171;
    font-weight: 600;
}

.data-table .positive-cell {
    color: #34D399;
    font-weight: 600;
}

/* Key Firms Cards */
.firm-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.firm-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color var(--transition-base);
}

.firm-card:hover {
    border-color: var(--gold-300);
}

.firm-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.firm-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.firm-card .firm-role {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-300);
    background: rgba(197, 160, 89, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-top: 0.75rem;
}

/* Compliance Disclaimer */
.compliance-disclaimer {
    background: rgba(248, 113, 113, 0.05);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.compliance-disclaimer strong {
    color: #F87171;
}

@media (max-width: 768px) {
    .quick-answer-box {
        padding: 1.25rem 1.25rem;
    }

    .data-table th,
    .data-table td {
        padding: 0.65rem 0.85rem;
        font-size: 0.8rem;
    }

    .firm-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== BITCOIN RECOVERY PAGE ===== */

/* Bitcoin Hero Background */
.hero-bg-bitcoin .hero-bg-new {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.92)),
        url('https://images.unsplash.com/photo-1518546305927-5a555bb7020d?auto=format&fit=crop&q=80') center/cover no-repeat;
}

/* Smaller sub-section title variant */
.section-title-sm {
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
}

/* Content Block Typography */
.btc-content-block {
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.btc-content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 1.25rem;
}

.btc-content-block ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.btc-content-block ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-400);
}

.btc-content-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-300);
}

.btc-content-block strong {
    color: var(--white);
    font-weight: 600;
}

/* Bitcoin Recovery Sections — Alternating Backgrounds */
.btc-recovery-section {
    padding: 5rem 0;
}

.btc-recovery-section:nth-child(odd) {
    background: var(--navy-800);
}

.btc-recovery-section:nth-child(even) {
    background: var(--navy-900);
}

/* Hero outline button style */
.hero-bg-bitcoin .btn-outline {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-bg-bitcoin .btn-outline:hover {
    background: var(--accent);
    color: var(--navy-900);
}

/* Compliance link color */
.compliance-disclaimer a {
    color: var(--gold-300);
    text-decoration: underline;
}

.compliance-disclaimer a:hover {
    color: var(--gold-400);
}

/* ===== AUTHORITY BLOCK — Reusable Professional Content Component ===== */

.authority-block {
    background: linear-gradient(135deg, var(--navy-900) 0%, #0d1425 50%, var(--navy-900) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.authority-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(197, 160, 89, 0.2) 50%, transparent 90%);
}

.authority-block .authority-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.authority-block .authority-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 1rem;
}

.authority-block .authority-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.authority-block .authority-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Authority block lead paragraph */
.authority-block .authority-lead {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem 2.5rem;
    border-left: 3px solid var(--gold-300);
    background: rgba(30, 41, 59, 0.5);
    border-radius: 0 8px 8px 0;
}

.authority-block .authority-lead p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.authority-block .authority-lead p:last-child {
    margin-bottom: 0;
}

.authority-block .authority-lead strong {
    color: var(--white);
    font-weight: 600;
}

/* Authority topics grid */
.authority-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.authority-topic-card {
    padding: 2rem;
    border: 1px solid var(--navy-600);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.6);
    transition: all 0.3s ease;
    position: relative;
}

.authority-topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-300), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.authority-topic-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.authority-topic-card:hover::before {
    opacity: 1;
}

.authority-topic-card .topic-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-300);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.authority-topic-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.authority-topic-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--gray-400);
}

/* Closing prose block — single column below cards */
.authority-block .authority-closing {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem 2.5rem;
    border-left: 3px solid rgba(197, 160, 89, 0.3);
    border-radius: 0 8px 8px 0;
}

.authority-block .authority-closing p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.authority-block .authority-closing p:last-child {
    margin-bottom: 0;
}

.authority-block .authority-closing strong {
    color: var(--white);
    font-weight: 600;
}

/* "Who We Serve" community cards variant */
.authority-community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.authority-community-card {
    padding: 2rem;
    border: 1px solid var(--navy-600);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.6);
    transition: all 0.3s ease;
    position: relative;
}

.authority-community-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-300), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.authority-community-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
}

.authority-community-card:hover::after {
    opacity: 1;
}

.authority-community-card .community-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-300);
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.authority-community-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.authority-community-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--gray-400);
}

/* Fix: First Responders download buttons invisible in light section */
.fp-section-light .fp-card-download {
    color: var(--gold-300);
    border-color: var(--gold-300);
}

.fp-section-light .fp-card-download:hover {
    background: var(--gold-300);
    color: var(--navy-900, #0f172a);
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVENESS ===== */

/* --- Tablet (max 900px) --- */
@media (max-width: 900px) {

    /* Hero buttons: stack vertically */
    .hero-actions-new {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-actions-new .btn {
        width: 100%;
        max-width: 320px;
        margin-left: 0 !important;
        text-align: center;
        justify-content: center;
    }

    /* Why grid: reduce min-width so cards don't overflow */
    .why-grid {
        grid-template-columns: 1fr;
        border-left: none;
    }

    .why-card {
        border-left: 1px solid var(--navy-600);
    }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {

    /* Financial Planning cards: single column */
    .fp-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .fp-card {
        padding: 1.75rem;
    }

    /* FP section header */
    .fp-section {
        padding: 3.5rem 0;
    }

    .fp-section-title {
        font-size: 1.8rem;
    }

    /* VCF Table enhancements */
    .fp-table th {
        font-size: 0.7rem;
        padding: 0.75rem 0.8rem;
    }

    .fp-table td {
        font-size: 0.85rem;
        padding: 0.75rem 0.8rem;
    }

    /* Buttons: prevent overflow on narrow screens */
    .btn {
        font-size: 0.85rem;
        padding: 0.9rem 1.5rem;
        letter-spacing: 0.03em;
    }

    /* Global CTA: tighter on mobile */
    .global-cta-card {
        padding: 2.5rem 1.5rem;
    }

    .global-cta-card h2 {
        font-size: 1.6rem;
    }

    .global-cta-card p {
        font-size: 0.95rem;
    }

    /* Ticker: larger dismiss button for touch */
    .ticker-dismiss {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.2rem;
    }

    /* Values grid */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Content intro */
    .content-intro {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    /* Authority block mobile */
    .authority-block {
        padding: 3rem 0;
    }

    .authority-block .authority-title {
        font-size: 1.6rem;
    }

    .authority-block .authority-lead {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .authority-block .authority-lead p {
        font-size: 0.95rem;
    }

    .authority-topics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .authority-topic-card {
        padding: 1.5rem;
    }

    .authority-community-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .authority-community-card {
        padding: 1.5rem;
    }

    .authority-block .authority-closing {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    /* About page grids */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Chat fab: smaller/repositioned on mobile */
    .chat-fab {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    /* btc recovery sections */
    .btc-recovery-section {
        padding: 3rem 0;
    }

    /* Newsletter cards */
    .newsletter-card {
        padding: 1.5rem;
    }

    /* Strategy cards */
    .strategy-card {
        padding: 1.5rem;
    }

    /* Firm cards already handled */
}

/* --- Small phone (max 480px) --- */
@media (max-width: 480px) {

    /* Container tighter padding */
    .container {
        padding: 0 1rem;
    }

    /* Hero: reduce whitespace */
    .hero {
        padding-top: calc(var(--space-xl) + 50px);
        padding-bottom: var(--space-lg);
    }

    .title-line {
        font-size: 1.8rem;
    }

    .title-accent {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    /* Hero actions on very small screens */
    .hero-actions-new .btn {
        max-width: 100%;
        font-size: 0.8rem;
        padding: 0.85rem 1.2rem;
    }

    /* Subpage hero: tighter */
    .hero-new.subpage-hero {
        min-height: 45vh;
        padding-top: 80px;
    }

    /* Section spacing */
    .section {
        padding: 3rem 0;
    }

    /* Section headers */
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* FP cards tighter */
    .fp-card {
        padding: 1.25rem;
    }

    .fp-card h3 {
        font-size: 1.25rem;
    }

    .fp-card p {
        font-size: 0.95rem;
    }

    /* Download button: full-width for easy tapping */
    .fp-card-download {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1rem;
    }

    /* VCF table: even smaller text */
    .fp-table th {
        font-size: 0.6rem;
        padding: 0.6rem;
        letter-spacing: 0.02em;
    }

    .fp-table td {
        font-size: 0.75rem;
        padding: 0.6rem;
    }

    /* Footer */
    .footer-grid {
        gap: 1.5rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    /* Ticker text */
    .ticker-headline {
        font-size: 0.65rem;
    }

    .ticker-live-text {
        font-size: 0.55rem;
    }

    /* Briefing form */
    .briefing-form-card {
        padding: 1rem;
    }

    /* FAQ */
    .faq-question {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .faq-answer-inner {
        padding: 0 1rem 1rem;
        font-size: 0.88rem;
    }

    /* Global CTA */
    .global-cta-card {
        padding: 2rem 1rem;
    }

    .global-cta-card h2 {
        font-size: 1.4rem;
    }

    .global-cta-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Leadership cards */
    .leadership-card {
        padding: 1.5rem;
    }
}

/* ===== AI TRIUMVIRATE SECTION ===== */
.ai-triumvirate {
    background: var(--navy-800);
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--navy-600);
    border-bottom: 1px solid var(--navy-600);
}

.triumvirate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (max-width: 900px) {
    .triumvirate-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.triumvirate-img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--navy-600);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-slow);
}

.triumvirate-img:hover {
    transform: translateY(-10px);
}

.agent-tier {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-md);
    border-left: 2px solid var(--navy-600);
    transition: border-color var(--transition-base);
}

.agent-tier:hover {
    border-color: var(--gold-300);
}

.agent-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.agent-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.agent-badge.amplify {
    background: #E0F2FE;
    color: #0369A1;
}

.agent-badge.seneca {
    background: #FEF3C7;
    color: #92400E;
}

.agent-badge.watchdog {
    background: #DCFCE7;
    color: #166534;
}

.agent-tier h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--white);
}

.agent-tier p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}