:root {

    --primary: #1E293B;
    --secondary: #F97316;

    --heading: #0F172A;
    --text: #64748B;

    --white: #FFFFFF;

    --border: #E2E8F0;

    --bg: #F8FAFC;

    --shadow: 0 20px 50px rgba(15, 23, 42, .10);

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    background: var(--bg);

    color: var(--heading);

    font-family: 'Inter', sans-serif;

}

a {

    text-decoration: none;

}

ul {

    list-style: none;

}

.container {

    width: min(92%, 1280px);

    margin: auto;

}

.header {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

}

.navbar {

    padding: 28px 0;

    transition: .35s;

}

.nav-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

}

/*======================================*
Logo
*=======================================*/

.logo {

    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 2px;

    font-family: 'Space Grotesk', sans-serif;

    font-size: 2rem;

    font-weight: 800;

    letter-spacing: -1.8px;

    color: var(--heading);

    transition: .35s;

}

.logo:hover {

    letter-spacing: -1.2px;

}

/* Accent */

.logo .accent {

    position: relative;

    color: var(--primary);

    padding: 0 2px;

}

/* Remove the old underline */

.logo .accent::after {

    display: none;

}

/* Corner Marker */

.logo .accent::before {

    content: "";

    position: absolute;

    top: -4px;

    right: -8px;

    width: 7px;

    height: 7px;

    border-radius: 2px;

    background: var(--primary);

    transform: rotate(45deg);

    opacity: .9;

    transition: .35s;

}

.logo:hover .accent::before {

    transform: rotate(225deg);

}

.nav-menu {

    display: flex;

    align-items: center;

    gap: 45px;

}

.nav-menu a {

    color: var(--heading);

    font-size: 15px;

    font-weight: 500;

    position: relative;

    transition: .3s;

}

.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .3s;

}

.nav-menu a:hover {

    color: var(--primary);

}

.nav-menu a:hover::after {

    width: 100%;

}

/*======================================
Navigation Components
=======================================*/

.contact-btn {

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 22px;

    color: var(--heading);
    font-weight: 700;
    font-size: .95rem;

    background: rgba(79, 70, 229, .08);

    border: 1px solid rgba(79, 70, 229, .12);
    border-radius: 50px;

    transition: all .35s ease;
}

.contact-btn i {

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);
    color: var(--white);

    transition: .35s ease;
}

.contact-btn:hover {

    background: var(--primary);
    color: var(--white);

    transform: translateY(-3px);

    box-shadow: 0 16px 35px rgba(79, 70, 229, .22);
}

.contact-btn:hover i {

    background: var(--white);
    color: var(--primary);

    transform: rotate(-35deg);
}


/*======================================
Menu Button
=======================================*/

.menu-btn {

    width: 52px;
    height: 52px;

    border: 1px solid rgba(0, 0, 0, .05);

    background: rgba(255, 255, 255, .85);

    backdrop-filter: blur(14px);

    border-radius: 16px;

    display: none;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    transition: .35s;

    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.menu-btn i {

    font-size: 1.15rem;

    transition: .35s;
}

.menu-btn:hover {

    transform: translateY(-2px);

    background: var(--primary);
    color: var(--white);
}


/*======================================
Scrolled Navbar
=======================================*/

.navbar.scrolled {

    position: fixed;

    top: 16px;
    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 40px);
    max-width: 1320px;

    border: 1px solid rgba(255, 255, 255, .25);

    background: rgba(255, 255, 255, .78);

    backdrop-filter: blur(18px);

    border-radius: 22px;

    box-shadow: 0 18px 45px rgba(15, 23, 42, .12);

    z-index: 999;

    animation: navbarReveal .45s ease;
}

@keyframes navbarReveal {

    from {

        opacity: 0;

        transform: translate(-50%, -25px);

    }

    to {

        opacity: 1;

        transform: translate(-50%, 0);

    }

}


/*======================================
Mobile Navigation
=======================================*/

@media(max-width:1000px) {

    .nav-menu {

        position: fixed;

        top: 95px;
        left: 50%;

        transform: translateX(-50%) translateY(-30px);

        width: calc(100% - 32px);

        padding: 40px;

        display: flex;
        flex-direction: column;

        gap: 24px;

        background: rgba(255, 255, 255, .96);

        backdrop-filter: blur(24px);

        border-radius: 24px;

        border: 1px solid rgba(15, 23, 42, .06);

        box-shadow: 0 30px 60px rgba(15, 23, 42, .12);

        opacity: 0;
        visibility: hidden;

        transition: .35s ease;
    }

    .nav-menu.active {

        opacity: 1;
        visibility: visible;

        transform: translateX(-50%) translateY(0);
    }

    .menu-btn {

        display: flex;
    }

    .contact-btn {

        display: none;
    }

}


/*======================================
Small Devices
=======================================*/

@media(max-width:768px) {

    .logo {

        font-size: 1.7rem;
    }

    .navbar.scrolled {

        width: calc(100% - 20px);

        top: 10px;
    }

    .nav-menu {

        padding: 30px;
    }

}

/*======================================*
Hero Section
*=======================================*/

.hero {

    position: relative;

    overflow: hidden;

    padding: 180px 0 130px;

    background: #EEF3F8;

}

/*======================================*
Hero Background
*=======================================*/

.hero::before {

    content: "";

    position: absolute;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(79, 70, 229, .08),
            transparent 70%);

    top: -280px;

    right: -250px;

}

.hero::after {

    content: "";

    position: absolute;

    width: 520px;

    height: 520px;

    background: linear-gradient(135deg,
            rgba(79, 70, 229, .05),
            transparent);

    clip-path: polygon(0 0, 100% 0, 100% 100%);

    bottom: -220px;

    left: -180px;

}

.hero-glow {

    display: none;

}

/*======================================*
Hero Container
*=======================================*/

.hero-container {

    position: relative;

    z-index: 10;

}

.hero-panel {

    position: relative;

    max-width: 980px;

    margin: auto;

    padding: 75px;

    background: rgba(255, 255, 255, .82);

    backdrop-filter: blur(25px);

    border: 1px solid rgba(255, 255, 255, .85);

    border-radius: 34px;

    box-shadow:
        0 35px 90px rgba(15, 23, 42, .08);

    overflow: hidden;

}

/* Decorative lines */

.hero-panel::before {

    content: "";

    position: absolute;

    top: 40px;

    right: 40px;

    width: 160px;

    height: 160px;

    border-top: 2px solid rgba(79, 70, 229, .15);

    border-right: 2px solid rgba(79, 70, 229, .15);

    border-radius: 0 28px 0 0;

}

.hero-panel::after {

    content: "";

    position: absolute;

    left: 40px;

    bottom: 40px;

    width: 180px;

    height: 180px;

    border-left: 2px solid rgba(79, 70, 229, .12);

    border-bottom: 2px solid rgba(79, 70, 229, .12);

    border-radius: 0 0 0 28px;

}

/*======================================*
Hero Badge
*=======================================*/

.hero-panel-top {

    margin-bottom: 35px;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 12px 22px;

    border-radius: 100px;

    background: #EEF2FF;

    color: var(--primary);

    font-size: .82rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.hero-badge i {

    font-size: 15px;

}

/*======================================*
Hero Content
*=======================================*/

.hero-panel-body {

    position: relative;

    z-index: 2;

}

.hero-panel-body h1 {

    font-family: 'Space Grotesk', sans-serif;

    font-size: clamp(60px, 8vw, 92px);

    line-height: .92;

    letter-spacing: -4px;

    color: var(--heading);

    margin-bottom: 28px;

}

.hero-panel-body p {

    max-width: 720px;

    color: var(--text);

    font-size: 19px;

    line-height: 1.95;

}

/*======================================*
Hero Buttons
*=======================================*/

.hero-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

    margin-top: 45px;

}

.hero-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 18px 34px;

    background: var(--primary);

    color: #fff;

    border-radius: 14px;

    font-weight: 600;

    transition: .35s;

}

.hero-btn:hover {

    transform: translateY(-5px);

}

.hero-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 18px 30px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 14px;

    color: var(--heading);

    font-weight: 600;

    transition: .35s;

}

.hero-link:hover {

    border-color: var(--primary);

    color: var(--primary);

}

/*======================================*
Hero Footer
*=======================================*/

.hero-panel-footer {

    margin-top: 65px;

    padding-top: 35px;

    border-top: 1px solid var(--border);

}

.hero-panel-footer div {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

}

.hero-panel-footer span {

    padding: 12px 20px;

    background: #F8FAFC;

    border: 1px solid var(--border);

    border-radius: 100px;

    color: var(--heading);

    font-size: .88rem;

    font-weight: 600;

    transition: .3s;

}

.hero-panel-footer span:hover {

    background: var(--primary);

    color: #fff;

    border-color: var(--primary);

}

/*======================================*
Scroll Indicator
*=======================================*/

.scroll-indicator {

    margin-top: 55px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;

    color: var(--text);

    font-size: .9rem;

    letter-spacing: 1px;

}

.scroll-indicator span {

    width: 2px;

    height: 48px;

    background: var(--primary);

    animation: scrollLine 2s infinite;

}

/*======================================*
Animations
*=======================================*/

@keyframes scrollLine {

    0% {

        transform: scaleY(0);

        transform-origin: top;

    }

    50% {

        transform: scaleY(1);

    }

    100% {

        transform: scaleY(0);

        transform-origin: bottom;

    }

}

/*======================================*
Responsive
*=======================================*/

@media(max-width:900px) {

    .hero {

        padding: 150px 0 100px;

    }

    .hero-panel {

        padding: 50px 35px;

    }

}

@media(max-width:600px) {

    .hero-panel {

        padding: 35px 25px;

        border-radius: 24px;

    }

    .hero-panel-body h1 {

        font-size: 48px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;

    }

    .hero-panel-footer div {

        gap: 10px;

    }

}

/*======================================
About Section
=======================================*/

.about-section {

    position: relative;

    padding: 150px 0;

    background: #F7F9FC;

    overflow: hidden;

}

.about-section::before {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 90%;
    height: 1px;

    background: #E7EBF2;

}

.about-grid {

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 100px;

    align-items: center;

    margin-bottom: 90px;

}

.section-tag {

    display: inline-flex;

    align-items: center;

    padding: 8px 18px;

    border-radius: 50px;

    background: #EEF2FF;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 24px;

}

.about-left h2 {

    color: var(--heading);

    font-size: clamp(42px, 5vw, 62px);

    line-height: 1.08;

    letter-spacing: -2px;

    max-width: 600px;

}

.about-right p {

    color: var(--text);

    font-size: 18px;

    line-height: 2;

    margin-bottom: 32px;

}

.about-right a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--heading);

    font-weight: 700;

    transition: .3s;

}

.about-right a:hover {

    color: var(--primary);

    gap: 16px;

}

/*======================================
Cards
=======================================*/

.about-cards {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;

}

.about-card {

    background: #FFFFFF;

    border: 1px solid #E8EDF5;

    border-radius: 18px;

    padding: 38px 30px;

    transition: .35s ease;

    position: relative;

}

.about-card:hover {

    transform: translateY(-8px);

    border-color: var(--primary);

    box-shadow: 0 18px 45px rgba(15, 23, 42, .06);

}

.about-card i {

    width: 62px;

    height: 62px;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 26px;

    border-radius: 16px;

    background: #EEF2FF;

    color: var(--primary);

    font-size: 24px;

}

.about-card h3 {

    color: var(--heading);

    font-size: 22px;

    margin-bottom: 16px;

    line-height: 1.3;

}

.about-card p {

    color: var(--text);

    line-height: 1.8;

    font-size: 15px;

}

/*======================================
Responsive
=======================================*/

@media(max-width:1100px) {

    .about-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .about-cards {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:700px) {

    .about-section {

        padding: 100px 0;

    }

    .about-left h2 {

        font-size: 38px;

    }

    .about-cards {

        grid-template-columns: 1fr;

    }

}

/*======================================
Services Timeline
=======================================*/

.services-section {

    position: relative;

    padding: 150px 0;

    background: #171F3B;

    overflow: hidden;

}

.services-section::before {

    content: "";

    position: absolute;

    top: -250px;
    right: -150px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(79, 70, 229, .18);

    filter: blur(120px);

}

.services-header {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 90px;

}

.services-header span {

    color: #A5B4FC;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-weight: 700;

}

.services-header h2 {

    color: #fff;

    font-size: clamp(42px, 5vw, 62px);

    line-height: 1.1;

    margin: 18px 0;

}

.services-header p {

    color: rgba(255, 255, 255, .72);

    line-height: 1.9;

}

/*======================================*/

.timeline {

    position: relative;

    max-width: 1000px;

    margin: auto;

}

.timeline-line {

    position: absolute;

    left: 50%;

    top: 0;

    width: 2px;

    height: 100%;

    background: rgba(255, 255, 255, .12);

    transform: translateX(-50%);

}

.timeline-item {

    display: grid;

    grid-template-columns: 1fr 60px 1fr;

    align-items: center;

    margin-bottom: 70px;

}

.timeline-item.left .timeline-content {

    grid-column: 1;

    text-align: right;

    padding-right: 50px;

}

.timeline-item.left .timeline-dot {

    grid-column: 2;

}

.timeline-item.right .timeline-dot {

    grid-column: 2;

}

.timeline-item.right .timeline-content {

    grid-column: 3;

    padding-left: 50px;

}

.timeline-dot {

    width: 22px;

    height: 22px;

    margin: auto;

    border-radius: 50%;

    background: var(--primary);

    border: 5px solid #171F3B;

    box-shadow: 0 0 0 2px rgba(255, 255, 255, .15);

}

.timeline-content {

    transition: .35s;

}

.timeline-content:hover {

    transform: translateY(-6px);

}

.service-icon {

    width: 60px;

    height: 60px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 16px;

    background: rgba(255, 255, 255, .08);

    color: #fff;

    font-size: 24px;

    margin-bottom: 20px;

}

.timeline-item.left .service-icon {

    margin-left: auto;

}

.timeline-item.right .service-icon {

    margin-right: auto;

}

.timeline-content h3 {

    color: #fff;

    font-size: 30px;

    margin-bottom: 14px;

}

.timeline-content p {

    color: rgba(255, 255, 255, .72);

    line-height: 1.9;

    max-width: 360px;

}

.timeline-item.left p {

    margin-left: auto;

}

/*======================================
Responsive
=======================================*/

@media(max-width:900px) {

    .timeline-line {

        left: 24px;

    }

    .timeline-item {

        display: block;

        position: relative;

        padding-left: 70px;

        margin-bottom: 50px;

    }

    .timeline-dot {

        position: absolute;

        left: 14px;

        top: 20px;

    }

    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content {

        text-align: left;

        padding: 0;

    }

    .timeline-item.left .service-icon {

        margin-left: 0;

    }

    .timeline-item.left p {

        margin-left: 0;

    }

}

/*======================================
Impact Section
=======================================*/

.impact-section {

    position: relative;

    padding: 150px 0;

    background: #F3F5F9;

    overflow: hidden;

}

.impact-overlay {

    display: none;

}

/*======================================*/

.impact-header {

    text-align: center;

    margin-bottom: 70px;

}

.impact-header span {

    display: inline-block;

    color: var(--primary);

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.impact-header h2 {

    color: var(--heading);

    font-size: clamp(2.8rem, 5vw, 4rem);

    line-height: 1.1;

    max-width: 760px;

    margin: auto;

}

/*======================================*/

.impact-grid {

    display: grid;

    grid-template-columns: 1.3fr .9fr;

    gap: 24px;

}

/*======================================*/

.impact-left {

    display: flex;

}

.impact-right {

    display: grid;

    grid-template-columns: 1fr;

    gap: 20px;

}

/*======================================*/

.impact-card {

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 35px;

    transition: .35s;

}

.impact-card:hover {

    border-color: var(--primary);

    transform: translateY(-5px);

}

.large {

    background: #2E3655;

    color: #fff;

    min-height: 100%;

    display: flex;

    align-items: flex-start;

    justify-content: flex-start;

    padding: 50px;

}

.large .impact-card-content {

    display: flex;

    flex-direction: column;

    height: 100%;

}

.large .impact-icon {

    width: 70px;

    height: 70px;

    margin-bottom: 32px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .08);

}

.large h3 {

    font-size: 42px;

    line-height: 1.1;

    margin-bottom: 22px;

    max-width: 420px;

}

.large p {

    max-width: 500px;

    font-size: 17px;

    line-height: 1.9;

    color: rgba(255, 255, 255, .75);

}

/*======================================*/

.impact-icon {

    width: 58px;

    height: 58px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 14px;

    background: #EEF2FF;

    color: var(--primary);

    font-size: 22px;

    margin-bottom: 22px;

}

.impact-card h3 {

    font-size: 24px;

    color: var(--heading);

    margin-bottom: 14px;

}

.impact-card p {

    color: var(--text);

    line-height: 1.8;

}

/*======================================*/

.impact-right .impact-card {

    display: flex;

    align-items: center;

    gap: 20px;

    min-height: 140px;

}

.impact-right .impact-icon {

    margin-bottom: 0;

    flex-shrink: 0;

}

.impact-right h3 {

    margin-bottom: 8px;

}

/*======================================*/

@media(max-width:1000px) {

    .impact-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width:700px) {

    .impact-section {

        padding: 100px 0;

    }

    .impact-header h2 {

        font-size: 2.3rem;

    }

    .impact-right .impact-card {

        display: block;

    }

    .impact-right .impact-icon {

        margin-bottom: 20px;

    }

}

/*======================================
Process Section
=======================================*/

.process-section {

    position: relative;

    padding: 150px 0;

    background: #F7F8FC;

    overflow: hidden;

}

.process-section::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: #E7EBF2;

}

/*======================================
Header
=======================================*/

.process-header {

    max-width: 720px;

    margin: 0 auto 90px;

    text-align: center;

}

.process-header span {

    display: inline-block;

    color: var(--primary);

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.process-header h2 {

    font-size: clamp(42px, 5vw, 60px);

    line-height: 1.1;

    color: var(--heading);

    margin-bottom: 20px;

}

.process-wrapper .process-step h3 {

    color: #d8e3f1;

    font-size: 24px;

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 14px;

}

.process-header p {

    color: var(--text);

    line-height: 1.9;

}

/*======================================
Layout
=======================================*/

.process-wrapper {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 24px;

    align-items: start;

}

.progress-line {

    display: none;

}

/*======================================
Step
=======================================*/

.process-step {

    position: relative;

    transition: .35s;

}

.process-step:nth-child(even) {

    margin-top: 90px;

}

.step-circle {

    width: 64px;

    height: 64px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    background: #EEF2FF;

    color: var(--primary);

    font-size: 22px;

    font-weight: 700;

    border: 1px solid rgba(79, 70, 229, .08);

    transition: .35s;

}

.process-step:hover .step-circle {

    background: var(--primary);

    color: #fff;

    transform: rotate(-8deg);

}

.process-step h3 {

    color: var(--heading);

    font-size: 24px;

    margin-bottom: 14px;

    line-height: 1.2;

}

.process-step p {

    color: var(--text);

    line-height: 1.8;

    font-size: 15px;

}

/* subtle connector */

.process-step::after {

    content: "";

    position: absolute;

    top: 31px;

    right: -12px;

    width: 24px;

    height: 1px;

    background: #D8DEE8;

}

.process-step:last-child::after {

    display: none;

}

/*======================================
Responsive
=======================================*/

@media(max-width:1100px) {

    .process-wrapper {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .process-step {

        margin-top: 0 !important;

        padding-left: 90px;

    }

    .step-circle {

        position: absolute;

        left: 0;

        top: 0;

        margin: 0;

    }

    .process-step::after {

        display: none;

    }

}

/*======================================
Stats Section
=======================================*/

.stats-section {

    position: relative;

    padding: 140px 0;

    background: #1F2544;

    overflow: hidden;

}

.stats-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .03),
            transparent 30%);

    pointer-events: none;

}

/*======================================*/

.stats-intro {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 80px;

}

.stats-intro span {

    display: inline-block;

    color: #A5B4FC;

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.stats-intro h2 {

    color: #fff;

    font-size: clamp(42px, 5vw, 60px);

    line-height: 1.1;

    margin-bottom: 20px;

}

.stats-intro p {

    color: rgba(255, 255, 255, .70);

    line-height: 1.9;

}

/*======================================
Stats Layout
=======================================*/

.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255, 255, 255, .12);

    border-bottom: 1px solid rgba(255, 255, 255, .12);

}

.stat-card {

    padding: 55px 25px;

    text-align: center;

    background: transparent;

    border-right: 1px solid rgba(255, 255, 255, .12);

    transition: .35s;

}

.stat-card:last-child {

    border-right: none;

}

.stat-card:hover {

    background: rgba(255, 255, 255, .04);

}

.stat-card h3 {

    font-family: 'Sora', sans-serif;

    font-size: clamp(48px, 5vw, 72px);

    color: #fff;

    line-height: 1;

    margin-bottom: 16px;

    font-weight: 700;

}

.stat-card h3::after {

    content: "+";

    color: var(--secondary);

    margin-left: 4px;

}

.stat-card span {

    display: block;

    color: rgba(255, 255, 255, .75);

    font-size: 16px;

    letter-spacing: .5px;

    text-transform: uppercase;

}

/*======================================
Responsive
=======================================*/

@media(max-width:900px) {

    .stats-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .stat-card:nth-child(2) {

        border-right: none;

    }

    .stat-card:nth-child(-n+2) {

        border-bottom: 1px solid rgba(255, 255, 255, .12);

    }

}

@media(max-width:600px) {

    .stats-section {

        padding: 100px 0;

    }

    .stats-grid {

        grid-template-columns: 1fr;

    }

    .stat-card {

        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, .12);

    }

    .stat-card:last-child {

        border-bottom: none;

    }

}

.team-section {

    padding: 150px 0;

    background: linear-gradient(180deg, #ffffff, #EEF6FF);

}

.team-header {

    max-width: 720px;

    text-align: center;

    margin: 0 auto 70px;

}

.team-header span {

    color: var(--primary);

    font-weight: 700;

    letter-spacing: 2px;

}

.team-header h2 {

    font-size: 58px;

    margin: 20px 0;

    line-height: 1.1;

}

.team-header p {

    color: var(--text);

    line-height: 1.9;

}

.team-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.team-card {

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);

    transition: .4s;

}

.team-card:hover {

    transform: translateY(-12px);

}

.team-image {

    height: 320px;

    overflow: hidden;

}

.team-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.team-card:hover img {

    transform: scale(1.08);

}

.team-info {

    padding: 30px;

}

.team-info h3 {

    font-size: 28px;

    margin-bottom: 8px;

}

.team-info span {

    color: var(--primary);

    font-weight: 600;

}

.team-info p {

    margin-top: 20px;

    color: var(--text);

    line-height: 1.8;

}

.team-social {

    display: flex;

    border-top: 1px solid var(--border);

}

.team-social a {

    flex: 1;

    text-align: center;

    padding: 18px;

    color: #64748B;

    transition: .3s;

}

.team-social a:hover {

    background: var(--primary);

    color: #fff;

}

@media(max-width:1100px) {

    .team-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:700px) {

    .team-grid {

        grid-template-columns: 1fr;

    }

    .team-header h2 {

        font-size: 42px;

    }

}

/*======================================
Footer
=======================================*/

.footer {

    position: relative;

    background: #151A2D;

    color: rgba(255, 255, 255, .72);

    overflow: hidden;

}

.footer::before {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 92%;

    height: 1px;

    background: rgba(255, 255, 255, .08);

}

/*======================================
CTA
=======================================*/

.footer-cta {

    position: relative;

    margin-top: -70px;

    z-index: 20;

    background: transparent;

    border: none;

}

.footer-cta-content {

    position: relative;

    background: #F8FAFC;

    border: 1px solid #E4E9F2;

    border-radius: 28px;

    padding: 90px;

    display: grid;

    grid-template-columns: 2fr auto;

    align-items: center;

    gap: 60px;

    overflow: hidden;

    box-shadow: 0 35px 90px rgba(15, 23, 42, .12);

}

/* Decorative Shapes */

.footer-cta-content::before {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    background: rgba(79, 70, 229, .06);

    top: -120px;

    right: -80px;

}

.footer-cta-content::after {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 24px;

    border: 2px dashed rgba(79, 70, 229, .12);

    left: -60px;

    bottom: -60px;

    transform: rotate(20deg);

}

.footer-cta span {

    display: inline-block;

    color: var(--primary);

    font-size: .85rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.footer-cta h2 {

    position: relative;

    z-index: 2;

    color: var(--heading);

    font-size: clamp(46px, 5vw, 68px);

    line-height: 1.05;

    margin-bottom: 22px;

}

.footer-cta p {

    position: relative;

    z-index: 2;

    color: var(--text);

    max-width: 620px;

    line-height: 1.9;

}

.footer-contact {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: var(--primary);

    color: #fff;

    padding: 18px 36px;

    border-radius: 14px;

    font-weight: 600;

    transition: .35s;

}

.footer-contact:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 40px rgba(79, 70, 229, .25);

}

/*======================================
Footer Grid
=======================================*/

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.3fr;

    gap: 70px;

    padding: 90px 0;

}

.footer-logo {

    font-family: 'Space Grotesk', sans-serif;

    font-size: 34px;

    font-weight: 700;

    color: #fff;

    margin-bottom: 20px;

    letter-spacing: -1px;

}

.footer-about p {

    line-height: 2;

    max-width: 420px;

    margin-bottom: 35px;

}

/*======================================
Social
=======================================*/

.footer-social {

    display: flex;

    gap: 12px;

}

.footer-social a {

    width: 46px;

    height: 46px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 12px;

    background: rgba(255, 255, 255, .05);

    color: #fff;

    transition: .3s;

}

.footer-social a:hover {

    background: var(--primary);

    transform: translateY(-4px);

}

/*======================================
Links
=======================================*/

.footer h4 {

    color: #fff;

    font-size: 18px;

    margin-bottom: 24px;

    letter-spacing: .5px;

}

.footer ul {

    display: flex;

    flex-direction: column;

    gap: 16px;

}

.footer ul a {

    color: rgba(255, 255, 255, .68);

    transition: .3s;

}

.footer ul a:hover {

    color: #fff;

    padding-left: 6px;

}

/*======================================
Contact
=======================================*/

.footer-contact-list li {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    line-height: 1.8;

}

.footer-contact-list i {

    color: var(--primary);

    margin-top: 4px;

}

/*======================================
Bottom
=======================================*/

.footer-bottom {

    padding: 28px 0;

    border-top: 1px solid rgba(255, 255, 255, .08);

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: rgba(255, 255, 255, .55);

}

.footer-bottom div {

    display: flex;

    gap: 30px;

}

.footer-bottom a {

    color: rgba(255, 255, 255, .6);

    transition: .3s;

}

.footer-bottom a:hover {

    color: #fff;

}

/*======================================
Responsive
=======================================*/

@media(max-width:1000px) {

    .footer-cta-content {

        grid-template-columns: 1fr;

    }

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:700px) {

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 18px;

        text-align: center;

    }

    .footer-bottom div {

        flex-direction: column;

        gap: 10px;

    }

}

.solutions-hero {

    position: relative;

    overflow: hidden;

    min-height: 760px;

    padding: 180px 0 120px;

    background:

        radial-gradient(circle at 80% 30%, rgba(37, 99, 235, .12), transparent 30%),

        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, .12), transparent 25%),

        #f8fafc;

}


.solutions-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(#dbeafe 1px, transparent 1px),

        linear-gradient(90deg, #dbeafe 1px, transparent 1px);

    background-size: 70px 70px;

    opacity: .35;

}



.solutions-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}



.solutions-hero-text h1 {

    font-size: 78px;

    line-height: 1.02;

    letter-spacing: -3px;

    color: #071321;

    margin-bottom: 30px;

}



.solutions-hero-text p {

    font-size: 20px;

    color: #64748b;

    line-height: 1.9;

    max-width: 600px;

}



.hero-actions {

    display: flex;

    gap: 20px;

    margin-top: 45px;

}



.primary-action {

    background: #0a6cff;

    color: white;

    padding: 17px 32px;

    border-radius: 50px;

    display: flex;

    gap: 12px;

    align-items: center;

}



.secondary-action {

    padding: 17px 30px;

    border-radius: 50px;

    border: 1px solid #cbd5e1;

    color: #071321;

}



.solutions-visual {

    position: relative;

    height: 500px;

}

.solution-image-placeholder {

    position: relative;

    overflow: hidden;

    width: 100%;

    height: 100%;

    border-radius: inherit;

}



.solution-hero-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    user-select: none;

    pointer-events: none;

}


.ai-panel {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 420px;

    padding: 25px;

    border-radius: 32px;

    background: rgba(255, 255, 255, .75);

    backdrop-filter: blur(20px);

    box-shadow: 0 40px 100px rgba(15, 23, 42, .15);

    border: 1px solid white;

}



.panel-header {

    display: flex;

    gap: 8px;

    margin-bottom: 35px;

}



.panel-header span {

    width: 10px;

    height: 10px;

    background: #94a3b8;

    border-radius: 50%;

}



.ai-status {

    display: flex;

    gap: 20px;

    align-items: center;

}



.status-icon {

    width: 65px;

    height: 65px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #dbeafe;

    color: #0a6cff;

    border-radius: 20px;

    font-size: 28px;

}



.ai-status small {

    color: #64748b;

}



.ai-status h3 {

    margin-top: 5px;

    color: #16a34a;

}



.data-lines div {

    height: 12px;

    background: #e2e8f0;

    margin-top: 18px;

    border-radius: 20px;

}



.data-lines div:nth-child(2) {

    width: 80%;

}



.data-lines div:nth-child(3) {

    width: 60%;

}



.metrics {

    display: flex;

    gap: 20px;

    margin-top: 35px;

}



.metrics div {

    flex: 1;

    background: #f1f5f9;

    padding: 20px;

    border-radius: 20px;

}



.metrics small {

    color: #64748b;

}



.metrics strong {

    display: block;

    font-size: 28px;

    margin-top: 10px;

}



.floating-card {

    position: absolute;

    background: white;

    padding: 18px 25px;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .12);

    display: flex;

    gap: 12px;

    align-items: center;

    font-weight: 600;

}



.floating-card i {

    color: #0a6cff;

}



.cloud-card {

    right: 0;

    top: 80px;

    animation: float 5s infinite ease-in-out;

}



.security-card {

    left: 20px;

    bottom: 90px;

    animation: float 6s infinite ease-in-out reverse;

}



@keyframes float {

    50% {

        transform: translateY(-18px);

    }

}



.floating-elements {

    position: absolute;

    inset: 0;

}



.tech-node {

    position: absolute;

    width: 55px;

    height: 55px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: white;

    color: #0a6cff;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);

    animation: float 8s infinite ease-in-out;

}



.node-one {

    top: 180px;

    left: 8%;

}



.node-two {

    right: 10%;

    top: 170px;

}



.node-three {

    left: 15%;

    bottom: 120px;

}



.node-four {

    right: 20%;

    bottom: 100px;

}



@media(max-width:1000px) {

    .solutions-hero-grid {

        grid-template-columns: 1fr;

    }

    .solutions-hero-text h1 {

        font-size: 55px;

    }

    .solutions-visual {

        margin-top: 50px;

    }

}



@media(max-width:600px) {

    .solutions-hero {

        padding-top: 140px;

    }

    .solutions-hero-text h1 {

        font-size: 42px;

    }

    .ai-panel {

        width: 90%;

    }

    .floating-card {

        display: none;

    }

}

.solutions-visual {

    position: relative;

    height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.solution-image-placeholder {

    position: relative;

    width: 100%;

    height: 100%;

    max-width: 560px;

    border-radius: 40px;

    background:

        linear-gradient(135deg,

            rgba(255, 255, 255, .9),

            rgba(226, 232, 240, .75));

    border: 1px solid rgba(148, 163, 184, .25);

    box-shadow:

        0 40px 100px rgba(15, 23, 42, .12);

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

}


.placeholder-glow {

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background:

        radial-gradient(circle,

            rgba(37, 99, 235, .25),

            transparent 70%);

    animation: placeholderMove 8s infinite alternate;

}


.placeholder-content {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 20px;

    color: #64748b;

}


.placeholder-content i {

    font-size: 60px;

    color: #0A6CFF;

}


.placeholder-content span {

    font-size: 18px;

    font-weight: 600;

}


@keyframes placeholderMove {

    from {

        transform: translate(-40px, -20px);

    }

    to {

        transform: translate(40px, 30px);

    }

}

@media(max-width:600px) {

    .solutions-visual {

        height: 360px;

    }


    .solution-image-placeholder {

        border-radius: 25px;

    }


    .placeholder-content i {

        font-size: 45px;

    }

}

.services-showcase {

    padding: 150px 0;

    background: #ffffff;

}


.services-heading {

    max-width: 750px;

    margin-bottom: 90px;

}


.services-heading h2 {

    font-size: 64px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin-bottom: 25px;

}


.services-heading p {

    color: #64748b;

    font-size: 20px;

    line-height: 1.9;

}


.services-list {

    display: flex;

    flex-direction: column;

    gap: 30px;

}


.service-item {

    position: relative;

    display: grid;

    grid-template-columns: 100px 1fr 120px;

    align-items: center;

    gap: 40px;

    padding: 55px;

    border-radius: 35px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    transition: .4s;

}


.service-item:hover {

    transform: translateY(-8px);

    box-shadow: 0 30px 70px rgba(15, 23, 42, .08);

}


.service-number {

    font-size: 32px;

    font-weight: 700;

    color: #0A6CFF;

}


.service-content h3 {

    font-size: 38px;

    margin-bottom: 18px;

    color: #071321;

}


.service-content p {

    color: #64748b;

    line-height: 1.9;

    max-width: 650px;

    margin-bottom: 25px;

}


.service-content a {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #0A6CFF;

    font-weight: 600;

}


.service-icon {

    width: 90px;

    height: 90px;

    border-radius: 28px;

    background: #e0f2fe;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 35px;

    color: #0A6CFF;

}


@media(max-width:900px) {

    .service-item {

        grid-template-columns: 1fr;

        padding: 40px;

    }


    .service-icon {

        margin-top: 20px;

    }


    .services-heading h2 {

        font-size: 48px;

    }

}


@media(max-width:600px) {

    .services-heading h2 {

        font-size: 38px;

    }


    .service-content h3 {

        font-size: 30px;

    }


    .service-item {

        padding: 30px;

    }

}

.process-section {

    padding: 150px 0;

    background: #071321;

    position: relative;

    overflow: hidden;

}


.process-section::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    background: radial-gradient(circle, rgba(37, 99, 235, .18), transparent 70%);

    right: -200px;

    top: -200px;

}


.process-header {

    position: relative;

    z-index: 2;

    max-width: 700px;

    margin-bottom: 80px;

}


.process-header h2 {

    color: white;

    font-size: 64px;

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 25px;

}


.process-header p {

    color: #94a3b8;

    font-size: 20px;

    line-height: 1.9;

}


.process-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}


.process-card {

    position: relative;

    padding: 40px 30px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(15px);

    transition: .4s;

}


.process-card:hover {

    transform: translateY(-12px);

    border-color: rgba(255, 255, 255, .2);

}


.process-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background: rgba(255, 255, 255, .1);

    color: #38bdf8;

    font-size: 25px;

    margin-bottom: 30px;

}


.process-card span {

    color: #38bdf8;

    font-size: 14px;

    font-weight: 700;

}


.process-card h3 {

    color: white;

    font-size: 28px;

    margin: 15px 0;

}


.process-card p {

    color: #94a3b8;

    line-height: 1.8;

}



@media(max-width:1100px) {

    .process-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media(max-width:650px) {

    .process-grid {

        grid-template-columns: 1fr;

    }


    .process-header h2 {

        font-size: 42px;

    }

}

.technology-showcase {

    padding: 160px 0;

    background: #ffffff;

}


.showcase-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

}

.showcase-image {

    position: relative;

    min-height: 620px;

    border-radius: 38px;

    overflow: hidden;

    box-shadow: 0 35px 80px rgba(15, 23, 42, .08);

}



.showcase-image::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(circle at top left,
            rgba(10, 108, 255, .08),
            transparent 35%),

        radial-gradient(circle at bottom right,
            rgba(124, 58, 237, .08),
            transparent 35%),

        linear-gradient(135deg,
            #ffffff,
            #f8fbff);

    z-index: 1;

}



.showcase-illustration {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    z-index: 2;

    transition: transform .6s ease;

}



.showcase-image:hover .showcase-illustration {

    transform: scale(1.04);

}


.image-placeholder {

    height: 560px;

    border-radius: 40px;

    background:

        radial-gradient(circle at top left, rgba(37, 99, 235, .18), transparent 35%),

        linear-gradient(135deg, #f1f5f9, #e2e8f0);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 20px;

    color: #64748b;

    box-shadow: 0 40px 90px rgba(15, 23, 42, .1);

    border: 1px solid #e2e8f0;

}


.image-placeholder i {

    font-size: 70px;

    color: #0a6cff;

}



.showcase-content span {

    color: #0a6cff;

    font-weight: 700;



    letter-spacing: 2px;

}



.showcase-content h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.showcase-content p {

    color: #64748b;

    line-height: 1.9;

    font-size: 19px;

}



.showcase-content ul {

    margin: 35px 0;

    display: flex;

    flex-direction: column;

    gap: 18px;

}



.showcase-content li {

    display: flex;

    align-items: center;

    gap: 15px;

    color: #334155;

    font-weight: 600;

}



.showcase-content li i {

    color: #0a6cff;

}



.showcase-content a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #0a6cff;

    font-weight: 700;

}



@media(max-width:1000px) {

    .showcase-wrapper {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .showcase-image {

        order: -1;

    }


    .image-placeholder {

        height: 400px;

    }


    .showcase-content h2 {

        font-size: 45px;

    }

}


@media(max-width:600px) {

    .technology-showcase {

        padding: 90px 0;

    }


    .image-placeholder {

        height: 300px;

        border-radius: 25px;

    }


    .showcase-content h2 {

        font-size: 36px;

    }

}

.service-detail {

    padding: 150px 0;

    background: #f8fafc;

}


.service-detail-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

}



.service-detail-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 2px;

}



.service-detail-content h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.service-detail-content p {

    color: #64748b;

    font-size: 19px;

    line-height: 1.9;

}



.service-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin: 40px 0;

}



.service-points div {

    background: white;

    border: 1px solid #e2e8f0;

    padding: 18px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

}



.service-points i {

    color: #0a6cff;

}



.service-detail-content a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #0a6cff;

    font-weight: 700;

}



.service-image-placeholder {

    position: relative;

    width: 100%;

    min-height: 520px;

    overflow: hidden;

    border-radius: 34px;

    background: #ffffff;

    box-shadow: 0 30px 70px rgba(15, 23, 42, .08);

}



.service-illustration {

    width: 100%;

    height: 100%;

    position: absolute;

    inset: 0;

    object-fit: cover;

    object-position: center;

    transition: transform .6s ease;

}



.service-image-placeholder:hover .service-illustration {

    transform: scale(1.04);

}



.service-image-placeholder i {

    font-size: 80px;

    color: #0a6cff;

}



@media(max-width:1000px) {

    .service-detail-grid {

        grid-template-columns: 1fr;

    }


    .service-detail-image {

        order: -1;

    }


    .service-detail-content h2 {

        font-size: 44px;

    }

}



@media(max-width:600px) {

    .service-points {

        grid-template-columns: 1fr;

    }


    .service-image-placeholder {

        height: 320px;

        border-radius: 25px;

    }


    .service-detail-content h2 {

        font-size: 36px;

    }

}

.service-detail {

    opacity: 0;

    transform: translateY(50px);

    transition: .8s ease;

}


.service-detail.active {

    opacity: 1;

    transform: translateY(0);

}

.service-reverse {

    background: #ffffff;

}


.service-reverse .service-image-placeholder {

    background:

        radial-gradient(circle at top right, rgba(6, 182, 212, .22), transparent 45%),

        linear-gradient(145deg, #ffffff, #e0f2fe);

}


.service-reverse .service-image-placeholder i {

    color: #06b6d4;

}

.security-visual {

    background:

        radial-gradient(circle at center,

            rgba(16, 185, 129, .18),

            transparent 45%),

        linear-gradient(145deg, #ffffff, #ecfdf5);

}


.security-visual i {

    color: #10b981;

    position: relative;

    z-index: 2;

}


.security-ring {

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    border: 1px solid rgba(16, 185, 129, .35);

    animation: securityPulse 4s infinite;

}


.security-visual {

    position: relative;

    overflow: hidden;

}


@keyframes securityPulse {

    0% {

        transform: scale(.8);

        opacity: .3;

    }


    50% {

        transform: scale(1.2);

        opacity: 1;

    }


    100% {

        transform: scale(.8);

        opacity: .3;

    }

}

.solutions-cta {

    padding: 120px 0;

    background: #f8fafc;

}


.cta-wrapper {

    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns: 1fr 300px;

    align-items: center;

    gap: 50px;

    padding: 80px;

    border-radius: 45px;

    background:

        linear-gradient(135deg,

            #071321,

            #102A43);

}



.cta-content h2 {

    color: white;

    font-size: 64px;

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 25px;

}



.cta-content p {

    color: #cbd5e1;

    font-size: 19px;

    line-height: 1.9;

    max-width: 600px;

    margin-bottom: 40px;

}



.cta-content a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: white;

    color: #071321;

    padding: 18px 35px;

    border-radius: 50px;

    font-weight: 700;

}



.cta-visual {

    position: relative;

    height: 260px;

    display: flex;

    align-items: center;

    justify-content: center;

}



.cta-icon {

    position: relative;

    z-index: 2;

    width: 120px;

    height: 120px;

    border-radius: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(20px);

    color: #38bdf8;

    font-size: 45px;

}



.cta-circle {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .15);

}



.circle-one {

    width: 220px;

    height: 220px;

}



.circle-two {

    width: 320px;

    height: 320px;

}



@media(max-width:900px) {

    .cta-wrapper {

        grid-template-columns: 1fr;

        padding: 50px 35px;

    }


    .cta-content h2 {

        font-size: 45px;

    }


    .cta-visual {

        margin-top: 30px;

    }

}



@media(max-width:600px) {

    .solutions-cta {

        padding: 70px 0;

    }


    .cta-content h2 {

        font-size: 36px;

    }

}

.platform-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 120px;

    background: #ffffff;

}


.platform-background {

    position: absolute;

    inset: 0;

    overflow: hidden;

}



.floating-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(2px);

    opacity: .5;

}



.shape-one {

    width: 420px;

    height: 420px;

    background: #dbeafe;

    top: -120px;

    right: 10%;

}



.shape-two {

    width: 260px;

    height: 260px;

    background: #cffafe;

    bottom: 80px;

    left: -80px;

}



.shape-three {

    width: 180px;

    height: 180px;

    background: #e0e7ff;

    right: 35%;

    bottom: 100px;

}



.platform-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

}



.platform-hero-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.platform-hero-content h1 {

    font-size: 76px;

    line-height: 1.05;

    letter-spacing: -3px;

    color: #071321;

    margin: 30px 0;

}



.platform-hero-content p {

    font-size: 20px;

    line-height: 1.9;

    color: #64748b;

    max-width: 620px;

}



.platform-actions {

    margin-top: 45px;

}



.platform-actions a {

    display: inline-flex;

    gap: 12px;

    align-items: center;

    background: #0a6cff;

    color: white;

    padding: 18px 35px;

    border-radius: 50px;

    font-weight: 700;

}



.platform-visual {

    display: flex;

    justify-content: center;

}

.platform-image-placeholder {

    position: relative;


    overflow: hidden;

}



.platform-illustration {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

    position: relative;

    z-index: 2;

    filter: drop-shadow(0 35px 55px rgba(15, 23, 42, .15));

    transition: .6s;

}



.platform-image-placeholder::after {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:

        linear-gradient(to top, #f8fbff 0%, transparent 12%),

        linear-gradient(to bottom, #f8fbff 0%, transparent 12%),

        linear-gradient(to left, #f8fbff 0%, transparent 10%),

        linear-gradient(to right, #f8fbff 0%, transparent 10%);

    z-index: 3;

}







.platform-image-placeholder:hover .platform-illustration {

    transform: translateY(-10px) scale(1.03);

}



@media(max-width:1000px) {

    .platform-hero-grid {

        grid-template-columns: 1fr;

    }


    .platform-hero-content h1 {

        font-size: 55px;

    }


    .platform-visual {

        margin-top: 50px;

    }

}



@media(max-width:600px) {

    .platform-hero {

        padding-top: 130px;

    }


    .platform-hero-content h1 {

        font-size: 40px;

    }


    .platform-image-placeholder {

        height: 320px;

        border-radius: 25px;

    }

}

.platform-workflow {

    padding: 150px 0;

    background: #f8fafc;

}



.workflow-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;

}



.workflow-placeholder {

    height: 520px;

    border-radius: 45px;

    position: relative;

    background:

        radial-gradient(circle at center,

            rgba(37, 99, 235, .15),

            transparent 45%),

        white;

    border: 1px solid #e2e8f0;

    box-shadow: 0 40px 90px rgba(15, 23, 42, .1);

}



.workflow-center {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 140px;

    height: 140px;

    border-radius: 40px;

    background: #0a6cff;

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-weight: 700;

}



.workflow-center i {

    font-size: 35px;

}



.workflow-node {

    position: absolute;

    width: 100px;

    height: 100px;

    border-radius: 30px;

    background: white;

    border: 1px solid #e2e8f0;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .1);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: #0a6cff;

    font-weight: 600;

}



.workflow-node i {

    font-size: 25px;

}



.node-ai {

    top: 70px;

    left: 80px;

}



.node-data {

    bottom: 70px;

    left: 100px;

}



.node-cloud {

    top: 50%;

    right: 70px;

}



.workflow-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.workflow-content h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.workflow-content p {

    color: #64748b;

    font-size: 19px;

    line-height: 1.9;

}



.workflow-points {

    margin-top: 40px;

    display: flex;

    flex-direction: column;

    gap: 20px;

}



.workflow-points div {

    display: flex;

    align-items: center;

    gap: 15px;

    color: #334155;

    font-weight: 600;

}



.workflow-points i {

    color: #0a6cff;

}



@media(max-width:1000px) {

    .workflow-grid {

        grid-template-columns: 1fr;

    }


    .workflow-content h2 {

        font-size: 45px;

    }


    .workflow-placeholder {

        height: 400px;

    }

}



@media(max-width:600px) {

    .workflow-placeholder {

        height: 320px;

    }


    .workflow-node {

        width: 75px;

        height: 75px;

        font-size: 12px;

    }


    .workflow-center {

        width: 100px;

        height: 100px;

    }

}

.platform-capabilities {

    padding: 150px 0;

    background: white;

}



.capabilities-header {

    max-width: 750px;

    margin-bottom: 80px;

}



.capabilities-header span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.capabilities-header h2 {

    font-size: 62px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.capabilities-header p {

    font-size: 19px;

    color: #64748b;

    line-height: 1.9;

}



.capabilities-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}



.capability-card {

    position: relative;

    overflow: hidden;

    padding: 40px;

    border-radius: 35px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    min-height: 280px;

    transition: .4s;

}



.capability-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 70px rgba(15, 23, 42, .08);

}



.capability-card.large {

    grid-column: span 2;

}



.capability-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background: #dbeafe;

    color: #0a6cff;

    font-size: 28px;

    margin-bottom: 30px;

}



.capability-card h3 {

    font-size: 30px;

    color: #071321;

    margin-bottom: 15px;

}



.capability-card p {

    color: #64748b;

    line-height: 1.8;

}



.capability-visual {

    position: absolute;

    right: 40px;

    bottom: 40px;

    display: flex;

    gap: 10px;

    align-items: end;

}



.capability-visual div {

    width: 15px;

    border-radius: 20px;

    background: #0a6cff;

}



.capability-visual div:nth-child(1) {

    height: 40px;

}


.capability-visual div:nth-child(2) {

    height: 80px;

}



.capability-visual div:nth-child(3) {

    height: 120px;

}



@media(max-width:900px) {

    .capabilities-grid {

        grid-template-columns: 1fr;

    }


    .capability-card.large {

        grid-column: auto;

    }


    .capabilities-header h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .capabilities-header h2 {

        font-size: 36px;

    }


    .capability-card {

        padding: 30px;

    }

}

.capability-card {

    opacity: 0;

    transform: translateY(40px);

}


.capability-card.visible {

    opacity: 1;

    transform: translateY(0);

    transition: .7s ease;

}

.enterprise-section {

    padding: 160px 0;

    background: #f8fafc;

}



.enterprise-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 90px;

}



.enterprise-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.enterprise-content h2 {

    font-size: 60px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.enterprise-content p {

    font-size: 19px;

    color: #64748b;

    line-height: 1.9;

}



.enterprise-points {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin: 40px 0;

}



.enterprise-points div {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px;

    background: white;

    border-radius: 18px;

    border: 1px solid #e2e8f0;

    font-weight: 600;

}



.enterprise-points i {

    color: #0a6cff;

}



.enterprise-content a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #0a6cff;

    font-weight: 700;

}



.enterprise-placeholder {

    height: 560px;

    border-radius: 45px;

    position: relative;

    background:

        radial-gradient(circle,

            rgba(37, 99, 235, .15),

            transparent 50%),

        white;

    border: 1px solid #e2e8f0;

    box-shadow: 0 40px 100px rgba(15, 23, 42, .1);

    display: flex;

    justify-content: center;

    align-items: center;

    flex-direction: column;

    overflow: hidden;

}



.enterprise-core {

    position: relative;

    z-index: 2;

    width: 130px;

    height: 130px;

    border-radius: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #0a6cff;

    color: white;

    font-size: 45px;

}



.enterprise-orbit {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(10, 108, 255, .2);

}



.orbit-one {

    width: 280px;

    height: 280px;

}



.orbit-two {

    width: 420px;

    height: 420px;

}



.enterprise-placeholder span {

    position: absolute;

    bottom: 45px;

    color: #64748b;

}



@media(max-width:1000px) {

    .enterprise-grid {

        grid-template-columns: 1fr;

    }


    .enterprise-visual {

        order: -1;

    }


    .enterprise-content h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .enterprise-placeholder {

        height: 350px;

        border-radius: 25px;

    }


    .enterprise-points {

        grid-template-columns: 1fr;

    }


    .enterprise-content h2 {

        font-size: 36px;

    }

}

.industries-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 130px;

    background: #ffffff;

}



.industries-bg {

    position: absolute;

    inset: 0;

}



.industry-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(3px);

}



.shape-one {

    width: 450px;

    height: 450px;

    background: #dbeafe;

    right: -150px;

    top: -100px;

}



.shape-two {

    width: 300px;

    height: 300px;

    background: #cffafe;

    left: -100px;

    bottom: 50px;

}



.shape-three {

    width: 200px;

    height: 200px;

    background: #e0e7ff;

    right: 40%;

    bottom: 100px;

}



.industries-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}



.industries-hero-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.industries-hero-content h1 {

    font-size: 76px;

    line-height: 1.05;

    letter-spacing: -3px;

    color: #071321;

    margin: 30px 0;

}



.industries-hero-content p {

    color: #64748b;

    font-size: 20px;

    line-height: 1.9;

}



.industries-hero-content a {

    margin-top: 40px;

    display: inline-flex;

    gap: 12px;

    align-items: center;

    padding: 18px 35px;

    border-radius: 50px;

    background: #0a6cff;

    color: white;

    font-weight: 700;

}



.industry-map-placeholder {

    position: relative;

    height: 520px;

    border-radius: 45px;

    background:

        radial-gradient(circle,

            rgba(37, 99, 235, .15),

            transparent 45%),

        #f8fafc;

    border: 1px solid #e2e8f0;

    box-shadow: 0 40px 100px rgba(15, 23, 42, .1);

}



.industry-center {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 140px;

    height: 140px;

    border-radius: 40px;

    background: #0a6cff;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 12px;

}



.industry-center i {

    font-size: 35px;

}



.industry-node {

    position: absolute;

    padding: 18px 22px;

    background: white;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .1);

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 600;

}



.industry-node i {

    color: #0a6cff;

}



.node-finance {

    top: 70px;

    left: 60px;

}



.node-health {

    top: 80px;

    right: 50px;

}



.node-retail {

    bottom: 80px;

    left: 70px;

}



.node-education {

    bottom: 70px;

    right: 50px;

}



@media(max-width:1000px) {

    .industries-hero-grid {

        grid-template-columns: 1fr;

    }


    .industries-hero-content h1 {

        font-size: 55px;

    }

}



@media(max-width:600px) {

    .industries-hero {

        padding-top: 130px;

    }


    .industries-hero-content h1 {

        font-size: 40px;

    }


    .industry-map-placeholder {

        height: 330px;

    }


    .industry-node {

        font-size: 12px;

        padding: 12px;

    }

}

.industry-showcase {

    padding: 150px 0;

    background: #ffffff;

}



.industry-heading {

    max-width: 750px;

    margin-bottom: 90px;

}



.industry-heading span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.industry-heading h2 {

    font-size: 62px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.industry-heading p {

    font-size: 19px;

    color: #64748b;

    line-height: 1.9;

}



.industry-blocks {

    display: flex;

    flex-direction: column;

    gap: 100px;

}



.industry-block {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}



.industry-block.reverse .industry-image-placeholder {

    order: 2;

}



.industry-image-placeholder {

    height: 520px;

    border-radius: 40px;

    background:

        radial-gradient(circle at center,

            rgba(37, 99, 235, .18),

            transparent 45%),

        #f8fafc;

    border: 1px solid #e2e8f0;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 20px;

    color: #64748b;

    box-shadow: 0 40px 90px rgba(15, 23, 42, .08);

}



.industry-image-placeholder i {

    font-size: 80px;

    color: #0a6cff;

}



.industry-info span {

    color: #0a6cff;

    font-weight: 700;

}



.industry-info h3 {

    font-size: 48px;

    color: #071321;

    margin: 20px 0;

    letter-spacing: -1px;

}



.industry-info p {

    color: #64748b;

    font-size: 18px;

    line-height: 1.9;

}



.industry-info ul {

    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 15px;

}



.industry-info li {

    color: #334155;

    font-weight: 600;

    padding-left: 20px;

    position: relative;

}



.industry-info li::before {

    content: "";

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #0a6cff;

    position: absolute;

    left: 0;

    top: 9px;

}



@media(max-width:1000px) {

    .industry-block {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .industry-block.reverse .industry-image-placeholder {

        order: 0;

    }


    .industry-heading h2 {

        font-size: 45px;

    }


    .industry-info h3 {

        font-size: 38px;

    }

}



@media(max-width:600px) {

    .industry-image-placeholder {

        height: 320px;

        border-radius: 25px;

    }


    .industry-info h3 {

        font-size: 32px;

    }

}


.more-industries {

    padding: 150px 0;

    background: #f8fafc;

}



.more-industries-header {

    margin-bottom: 80px;

}



.more-industries-header span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.more-industries-header h2 {

    font-size: 60px;

    line-height: 1.1;

    color: #071321;

    letter-spacing: -2px;

    margin-top: 25px;

}



.industries-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}



.industry-card {

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 35px;

    padding: 35px;

    min-height: 360px;

    transition: .4s;

    display: flex;

    flex-direction: column;

}



.industry-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 30px 70px rgba(15, 23, 42, .08);

}



.industry-card-icon {

    width: 70px;

    height: 70px;

    border-radius: 22px;

    background: #dbeafe;

    color: #0a6cff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    margin-bottom: 30px;

}



.industry-card h3 {

    font-size: 28px;

    color: #071321;

    margin-bottom: 15px;

}



.industry-card p {

    color: #64748b;

    line-height: 1.8;

    flex-grow: 1;

}



.industry-card a {

    margin-top: 30px;

    display: flex;

    gap: 10px;

    align-items: center;

    color: #0a6cff;

    font-weight: 700;

}



@media(max-width:1100px) {

    .industries-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media(max-width:600px) {

    .industries-grid {

        grid-template-columns: 1fr;

    }


    .more-industries-header h2 {

        font-size: 38px;

    }


    .industry-card {

        padding: 30px;

    }

}

.industry-card {

    opacity: 0;

    transform: translateY(40px);

}


.industry-card.visible {

    opacity: 1;

    transform: translateY(0);

    transition: .7s ease;

}

.industry-cta {

    padding: 140px 0;

    background: #ffffff;

}



.industry-cta-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    padding: 80px;

    border-radius: 45px;

    background:

        linear-gradient(135deg,

            #071321,

            #102a43);

    overflow: hidden;

    position: relative;

}



.industry-cta-wrapper::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(56, 189, 248, .12);

    right: -150px;

    top: -150px;

}



.industry-cta-content {

    position: relative;

    z-index: 2;

}



.industry-cta-content span {

    color: #38bdf8;

    font-weight: 700;

    letter-spacing: 3px;

}



.industry-cta-content h2 {

    color: white;

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    margin: 25px 0;

}



.industry-cta-content p {

    color: #cbd5e1;

    font-size: 19px;

    line-height: 1.9;

}



.industry-cta-content a {

    margin-top: 40px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 18px 35px;

    background: white;

    color: #071321;

    border-radius: 50px;

    font-weight: 700;

}



.industry-cta-visual {

    position: relative;

    z-index: 2;

}



.cta-image-placeholder {

    height: 380px;

    border-radius: 35px;

    background:

        rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .15);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 20px;

    color: #cbd5e1;

    position: relative;

    overflow: hidden;

}



.cta-image-placeholder i {

    font-size: 90px;

    color: #38bdf8;

}



.cta-glow {

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    background: rgba(56, 189, 248, .2);

    filter: blur(40px);

}



@media(max-width:1000px) {

    .industry-cta-wrapper {

        grid-template-columns: 1fr;

        padding: 50px 35px;

    }


    .industry-cta-content h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .industry-cta {

        padding: 80px 0;

    }


    .industry-cta-content h2 {

        font-size: 36px;

    }


    .cta-image-placeholder {

        height: 280px;

    }

}

.resources-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 130px;

    background: #ffffff;

}



.resources-background {

    position: absolute;

    inset: 0;

}



.resource-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(3px);

}



.resource-shape.shape-one {

    width: 420px;

    height: 420px;

    background: #dbeafe;

    right: -120px;

    top: -100px;

}



.resource-shape.shape-two {

    width: 280px;

    height: 280px;

    background: #cffafe;

    left: -80px;

    bottom: 80px;

}



.resources-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}



.resources-hero-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.resources-hero-content h1 {

    font-size: 76px;

    line-height: 1.05;

    letter-spacing: -3px;

    color: #071321;

    margin: 30px 0;

}



.resources-hero-content p {

    font-size: 20px;

    line-height: 1.9;

    color: #64748b;

}



.resources-hero-content a {

    margin-top: 40px;

    display: inline-flex;

    gap: 12px;

    align-items: center;

    padding: 18px 35px;

    border-radius: 50px;

    background: #0a6cff;

    color: white;

    font-weight: 700;

}



.resource-library-placeholder {

    height: 520px;

    border-radius: 45px;

    background:

        radial-gradient(circle,

            rgba(37, 99, 235, .15),

            transparent 45%),

        #f8fafc;

    border: 1px solid #e2e8f0;

    position: relative;

    box-shadow: 0 40px 90px rgba(15, 23, 42, .1);

}



.resource-center {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 130px;

    height: 130px;

    border-radius: 40px;

    background: #0a6cff;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 45px;

}



.resource-card {

    position: absolute;

    background: white;

    padding: 20px 25px;

    border-radius: 22px;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .1);

    display: flex;

    gap: 12px;

    align-items: center;

    font-weight: 700;

}



.resource-card i {

    color: #0a6cff;

}



.card-one {

    top: 70px;

    left: 60px;

}



.card-two {

    right: 50px;

    top: 130px;

}



.card-three {

    bottom: 90px;

    left: 100px;

}



@media(max-width:1000px) {

    .resources-hero-grid {

        grid-template-columns: 1fr;

    }


    .resources-hero-content h1 {

        font-size: 55px;

    }

}



@media(max-width:600px) {

    .resources-hero {

        padding-top: 130px;

    }


    .resources-hero-content h1 {

        font-size: 40px;

    }


    .resource-library-placeholder {

        height: 340px;

    }


    .resource-card {

        font-size: 12px;

        padding: 12px;

    }

}

.featured-resources {

    padding: 150px 0;

    background: #f8fafc;

}



.resources-heading {

    max-width: 750px;

    margin-bottom: 80px;

}



.resources-heading span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.resources-heading h2 {

    font-size: 62px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.resources-heading p {

    font-size: 19px;

    color: #64748b;

    line-height: 1.9;

}



.featured-layout {

    display: grid;

    grid-template-columns: 1.3fr .7fr;

    gap: 35px;

}



.featured-main {

    background: white;

    border-radius: 40px;

    overflow: hidden;

    border: 1px solid #e2e8f0;

}



.featured-image-placeholder {

    height: 350px;

    background:

        radial-gradient(circle,

            rgba(37, 99, 235, .2),

            transparent 50%),

        #eaf2ff;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-direction: column;

    gap: 15px;

    color: #64748b;

}



.featured-image-placeholder i {

    font-size: 75px;

    color: #0a6cff;

}



.featured-content {

    padding: 40px;

}



.featured-content span {

    color: #0a6cff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}



.featured-content h3 {

    font-size: 40px;

    line-height: 1.2;

    color: #071321;

    margin: 20px 0;

}



.featured-content p {

    color: #64748b;

    line-height: 1.8;

}



.featured-content a {

    display: flex;

    gap: 10px;

    align-items: center;

    margin-top: 25px;

    color: #0a6cff;

    font-weight: 700;

}



.resource-list {

    display: flex;

    flex-direction: column;

    gap: 20px;

}



.resource-item {

    background: white;

    padding: 30px;

    border-radius: 30px;

    border: 1px solid #e2e8f0;

    display: flex;

    gap: 25px;

    align-items: center;

    transition: .3s;

}



.resource-item:hover {

    transform: translateX(10px);

}



.resource-item-icon {

    width: 65px;

    height: 65px;

    border-radius: 20px;

    background: #dbeafe;

    color: #0a6cff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

}



.resource-item span {

    color: #0a6cff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}



.resource-item h3 {

    margin-top: 8px;

    color: #071321;

    font-size: 20px;

}



@media(max-width:1000px) {

    .featured-layout {

        grid-template-columns: 1fr;

    }


    .resources-heading h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .featured-content {

        padding: 25px;

    }


    .featured-content h3 {

        font-size: 30px;

    }


    .featured-image-placeholder {

        height: 250px;

    }

}

.resource-categories {

    position: relative;

    overflow: hidden;

    padding: 150px 0;

    background:

        linear-gradient(135deg,

            #071321,

            #102a43);

}



.resource-pattern {

    position: absolute;

    width: 600px;

    height: 600px;

    border-radius: 50%;

    background: rgba(56, 189, 248, .08);

    right: -200px;

    top: -200px;

}



.categories-header {

    position: relative;

    z-index: 2;

    max-width: 750px;

    margin-bottom: 80px;

}



.categories-header span {

    color: #38bdf8;

    font-weight: 700;

    letter-spacing: 3px;

}



.categories-header h2 {

    color: white;

    font-size: 62px;

    line-height: 1.1;

    letter-spacing: -2px;

    margin: 25px 0;

}



.categories-header p {

    color: #cbd5e1;

    font-size: 19px;

    line-height: 1.8;

}



.categories-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}



.category-panel {

    position: relative;

    overflow: hidden;

    min-height: 360px;

    padding: 40px;

    border-radius: 35px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(20px);

    transition: .4s;

}



.category-panel:hover {

    transform: translateY(-10px);

}



.category-icon {

    width: 70px;

    height: 70px;

    border-radius: 22px;

    background: rgba(255, 255, 255, .12);

    color: #38bdf8;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    margin-bottom: 30px;

}



.category-panel h3 {

    color: white;

    font-size: 32px;

    margin-bottom: 15px;

}



.category-panel p {

    color: #cbd5e1;

    line-height: 1.8;

    max-width: 420px;

}



.category-visual {

    position: absolute;

    right: 40px;

    bottom: 40px;

    display: flex;

    gap: 10px;

    align-items: flex-end;

}



.category-visual span {

    width: 14px;

    border-radius: 20px;

    background: #38bdf8;

}



.category-visual span:nth-child(1) {

    height: 35px;

}



.category-visual span:nth-child(2) {

    height: 80px;

}



.category-visual span:nth-child(3) {

    height: 120px;

}



@media(max-width:900px) {

    .categories-grid {

        grid-template-columns: 1fr;

    }


    .categories-header h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .category-panel {

        padding: 30px;

    }


    .category-panel h3 {

        font-size: 26px;

    }

}

.resource-cta {

    padding: 140px 0;

    background: #ffffff;

}



.resource-cta-wrapper {

    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns: 1fr .8fr;

    gap: 70px;

    align-items: center;

    padding: 80px;

    border-radius: 45px;

    background:

        linear-gradient(135deg,

            #eff6ff,

            #ecfeff);

    border: 1px solid #dbeafe;

}



.resource-cta-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.resource-cta-content h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.resource-cta-content p {

    font-size: 18px;

    color: #64748b;

    line-height: 1.8;

}



.resource-subscribe {

    display: flex;

    margin-top: 35px;

    background: white;

    padding: 8px;

    border-radius: 50px;

    border: 1px solid #e2e8f0;

    max-width: 500px;

}



.resource-subscribe input {

    flex: 1;

    border: none;

    outline: none;

    padding: 15px 25px;

    font-size: 16px;

    background: transparent;

}



.resource-subscribe button {

    border: none;

    cursor: pointer;

    padding: 15px 25px;

    border-radius: 50px;

    background: #0a6cff;

    color: white;

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 700;

}



.knowledge-visual {

    position: relative;

    height: 350px;

}



.knowledge-core {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 120px;

    height: 120px;

    border-radius: 35px;

    background: #0a6cff;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 40px;

    box-shadow: 0 30px 60px rgba(10, 108, 255, .25);

}



.floating-document {

    position: absolute;

    width: 75px;

    height: 75px;

    border-radius: 22px;

    background: white;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0a6cff;

    font-size: 28px;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .1);

}



.doc-one {

    top: 30px;

    left: 40px;

}



.doc-two {

    right: 50px;

    top: 80px;

}



.doc-three {

    bottom: 40px;

    left: 120px;

}



@media(max-width:1000px) {

    .resource-cta-wrapper {

        grid-template-columns: 1fr;

        padding: 50px 35px;

    }


    .resource-cta-content h2 {

        font-size: 45px;

    }


    .resource-cta-visual {

        display: none;

    }

}



@media(max-width:600px) {

    .resource-cta-content h2 {

        font-size: 36px;

    }


    .resource-subscribe {

        flex-direction: column;

        border-radius: 25px;

    }


    .resource-subscribe button {

        justify-content: center;

    }

}

.about-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 130px;

    background: #ffffff;

}



.about-background {

    position: absolute;

    inset: 0;

}



.about-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

}



.glow-one {

    width: 450px;

    height: 450px;

    background: #dbeafe;

    right: -100px;

    top: -100px;

}



.glow-two {

    width: 300px;

    height: 300px;

    background: #cffafe;

    left: -100px;

    bottom: 50px;

}



.about-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

}



.about-hero-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.about-hero-content h1 {

    font-size: 76px;

    line-height: 1.05;

    letter-spacing: -3px;

    color: #071321;

    margin: 30px 0;

}



.about-hero-content p {

    font-size: 20px;

    line-height: 1.9;

    color: #64748b;

}



.about-hero-content a {

    margin-top: 40px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 18px 35px;

    border-radius: 50px;

    background: #0a6cff;

    color: white;

    font-weight: 700;

}



.company-visual {

    height: 520px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}



.visual-circle {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(10, 108, 255, .15);

}



.circle-large {

    width: 420px;

    height: 420px;

}



.circle-small {

    width: 260px;

    height: 260px;

}



.company-core {

    position: relative;

    z-index: 2;

    width: 150px;

    height: 150px;

    border-radius: 45px;

    background: #0a6cff;

    color: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-weight: 700;

}



.company-core i {

    font-size: 45px;

}



.company-node {

    position: absolute;

    width: 75px;

    height: 75px;

    background: white;

    border-radius: 25px;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #0a6cff;

    font-size: 28px;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .12);

}



.node-one {

    top: 80px;

    left: 80px;

}



.node-two {

    right: 70px;

    top: 120px;

}



.node-three {

    bottom: 80px;

    left: 50%;

}



@media(max-width:1000px) {

    .about-hero-grid {

        grid-template-columns: 1fr;

    }


    .about-hero-content h1 {

        font-size: 55px;

    }

}



@media(max-width:600px) {

    .about-hero {

        padding-top: 130px;

    }


    .about-hero-content h1 {

        font-size: 40px;

    }


    .company-visual {

        height: 350px;

    }


    .circle-large {

        width: 280px;

        height: 280px;

    }

}

.about-story {

    padding: 150px 0;

    background:

        linear-gradient(135deg,

            #eff6ff,

            #ffffff);

}



.story-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

}



.story-image-placeholder {

    height: 520px;

    border-radius: 45px;

    background:

        radial-gradient(circle,

            rgba(10, 108, 255, .18),

            transparent 45%),

        white;

    border: 1px solid #dbeafe;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 20px;

    color: #64748b;

    box-shadow: 0 40px 90px rgba(15, 23, 42, .08);

}



.story-image-placeholder i {

    font-size: 85px;

    color: #0a6cff;

}



.story-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.story-content h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.story-content p {

    font-size: 18px;

    color: #64748b;

    line-height: 1.9;

    margin-bottom: 20px;

}



.story-stats {

    display: flex;

    gap: 25px;

    margin-top: 40px;

}



.story-stats div {

    display: flex;

    flex-direction: column;

    gap: 8px;

}



.story-stats strong {

    font-size: 35px;

    color: #0a6cff;

}



.story-stats span {

    color: #334155;

    font-size: 14px;

    letter-spacing: 0;

}



@media(max-width:1000px) {

    .story-grid {

        grid-template-columns: 1fr;

    }


    .story-content h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .about-story {

        padding: 90px 0;

    }


    .story-image-placeholder {

        height: 320px;

        border-radius: 25px;

    }


    .story-content h2 {

        font-size: 36px;

    }


    .story-stats {

        flex-direction: column;

    }

}

.about-values {

    position: relative;

    overflow: hidden;

    padding: 150px 0;

    background:

        linear-gradient(135deg,

            #071321,

            #102a43);

}



.values-background {

    position: absolute;

    inset: 0;

}



.values-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(60px);

}



.orb-one {

    width: 450px;

    height: 450px;

    background: rgba(56, 189, 248, .15);

    right: -150px;

    top: -100px;

}



.orb-two {

    width: 300px;

    height: 300px;

    background: rgba(37, 99, 235, .2);

    left: -100px;

    bottom: 0;

}



.values-header {

    position: relative;

    z-index: 2;

    max-width: 750px;

    margin-bottom: 80px;

}



.values-header span {

    color: #38bdf8;

    font-weight: 700;

    letter-spacing: 3px;

}



.values-header h2 {

    color: white;

    font-size: 60px;

    line-height: 1.1;

    letter-spacing: -2px;

    margin: 25px 0;

}



.values-header p {

    color: #cbd5e1;

    font-size: 19px;

    line-height: 1.8;

}



.values-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}



.value-box {

    padding: 35px;

    border-radius: 35px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(20px);

    transition: .4s;

}



.value-box:hover {

    transform: translateY(-12px);

    background: rgba(255, 255, 255, .12);

}



.value-icon {

    width: 65px;

    height: 65px;

    border-radius: 20px;

    background: rgba(56, 189, 248, .15);

    color: #38bdf8;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 27px;

    margin-bottom: 25px;

}



.value-box h3 {

    color: white;

    font-size: 26px;

    margin-bottom: 15px;

}



.value-box p {

    color: #cbd5e1;

    line-height: 1.8;

}



@media(max-width:1100px) {

    .values-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .values-header h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .values-grid {

        grid-template-columns: 1fr;

    }


    .values-header h2 {

        font-size: 36px;

    }

}

.value-box {

    opacity: 0;

    transform: translateY(40px);

}



.value-box.active {

    opacity: 1;

    transform: translateY(0);

    transition: .7s ease;

}

.about-final-cta {

    padding: 140px 0;

    background: #f8fafc;

}



.about-final-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}



.about-final-image {

    height: 450px;

    border-radius: 45px;

    background:

        radial-gradient(circle,

            rgba(10, 108, 255, .18),

            transparent 45%),

        white;

    border: 1px solid #dbeafe;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 20px;

    color: #64748b;

    box-shadow: 0 40px 90px rgba(15, 23, 42, .08);

}



.about-final-image i {

    font-size: 90px;

    color: #0a6cff;

}



.about-final-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.about-final-content h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0;

}



.about-final-content p {

    font-size: 19px;

    color: #64748b;

    line-height: 1.9;

}



.about-final-content a {

    margin-top: 35px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: #0a6cff;

    color: white;

    padding: 18px 35px;

    border-radius: 50px;

    font-weight: 700;

}



@media(max-width:1000px) {

    .about-final-wrapper {

        grid-template-columns: 1fr;

    }


    .about-final-content h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .about-final-cta {

        padding: 90px 0;

    }


    .about-final-image {

        height: 300px;

        border-radius: 30px;

    }


    .about-final-content h2 {

        font-size: 36px;

    }

}


.contact-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 120px;

    background: #ffffff;

}



.contact-background {

    position: absolute;

    inset: 0;

}



.contact-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(70px);

}



.contact-orb.orb-one {

    width: 450px;

    height: 450px;

    background: #dbeafe;

    right: -100px;

    top: -100px;

}



.contact-orb.orb-two {

    width: 300px;

    height: 300px;

    background: #cffafe;

    left: -100px;

    bottom: 0;

}



.contact-hero-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

}



.contact-hero-content span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.contact-hero-content h1 {

    font-size: 78px;

    line-height: 1.05;

    letter-spacing: -3px;

    color: #071321;

    margin: 30px 0;

}



.contact-hero-content p {

    font-size: 20px;

    line-height: 1.9;

    color: #64748b;

    max-width: 750px;

}



.contact-quick-links {

    display: flex;

    gap: 25px;

    margin-top: 50px;

}



.contact-quick-links div {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px 25px;

    border-radius: 25px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

}



.contact-quick-links i {

    color: #0a6cff;

}



.contact-quick-links span {

    color: #071321;

    letter-spacing: 0;

    font-size: 15px;

}



@media(max-width:900px) {

    .contact-hero-content h1 {

        font-size: 55px;

    }


    .contact-quick-links {

        flex-direction: column;

    }

}



@media(max-width:600px) {

    .contact-hero {

        padding-top: 130px;

    }


    .contact-hero-content h1 {

        font-size: 40px;

    }

}

.contact-main {

    padding: 150px 0;

    background: #f8fafc;

}



.contact-main-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;

}



.contact-form-wrapper span {

    color: #0a6cff;

    font-weight: 700;

    letter-spacing: 3px;

}



.contact-form-wrapper h2 {

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #071321;

    margin: 25px 0 40px;

}



.contact-form {

    display: flex;

    flex-direction: column;

    gap: 20px;

}



.form-group input,

.form-group select,

.form-group textarea {

    width: 100%;

    border: none;

    outline: none;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 20px;

    padding: 18px 22px;

    font-size: 16px;

    color: #071321;

}



.form-group textarea {

    height: 150px;

    resize: none;

}



.contact-form button {

    width: max-content;

    border: none;

    cursor: pointer;

    background: #0a6cff;

    color: white;

    padding: 18px 35px;

    border-radius: 50px;

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 12px;

}



.contact-info-side {

    display: flex;

    flex-direction: column;

    gap: 30px;

}



.contact-visual-placeholder {

    height: 420px;

    border-radius: 45px;

    background:

        radial-gradient(circle,

            rgba(10, 108, 255, .18),

            transparent 45%),

        white;

    border: 1px solid #dbeafe;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-direction: column;

    gap: 20px;

    color: #64748b;

}



.contact-visual-placeholder i {

    font-size: 90px;

    color: #0a6cff;

}



.contact-details {

    background: white;

    padding: 35px;

    border-radius: 35px;

    border: 1px solid #e2e8f0;

    display: flex;

    flex-direction: column;

    gap: 25px;

}



.contact-details div {

    display: flex;

    gap: 20px;

    align-items: center;

}



.contact-details i {

    width: 55px;

    height: 55px;

    border-radius: 18px;

    background: #dbeafe;

    color: #0a6cff;

    display: flex;

    justify-content: center;

    align-items: center;

}



.contact-details span {

    color: #64748b;

    font-size: 14px;

}



.contact-details p {

    color: #071321;

    margin-top: 5px;

}



@media(max-width:1000px) {

    .contact-main-grid {

        grid-template-columns: 1fr;

    }


    .contact-form-wrapper h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .contact-main {

        padding: 90px 0;

    }


    .contact-form-wrapper h2 {

        font-size: 36px;

    }


    .contact-visual-placeholder {

        height: 300px;

    }

}

.contact-final-cta {

    padding: 140px 0;

    background: #ffffff;

}



.contact-cta-wrapper {

    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    padding: 80px;

    border-radius: 45px;

    background:

        linear-gradient(135deg,

            #071321,

            #0f3557);

}



.contact-cta-wrapper::after {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(56, 189, 248, .12);

    right: -200px;

    top: -200px;

}



.contact-cta-content {

    position: relative;

    z-index: 2;

}



.contact-cta-content span {

    color: #38bdf8;

    font-weight: 700;

    letter-spacing: 3px;

}



.contact-cta-content h2 {

    color: white;

    font-size: 58px;

    line-height: 1.1;

    letter-spacing: -2px;

    margin: 25px 0;

}



.contact-cta-content p {

    color: #cbd5e1;

    font-size: 18px;

    line-height: 1.8;

}



.contact-cta-content a {

    margin-top: 35px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 18px 35px;

    background: white;

    color: #071321;

    border-radius: 50px;

    font-weight: 700;

}



.future-network {

    height: 360px;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}



.network-circle {

    position: absolute;

    width: 280px;

    height: 280px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .15);

}



.network-core {

    width: 110px;

    height: 110px;

    border-radius: 35px;

    background: #38bdf8;

    color: #071321;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 40px;

    z-index: 2;

}



.network-node {

    position: absolute;

    width: 65px;

    height: 65px;

    border-radius: 20px;

    background: white;

    color: #0a6cff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 25px;

}



.node-a {

    top: 40px;

    left: 70px;

}



.node-b {

    right: 60px;

    top: 100px;

}



.node-c {

    bottom: 50px;

    left: 50%;

}



@media(max-width:1000px) {

    .contact-cta-wrapper {

        grid-template-columns: 1fr;

        padding: 50px 35px;

    }


    .contact-cta-content h2 {

        font-size: 45px;

    }

}



@media(max-width:600px) {

    .contact-final-cta {

        padding: 90px 0;

    }


    .contact-cta-content h2 {

        font-size: 36px;

    }


    .contact-cta-visual {

        display: none;

    }

}

.dark-section-divider {

    height: 140px;

    position: relative;

    overflow: hidden;

    background: #071321;

    display: flex;

    align-items: center;

    justify-content: center;

}



.divider-glow {

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    filter: blur(80px);

}



.glow-left {

    background: rgba(56, 189, 248, .18);

    left: -80px;

}



.glow-right {

    background: rgba(37, 99, 235, .2);

    right: -80px;

}



.divider-line {

    width: 180px;

    height: 2px;

    background: rgba(255, 255, 255, .2);

    position: relative;

}



.divider-line span {

    position: absolute;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: #38bdf8;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    box-shadow: 0 0 40px rgba(56, 189, 248, .7);

}

.index-transition {

    padding: 90px 0;

    background: #f8fafc;

}



.transition-content {

    max-width: 850px;

    margin: auto;

    text-align: center;

}



.transition-content span {

    color: #0a6cff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

}



.transition-content h2 {

    margin: 20px 0;

    font-size: 45px;

    line-height: 1.2;

    letter-spacing: -1.5px;

    color: #071321;

}



.transition-content p {

    max-width: 650px;

    margin: auto;

    color: #64748b;

    font-size: 18px;

    line-height: 1.8;

}



@media(max-width:700px) {

    .index-transition {

        padding: 60px 0;

    }


    .transition-content h2 {

        font-size: 32px;

    }


    .transition-content p {

        font-size: 16px;

    }

}

.legal-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 120px;

    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .9), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, .45), transparent 28%),
        radial-gradient(circle at 80% 80%, rgba(56, 189, 248, .18), transparent 30%),
        linear-gradient(135deg,
            #eef6ff 0%,
            #dbeafe 35%,
            #bfdcff 70%,
            #9cc9ff 100%);

}



.legal-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .15),
            rgba(7, 19, 33, .18));

}



.legal-hero .container {

    position: relative;

    z-index: 2;

}



.legal-hero-content {

    max-width: 860px;

}



.legal-hero-content span {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .65);

    border: 1px solid rgba(255, 255, 255, .7);

    backdrop-filter: blur(10px);

    color: #0a6cff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}



.legal-hero-content h1 {

    margin: 28px 0 24px;

    font-size: 72px;

    line-height: 1.05;

    letter-spacing: -3px;

    color: #071321;

    max-width: 760px;

}



.legal-hero-content p {

    max-width: 700px;

    font-size: 20px;

    line-height: 1.9;

    color: #334155;

}



.legal-updated {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 40px;

    padding: 14px 22px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .75);

    border: 1px solid rgba(255, 255, 255, .8);

    color: #0f172a;

    font-weight: 600;

    backdrop-filter: blur(10px);

}



.legal-updated i {

    color: #0a6cff;

}



@media (max-width: 900px) {

    .legal-hero {

        padding: 140px 0 90px;

    }

    .legal-hero-content h1 {

        font-size: 54px;

    }

}



@media (max-width: 700px) {

    .legal-hero {

        padding: 120px 0 70px;

    }

    .legal-hero-content h1 {

        font-size: 40px;

        letter-spacing: -1.5px;

    }

    .legal-hero-content p {

        font-size: 17px;

    }

    .legal-updated {

        width: 100%;

        justify-content: center;

    }

}

.privacy-content {

    padding: 120px 0;

    background: #f8fafc;

}



.privacy-layout {

    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 45px;

    align-items: start;

}



.privacy-nav {

    position: sticky;

    top: 120px;

    padding: 30px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 28px;

}



.privacy-nav h3 {

    margin-bottom: 20px;

    color: #071321;

    font-size: 22px;

}



.privacy-nav a {

    display: block;

    padding: 14px 0;

    color: #475569;

    transition: .3s;

}



.privacy-nav a:hover {

    color: #0a6cff;

    padding-left: 10px;

}



.privacy-sections {

    display: flex;

    flex-direction: column;

    gap: 30px;

}



.privacy-card {

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 30px;

    padding: 40px;

    transition: .35s;

}



.privacy-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);

}



.privacy-card h2 {

    font-size: 32px;

    color: #071321;

    margin-bottom: 20px;

}



.privacy-card p {

    color: #64748b;

    line-height: 1.9;

    font-size: 17px;

}



@media(max-width:1000px) {

    .privacy-layout {

        grid-template-columns: 1fr;

    }



    .privacy-nav {

        position: relative;

        top: 0;

    }

}



@media(max-width:700px) {

    .privacy-content {

        padding: 80px 0;

    }



    .privacy-card {

        padding: 28px;

    }



    .privacy-card h2 {

        font-size: 26px;

    }

}

.privacy-card {

    opacity: 0;

    transform: translateY(40px);

}



.privacy-card.visible {

    opacity: 1;

    transform: translateY(0);

    transition: .6s ease;

}


.legal-terms-hero {

    position: relative;

    overflow: hidden;

    padding: 170px 0 120px;

    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .9), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, .45), transparent 30%),
        radial-gradient(circle at 80% 85%, rgba(245, 158, 11, .12), transparent 35%),
        linear-gradient(135deg,
            #f8fafc 0%,
            #eef2ff 40%,
            #dbeafe 100%);

}



.legal-terms-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(rgba(255, 255, 255, .08),
            rgba(15, 23, 42, .12));

}



.legal-terms-hero .container {

    position: relative;

    z-index: 2;

}

.terms-content {

    padding: 120px 0;

    background: #f8fafc;

}



.terms-layout {

    display: grid;

    grid-template-columns: 280px 1fr;

    gap: 45px;

    align-items: start;

}



.terms-navigation {

    position: sticky;

    top: 120px;

    padding: 30px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 28px;

}



.terms-navigation h3 {

    margin-bottom: 20px;

    color: #071321;

    font-size: 22px;

}



.terms-navigation a {

    display: block;

    padding: 14px 0;

    color: #475569;

    transition: .3s;

}



.terms-navigation a:hover {

    color: #0a6cff;

    padding-left: 10px;

}



.terms-sections {

    display: flex;

    flex-direction: column;

    gap: 25px;

}



.terms-card {

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 30px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 30px;

    padding: 35px;

    transition: .35s;

}



.terms-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);

}



.terms-number {

    width: 70px;

    height: 70px;

    border-radius: 22px;

    background: #dbeafe;

    color: #0a6cff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    font-weight: 700;

}



.terms-body h2 {

    font-size: 30px;

    color: #071321;

    margin-bottom: 18px;

}



.terms-body p {

    color: #64748b;

    line-height: 1.9;

    font-size: 17px;

}



@media(max-width:1000px) {

    .terms-layout {

        grid-template-columns: 1fr;

    }



    .terms-navigation {

        position: relative;

        top: 0;

    }

}



@media(max-width:700px) {

    .terms-content {

        padding: 80px 0;

    }



    .terms-card {

        grid-template-columns: 1fr;

        padding: 28px;

        gap: 20px;

    }



    .terms-body h2 {

        font-size: 26px;

    }

}

.terms-card {

    opacity: 0;

    transform: translateY(40px);

}



.terms-card.show {

    opacity: 1;

    transform: translateY(0);

    transition: .6s ease;

}