/* =========================================================
   STRATEGY PAGE
========================================================= */


/* HERO */

.strategy-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: var(--uae-white);
    background: var(--gradient-hero);
}

.strategy-hero-shape {
    position: absolute;
    top: -210px;
    right: -190px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(53, 210, 111, 0.28);
    border-radius: 50%;
}

.strategy-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;
}

.strategy-hero-copy h1 {
    max-width: 820px;
    margin-bottom: 28px;
    color: var(--uae-white);
    font-size: clamp(3.2rem, 5.4vw, 5.4rem);
    line-height: 1.03;
}

.strategy-hero-copy h1 span {
    display: block;
    color: var(--green-light);
}

.strategy-hero-lead {
    max-width: 760px;
    color: #c7d6cd;
    font-size: 1.15rem;
}

.strategy-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: #b8c8be;
    font-size: 0.9rem;
}

.strategy-proof span::before {
    margin-right: 8px;
    color: var(--green-light);
    content: "✓";
}


/* HERO PRIORITY CARD */

.strategy-summary-card {
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
}

.panel-label {
    margin-bottom: 24px;
    color: var(--green-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.priority-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.priority-card:last-child {
    border-bottom: 0;
}

.priority-card > span {
    color: var(--uae-red);
    font-size: 0.78rem;
    font-weight: 900;
}

.priority-card strong {
    display: block;
    margin-bottom: 7px;
    color: var(--uae-white);
    font-family: var(--heading-font);
    font-size: 1.2rem;
}

.priority-card p {
    margin: 0;
    color: #b9c8bf;
    font-size: 0.92rem;
}


/* INTRODUCTION */

.strategy-introduction {
    background: var(--uae-white);
}


/* GROWTH FRAMEWORK */

.growth-framework-section {
    background: var(--off);
}

.growth-framework {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.framework-step {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--uae-white);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.framework-step::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--uae-green);
    content: "";
}

.framework-step:nth-child(2)::before,
.framework-step:nth-child(5)::before {
    background: var(--uae-red);
}

.framework-step:nth-child(3)::before,
.framework-step:nth-child(6)::before {
    background: var(--uae-black);
}

.framework-step:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.framework-number {
    display: block;
    margin-bottom: 22px;
    color: var(--uae-red);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.framework-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: 16px;
    color: var(--uae-white);
    background: var(--uae-green);
    font-size: 1.35rem;
    font-weight: 900;
}

.framework-step:nth-child(2) .framework-icon,
.framework-step:nth-child(5) .framework-icon {
    background: var(--uae-red);
}

.framework-step:nth-child(3) .framework-icon,
.framework-step:nth-child(6) .framework-icon {
    background: var(--uae-black);
}

.framework-step h3 {
    margin-bottom: 14px;
}

.framework-step > p {
    color: var(--muted);
}

.framework-step ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.framework-step li {
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    color: var(--graphite);
    font-size: 0.9rem;
}

.framework-step li::before {
    margin-right: 8px;
    color: var(--uae-green);
    content: "•";
}


/* COMPARISON */

.comparison-section {
    color: #dce7df;
    background: var(--uae-black);
}

.comparison-section h2,
.comparison-section h3 {
    color: var(--uae-white);
}

.strategy-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-lg);
}

.comparison-column {
    padding: 48px;
}

.traditional-column {
    background: #151515;
}

.mtm-column {
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(0, 154, 68, 0.22),
            transparent 34%
        ),
        #07150e;
}

.comparison-label {
    margin-bottom: 20px;
    color: var(--green-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.traditional-column .comparison-label {
    color: #ff8492;
}

.comparison-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.comparison-list li {
    position: relative;
    padding: 13px 0 13px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.negative-list li::before {
    position: absolute;
    left: 0;
    color: var(--uae-red);
    content: "×";
    font-weight: 900;
}

.positive-list li::before {
    position: absolute;
    left: 0;
    color: var(--green-light);
    content: "✓";
    font-weight: 900;
}


/* DATA */

.strategy-data-section {
    background: var(--uae-white);
}

.strategy-data-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.data-dashboard {
    padding: 34px;
    border-radius: var(--radius-lg);
    color: var(--uae-white);
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(0, 154, 68, 0.28),
            transparent 34%
        ),
        var(--ink);
    box-shadow: var(--shadow-lg);
}

.data-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.data-dashboard-header span {
    display: block;
    color: #9eb0a5;
    font-size: 0.78rem;
}

.data-dashboard-header strong {
    color: var(--uae-white);
    font-family: var(--heading-font);
    font-size: 1.25rem;
}

.data-dashboard-header i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--uae-red);
    box-shadow: 0 0 18px rgba(206, 17, 38, 0.65);
}

.data-metric-grid {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.data-metric {
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.data-metric span {
    display: block;
    color: #9eb0a5;
    font-size: 0.78rem;
}

.data-metric strong {
    display: block;
    margin: 6px 0 16px;
    color: var(--uae-white);
}

.metric-progress {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.metric-progress i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--uae-green);
}

.data-metric:nth-child(2) .metric-progress i {
    background: var(--uae-red);
}

.dashboard-disclaimer {
    margin: 22px 0 0;
    color: #85978d;
    font-size: 0.72rem;
}


/* AI STRATEGY */

.strategy-ai-section {
    color: #dce7df;
    background: var(--ink);
}

.strategy-ai-section h2 {
    color: var(--uae-white);
}

.strategy-ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.strategy-ai-visual {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(
            circle at center,
            rgba(0, 154, 68, 0.28),
            transparent 42%
        ),
        #050d08;
}

.ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 180px;
    height: 180px;
    border: 2px solid var(--green-light);
    border-radius: 50%;
    color: var(--uae-white);
    background: rgba(0, 154, 68, 0.16);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 60px rgba(0, 154, 68, 0.24);
}

.ai-core span {
    color: var(--green-light);
    font-size: 2.4rem;
    font-weight: 900;
}

.ai-core strong {
    font-family: var(--heading-font);
}

.ai-orbit {
    position: absolute;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: var(--uae-white);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    font-weight: 800;
}

.ai-orbit-one {
    top: 12%;
    left: 12%;
}

.ai-orbit-two {
    top: 19%;
    right: 10%;
}

.ai-orbit-three {
    right: 8%;
    bottom: 17%;
}

.ai-orbit-four {
    bottom: 12%;
    left: 10%;
}


/* DELIVERY */

.delivery-section {
    background: var(--off);
}

.delivery-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.delivery-card {
    position: relative;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--uae-white);
    box-shadow: var(--shadow-sm);
}

.delivery-card::before {
    position: absolute;
    top: 0;
    left: 34px;
    width: 70px;
    height: 4px;
    background: var(--uae-green);
    content: "";
}

.delivery-card:nth-child(2)::before {
    background: var(--uae-red);
}

.delivery-card:nth-child(4)::before {
    background: var(--uae-black);
}

.delivery-card > span {
    display: block;
    margin-bottom: 22px;
    color: var(--uae-red);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.delivery-card p {
    margin: 0;
    color: var(--muted);
}


/* TABLET */

@media (max-width: 960px) {

    .strategy-hero-grid,
    .strategy-data-grid,
    .strategy-ai-grid {
        grid-template-columns: 1fr;
    }

    .growth-framework {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 640px) {

    .strategy-hero {
        padding: 80px 0;
    }

    .strategy-hero-copy h1 {
        font-size: clamp(2.7rem, 12vw, 3.8rem);
    }

    .strategy-summary-card {
        padding: 26px;
    }

    .growth-framework,
    .strategy-comparison,
    .delivery-timeline {
        grid-template-columns: 1fr;
    }

    .comparison-column {
        padding: 32px 24px;
    }

    .strategy-ai-visual {
        min-height: 420px;
    }

    .ai-core {
        width: 140px;
        height: 140px;
    }

    .ai-orbit {
        padding: 10px 12px;
        font-size: 0.68rem;
    }

}