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

:root {
    --color-deep-navy: #000000;
    --color-steel-blue: #0F111A;
    --color-accent-blue: #2D7FF9;
    --color-silver: #C7CCD1;
    --color-soft-white: #e9ecef;
    --color-pure-white: #FFFFFF;
    --color-muted-text: rgba(255,255,255,0.64);
    --color-gold: #D4AF37;

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --section-padding: 160px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: #000000;
    color: var(--color-pure-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* UI Controller States */
.nav-menu.open {
    display: block !important;
}

#nav-menu.open {
    display: block !important;
}

.modal {
    display: none;
}

.modal.show {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.hidden {
    display: none !important;
}

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

/* Utilities */
.text-center {
    text-align: center;
}

.section-header {
    margin: 0 auto 60px auto;
    max-width: 800px;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    color: #FFFFFF;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-muted-text);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Header & Logo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-pure-white);
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-cost {
    font-weight: 800;
    letter-spacing: -1.5px;
}

.logo-nexa {
    font-weight: 400;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 6.8px;
    font-weight: 600;
    margin-top: 4px;
    color: rgba(255,255,255, 0.6);
    margin-left: 2px;
    /* Optical optical alignment */
    width: 100%;
    text-align: justify;
    text-align-last: justify;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Desktop Navigation */
.desktop-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.desktop-links a {
    text-decoration: none;
    color: var(--color-pure-white);
    font-family: var(--font-heading);
    /* Use Inter */
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    transition: all 0.2s ease;
    padding: 8px 0;
    position: relative;
}

.desktop-links a:hover {
    opacity: 1;
    color: var(--color-accent-blue);
}

.desktop-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-deep-navy);
    transition: width 0.3s ease;
}

.desktop-links a:hover::after {
    width: 100%;
}

/* Hamburger & Mobile Menu Controls */
.hamburger {
    display: none;
    /* Hidden on desktop */
    font-size: 24px;
    cursor: pointer;
    color: var(--color-pure-white);
    z-index: 1001;
    padding: 5px;
}

.mobile-nav {
    display: none;
    /* Explicitly hidden by default */
}

/* Mobile Media Query */
@media (max-width: 900px) {
    .desktop-links {
        display: none !important;
        /* Hide desktop links */
    }

    .hamburger {
        display: block !important;
        /* Show hamburger */
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Mobile Menu Container */
    .mobile-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        /* Slide out */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #000;
        padding-top: 80px;
        padding-left: 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .mobile-nav.open {
        right: 0;
        /* Slide in */
    }

    /* Overlay effect */
    .mobile-nav.open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .mobile-nav a {
        font-family: var(--font-heading);
        font-size: 18px;
        font-weight: 700;
        color: var(--color-pure-white);
        text-decoration: none;
        margin-bottom: 24px;
        display: block;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--color-deep-navy);
    color: white;
}

.btn-primary:hover {
    background: var(--color-steel-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-pure-white);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255,255,255,0.4);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 11px;
}

.btn-block {
    width: 100%;
    display: block;
}

.lang-btn {
    background: transparent;
    border: 1px solid #ddd;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
    cursor: pointer;
}

/* Hero Premium */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

/* Grainy Overlay like eco.com */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 40px;
}

.hero-text-center {
    max-width: 900px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(11, 31, 51, 0.03) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--color-pure-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
    opacity: 0.8;
    background: rgba(11, 31, 51, 0.05);
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -3.84px;
    margin-bottom: 32px;
    /* Increased margin */
    color: #FFFFFF;
    padding-bottom: 5px;
    /* Prevent clipping */
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 40px;
}

/* Updated Button Styles for Premium Feel */
.btn-primary {
    background: #FFFFFF;
    color: #000000;
    border-radius: 100px;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Added to center text when button is width: 100% */
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(255,255,255,0.1);
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--color-accent-blue);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    transition: transform 0.3s ease;
}

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

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.hero-img-main {
    width: 100%;
    border-radius: 20px;
    /* softer reuse */
    box-shadow: 0 30px 80px rgba(11, 31, 51, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: transform 0.5s ease;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px) rotateX(2deg) rotateY(-2deg);
    }

    50% {
        transform: translateY(-15px) rotateX(4deg) rotateY(-4deg);
    }

    100% {
        transform: translateY(0px) rotateX(2deg) rotateY(-2deg);
    }
}

.floating-visual {
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 10%;
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(11, 31, 51, 0.2) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
    animation: shadowScale 6s ease-in-out infinite;
}

@keyframes shadowScale {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(0.9);
        opacity: 0.2;
    }

    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

/* Value Strip */
.value-strip {
    background: var(--color-deep-navy);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.strip-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.strip-subtitle {
    font-size: 14px;
    opacity: 0.6;
    font-style: italic;
}

/* Sections */
.section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

/* Pain Grid */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pain-item {
    background: var(--color-soft-white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pain-bullet {
    display: block;
    font-size: 24px;
    color: #8899a6;
    -webkit-text-stroke: 1px #8899a6;
    margin-bottom: 15px;
}

.pain-item p {
    font-weight: 700;
    font-size: 16px;
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
    z-index: 1;
}

.time-step {
    position: relative;
    z-index: 2;
    background: #000000;
    padding: 0 20px;
    text-align: center;
}

.time-dot {
    width: 36px;
    height: 36px;
    background: var(--color-deep-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
    border: 4px solid white;
}

.time-step p {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-pure-white);
}

/* --- DATA ECOSYSTEM --- */
.ecosystem-section {
    background: #0b1f33;
    /* Dark Navy */
    padding: 60px 0;
    color: white;
    text-align: center;
}

.ecosystem-section .section-title {
    color: white;
}

.ecosystem-section .section-subtitle {
    color: var(--color-muted-text);
}

.eco-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.eco-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    background: #1A1B23;
}

/* --- SOFT MAGNET --- */
.soft-magnet {
    background: #000;
    animation: fadeIn 1s ease-out;
}

/* --- DYNAMIC ARTICLE VIEW --- */
.article-view {
    padding: 120px 0 80px 0;
    /* Space for fixed header */
    background: #000;
    min-height: 80vh;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--color-muted-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--color-pure-white);
}

.article-category {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.article-title {
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--color-pure-white);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.article-meta {
    font-size: 0.9rem;
    color: var(--color-muted-text);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.article-body {
    font-family: var(--font-body);
    /* Readable serif-like feel */
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-pure-white);
}

.article-body h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--color-pure-white);
    margin: 40px 0 20px 0;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 10px;
}

/* --- FEATURED INSIGHTS --- */
.insights-section {
    padding: 80px 0;
    background: #000;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-card {
    background: #1A1D26;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.trust-card h3 {
    color: #FFFFFF;
    font-weight: 800;
    margin-bottom: 20px;
}

.trust-desc {
    color: var(--color-muted-text);
    margin-bottom: 24px;
}

.trust-list li {
    color: var(--color-pure-white);
    margin-bottom: 12px;
    font-weight: 500;
}
.insight-card {
    background: var(--color-soft-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--color-accent-blue);
    display: flex;
    flex-direction: column;
}

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

.insight-title {
    font-size: 1.2rem;
    color: var(--color-pure-white);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.insight-summary {
    font-size: 0.95rem;
    color: var(--color-muted-text);
    margin-bottom: 20px;
    flex-grow: 1;
    /* Pushes footer down */
    line-height: 1.6;
}

.insight-link {
    display: inline-block;
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 15px;
}

/* --- SMART MULTIPLE CHOICE (v2) --- */
.mc-question {
    margin-bottom: 30px;
}

.mc-text {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-pure-white);
}

.mc-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mc-opt {
    display: flex;
    align-items: center;
    background: #1A1D26;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px 15px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.mc-opt:hover {
    background: #2D313E;
    border-color: var(--color-accent-blue);
}

.mc-opt.selected {
    background: rgba(45, 127, 249, 0.1);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 1px var(--color-gold);
}

.mc-label {
    font-weight: bold;
    color: var(--color-pure-white);
    background: #000000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.8rem;
    border: 1px solid var(--color-gold);
}

.mc-opt.selected .mc-label {
    background: var(--color-gold);
    color: white;
    border-color: var(--color-gold);
}

.mc-val {
    font-size: 0.95rem;
    color: var(--color-muted-text);
}

/* WIZARD NAV */
.step-nav {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.step-nav button {
    flex: 0 0 48%;
    /* Split buttons */
}

@media (max-width: 768px) {
    .methodology-timeline {
        flex-direction: column;
        border-top: none;
        padding-top: 0;
    }

    .method-step {
        margin-bottom: 30px;
        border-left: 2px solid rgba(255, 255, 255, 0.1);
        padding-left: 20px;
    }

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

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

/* KPI Wall */
.kpi-wall {
    background: #0A0C10;
    padding: 80px 0;
}

.kpi-wall-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.kpi-wall-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--color-pure-white);
}

/* Services 2x2 */
.services-2x2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Trust & Verification Section (New) */
/* Trust & Verification Section (Corporate Refinement) */
.verification-section {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge {
    display: inline-block;
    background: rgba(11, 31, 51, 0.04);
    color: var(--color-pure-white);
    padding: 6px 14px;
    border-radius: 4px;
    /* Sharper corners for corporate look */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(11, 31, 51, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.trust-card {
    background: #1A1D26;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    /* Reduced radius */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-pure-white);
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.trust-desc {
    font-size: 15px;
    color: var(--color-muted-text);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Corporate List Styling */
.trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.trust-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--color-muted-text);
    line-height: 1.5;
}

.trust-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 1px;
}

/* SEO Critical Question Box */
.trust-seo-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--color-accent-blue);
    padding: 16px;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: auto;
}

.trust-seo-box .seo-icon {
    font-size: 16px;
    opacity: 0.8;
}

.trust-seo-box span:not(.seo-icon) {
    font-size: 13px;
    color: var(--color-pure-white);
    font-weight: 600;
    font-style: italic;
    line-height: 1.5;
}

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

    .trust-card {
        padding: 30px;
    }
}

.service-card {
    background: var(--color-soft-white);
    padding: 60px;
    border-radius: 4px;
    transition: 0.4s;
    border: 1px solid transparent;
}

.service-card:hover {
    background: #000000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    transform: scale(1.02);
    border-color: #e2e8f0;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 15px;
    color: var(--color-muted-text);
}

/* Transformation Table */
.transformation-table {
    max-width: 800px;
    margin: 0 auto;
    background: #000000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-deep-navy);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 800;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.t-cell {
    padding: 25px;
    text-align: center;
    font-size: 15px;
}

.t-before {
    background: #111;
    color: var(--color-muted-text);
}

.t-after {
    background: #1A1D26;
    font-weight: 700;
    color: var(--color-pure-white);
}

/* Industries */
.industries-section {
    background: #000;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.industry-card {
    background: #1A1D26;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-deep-navy);
    opacity: 0;
    transition: 0.3s;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.industry-card:hover::before {
    opacity: 1;
}

.ind-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-blue);
    margin-bottom: 24px;
    transition: 0.3s;
}

.industry-card:hover .ind-icon {
    background: var(--color-deep-navy);
    color: white;
}

.industry-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-pure-white);
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 15px;
    color: var(--color-muted-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ind-list {
    list-style: none;
    padding: 0;
}

.ind-list li {
    font-size: 13px;
    color: var(--color-muted-text);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.ind-list li::before {
    content: '•';
    color: var(--color-gold);
    position: absolute;
    left: 0;
    top: 0px;
    font-weight: bold;
    font-size: 16px;
}

/* Founder Insight */
.insight-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.insight-quote {
    font-family: var(--font-heading);
    font-size: 28px;
    font-style: italic;
    color: var(--color-pure-white);
    line-height: 1.5;
    margin-bottom: 40px;
}

.insight-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.confidential-badge {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--color-silver);
    border-radius: 100px;
    color: var(--color-silver);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
/* Contact Section Spacing */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-top: 40px;
}

.contact-text p {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.4;
    color: var(--color-pure-white);
}

.contact-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Scarcity Badge Refined */
.scarcity-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: #1A1D26;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-pure-white);
}

.form-micro {
    font-size: 11px;
    text-align: center;
    margin-top: 15px;
    opacity: 0.6;
}

/* Footer */
.footer {
    background: var(--color-deep-navy);
    color: white;
    padding: 100px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.logo-wrapper.white {
    color: white;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: var(--color-deep-navy);
    color: white;
    padding: 20px 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: 0.6s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.sticky-cta.active {
    bottom: 0;
}

.sticky-cta span {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 15px;
}

/* Exit Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(11, 31, 51, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: #000000;
    padding: 60px;
    border-radius: 4px;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideUp 0.4s;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 32px;
    color: var(--color-muted-text);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1.2s cubic-bezier(0.2, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .nav-links,
    .nav-actions .btn {
        display: none;
    }

    .pain-grid,
    .timeline,
    .kpi-wall-grid,
    .services-2x2-grid,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        margin: 0;
    }

    .timeline::before {
        display: none;
    }
}

.insight-quote {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* --- WIZARD MODAL (PREMIUM & STRATEGIC) --- */
.wizard-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 51, 0.4);
    /* Darker, sophisticated overlay */
    backdrop-filter: blur(8px);
    /* Modern frosted glass effect */
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.4s ease-out;
}

.wizard-content {
    background: #000000;
    padding: 40px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    text-align: center;
    animation: slideUp 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Close Icon (Subtle) */
.close-wizard {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    display: none; /* Hide close buttons to match inline section request */
}

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

/* Typography overrides for Modal */
.wizard-content h3 {
    font-family: 'Inter', sans-serif;
    color: var(--color-pure-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.wizard-content p.subtext {
    font-family: 'Roboto', sans-serif;
    color: var(--color-muted-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Premium Form Fields */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    /* Underline style */
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--color-pure-white);
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    background: transparent;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--color-pure-white);
    background: rgba(11, 31, 51, 0.02);
}

/* Premium CTA */
.wizard-content .btn-primary {
    width: 100%;
    background: var(--color-deep-navy);
    color: white;
    padding: 16px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-top: 20px;
    border: none;
    border-radius: 0;
    /* Sharp corners */
    text-transform: none;
    /* Keep natural case */
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(11, 31, 51, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.wizard-content .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(11, 31, 51, 0.3);
}

/* Micro & Trust Logic */
.form-micro {
    font-size: 0.75rem;
    color: var(--color-muted-text);
    margin-top: 15px;
    letter-spacing: 0.02em;
}

.trust-badge-modal {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: var(--color-muted-text);
    font-style: italic;
}

/* Hide ROI Amount globally in modal (unless specific step) */
.roi-amount,
.roi-note {
    display: none !important;
}

/* Progress Bar - Minimal */
.wizard-progress {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

/* --- EXECUTIVE DASHBOARD (McKinsey Style) --- */
.exec-dashboard-container {
    text-align: left;
    padding: 10px;
    font-family: 'Inter', sans-serif;
    color: var(--color-pure-white);
}

.exec-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.exec-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.confidential-tag {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    color: var(--color-muted-text);
    font-weight: 500;
}

/* Grid Layout */
.exec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

/* Left Panel */
.left-panel .big-score {
    font-size: 3.5rem;
    font-weight: 300;
    /* Thin font like bespoke reports */
    color: var(--color-pure-white);
    line-height: 1;
    margin: 20px 0 10px 0;
}

.left-panel .big-score span {
    font-weight: 700;
}

.score-subline {
    font-size: 0.9rem;
    color: var(--color-muted-text);
    font-style: italic;
    border-left: 2px solid var(--color-gold);
    padding-left: 10px;
}

/* Right Panel (Risk Map) */
.risk-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.risk-bar-container {
    width: 60%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.risk-fill {
    height: 100%;
    background: #d32f2f;
    /* Dynamic color via JS */
    transition: width 1s ease-out;
}

.risk-legend {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--color-muted-text);
    width: 60%;
    margin-left: auto;
    text-transform: uppercase;
    margin-top: 5px;
}

.exec-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

/* Mid Section */
.exec-insight-section h4,
.exec-opp-block h4,
.exec-panel h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted-text);
    margin-bottom: 10px;
}

.exec-insight-section p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-pure-white);
    font-family: 'Roboto', sans-serif;
    /* Serif-like readability for insights */
}

/* Opportunity Block */
.exec-opp-block {
    background: #1A1D26;
    padding: 20px;
    margin-top: 25px;
    border-left: 4px solid var(--color-gold);
}

.exec-opp-block p {
    font-size: 1rem;
    color: var(--color-pure-white);
}

/* Actions */
.exec-actions {
    margin-top: 30px;
    text-align: center;
}

.exec-actions .btn-primary {
    width: auto;
    padding: 14px 40px;
    font-size: 0.95rem;
}

.action-sub {
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--color-muted-text);
}

/* Animations */
.exec-header {
    animation: fadeIn 0.6s ease-out;
}

.left-panel {
    animation: slideInLeft 0.7s ease-out;
}

.right-panel {
    animation: slideInRight 0.7s ease-out;
}

.exec-insight-section {
    animation: fadeInUp 0.8s ease-out;
}

.exec-opp-block {
    animation: fadeInUp 1.0s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

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

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

@media (max-width: 600px) {
    .exec-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Steps */
.wizard-step {
    display: none;
    text-align: center;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

.wizard-step h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-pure-white);
}

.wizard-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wizard-opt {
    background: #000000;
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-pure-white);
    cursor: pointer;
    transition: 0.2s;
    border-radius: 2px;
    font-family: var(--font-heading);
}

.wizard-opt:hover {
    background: #1A1D26;
    border-color: var(--color-gold);
    transform: translateX(5px);
}

.btn-text {
    background: none;
    border: none;
    color: var(--color-muted-text);
    font-size: 13px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    text-decoration: underline;
}

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

/* Success State */
.success-icon {
    width: 60px;
    height: 60px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* --- Executive Scorecard UI --- */
.exec-dashboard {
    padding: 5px;
    color: var(--color-pure-white);
}

.exec-header {
    text-align: center;
    margin-bottom: 25px;
}

.exec-subtitle {
    font-size: 14px;
    color: var(--color-muted-text);
    margin-top: 5px;
}

.exec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

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

@media(max-width: 600px) {
    .exec-grid {
        grid-template-columns: 1fr !important;
    }
}

.exec-card {
    background: #1A1D26;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exec-card h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-pure-white);
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

/* Score Gauge */
.score-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gauge-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2.5;
}

.circle {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke: var(--color-primary);
    transition: stroke-dasharray 1s ease-out;
}

.gauge-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.score-val {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-pure-white);
    line-height: 1;
}

/* Executive Insights Section - Strategic Report Style */
.insights-section {
    padding: 100px 0;
    background: #000000;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    background: #1A1D26;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    /* Corporate square corners */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    position: relative;
    top: 0;
}

.click-card {
    cursor: pointer;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-pure-white);
}

.insight-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 20px;
    background: rgba(255, 69, 0, 0.08);
    /* Light orange tint */
    padding: 6px 10px;
}

.insight-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-pure-white);
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 700;
}

.insight-card p {
    font-size: 14px;
    color: var(--color-muted-text);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    /* Pushes footer down */
}

.insight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.read-time {
    font-size: 12px;
    color: var(--color-muted-text);
    font-style: italic;
}

.card-arrow {
    font-size: 18px;
    color: var(--color-pure-white);
    transition: transform 0.2s ease;
}

.insight-card:hover .card-arrow {
    transform: translateX(5px);
    color: var(--color-primary);
}

.l-metric {
    margin-bottom: 12px;
}

.l-metric span {
    font-size: 12px;
    display: block;
    margin-bottom: 4px;
    color: var(--color-muted-text);
}

.l-bar-bg {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px;
    border-radius: 4px;
    overflow: hidden;
    height: 10px;
}

.l-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff9800, #f44336);
    width: 0%;
    transition: width 1.5s ease-out;
    border-radius: 2px;
}

/* CTA Area */
.exec-actions {
    text-align: center;
    margin-top: 25px;
}

.exec-trust {
    font-size: 11px;
    color: var(--color-muted-text);
    margin-top: 10px;
    display: block;
}

.btn-outline {
    background: transparent;
    border: 1px solid #ccc;
    color: var(--color-muted-text);
    width: 100%;
    padding: 10px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--color-pure-white);
    color: var(--color-pure-white);
}

/* Wizard Grid Options (Sector Step) */
.grid-options {
    display: grid;

    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Dashboard UI */
.dash-filters {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.filter-btn {
    padding: 6px 14px;
    border: 1px solid #ddd;
    background: #000000;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    color: var(--color-muted-text);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
    background: var(--color-deep-navy);
    color: white;
    border-color: var(--color-pure-white);
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 13px;
    min-width: 800px;
}

.dashboard-table th {
    text-align: left;
    background: #111;
    padding: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--color-pure-white);
}

.dashboard-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-muted-text);
}

.badge {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge.hot {
    background: rgba(211, 47, 47, 0.2);
    color: #ff5252;
}

.badge.warm {
    background: rgba(245, 124, 0, 0.2);
    color: #ffb74d;
}

.badge.cold {
    background: rgba(25, 118, 210, 0.2);
    color: #64b5f6;
}

.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 4px;
}

.status-dot.new {
    background: #2196f3;
}

.calendar-header {
    text-align: center;
    margin-bottom: 25px;
}

.calendar-header h3 {
    font-size: 20px;
    color: var(--color-pure-white);
    margin-bottom: 8px;
}

.calendar-header p {
    font-size: 14px;
    color: var(--color-muted-text);
}

.calendar-embed {
    background: #000000;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
}

.cal-days {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.cal-day {
    text-align: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    flex: 1;
    margin: 0 5px;
    transition: all 0.2s;
}

.cal-day:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cal-day.active {
    background: var(--color-deep-navy);
    color: white;
}

.d-name {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.d-num {
    font-size: 20px;
    font-weight: 700;
}

.cal-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.slot-btn {
    padding: 12px;
    border: 1px solid var(--color-soft-blue);
    background: #000000;
    color: var(--color-pure-white);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.slot-btn:hover,
.slot-btn.selected {
    background: var(--color-soft-blue);
    color: white;
    border-color: var(--color-soft-blue);
}

.success-message {
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    width: 50px;
    height: 50px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Scorecard UI */
.scorecard-header {
    text-align: center;
    margin-bottom: 30px;
}

.score-circle {
    width: 100px;
    height: 100px;
    background: var(--color-deep-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    box-shadow: 0 10px 20px rgba(11, 31, 51, 0.2);
}

.score-circle span {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.score-circle small {
    font-size: 11px;
    opacity: 0.7;
}

.score-metrics {
    margin-bottom: 30px;
    text-align: left;
}

.metric {
    margin-bottom: 12px;
}

.metric span {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-muted-text);
    display: block;
    margin-bottom: 4px;
}

.bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #10B981;
    border-radius: 3px;
    width: 0;
    transition: width 1s ease-out;
}

/* ROI Box */
.roi-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.roi-box h4 {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--color-muted-text);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.roi-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-pure-white);
    margin-bottom: 5px;
}

.roi-note {
    font-size: 12px;
    color: var(--color-muted-text);
    font-style: italic;
    line-height: 1.4;
}

/* Scorecard Actions */
.scorecard-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.read-insight {
    cursor: pointer;
    color: #6c2bd9;
    font-weight: 600;
    pointer-events: auto;
    text-decoration: none;
}

.read-insight:hover {
    text-decoration: underline;
}

/* --- MOBILE MENU --- */
.menu-btn {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: var(--color-pure-white);
}

.mobile-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2000;
    min-width: 200px;
}

.mobile-nav a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--color-pure-white);
    font-weight: 600;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    background-color: #f8f9fa;
    color: var(--color-primary);
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .desktop-nav {
        display: none !important;
    }
}

/* --- NEW METHODOLOGY STYLES --- */
.methodology-intro p {
    font-size: 1.1rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.step-sub {
    font-size: 0.85rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    margin-top: -5px;
}

.method-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.method-list li {
    font-size: 0.9rem;
    color: var(--color-muted-text);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    line-height: 1.4;
}

.method-list li::before {
    content: '•';
    color: #ccc;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    line-height: 1;
}

.method-outcome {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-pure-white);
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 4px;
    border-left: 3px solid var(--color-accent-blue);
    margin-top: auto;
}

/* Ensure cards are flex columns to push outcome down */
.method-step {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .methodology-timeline {
        flex-direction: column;
    }

    .method-step {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* --- DETAILED PAIN POINTS --- */
.pain-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
}

.pain-detailed-item {
    display: flex;
    background: #1A1D26;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.pain-detailed-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #ddd;
    transform: translateX(5px);
}

.pain-num {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    /* Gold */
    margin-right: 20px;
    line-height: 1;
    min-width: 50px;
}

.pain-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: var(--color-pure-white);
}

.pain-content p {
    font-size: 0.95rem;
    color: var(--color-muted-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.pain-quote {
    font-style: italic;
    font-weight: 600;
    color: var(--color-pure-white);
    border-left: 3px solid var(--color-primary);
    /* Blue accent */
    padding-left: 10px;
    font-size: 0.9rem;
}

.pain-truth {
    max-width: 800px;
    margin: 60px auto 0 auto;
    background: var(--color-deep-navy);
    color: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pain-truth h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.pain-truth p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.truth-outro {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: inline-block;
}

@media (max-width: 768px) {
    .pain-detailed-item {
        flex-direction: column;
    }

    .pain-num {
        margin-bottom: 10px;
    }
}