/* ==========================================================
   BLACK HARBOR GROUP - INVESTMENT STRATEGY PAGE
   Completely unique design system — NOT shared with other pages
   ========================================================== */

/* ===================================================
   STRATEGY HERO — Cinematic parallax with animated grid
=================================================== */
.strategy-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            to right,
            rgba(var(--rgb-navy), 0.92) 30%,
            rgba(var(--rgb-navy), 0.4) 100%
        ),
        url("../images/heroes/investment-strategy.png") no-repeat center center;
    background-size: cover;
    overflow: hidden;
    padding: 120px 0 100px;
}

.strategy-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(178, 140, 64, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(178, 140, 64, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

.strategy-hero::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(178, 140, 64, 0.08) 0%,
        transparent 70%
    );
    top: -300px;
    right: -200px;
    pointer-events: none;
}

.strategy-hero .hero-badge {
    display: inline-block;
    background: rgba(178, 140, 64, 0.1);
    border: 1px solid rgba(178, 140, 64, 0.3);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.strategy-hero h1 {
    font-family: "Outfit", sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -3px;
    margin-bottom: 25px;
    line-height: 1.05;
}

.strategy-hero h1 span {
    background: linear-gradient(135deg, var(--gold-primary), #e8c878);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-hero .hero-sub {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.strategy-hero .hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    margin-bottom: 30px;
}

.strategy-hero .hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.strategy-hero .hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.strategy-hero .hero-breadcrumb a:hover {
    color: var(--gold-primary);
}
.strategy-hero .hero-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}
.strategy-hero .hero-breadcrumb .current {
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 600;
}

/* ===================================================
   STRATEGY OVERVIEW — Magazine editorial layout
=================================================== */
.strategy-overview {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.strategy-overview .overline {
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.strategy-overview .section-heading {
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -2px;
    margin-bottom: 40px;
    line-height: 1.15;
}

.strategy-overview .lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-slate-darker);
    border-left: 3px solid var(--gold-primary);
    padding-left: 25px;
    margin-bottom: 30px;
}

.strategy-overview .body-text {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-slate);
    margin-bottom: 20px;
}

/* Animated counter strip */
.strategy-stat-strip {
    display: flex;
    gap: 0;
    margin-top: 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(var(--rgb-navy), 0.08);
}

.strategy-stat-strip .stat-item {
    flex: 1;
    padding: 35px 30px;
    text-align: center;
    background: var(--bg-navy);
    position: relative;
    transition: background 0.4s ease;
}

.strategy-stat-strip .stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(178, 140, 64, 0.2);
}

.strategy-stat-strip .stat-item:hover {
    background: var(--bg-navy-muted);
}

.strategy-stat-strip .stat-number {
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 5px;
}

.strategy-stat-strip .stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* ===================================================
   SECTOR FOCUS — Hexagonal mosaic cards
=================================================== */
.sector-focus {
    padding: 120px 0;
    background: transparent;
    position: relative;
}

.sector-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(var(--rgb-navy), 0.04);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(var(--rgb-navy), 0.05);
    position: relative;
    height: 100%;
}

.sector-card .sector-icon-wrap {
    padding: 40px 30px 0;
    position: relative;
}

.sector-card .sector-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f0e6d0, #f8f1e3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-card .sector-icon i {
    font-size: 30px;
    color: var(--gold-primary);
    transition: all 0.5s ease;
}

.sector-card .sector-body {
    padding: 25px 30px 35px;
}

.sector-card .sector-body h4 {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.sector-card .sector-body p {
    font-size: 15px;
    color: var(--text-slate);
    line-height: 1.7;
    margin-bottom: 0;
}

.sector-card .sector-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(var(--rgb-navy), 0.1);
    border-color: rgba(178, 140, 64, 0.2);
}

.sector-card:hover .sector-icon {
    background: var(--gold-primary);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(178, 140, 64, 0.3);
}

.sector-card:hover .sector-icon i {
    color: #fff;
}

.sector-card:hover .sector-accent {
    transform: scaleX(1);
}

/* ===================================================
   INVESTMENT APPROACH — Numbered timeline cards
=================================================== */
.approach-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(178, 140, 64, 0.04) 0%,
        transparent 70%
    );
    bottom: -200px;
    left: -100px;
    pointer-events: none;
}

.approach-timeline-card {
    position: relative;
    padding: 45px 35px 45px 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.approach-timeline-card::before {
    content: attr(data-step);
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(178, 140, 64, 0.1);
    line-height: 1;
    transition: color 0.5s ease;
}

.approach-timeline-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(178, 140, 64, 0.3);
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(var(--rgb-navy), 0.3);
}

.approach-timeline-card:hover::before {
    color: rgba(178, 140, 64, 0.4);
}

.approach-timeline-card h4 {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.approach-timeline-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===================================================
   INVESTMENT STRUCTURES — Layered depth cards
=================================================== */
.structures-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.structure-card {
    position: relative;
    background: var(--bg-white);
    border: 1px solid rgba(var(--rgb-navy), 0.06);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    height: 100%;
}

.structure-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(178, 140, 64, 0.02) 0%,
        transparent 50%
    );
    transition: opacity 0.5s ease;
    opacity: 0;
}

.structure-card:hover::before {
    opacity: 1;
}

.structure-card .structure-number {
    font-family: "Outfit", sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: rgba(178, 140, 64, 0.06);
    line-height: 1;
    margin-bottom: 15px;
    transition: color 0.5s ease;
}

.structure-card:hover .structure-number {
    color: rgba(178, 140, 64, 0.15);
}

.structure-card .structure-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(178, 140, 64, 0.08),
        rgba(178, 140, 64, 0.15)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.structure-card .structure-icon i {
    font-size: 24px;
    color: var(--gold-primary);
    transition: all 0.4s ease;
}

.structure-card h4 {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.structure-card p {
    font-size: 15px;
    color: var(--text-slate);
    line-height: 1.7;
    margin-bottom: 0;
}

.structure-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(var(--rgb-navy), 0.12);
    border-color: rgba(178, 140, 64, 0.25);
}

.structure-card:hover .structure-icon {
    background: var(--gold-primary);
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 12px 30px rgba(178, 140, 64, 0.35);
}

.structure-card:hover .structure-icon i {
    color: #fff;
}

/* ===================================================
   INVESTMENT THEMES — Split accent panels
=================================================== */
.themes-section {
    padding: 120px 0;
    background: transparent;
}

.theme-panel {
    display: flex;
    align-items: stretch;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(var(--rgb-navy), 0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(var(--rgb-navy), 0.04);
    height: 100%;
}

.theme-panel .theme-accent {
    width: 6px;
    background: linear-gradient(
        180deg,
        var(--gold-primary) 0%,
        rgba(178, 140, 64, 0.3) 100%
    );
    flex-shrink: 0;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-panel .theme-content {
    padding: 35px 30px;
    flex: 1;
}

.theme-panel .theme-tag {
    display: inline-block;
    background: rgba(178, 140, 64, 0.08);
    color: var(--gold-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.theme-panel h4 {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.theme-panel p {
    font-size: 15px;
    color: var(--text-slate);
    line-height: 1.7;
    margin-bottom: 0;
}

.theme-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(var(--rgb-navy), 0.08);
    border-color: rgba(178, 140, 64, 0.15);
}

.theme-panel:hover .theme-accent {
    width: 12px;
}

/* ===================================================
   REPRESENTATIVE INVESTMENTS — Editorial showcase
=================================================== */
.portfolio-showcase {
    padding: 120px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.portfolio-showcase::after {
    content: "";
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(178, 140, 64, 0.03) 0%,
        transparent 60%
    );
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card .card-header-bar {
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--gold-primary),
        rgba(178, 140, 64, 0.2)
    );
    transition: background 0.5s ease;
}

.portfolio-card .card-body-content {
    padding: 40px 35px;
}

.portfolio-card .card-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(178, 140, 64, 0.1),
        rgba(178, 140, 64, 0.05)
    );
    border: 1px solid rgba(178, 140, 64, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card .card-icon-circle i {
    font-size: 32px;
    color: var(--gold-primary);
    transition: all 0.4s ease;
}

.portfolio-card .card-category {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.portfolio-card h4 {
    font-family: "Outfit", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.portfolio-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 0;
}

.portfolio-card:hover {
    transform: translateY(-12px);
    border-color: rgba(178, 140, 64, 0.35);
    box-shadow: 0 40px 80px rgba(var(--rgb-navy), 0.4);
}

.portfolio-card:hover .card-header-bar {
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-hover));
}

.portfolio-card:hover .card-icon-circle {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(178, 140, 64, 0.3);
}

.portfolio-card:hover .card-icon-circle i {
    color: #fff;
}

/* ===================================================
   INVESTMENT CRITERIA — Horizontal metric bar
=================================================== */
.criteria-bar-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.criteria-bar {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-navy);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(var(--rgb-navy), 0.15);
}

.criteria-bar .criteria-cell {
    flex: 1;
    min-width: 200px;
    padding: 45px 30px;
    text-align: center;
    position: relative;
    transition: background 0.4s ease;
}

.criteria-bar .criteria-cell:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(178, 140, 64, 0.15);
}

.criteria-bar .criteria-cell:hover {
    background: rgba(178, 140, 64, 0.05);
}

.criteria-bar .criteria-cell .cell-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(178, 140, 64, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.criteria-bar .criteria-cell:hover .cell-icon {
    background: var(--gold-primary);
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(178, 140, 64, 0.3);
}

.criteria-bar .criteria-cell .cell-icon i {
    font-size: 20px;
    color: var(--gold-primary);
    transition: color 0.3s ease;
}

.criteria-bar .criteria-cell:hover .cell-icon i {
    color: #fff;
}

.criteria-bar .criteria-cell h5 {
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.criteria-bar .criteria-cell .cell-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

/* ===================================================
   DIFFERENTIATION — Floating badge cards
=================================================== */
.diff-section {
    padding: 120px 0;
    background: transparent;
}

.diff-card {
    position: relative;
    background: var(--bg-white);
    border: 1px solid rgba(var(--rgb-navy), 0.06);
    border-radius: 24px;
    padding: 50px 30px 40px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: visible;
    height: 100%;
}

.diff-card .diff-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), #d4a84e);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(178, 140, 64, 0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.diff-card .diff-badge i {
    font-size: 22px;
    color: #fff;
}

.diff-card h4 {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 15px;
}

.diff-card p {
    font-size: 15px;
    color: var(--text-slate);
    line-height: 1.7;
    margin-bottom: 0;
}

.diff-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(var(--rgb-navy), 0.1);
    border-color: rgba(178, 140, 64, 0.2);
}

.diff-card:hover .diff-badge {
    transform: translateX(-50%) scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(178, 140, 64, 0.4);
}

/* ===================================================
   NEW STRATEGY COMPONENTS
=================================================== */

/* Pillar Grid */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.pillar-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(var(--rgb-navy), 0.05);
    transition: all 0.4s ease;
    text-align: left;
}

.pillar-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(178, 140, 64, 0.1);
}

.pillar-card h4 {
    font-family: "Outfit", sans-serif;
    color: var(--gold-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.pillar-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 6-Stage Process Timeline */
.process-timeline-premium {
    position: relative;
    padding: 40px 0;
}

.process-step-premium {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step-premium .step-num {
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    flex-shrink: 0;
    z-index: 2;
}

.process-step-premium .step-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 35px;
    border-radius: 15px;
    flex: 1;
    transition: all 0.3s ease;
}

.process-step-premium:hover .step-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-primary);
}

.process-step-premium .step-content h4 {
    color: #fff;
    margin-bottom: 6px;
    font-size: 18px;
}

.process-step-premium .step-subtitle {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.process-step-premium .step-content p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 15px;
}

/* Risk Grid */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.risk-card-premium {
    background: var(--navy-glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.risk-card-premium i {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: block;
}

.risk-card-premium h4 {
    color: #fff;
    font-size: 16px;
    margin: 0;
}

/* Exit Block */
.exit-strategy-block {
    background: var(--bg-white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(var(--rgb-navy), 0.05);
    text-align: center;
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 991px) {
    .strategy-hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }
    .strategy-hero .hero-sub {
        font-size: 17px;
    }
    .strategy-overview .section-heading {
        font-size: 36px;
    }
    .strategy-stat-strip {
        flex-direction: column;
    }
    .strategy-stat-strip .stat-item:not(:last-child)::after {
        right: 20%;
        top: auto;
        bottom: 0;
        height: 1px;
        width: 60%;
    }
    .criteria-bar {
        flex-direction: column;
    }
    .criteria-bar .criteria-cell:not(:last-child)::after {
        right: 20%;
        top: auto;
        bottom: 0;
        height: 1px;
        width: 60%;
    }
    .approach-timeline-card {
        padding-left: 85px;
    }
    .approach-timeline-card::before {
        font-size: 36px;
        left: 25px;
    }
}

@media (max-width: 767px) {
    .strategy-hero {
        min-height: 50vh;
        padding: 100px 0 80px;
    }
    .strategy-hero h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .strategy-overview .section-heading {
        font-size: 30px;
        letter-spacing: -1px;
    }
    .approach-timeline-card {
        padding: 30px 25px 30px 75px;
    }
    .approach-timeline-card::before {
        font-size: 28px;
        left: 20px;
    }
}
