:root {
    --primary: #1D4ED8; /* Deep blue primary */
    --primary-light: #3B82F6;
    --primary-glow: rgba(29, 78, 216, 0.15);
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc; /* subtle gray/blue tint for sections */
    --bg-gradient: linear-gradient(135deg, #f0fdfa 0%, #eff6ff 100%);
    
    --text-dark: #0f172a; /* Dark navy text */
    --text-muted: #475569;
    --text-light: #94a3b8;
    
    --border: #e2e8f0;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Outfit', sans-serif;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    background: transparent;
    padding: 20px 0;
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}
.nav-links a.nav-item:hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px 0 rgba(29, 78, 216, 0.39);
}
.btn-primary:hover {
    background: #1e40af; /* darker blue */
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.23);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: var(--text-dark);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--text-dark);
}

.btn-login {
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
}
.btn-login:hover {
    color: var(--primary);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    z-index: 0;
}

.hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    flex: 1.15;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--text-dark);
}
.hero h1 span {
    background: linear-gradient(to right, var(--primary), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p.subtitle {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 620px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 48px;
}

.trust-marks {
    display: flex;
    gap: 24px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}
.trust-marks div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-marks svg {
    color: var(--primary);
}

.hero-visual {
    flex: 0.85;
    position: relative;
}

/* Dashboard Mockup in Hero */
.mockup-container {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}
.mockup-container:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.mockup-header {
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    align-items: center;
}
.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}
.mockup-dot.red { background: #fca5a5; }
.mockup-dot.yellow { background: #fde047; }
.mockup-dot.green { background: #86efac; }

.mockup-body {
    padding: 24px;
}

/* Value Prop Section (WHO / WHY / HOW Matrix) */
.value-props {
    padding: 90px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.value-props-header {
    text-align: left;
    margin-bottom: 48px;
    max-width: 960px;
}

.value-props-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.value-props-header p {
    font-size: 18px;
    font-weight: 500;
    color: #334155;
    line-height: 1.6;
    margin: 0;
}

/* Three Equal Columns Grid */
.three-col-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.matrix-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.matrix-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

.matrix-tag {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.matrix-tag-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tag-featured {
    color: var(--primary);
    font-size: 18px;
}

.differentiator-pill {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.matrix-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.35;
}

.title-featured {
    color: #1e40af;
    font-size: 21px;
}

.matrix-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 28px;
    flex-grow: 1;
}

.matrix-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.matrix-footer svg {
    color: #64748b;
}

.footer-featured {
    color: #1d4ed8;
    border-top-color: #dbeafe;
}

.footer-featured svg {
    color: #1d4ed8;
}

/* Featured Column Visual Accent */
.matrix-card.featured-col {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #3b82f6;
    box-shadow: 0 12px 30px -8px rgba(59, 130, 246, 0.18);
}

/* Total Talent Market Section (40/60 Split Layout) */
.talent-market-section {
    padding: 100px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.talent-market-grid {
    display: flex;
    gap: 64px;
    align-items: center;
}

.talent-market-copy {
    flex: 0 0 40%;
    max-width: 40%;
}

.section-tag-small {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.talent-market-copy h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.talent-market-copy .lead-text {
    font-size: 19px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 14px;
    line-height: 1.5;
}

.talent-market-copy .body-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 0;
}

.talent-market-visual {
    flex: 0 0 60%;
    max-width: 60%;
}

/* High Fidelity Product Visualization Card */
.market-ui-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.market-ui-header {
    background: #ffffff;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.market-ui-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.market-tier-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 24px;
    transition: all 0.2s ease;
}

.tier-total {
    background: #f8fafc;
}

.tier-badge {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tier-stat-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.tier-number {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -1px;
}

.tier-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.tier-desc {
    font-size: 13px;
    color: #64748b;
    margin-top: 2px;
}

.progression-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #3b82f6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 0;
}

.tier-ready {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    border: 2px solid #3b82f6;
    box-shadow: 0 8px 24px -6px rgba(59, 130, 246, 0.2);
}

.badge-ready {
    color: #1d4ed8;
}

.ready-number {
    color: #1d4ed8;
}

.ready-title {
    color: #1e40af;
}

.tier-signals-list {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.signal-tag {
    background: #ffffff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
}

/* Section 4 — Change Readiness (Reversed 60/40 Split) */
.change-readiness-section {
    padding: 100px 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.change-readiness-grid {
    display: flex;
    gap: 56px;
    align-items: flex-start;
    padding-top: 10px;
}

.change-readiness-visual {
    flex: 0 0 60%;
    max-width: 60%;
}

.change-readiness-copy {
    flex: 0 0 40%;
    max-width: 40%;
    margin-top: 6px;
}

.change-readiness-copy h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.change-readiness-copy .lead-text {
    font-size: 19px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 14px;
    line-height: 1.5;
}

.change-readiness-copy .body-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
}

.supporting-statement-box {
    background: #f0f9ff;
    border-left: 4px solid #0284c7;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 24px;
}

.supporting-statement-box p {
    font-size: 16px;
    font-weight: 700;
    color: #0369a1;
    line-height: 1.45;
    margin: 0;
    font-style: italic;
}

/* High Fidelity Candidate Preview Modal Mockup */
.preview-modal-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    box-shadow: 0 20px 45px -15px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.modal-top-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.modal-back-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #3b82f6;
    font-weight: 700;
}

.modal-title-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modal-title-center strong {
    color: #0f172a;
    font-size: 13px;
    font-weight: 800;
}

.modal-title-center span {
    color: #64748b;
    font-size: 11px;
}

.modal-privacy-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 11px;
}

.modal-body-split {
    display: flex;
    min-height: 440px;
}

/* Sidebar List */
.candidate-sidebar {
    width: 33%;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #94a3b8;
    margin-bottom: 4px;
    padding-left: 4px;
}

.cand-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 12px;
    transition: all 0.2s ease;
}

.cand-item.active-cand {
    border: 2px solid #3b82f6;
    background: #eff6ff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.cand-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.cand-name {
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
}

.cand-num {
    font-size: 10px;
    background: #f1f5f9;
    color: #64748b;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.active-num {
    background: #3b82f6;
    color: #ffffff;
}

.cand-tags {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}

.mini-tag {
    font-size: 9.5px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
}

.tag-exact {
    background: #dbeafe;
    color: #1d4ed8;
}

.tag-likely {
    background: #fef3c7;
    color: #d97706;
}

.tag-receptive {
    background: #f3e8ff;
    color: #7c3aed;
}

.cand-meta {
    font-size: 10px;
    color: #64748b;
}

/* Detail Panel */
.candidate-detail-panel {
    width: 67%;
    padding: 20px 24px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.detail-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}

.detail-cand-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.detail-sub-meta {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.detail-match-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.exact-match-pill {
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}

.match-score {
    font-size: 10px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.5px;
}

.signals-grid-box {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.signal-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
}

.analysis-box {
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 12.5px;
    line-height: 1.55;
}

.fit-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e3a8a;
}

.change-box {
    background: #faf5ff;
    border: 1px solid #e9d5ff;
    color: #4c1d95;
}

.box-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.title-fit { color: #1d4ed8; }
.title-change { color: #6d28d9; }

.change-points-list {
    margin: 0;
    padding-left: 16px;
}

.change-points-list li {
    margin-bottom: 4px;
}

.detail-action-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.readiness-summary {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.btn-view-analysis {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Section 5 — Sourcing Strategy / How to Recruit Them (40/60 Split Layout) */
.how-to-recruit-section {
    padding: 100px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.how-to-recruit-grid {
    display: flex;
    gap: 56px;
    align-items: flex-start;
    padding-top: 10px;
}

.how-to-recruit-copy {
    flex: 0 0 40%;
    max-width: 40%;
    margin-top: 6px;
}

.how-to-recruit-copy h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.how-to-recruit-copy .lead-text {
    font-size: 19px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 14px;
    line-height: 1.5;
}

.how-to-recruit-copy .body-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
}

.three-knows-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.know-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.how-to-recruit-visual {
    flex: 0 0 60%;
    max-width: 60%;
}

.recruit-modal-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    box-shadow: 0 20px 45px -15px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.how-to-recruit-card {
    background: #ffffff;
    border: 2px solid #6366f1;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px -5px rgba(99, 102, 241, 0.15);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.htr-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 14px;
}

.htr-icon-badge {
    background: #eef2ff;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.htr-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #4338ca;
    letter-spacing: 0.8px;
    margin: 0;
}

.htr-card-subtitle {
    font-size: 12px;
    color: #64748b;
    margin: 2px 0 0 0;
}

.htr-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.htr-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8fafc;
    border-left: 3px solid #6366f1;
    padding: 12px 14px;
    border-radius: 0 8px 8px 0;
}

.htr-bullet-item p {
    font-size: 13.5px;
    color: #1e293b;
    line-height: 1.55;
    margin: 0;
    font-weight: 500;
}

.bullet-dot {
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.htr-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.btn-inmail-copy {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

/* Split Audience Sections */
.audience-section {
    padding: 100px 0;
}
.audience-section.bg-alt {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.audience-content {
    display: flex;
    align-items: center;
    gap: 80px;
}
.audience-content.reverse {
    flex-direction: row-reverse;
}
.audience-text {
    flex: 1;
}
.audience-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.audience-text > p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.feature-block {
    margin-bottom: 32px;
}
.feature-block h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.feature-block p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}
.audience-visual {
    flex: 1;
}
.audience-image-placeholder {
    width: 100%;
    height: 400px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 500;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: #0f172a; /* Deep dark for video pop */
    color: #fff;
    text-align: center;
}
.video-section .section-header h2 {
    color: #fff;
}
.video-section .section-header p {
    color: #cbd5e1;
}
.video-container {
    max-width: 900px;
    margin: 0 auto;
    background: #1e293b;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(29, 78, 216, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    z-index: 10;
}
.play-btn:hover {
    transform: scale(1.1);
    background: #3b82f6;
}
.play-btn svg {
    margin-left: 5px;
    color: #fff;
}
.video-thumbnail {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><rect width="100%" height="100%" fill="%231e293b"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" fill="%23475569" font-family="sans-serif" font-size="20">Video Placeholder</text></svg>') center center;
    opacity: 0.5;
}

/* Section 6 — How It Works (Horizontal 5-Step Process) */
.how-it-works-section {
    padding: 100px 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.five-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: #2563eb;
    box-shadow: 0 12px 30px -8px rgba(37, 99, 235, 0.15);
}

.step-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.step-number-badge {
    font-size: 26px;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.step-label-pill {
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 10px;
}

.step-description {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.process-supporting-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 16px 28px;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.process-supporting-line p {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    margin: 0;
}

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

@media (max-width: 640px) {
    .five-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}
.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.final-cta p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.final-cta .btn-secondary {
    border-color: transparent;
}

/* Footer */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 40px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-brand .logo {
    color: #fff;
}
.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: #94a3b8;
    max-width: 250px;
}
.footer-links h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links ul li a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #64748b;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .audience-content, .audience-content.reverse {
        flex-direction: column;
    }
    .hero h1 { font-size: 40px; }
    .cards-grid { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: 1fr; gap: 40px; }
    .timeline::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
}
