/* ===========================
   Strategy Management Page
   =========================== */

/* ===========================
   Entrance Animation (bottom → top, staggered)
   =========================== */
@keyframes strategySlideUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.strategy-methods-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    width: 100%;
}

.strategy-methods-title {
    font-weight: 900;
    font-size: 66px;
    line-height: 86px;
    letter-spacing: -0.33px;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(184deg, var(--color-primary) 0.91%, var(--color-primary-light) 82.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-methods-desc {
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.024px;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
    max-width: 800px;
}

.strategy-methods-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    width: 100%;
}

.strategy-methods-title {
    font-weight: 900;
    font-size: 66px;
    line-height: 86px;
    letter-spacing: -0.33px;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(184deg, var(--color-primary) 0.91%, var(--color-primary-light) 82.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-methods-desc {
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.024px;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
    max-width: 800px;
}
.strategy-page--animate .strategy-hero {
    animation: strategySlideUp 0.8s ease-out both;
}

.strategy-page--animate .strategy-showcase {
    opacity: 0;
    animation: strategySlideUp 0.8s 0.15s ease-out both;
}

.strategy-page--animate .strategy-services {
    opacity: 0;
    animation: strategySlideUp 0.8s 0.3s ease-out both;
}

.strategy-page--animate .strategy-methods {
    opacity: 0;
    animation: strategySlideUp 0.8s 0.45s ease-out both;
}

.strategy-page--animate .strategy-faq {
    opacity: 0;
    animation: strategySlideUp 0.8s 0.6s ease-out both;
}

.strategy-page--animate ~ .site-footer {
    opacity: 0;
    animation: strategySlideUp 0.8s 0.75s ease-out both;
}

@media (prefers-reduced-motion: reduce) {
    .strategy-page--animate .strategy-hero,
    .strategy-page--animate .strategy-showcase,
    .strategy-page--animate .strategy-services,
    .strategy-page--animate .strategy-methods,
    .strategy-page--animate .strategy-faq,
    .strategy-page--animate ~ .site-footer {
        animation: none;
        opacity: 1;
    }
}

/* Background Glow Effects */
.strategy-bg-glows {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.strategy-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
}

.strategy-bg-glow--left {
    width: 868px;
    height: 626px;
    background: radial-gradient(circle, rgba(var(--color-secondary-rgb), 0.25) 0%, transparent 70%);
    top: -50px;
    left: -150px;
    transform: rotate(90deg);
}

.strategy-bg-glow--right {
    width: 514px;
    height: 371px;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.2) 0%, transparent 70%);
    top: 310px;
    right: -50px;
    transform: rotate(100deg);
}

.strategy-bg-glow--showcase {
    width: 1367px;
    height: 706px;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.08) 0%, transparent 70%);
    top: 987px;
    left: 37px;
}

.strategy-bg-glow--methods {
    width: 1367px;
    height: 706px;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.08) 0%, transparent 70%);
    top: 1830px;
    left: 48px;
}

/* Hero */
.strategy-hero {
    position: relative;
    z-index: 1;
    padding-top: 200px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.strategy-title {
    font-weight: 900;
    font-size: 66px;
    line-height: 86px;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(184deg, var(--color-primary) 0.91%, var(--color-primary-light) 82.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================
   Gradient Border (shared)
   =========================== */
.strategy-feature-card::before,
.strategy-service-item::before,
.strategy-methods-card::before,
.strategy-faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(184deg, var(--color-primary) 0.91%, var(--color-primary-light) 82.1%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.strategy-feature-card > *,
.strategy-service-item > *,
.strategy-methods-card > *,
.strategy-faq-item > * {
    position: relative;
    z-index: 1;
}

/* ===========================
   Feature Showcase
   =========================== */
.strategy-showcase {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 80px 0;
}

.strategy-showcase-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 var(--content-padding);
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.strategy-showcase-image {
    flex: 1;
    min-width: 0;
    max-width: 620px;
    height: 686px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

    .strategy-showcase-image > img,
    .strategy-showcase-image > video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.strategy-showcase-card-white {
    position: absolute;
    bottom: 24px;
    inset-inline-start: 24px;
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 562px;
    max-width: calc(100% - 48px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

    .strategy-showcase-card-white > img {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

.strategy-showcase-card-white-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.strategy-showcase-card-white-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #070707;
    margin: 0;
}

.strategy-showcase-card-white-desc {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #070707;
    margin: 0;
}

/* Right info column */
.strategy-showcase-info {
    flex: 1;
    min-width: 0;
    max-width: 620px;
    height: 686px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.strategy-showcase-info-top {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.strategy-showcase-info-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: #f5f5f5;
    margin: 0;
    max-width: 590px;
}

.strategy-showcase-info-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #7d7d7d;
    max-width: 590px;
}

    .strategy-showcase-info-desc p {
        margin: 0 0 20px;
    }

        .strategy-showcase-info-desc p:last-child {
            margin-bottom: 0;
        }

/* Feature cards row */
.strategy-feature-cards {
    display: flex;
    gap: 40px;
    width: 100%;
}

.strategy-feature-card {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

    .strategy-feature-card > img {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

.strategy-feature-card-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.strategy-feature-card-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
    margin: 0;
}

.strategy-feature-card-desc {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--color-white);
    margin: 0;
}

/* ===========================
   Services Grid (2x2)
   =========================== */
.strategy-services {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.strategy-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.strategy-service-item {
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
}

    .strategy-service-item > img {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

.strategy-service-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.strategy-service-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: var(--color-white);
    margin: 0;
}

.strategy-service-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-white);
    margin: 0;
}

/* ===========================
   Three-Column Methods Section
   =========================== */
.strategy-methods {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    overflow: hidden;
}

.strategy-methods-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 0 var(--content-padding);
    max-width: var(--content-max-width);
    margin: 0 auto;
}


.strategy-methods-columns {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: stretch;
}

.strategy-methods-card {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 37px;
    position: relative;
}

.strategy-methods-card--right {
}

.strategy-methods-card-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

    .strategy-methods-card-item > img {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

.strategy-methods-card-item-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.strategy-methods-card-item-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: var(--color-white);
    margin: 0;
}

.strategy-methods-card-item-desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-white);
    margin: 0;
}

.strategy-methods-divider {
    height: 0;
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

    .strategy-methods-divider img {
        display: block;
        width: 100%;
        height: 1px;
        position: absolute;
        top: -1px;
        left: 0;
    }

.strategy-methods-image {
    width: 292px;
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

    .strategy-methods-image img,
    .strategy-methods-image video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* ===========================
   FAQ Section
   =========================== */
.strategy-faq {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.strategy-faq-header {
    display: flex;
    align-items: center;
    gap: 30px;
}

.strategy-faq-icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    object-fit: contain;
}

.strategy-faq-header-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.strategy-faq-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.4;
    margin: 0;
    background: linear-gradient(186deg, var(--color-primary) 0.91%, var(--color-primary-light) 82.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.strategy-faq-subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    color: var(--color-white);
    opacity: 0.5;
    margin: 0;
    max-width: 555px;
}

.strategy-faq-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 60px;
}

.strategy-faq-item {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    padding: 16px 32px;
    cursor: pointer;
    transition: padding 0.3s ease;
    position: relative;
}

    .strategy-faq-item.active {
        padding: 26px 32px;
    }

.strategy-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.strategy-faq-question-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0;
    white-space: nowrap;
}

.strategy-faq-arrow {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.strategy-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.strategy-faq-item.active .strategy-faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 8px;
}

.strategy-faq-answer p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
    color: var(--color-white);
    margin: 0;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 1200px) {
    .strategy-title, .strategy-methods-title {
        font-size: 48px;
        line-height: 62px;
    }

    .strategy-showcase-inner {
        flex-direction: column;
    }

    .strategy-showcase-image {
        max-width: 100%;
        height: 500px;
    }

    .strategy-showcase-info {
        max-width: 100%;
        height: auto;
        gap: 30px;
    }

    .strategy-showcase-info-title {
        font-size: 32px;
        line-height: 40px;
    }

    .strategy-services-grid {
        grid-template-columns: 1fr;
    }

    .strategy-methods-card--right {
        height: auto;
    }

    .strategy-methods-image {
        width: 240px;
    }

    .strategy-bg-glows {
        display: none;
    }
}

@media (max-width: 991px) {
    .strategy-hero {
        padding-top: 140px;
    }

    .strategy-title,
    .strategy-methods-title  {
        font-size: 40px;
        line-height: 52px;
    }

    .strategy-showcase-inner {
        padding: 0 var(--content-padding);
    }

    .strategy-showcase-image {
        height: 400px;
    }

    .strategy-showcase-card-white {
        max-width: calc(100% - 48px);
    }

    .strategy-feature-cards {
        flex-direction: column;
        gap: 16px;
    }

    .strategy-feature-card {
        width: 100%;
    }

    .strategy-methods-columns {
        flex-direction: column;
        align-items: stretch;
    }

    .strategy-methods-card--right {
        height: auto;
    }

    .strategy-methods-image {
        width: 100%;
        height: 400px;
        order: -1;
    }

    .strategy-faq-title {
        font-size: 30px;
        white-space: normal;
    }

    .strategy-faq-subtitle {
        font-size: 16px;
    }

    .strategy-faq-question-title {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .strategy-hero {
        padding-top: 120px;
    }

    .strategy-title,
    .strategy-methods-title {
        font-size: 36px;
        line-height: 48px;
    }

    .strategy-showcase {
        padding: 40px 0;
    }

    .strategy-showcase-image {
        height: 300px;
    }

    .strategy-showcase-info-title {
        font-size: 26px;
        line-height: 34px;
    }

    .strategy-methods-card-item-title {
        font-size: 18px;
        line-height: 26px;
    }

    .strategy-faq {
        padding: 0;
    }

    .strategy-faq-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .strategy-faq-header-text {
        align-items: center;
    }

    .strategy-faq-icon {
        width: 70px;
        height: 70px;
    }

    .strategy-faq-question-title {
        font-size: 15px;
    }

    .strategy-faq-arrow {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .strategy-hero {
        padding-top: 100px;
    }

    .strategy-title,
    .strategy-methods-title {
        font-size: 28px;
        line-height: 36px;
    }

    .strategy-showcase-image {
        height: 240px;
    }

    .strategy-showcase-card-white {
        bottom: 12px;
        inset-inline-start: 12px;
        max-width: calc(100% - 24px);
        padding: 8px;
        gap: 8px;
    }

        .strategy-showcase-card-white > img {
            width: 28px;
            height: 28px;
        }

    .strategy-showcase-card-white-title {
        font-size: 13px;
    }

    .strategy-showcase-card-white-desc {
        font-size: 11px;
    }

    .strategy-services {
        padding: 40px 0;
    }

    .strategy-methods {
        padding: 40px 0;
        gap: 30px;
    }

    .strategy-methods-image {
        height: 280px;
    }

    .strategy-faq-items {
        margin-top: 30px;
        gap: 16px;
    }

    .strategy-faq-item {
        padding: 12px 16px;
    }

        .strategy-faq-item.active {
            padding: 16px;
        }

    .strategy-faq-question-title {
        font-size: 14px;
    }

    .strategy-faq-arrow {
        width: 32px;
        height: 32px;
    }
}

/* ===========================
   RTL Overrides
   =========================== */
[dir="rtl"] .strategy-bg-glow--left {
    left: auto;
    right: -150px;
}

[dir="rtl"] .strategy-bg-glow--right {
    right: auto;
    left: -50px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .strategy-faq-answer,
    .strategy-faq-item {
        transition-duration: 0.01ms !important;
    }
}
