/* Hero section */
:root {
    --pink: #f5365c;
    --violet: #3d5af1;
    --purple: #9b51e0;
    --black: #04040a;
    --dark: #080b18;
    --card-bg: #0d1021;
    --white: #ffffff;
    --g50: #f8f9ff;
    --g100: #eef0f8;
    --g200: #d4d8ee;
    --g400: #8a90b0;
    --g600: #525878;
    --gray800: #1e2235;
    --grad: linear-gradient(135deg, #f5365c, #9b51e0, #3d5af1);
    --grad-h: linear-gradient(90deg, #f5365c, #9b51e0, #3d5af1);
    --grad-2: linear-gradient(135deg, #f5365c, #3d5af1);
    --grad-r: linear-gradient(90deg, #ff00a6 9.62%, #0565ff 96.15%);
}

.hero {
    min-height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 130px 6% 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 70% 55% at 15% 25%,
            rgba(245, 54, 92, 0.11) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 60% 50% at 85% 75%,
            rgba(61, 90, 241, 0.13) 0%,
            transparent 65%
        ),
        radial-gradient(
            ellipse 50% 40% at 50% 50%,
            rgba(155, 81, 224, 0.08) 0%,
            transparent 70%
        );
}

.hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}
.hero-badge {
    width: fit-content;
    margin: auto;
    padding: 7px 14px;
    border: 0.8px solid rgba(252, 70, 140, 0.402);
    border-radius: 50px;
    font-size: 14px;
    color: rgba(252, 70, 140, 0.906);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 7px;
    font-weight: 300;
}
@media (max-width: 991px) {
    .hero-badge {
        font-size: 10px;
        margin: 10px;
    }
    .hero-chart-wrap {
        display: none;
    }
}
@media (max-width: 450px) {
    .hero-point {
        display: none;
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}

.hero-h1 {
    background: none !important;
    color: #fff !important;
    /* padding: 0px !important; */
    text-align: center;
}

.hero-h1::before {
    background: transparent !important;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.1rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08 !important;
    /* max-width: 900px; */
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s ease 0.1s both;
    letter-spacing: -0.02em;
    padding: 15px 18px;
}

.hero h1 em {
    font-style: normal;
    background: var(--grad-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    max-width: 650px;
    line-height: 1.75;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease 0.3s both;
}

.head-span-line,
.workflow-head-span {
    display: block;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fc468d;
}
.head-span-line::before {
    content: "";
    display: inline-block;
    margin-right: 5px;
    height: 2px;
    width: 22px;
    background: linear-gradient(
        to right,
        rgba(255, 0, 166, 1),
        rgba(5, 101, 255, 1)
    );
    border-radius: 2px;
    margin-bottom: 3px;
}

/* =========================================================
   Build For Section - FX Back Office Software
   ========================================================= */

.build-for {
    background-color: #06070b;
    background-image:
        radial-gradient(
            circle at 10% 20%,
            rgba(253, 70, 142, 0.08) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(59, 130, 246, 0.08) 0%,
            transparent 40%
        );
    padding: 60px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.build-for .build-for-subhead {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fc468d;
    margin-bottom: 12px;
}

.build-for .build-for-subhead::before {
    content: "";
    display: inline-block;
    margin-right: 6px;
    height: 2px;
    width: 22px;
    background: linear-gradient(to right, #fc468d, #4a5df5);
    border-radius: 2px;
    vertical-align: middle;
}

.build-for .build-for-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.build-for .build-for-highlight {
    background: linear-gradient(90deg, #a855f7 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.build-for .build-for-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.65;
}

/* Tabs Navigation */
.build-for-tabs-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 44px 0 54px;
    flex-wrap: wrap;
}

.build-for-tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 26px;
    color: #a1a1aa;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    outline: none;
}

.build-for-tab-btn:hover {
    border-color: rgba(168, 85, 247, 0.4);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.build-for-tab-btn.active {
    background: linear-gradient(
        135deg,
        rgba(253, 70, 142, 0.18) 0%,
        rgba(99, 102, 241, 0.22) 100%
    );
    border: 1.5px solid #a855f7;
    color: #ffffff;
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.35);
}

/* Tab Panes */
.build-for-tab-pane {
    display: none;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
    animation: fadeInTab 0.4s ease forwards;
    padding:2rem;
}

.build-for-tab-pane.active {
    display: grid;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left Content */
.build-for-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(253, 70, 142, 0.12);
    border: 1px solid rgba(253, 70, 142, 0.3);
    border-radius: 20px;
    padding: 6px 14px;
    color: #fc468d;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.build-for-role-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.build-for-role-title {
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.build-for-role-desc {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.65;
    margin-bottom: 28px;
}

.build-for-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.build-for-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.build-for-feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateX(4px);
}

.build-for-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.build-for-feature-icon.icon-pink {
    background: rgba(253, 70, 142, 0.14);
    border: 1px solid rgba(253, 70, 142, 0.25);
    color: #fc468d;
}

.build-for-feature-icon.icon-blue {
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #3b82f6;
}

.build-for-feature-icon.icon-green {
    background: rgba(16, 185, 129, 0.14);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
}

.build-for-feature-icon svg {
    width: 18px;
    height: 18px;
}

.build-for-feature-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #f3f4f6;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.build-for-feature-content p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.55;
    margin: 0;
}

/* Right Content - Dashboard Frame */
.build-for-image-wrap {
    position: relative;
    box-shadow: 0 0 35px rgba(37, 99, 235, 0.45);
    background: #0b0f19;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.build-for-image-wrap:hover {
    transform: scale(1.01);
}

.build-for-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

/* Setup Process Section */
.sol-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.sol-line-track {
    position: absolute;
    left: 27px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: #33333336;
    border-radius: 2px;
    overflow: hidden;
}

.sol-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #4a5df5, #fd468e);
    height: 0%;
    border-radius: 2px;
    transition: height 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sol-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 36px;
    align-items: flex-start;
    padding: 28px 0;
    position: relative;
    opacity: 1;
    transform: translateX(-16px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}
.sol-step.visible {
    opacity: 1;
    transform: translateX(0);
}
.sol-step:not(:last-child)::after {
    content: "";
    display: none;
}
.sol-step.visible .sol-num {
    box-shadow:
        0 0 0 4px rgba(74, 93, 245, 0.12),
        0 0 20px rgba(74, 93, 245, 0.08);
}

.sol-step:nth-child(odd).visible .sol-num {
    box-shadow:
        0 0 0 4px rgba(253, 70, 142, 0.12),
        0 0 20px rgba(253, 70, 142, 0.08);
}
.sol-step-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e5e7eb;
    margin-bottom: 6px;
}

.sol-step-title {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    color: #000;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.sol-step-sep {
    height: 1px;
    margin: 0 0 0 92px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        transparent 80%
    );
}
.sol-num {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    /* background: #14151d; */
    background: linear-gradient(143.01deg, #fd468e 13.55%, #2a5abc 83.39%);
}
.sol-num-inner {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #fff;
}

.sol-step.visible .sol-num {
    box-shadow:
        0 0 0 4px rgba(74, 93, 245, 0.12),
        0 0 20px rgba(74, 93, 245, 0.08);
}

.sol-step:nth-child(odd).visible .sol-num {
    box-shadow:
        0 0 0 4px rgba(253, 70, 142, 0.12),
        0 0 20px rgba(253, 70, 142, 0.08);
}

.sol-content {
    padding-top: 10px;
}

.sol-step-title {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    color: #000;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    line-height: 1.2;
}
.sol-step-desc {
    font-size: 15px;
    color: rgb(57, 57, 57) !important;
    line-height: 1.75;
    max-width: 600px;
}
.sol-step-sep {
    height: 1px;
    margin: 0 0 0 92px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.06) 0%,
        transparent 80%
    );
}

/* backoffice */
.forex-brokerage-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}
.forex-brokerage-right.pinkzz {
    border-left: 3px solid #fd468e;
    padding-left: 20px;
}
.forex-brokerage-right.bluezzz {
    border-left: 3px solid #4a5df5;
    padding-left: 20px;
}
.why-brokerage {
    background: #14142f;
}
.why-brokerage .max-width-10 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.why-brokerage .col-3 {
    display: flex;
    margin-bottom: 20px;
}

.why-brokerage-box {
    background: #ffffff0a;
    border-top: 0.8px solid #ffffff14;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.pink-clr {
    color: #fd468e;
    font-size: 12px;
    font-weight: 500;
}
.why-brokerage-box span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}
.gray-p {
    color: #ffffff80;
}
.why-brokerage-fullbox {
    background: linear-gradient(
        135deg,
        rgba(253, 70, 142, 0.1) 0%,
        rgba(74, 93, 245, 0.1) 100%
    );
    border-top: 0.8px solid #fd468e33;
    border-radius: 16px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.why-brokerage-fullbox span {
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}
.why-brokerage-fullbox .bottom-p {
    max-width: 800px;
    /* margin: 0 auto; */
}
.button-brokerage .hero-btns {
    margin-bottom: 0px !important;
}

/* core-model */
.core-modules .max-width-9 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.core-modules .col-3 {
    display: flex;
    margin-bottom: 20px;
}
.core-modules-box {
    background: #ffffff;
    border: 0.8px solid #ededf2;
    border-radius: 14px;
    padding: 20px 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.core-modules-box span {
    color: #22223a;
    font-size: 18px;
    font-weight: 800;
}
.core-modules-list {
    list-style: none;
}
.core-modules-list li {
    color: #22223a;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    gap: 10px;
    align-items: center;
}
.back-office-system {
    background: #f8f9fc;
}

@media (max-width: 600px) {
    .sol-steps {
        width: 96%;
        margin-left: auto;
    }
    .sol-line-track {
        left: 20px;
    }
    .sol-step {
        grid-template-columns: 44px 1fr;
        gap: 20px;
    }
    .sol-num {
        width: 44px;
        height: 44px;
    }
    .sol-step-sep {
        margin-left: 64px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .build-for {
        padding: 40px 0;
    }

    .build-for-tab-pane {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .build-for-pane-right {
        display: none;
    }

    .build-for-tabs-nav {
        gap: 10px;
        margin: 32px 10px 40px;
    }

    .build-for-tab-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .build-for-tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   FX Back Office System Section
   ========================================================= */
.back-office-system {
    background-color: rgba(248, 249, 252, 1);
    padding: 60px 0;
}

.back-office-system .back-office-title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    color: #0c0d14;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0;
}

.back-office-system .back-office-highlight {
    background: linear-gradient(90deg, #b038d2 0%, #6e46e6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-top: 4px;
}

.back-office-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
    justify-content: center;
    max-width: 1140px;
    margin: 44px auto 0;
}

.back-office-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.back-office-col-center {
    justify-content: center;
}

.back-office-card {
    background: #ffffff;
    border: 1.5px solid #ffc2de;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.back-office-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(253, 70, 142, 0.08);
}

.back-office-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.back-office-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.back-office-card-desc {
    font-size: 13.5px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991px) {
    .back-office-system {
        padding: 40px 0;
    }

    .back-office-grid {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .back-office-col {
        gap: 20px;
    }

    .back-office-col-center {
        justify-content: stretch;
    }

    .back-office-card {
        padding: 24px 20px;
    }
}

/* =========================================================
   CTA Inner Section - FX Back Office Software
   ========================================================= */

.cta-inner {
    background-color: #05060a;
    background-image:
        radial-gradient(
            circle at 25% 45%,
            rgba(253, 70, 142, 0.12) 0%,
            transparent 45%
        ),
        radial-gradient(
            circle at 75% 55%,
            rgba(59, 130, 246, 0.12) 0%,
            transparent 45%
        );
    padding: 60px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-inner-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-badge {
    display: inline-block;
    background: rgba(253, 70, 142, 0.1);
    border: 1px solid rgba(253, 70, 142, 0.28);
    color: #fc468d;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
}

.cta-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-highlight {
    background: linear-gradient(90deg, #fd468e 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta-desc {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto 36px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn-primary {
    background: linear-gradient(90deg, #fd468e 0%, #4f46e5 100%);
    color: #ffffff;
    box-shadow: 0 4px 25px rgba(253, 70, 142, 0.35);
    border: none;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(253, 70, 142, 0.5);
    color: #ffffff;
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #e5e7eb;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-micro-text {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .cta-inner {
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* =========================================================
   Business Impact Section - FX Back Office Software
   ========================================================= */
.business-impact {
    background-color: #ffffff;
    padding: 45px 0;
}

.business-impact .text-pink {
    color: #fd468e;
}

.business-impact .text-purple-grad {
    background: linear-gradient(
        90deg,
        rgba(253, 70, 142, 1) 40%,
        rgba(63, 94, 251, 1) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.business-impact-title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    color: #0c0d14;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0;
}

.business-impact-desc {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

.business-impact-grid {
    margin-top: 40px;
}

.business-impact-card {
    background: #ffffff;
    border: 1.5px solid #ffc2de;
    border-radius: 16px;
    padding: 30px 24px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.business-impact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(253, 70, 142, 0.08);
}

.impact-card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.impact-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.impact-card-desc {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.impact-metric {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(
        90deg,
        rgba(214, 36, 159, 1) 30%,
        rgba(110, 59, 214, 1) 60%,
        rgba(59, 109, 240, 1) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: auto;
}

@media (max-width: 991px) {
    .business-impact {
        padding: 40px 0;
    }
}

/* =========================================================
   Ecosystem / Connected to Your Entire Stack Section
   ========================================================= */

.ecosystem-section {
    background-color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
}

.ecosystem-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fc468d;
    margin-bottom: 12px;
}

.ecosystem-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #0c0d14;
    line-height: 1.25;
    margin-bottom: 16px;
}

.ecosystem-desc {
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.65;
}

/* Marquee Continuous Infinite Scroll */
.ecosystem-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0 30px;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.ecosystem-marquee-track {
    display: flex;
    width: max-content;
    animation: ecosystemScroll 25s linear infinite;
}

.ecosystem-marquee-track:hover {
    animation-play-state: paused;
}

.ecosystem-marquee-group {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
}

.ecosystem-badge-pill {
    background: #f8f9fd;
    border: 1px solid #eaecef;
    border-radius: 12px;
    padding: 10px 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
    user-select: none;
    white-space: nowrap;
}

.ecosystem-badge-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(168, 85, 247, 0.3);
}

.ecosystem-badge-pill img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.ecosystem-badge-pill span {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

@keyframes ecosystemScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 5 Category Cards Grid */
.ecosystem-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.ecosystem-card {
    background: #f8f9fd;
    border: 1px solid #eaecef;
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.ecosystem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.ecosystem-card-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 18px;
    border-radius: 10px;
    background: rgba(237, 237, 242, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.3;
}

.ecosystem-card-desc {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1199px) {
    .ecosystem-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ecosystem-section {
        padding: 40px 0;
    }

    .ecosystem-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .ecosystem-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Live Visibility Section - FX Back Office Software
   ========================================================= */

.live-visibility-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.live-visibility-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fc468d;
    margin-bottom: 12px;
}

.live-visibility-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #0c0d14;
    line-height: 1.25;
    margin-bottom: 16px;
}

.live-visibility-desc {
    max-width: 680px;
    margin: 0 auto 48px;
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.65;
}

/* Centered 2-Column Grid Layout */
.live-visibility-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}

/* Left Column: Live Queue Widget */
.live-queue-widget {
    background: #f8f9fd;
    border: 1px solid #eaecef;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.queue-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

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

.queue-widget-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #6b7280;
    text-transform: uppercase;
}

.queue-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.queue-item-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.queue-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.queue-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(79, 70, 229, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.queue-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 2px 0;
    line-height: 1.3;
}

.queue-item-sub {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.queue-item-count {
    font-size: 18px;
    font-weight: 800;
    color: #3b82f6;
}

/* Queue Alert Banner */
.queue-alert-card {
    background: #eef2ff;
    border: 1.5px solid #c7d2fe;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 8px;
}

.queue-alert-card .alert-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(79, 70, 229, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #3538cd;
    margin: 0 0 4px 0;
}

.alert-sub {
    font-size: 12px;
    color: #475467;
    line-height: 1.5;
    margin: 0;
}

/* Right Column: Stacked Visibility Cards */
.live-features-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visibility-card {
    background: #f8f9fd;
    border: 1.5px solid #eaecef;
    border-radius: 18px;
    padding: 28px 24px;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.visibility-card:hover {
    background: #ffffff;
    border-color: #818cf8;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
    transform: translateY(-3px);
}

.visibility-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(237, 237, 242, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.visibility-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px 0;
}

.visibility-card-desc {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.visibility-card-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.visibility-card-stats .stat-num {
    display: block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.visibility-card-stats .stat-num.text-pink {
    color: #fd468e;
}

.visibility-card-stats .stat-num.text-blue {
    color: #3b82f6;
}

.visibility-card-stats .stat-label {
    display: block;
    font-size: 11.5px;
    color: #9ca3af;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .live-visibility-section {
        padding: 40px 0;
    }

    .live-visibility-grid {
        grid-template-columns: 1fr;
        max-width: 580px;
        gap: 28px;
    }
}

/* =========================================================
   Infrastructure / Cloud-Native Architecture Section
   ========================================================= */

.infrastructure-section {
    background-color: #fafafd;
    padding: 60px 0;
}

.infrastructure-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fc468d;
    margin-bottom: 12px;
}

.infrastructure-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #0c0d14;
    line-height: 1.25;
    margin-bottom: 16px;
}

.infrastructure-desc {
    max-width: 680px;
    margin: 0 auto 48px;
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.65;
}

/* Architecture Diagram Container */
.architecture-diagram {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arch-layer {
    width: 100%;
}

.arch-layer-pill {
    display: inline-block;
    background: #fce7f3;
    border: 1px solid #fbcfe8;
    color: #1f2937;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 24px;
    border-radius: 50px;
    letter-spacing: 0.2px;
}

.arch-cards-row {
    display: grid;
    gap: 16px;
    width: 100%;
}

.arch-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 820px;
    margin: 0 auto;
}

.arch-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.arch-card {
    background: #f0f4ff;
    border: 1.5px solid #dbe5fe;
    border-radius: 14px;
    padding: 24px 14px;
    text-align: center;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.arch-card:hover {
    background: #ffffff;
    border-color: #818cf8;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.14);
    transform: translateY(-3px);
}

.arch-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(230, 232, 249, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.arch-card-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.arch-card-sub {
    font-size: 11px;
    color: #94a3b8;
    margin: 0;
}

/* Connectors */
.arch-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.connector-line {
    width: 1px;
    height: 12px;
    border-left: 1px dashed #cbd5e1;
}

.connector-badge {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 0;
}

@media (max-width: 991px) {
    .infrastructure-section {
        padding: 40px 0;
    }

    .arch-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .arch-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .arch-grid-4,
    .arch-grid-5 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Enterprise Security Section - FX Back Office Software
   ========================================================= */

.security-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.security-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fc468d;
    margin-bottom: 12px;
}

.security-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #0c0d14;
    line-height: 1.25;
    margin-bottom: 16px;
}

.security-desc {
    max-width: 680px;
    margin: 0 auto 48px;
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.65;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
}

.security-card {
    background: #f8f9fd;
    border: 1.5px solid #eaecef;
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.security-card:hover {
    background: #ffffff;
    border-color: #818cf8;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.14);
    transform: translateY(-3px);
}

.security-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(79, 70, 229, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.security-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.security-card-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.security-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.security-tag-pill {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #2563eb;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .security-section {
        padding: 40px 0;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .security-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Marketing Tools & Bonus Engine (Growth Engine Section)
   ========================================================= */

.growth-engine-section {
    background-color: #04060c;
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.growth-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fc468d;
    margin-bottom: 12px;
}

.growth-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.growth-desc {
    max-width: 680px;
    margin: 0 auto 52px;
    font-size: 14.5px;
    color: #9ca3af;
    line-height: 1.65;
}

.growth-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

/* Left Column: Stacked Cards */
.growth-cards-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.growth-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.growth-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.growth-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.growth-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.growth-card-desc {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

/* Right Column: Dashboard Image */
.growth-dashboard-col {
    width: 100%;
}

.growth-dashboard-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 70px rgba(99, 102, 241, 0.2);
    transition:
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.growth-dashboard-wrapper:hover {
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.7),
        0 0 90px rgba(168, 85, 247, 0.3);
    transform: translateY(-3px);
}

.growth-dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 991px) {
    .growth-engine-section {
        padding: 40px 0;
    }

    .growth-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .growth-dashboard-col {
        display: none;
    }
}

/* =========================================================
   Platform Performance Section - FX Back Office Software
   ========================================================= */

.performance-section {
    background-color: #04060c;
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.performance-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fc468d;
    margin-bottom: 12px;
}

.performance-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.performance-desc {
    max-width: 680px;
    margin: 0 auto 52px;
    font-size: 14.5px;
    color: #9ca3af;
    line-height: 1.65;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1040px;
    margin: 0 auto;
}

.performance-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 36px 20px;
    text-align: center;
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.performance-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.18);
    transform: translateY(-3px);
}

.performance-stat {
    font-size: clamp(34px, 3vw, 44px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.stat-pink {
    background: linear-gradient(135deg, #fc468d 0%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-purple {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-blue {
    background: linear-gradient(
        90deg,
        rgba(253, 70, 142, 1) 10%,
        rgba(74, 93, 245, 1) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bolder;
}

.stat-unit {
    font-size: 0.65em;
    font-weight: 700;
}

.performance-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.performance-card-sub {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .performance-section {
        padding: 40px 0;
    }

    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Why Hashcodex Section - FX Back Office Software
   ========================================================= */

.why-hashcodex-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.why-hashcodex-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: flex-start;
    max-width: 1140px;
    margin: 0 auto;
}

.why-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fc468d;
    margin-bottom: 12px;
}

.why-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: #0c0d14;
    line-height: 1.25;
    margin-bottom: 18px;
}

.why-desc {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 32px;
}

.text-blue-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* 5 Feature Cards Grid */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-card {
    background: #ffffff;
    border: 1.5px solid #fbcfe8;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.why-card-full {
    grid-column: span 2;
}

.why-card:hover {
    border-color: #fc468d;
    box-shadow: 0 8px 25px rgba(252, 70, 141, 0.12);
    transform: translateY(-2px);
}

.why-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.why-card-desc {
    font-size: 12.5px;
    color: #6b7280;
    margin: 0;
    line-height: 1.45;
}

/* Right Column: Comparison Table Card */
.why-comparison-col {
    width: 100%;
}

.comparison-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.comparison-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 24px 0;
    text-align: left;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
}

.comparison-header span:first-child {
    text-align: left;
}

.comparison-header span:nth-child(2) {
    color: #4f46e5;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8fafc;
    text-align: center;
    font-size: 13px;
}

.feature-label {
    text-align: left;
    color: #334155;
    font-weight: 600;
}

.check-mark {
    color: #10b981;
    font-weight: 800;
    font-size: 15px;
}

.check-muted {
    color: #34d399;
}

.cross-mark {
    color: #cbd5e1;
    font-size: 12px;
}

.comparison-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #fc468d 0%, #6366f1 100%);
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.35s ease;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

.comparison-cta-btn:hover {
    opacity: 0.95;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
}

@media (max-width: 991px) {
    .why-hashcodex-section {
        padding: 40px 0;
    }

    .why-hashcodex-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-section {
        padding: 40px 6%;
    }
}

@media (max-width: 576px) {
    .why-cards-grid {
        grid-template-columns: 1fr;
    }

    .why-card-full {
        grid-column: span 1;
    }

    .comparison-card {
        padding: 24px 18px;
    }
}

/* ── FAQ ── */
.faq-section {
    background: var(--gray50);
    padding: 60px 6%;
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--violet);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    justify-content: center;
    text-transform: uppercase;
}

.faq-header .section-label::before {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad);
}

.faq-header .section-title {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--gray800);
    letter-spacing: -0.02em;
}

.faq-header .section-title em {
    font-style: normal;
    background: var(--grad-r);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray100);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.25s;
}

.faq-item.open {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    border-color: rgba(61, 90, 241, 0.2);
}

.faq-q {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--gray800);
    user-select: none;
    transition: color 0.2s;
}

.faq-item.open .faq-q {
    color: var(--violet);
}

.faq-arrow {
    font-size: 0.8rem;
    color: var(--gray400);
    transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--violet);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s;
    font-size: 0.9rem;
    color: var(--gray600);
    line-height: 1.75;
    padding: 0 28px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 28px 22px;
}
