﻿
:root {
    --bg: #08090d;
    --bg2: #0d0f18;
    --bg3: #111420;
    --card-border: rgba(255,255,255,0.07);
    --accent: #4f6ef7;
    --accent2: #7c3aed;
    --accent3: #06b6d4;
    --grad: linear-gradient(135deg, #4f6ef7, #7c3aed);
    --text: #f0f2ff;
    --muted: #8892b0;
    --muted2: #5a6480;
    --font: 'Outfit', sans-serif;
    --font2: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font2);
    line-height: 1.7;
    overflow-x: hidden;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(79,110,247,0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(79,110,247,0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes borderPulse {
    0%, 100% {
        border-color: rgba(79,110,247,0.3);
    }

    50% {
        border-color: rgba(124,58,237,0.6);
    }
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .7s ease,transform .7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity .7s ease,transform .7s ease;
}

    .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity .7s ease,transform .7s ease;
}

    .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

.d4 {
    transition-delay: .4s;
}

.d5 {
    transition-delay: .5s;
}

.d6 {
    transition-delay: .15s;
}

.d7 {
    transition-delay: .25s;
}

.d8 {
    transition-delay: .35s;
}

/* ── HERO ── */
.mesh-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .22;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: #4f6ef7;
    top: -200px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.orb2 {
    width: 500px;
    height: 500px;
    background: #7c3aed;
    top: 0;
    right: -150px;
    animation: float 10s ease-in-out infinite reverse;
}

.orb3 {
    width: 400px;
    height: 400px;
    background: #06b6d4;
    bottom: 0;
    left: 30%;
    animation: float 12s ease-in-out infinite;
}

.page-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 62vh;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,110,247,0.12);
    border: 1px solid rgba(79,110,247,0.3);
    color: #a5b4ff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeUp .6s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4f6ef7;
    animation: pulse 1.5s infinite;
}

.page-hero h1 {
    font-family: var(--font);
    font-size: clamp(36px,5vw,62px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    animation: fadeUp .7s ease .15s both;
}

.grad-text {
    background: linear-gradient(135deg,#4f6ef7 0%,#a78bfa 40%,#06b6d4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.page-hero p {
    color: var(--muted);
    font-size: 16px;
    margin: 20px auto 0;
    max-width: 600px;
    line-height: 1.8;
    animation: fadeUp .7s ease .3s both;
    text-align: center !important;
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
    animation: fadeUp .7s ease .45s both;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--grad);
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    font-family: var(--font);
    transition: transform .2s,box-shadow .2s;
    box-shadow: 0 8px 30px rgba(79,110,247,0.4);
    display: inline-block;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(79,110,247,0.55);
        color: white;
        text-decoration:none;
    }

.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--text);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    font-family: var(--font);
    transition: border-color .2s,background .2s,transform .2s;
    backdrop-filter: blur(8px);
    display: inline-block;
}

    .btn-outline:hover {
        border-color: rgba(79,110,247,0.6);
        background: rgba(79,110,247,0.08);
        transform: translateY(-2px);
        color: white;
        text-decoration: none;
    }

/* ── SECTION BASE ── */
section {
    padding: 80px 5%;
    position: relative;
}

.sec-dark {
    background: var(--bg2);
}

.sec-darker {
    background: var(--bg3);
}

.section-tag {
    display: inline-block;
    background: rgba(79,110,247,0.1);
    border: 1px solid rgba(79,110,247,0.25);
    color: #a5b4ff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font);
    font-size: clamp(26px,3.5vw,42px);
    font-weight: 800;
    letter-spacing: -.8px;
    line-height: 1.2;
}

.section-sub {
    color: var(--muted);
    font-size: 16px;
    margin-top: 10px;
    max-width: 600px;
}

.tc {
    text-align: center;
}

.mx {
    margin-left: auto;
    margin-right: auto;
}

.grid {
    display: grid;
    gap: 20px;
    margin-top: 50px;
}

.g4 {
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
}

.g3 {
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
}

.g2 {
    grid-template-columns: repeat(auto-fit,minmax(340px,1fr));
}

/* ── INDUSTRY DETAIL CARDS ── */
.ind-detail-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 30px;
    transition: transform .35s cubic-bezier(.25,.46,.45,.94),border-color .35s,background .35s,box-shadow .35s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

    .ind-detail-card:hover {
        transform: translateY(-6px) scale(1.01);
        border-color: rgba(79,110,247,0.5);
        background: rgba(79,110,247,0.05);
        box-shadow: 0 20px 50px rgba(79,110,247,0.15);
    }

        .ind-detail-card:hover .ind-card-icon {
            transform: scale(1.1) rotate(-5deg);
        }

.ind-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    /*background: var(--grad);*/
    display: flex;
    align-items: center;
    justify-content: center;
    /*font-size: 24px;*/
    margin-bottom: 16px;
    transition: transform .3s;
    flex-shrink: 0;
    font-size: 32px;
    color: #4f6ef7;
    margin-bottom: 15px;
}
    .ind-card-icon i {
        background: linear-gradient(135deg, #4f6ef7, #7c3aed);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.ind-detail-card h3 {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -.3px;
}

.ind-detail-card > p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.ind-feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

    .ind-feat-list li {
        font-size: 13px;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color .2s,transform .2s;
    }

        .ind-feat-list li:hover {
            color: var(--text);
            transform: translateX(4px);
        }

        .ind-feat-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--grad);
            flex-shrink: 0;
        }

.explore-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.explore-link {
    font-size: 12px;
    color: #a5b4ff;
    background: rgba(79,110,247,0.1);
    border: 1px solid rgba(79,110,247,0.2);
    border-radius: 20px;
    padding: 4px 12px;
    text-decoration: none;
    transition: background .2s,border-color .2s,color .2s;
}

    .explore-link:hover {
        background: rgba(79,110,247,0.2);
        border-color: rgba(79,110,247,0.5);
        color: white;
    }

/* ── SIMPLE INDUSTRY GRID (overview) ── */
.ind-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform .3s,border-color .3s,background .3s;
}

    .ind-card:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: rgba(79,110,247,0.4);
        background: rgba(79,110,247,0.06);
    }

/*.ind-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}*/
.ind-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 12px;
    background: rgba(79, 110, 247, 0.08);
    color: #4f6ef7;
}

.ind-card:nth-child(1) .ind-icon {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.ind-card:nth-child(2) .ind-icon {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.ind-card:nth-child(3) .ind-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.ind-card:nth-child(4) .ind-icon {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}
.ind-card h4 {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
}

.ind-card p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

/* ── BENEFIT CARDS ── */
.benefit-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform .35s,border-color .35s,background .35s,box-shadow .35s;
}

    .benefit-card:hover {
        transform: translateY(-6px);
        border-color: rgba(79,110,247,0.5);
        background: rgba(79,110,247,0.06);
        box-shadow: 0 20px 50px rgba(79,110,247,0.12);
    }

/*.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
    transition: transform .3s;
}*/

.benefit-icon {
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 15px;
    background: rgba(79, 110, 247, 0.08);
    color: #4f6ef7;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.12) rotate(-6deg);
}

.benefit-card:nth-child(1) .benefit-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.benefit-card:nth-child(2) .benefit-icon {
    background: rgba(79, 110, 247, 0.1);
    color: #4f6ef7;
}

.benefit-card:nth-child(3) .benefit-icon {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
}

.benefit-card:nth-child(4) .benefit-icon {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.benefit-card h3 {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-card p {
    color: var(--muted);
    font-size: 13px;
}

/* ── ADV CARDS ── */
.adv-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform .3s,border-color .3s,box-shadow .3s;
}

    .adv-card:hover {
        transform: translateY(-4px);
        border-color: rgba(79,110,247,0.4);
        box-shadow: 0 15px 40px rgba(79,110,247,0.12);
    }

. /*adv-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}*/
.adv-icon {
    font-size: 26px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

    .adv-icon.blue {
        background: rgba(79,110,247,0.15);
    }

    .adv-icon.purple {
        background: rgba(124,58,237,0.15);
    }

    .adv-icon.cyan {
        background: rgba(6,182,212,0.15);
    }

    .adv-icon.pink {
        background: rgba(236,72,153,0.15);
    }

    .adv-icon.green {
        background: rgba(16,185,129,0.15);
    }

    .adv-icon.amber {
        background: rgba(245,158,11,0.15);
    }

.adv-body h4 {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.adv-body p {
    color: var(--muted);
    font-size: 13px;
}

/* ── STAT STRIP ── */
.stat-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 50px;
    padding-top: 36px;
    border-top: .5px solid var(--card-border);
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font);
    font-size: 28px;
    font-weight: 800;
    display: block;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: var(--muted2);
    margin-top: 2px;
}

/* ── FINAL CTA ── */
.final-cta {
    background: var(--bg2);
    text-align: center;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.cta-orb1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #4f6ef7;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
    top: -100px;
    left: -100px;
}

.cta-orb2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #7c3aed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
    bottom: -100px;
    right: -100px;
}

.final-cta h2 {
    font-family: var(--font);
    font-size: clamp(32px,5vw,56px);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
}

.final-cta p {
    color: var(--muted);
    font-size: 17px;
    margin: 16px auto 36px;
    max-width: 500px;
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}

.adv-icon {
    font-size: 26px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 12px;
}

    /* Color themes */
    .adv-icon.blue {
        background: rgba(79, 110, 247, 0.1);
        color: #4f6ef7;
    }

    .adv-icon.purple {
        background: rgba(124, 58, 237, 0.1);
        color: #7c3aed;
    }

    .adv-icon.cyan {
        background: rgba(6, 182, 212, 0.1);
        color: #06b6d4;
    }

    .adv-icon.pink {
        background: rgba(236, 72, 153, 0.1);
        color: #ec4899;
    }

/* ===== UNIQUE CTA (NO CONFLICT) ===== */

.crm-cta-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.crm-btn-primary {
    background: var(--grad);
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font);
    transition: 0.2s;
}

    .crm-btn-primary:hover {
        transform: translateY(-2px);
    }

.crm-btn-outline {
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--text);
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font);
    transition: 0.2s;
}

    .crm-btn-outline:hover {
        border-color: rgba(79,110,247,0.6);
        background: rgba(79,110,247,0.08);
        transform: translateY(-2px);
    }

/* ===== UNIQUE CTA BUTTONS (NO GLOBAL CONFLICT) ===== */

.crm-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.crm-btn-primary-lg {
    background: var(--grad);
    color: #fff;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font);
    transition: 0.2s;
}

    .crm-btn-primary-lg:hover {
        transform: translateY(-2px);
    }

.crm-btn-outline-lg {
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--text);
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font);
    transition: 0.2s;
}

    .crm-btn-outline-lg:hover {
        border-color: rgba(79,110,247,0.6);
        background: rgba(79,110,247,0.08);
        transform: translateY(-2px);
    }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
    .g4 {
        grid-template-columns: repeat(2,1fr);
    }

    .g3 {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:768px) {
    body {
        overflow-x: hidden;
    }

    .g4, .g3, .g2 {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding-top: 110px;
    }

        .page-hero h1 {
            font-size: 32px;
        }

        .page-hero p {
            font-size: 15px;
        }

    .cta-row {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

        .cta-row a {
            width: 100%;
            max-width: 260px;
            text-align: center;
        }

    .section-title {
        font-size: 26px;
    }

    .section-sub {
        font-size: 14px;
    }

    .final-cta {
        padding: 70px 16px;
    }

        .final-cta h2 {
            font-size: 28px;
        }

        .final-cta p {
            font-size: 14px;
        }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

        .cta-btns a {
            width: 100%;
            max-width: 260px;
            text-align: center;
        }

    .cta-orb1 {
        width: 180px;
        height: 180px;
    }

    .cta-orb2 {
        width: 200px;
        height: 200px;
    }

    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .mesh-bg {
        overflow: hidden;
    }

    .orb1, .orb2, .orb3 {
        transform: scale(0.6);
    }
}

@media (max-width:480px) {
    .page-hero h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .ind-detail-card, .benefit-card, .adv-card {
        padding: 18px;
    }

    .btn-primary, .btn-outline {
        padding: 12px 18px !important;
        font-size: 14px !important;
    }

    .final-cta h2 {
        font-size: 24px;
    }
}
