/* ========================================
   NUBIEN - Premium AI Agency Template
   Exact Framer-to-Bootstrap 5 Conversion
   Pixel-Perfect CSS Clone
======================================== */

/* ----------------------------------------
   1. CSS VARIABLES (Exact Framer Tokens)
---------------------------------------- */
:root {
    /* Primary Blue (Ocean Wave) */
    --primary-blue: rgb(41, 171, 226);
    --primary-blue-dark: rgb(30, 136, 229);
    --primary-blue-light: rgb(91, 192, 235);
    --primary-blue-20: rgba(41, 171, 226, 0.2);
    --primary-blue-15: rgba(41, 171, 226, 0.15);
    --primary-blue-08: rgba(41, 171, 226, 0.08);

    /* Legacy purple aliases for compatibility */
    --primary-purple: rgb(41, 171, 226);
    --primary-purple-20: rgba(41, 171, 226, 0.2);
    --primary-purple-15: rgba(41, 171, 226, 0.15);
    --primary-purple-08: rgba(41, 171, 226, 0.08);

    /* White Variants (Exact Framer Values) */
    --white: rgb(255, 255, 255);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-07: rgba(255, 255, 255, 0.07);
    --white-05: rgba(255, 255, 255, 0.05);
    --white-02: rgba(255, 255, 255, 0.02);
    --white-00: rgba(255, 255, 255, 0);

    /* Dark Colors (Exact Framer Values) */
    --black: rgb(0, 0, 0);
    --dark-bg: rgb(8, 8, 8);
    --card-bg: rgb(19, 19, 19);
    --black-30: rgba(0, 0, 0, 0.3);
    --black-00: rgba(0, 0, 0, 0);

    /* Gray */
    --gray: rgb(153, 153, 153);
    --gray-10: rgba(153, 153, 153, 0.1);
    --gray-00: rgba(153, 153, 153, 0);
    --dark-gray-09: rgba(97, 97, 97, 0.09);
    --dark-gray-20: rgba(51, 51, 51, 0.2);

    /* Other */
    --light-gray: rgb(239, 238, 236);

    /* Fonts */
    --font-primary: "DM Sans", "DM Sans Placeholder", sans-serif;
    --font-secondary: "Inter", "Inter Placeholder", sans-serif;
}

/* ----------------------------------------
   2. BASE RESET & STYLES (Framer Reset)
---------------------------------------- */
html,
body,
#main {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
    margin: 0;
}

body,
input,
textarea,
select,
button {
    font-size: 12px;
    font-family: sans-serif;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--white-60);
    background-color: var(--black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* ----------------------------------------
   3. TYPOGRAPHY (Exact Framer Values)
---------------------------------------- */
/* H1 - Hero Heading */
h1,
.h1 {
    font-family: var(--font-primary);
    font-size: 86px;
    line-height: 90px;
    letter-spacing: -3.8px;
    font-weight: 400;
    color: var(--white);
}

/* H2 - Section Heading */
h2,
.h2 {
    font-family: var(--font-primary);
    font-size: 54px;
    line-height: 50px;
    letter-spacing: -1.9px;
    font-weight: 400;
    color: var(--white);
}

/* H3 - Card Heading Large */
h3,
.h3 {
    font-family: var(--font-primary);
    font-size: 34px;
    line-height: 36px;
    letter-spacing: -1px;
    font-weight: 500;
    color: var(--white);
}

/* H4 - Card Heading */
h4,
.h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.5px;
    font-weight: 500;
    color: var(--white);
}

/* H5 - Subsection Heading */
h5,
.h5 {
    font-family: var(--font-primary);
    font-size: 28px;
    line-height: 30px;
    letter-spacing: -0.6px;
    font-weight: 500;
    color: var(--white);
}

/* Body Text */
p,
.body-text {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.2px;
    font-weight: 400;
    color: var(--white-50);
    margin: 0;
}

/* Small Text */
.small-text {
    font-family: var(--font-primary);
    font-size: 12px;
    line-height: 10px;
    letter-spacing: -0.5px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Badge/Tag Text */
.badge-text {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 26px;
    letter-spacing: -0.5px;
    font-weight: 500;
}

/* Tablet Typography */
@media (min-width: 810px) and (max-width: 1199px) {

    h1,
    .h1 {
        font-size: 66px;
        line-height: 70px;
        letter-spacing: -3px;
    }

    h2,
    .h2 {
        font-size: 46px;
        line-height: 44px;
        letter-spacing: -1.6px;
    }
}

/* Mobile Typography */
@media (max-width: 809px) {

    h1,
    .h1 {
        font-size: 56px;
        line-height: 55px;
        letter-spacing: -3.4px;
    }

    h2,
    .h2 {
        font-size: 36px;
        line-height: 34px;
        letter-spacing: -1.2px;
    }

    h3,
    .h3 {
        font-size: 28px;
        line-height: 30px;
    }
}

/* ----------------------------------------
   4. UTILITY CLASSES
---------------------------------------- */
.gradient-text {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(153, 153, 153, 0) 410%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white {
    color: var(--white) !important;
}

.text-white-60 {
    color: var(--white-60) !important;
}

.text-white-50 {
    color: var(--white-50) !important;
}

.text-purple {
    color: var(--primary-purple) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-dark {
    background-color: var(--dark-bg) !important;
}

.bg-card {
    background-color: var(--card-bg) !important;
}

/* ----------------------------------------
   5. CONTAINER (Framer Max Width)
---------------------------------------- */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
}

@media (min-width: 810px) and (max-width: 1199px) {
    .container {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 809px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Wide Container */
.container-wide {
    max-width: 1480px;
    width: 100%;
    padding: 0 80px;
}

/* ----------------------------------------
   6. BUTTONS (Exact Framer Styles)
---------------------------------------- */
.btn {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 26px;
    padding: 10px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Primary Blue Button (Ocean Wave) */
.btn-purple {
    background: linear-gradient(180deg, rgb(30, 136, 229) 0%, rgb(91, 192, 235) 100%);
    border: 1px solid var(--white-15);
    color: var(--white);
    box-shadow: 0px 0px 0px 0px rgba(41, 171, 226, 0.3);
}

.btn-purple:hover {
    transform: scale(1.02);
    box-shadow: 0px 10px 30px rgba(41, 171, 226, 0.4);
    color: var(--white);
}

/* White/Light Button */
.btn-white {
    background-color: rgb(239, 238, 236);
    color: var(--dark-bg);
    border: none;
}

.btn-white:hover {
    background-color: var(--white);
    transform: scale(1.02);
    color: var(--dark-bg);
}

/* Gray/Outline Button */
.btn-gray {
    background-color: var(--white-15);
    border: 1px solid var(--white-10);
    color: var(--white);
}

.btn-gray:hover {
    background-color: var(--white-20);
    color: var(--white);
}

/* Dark Button */
.btn-dark {
    background-color: var(--dark-bg);
    border: 1px solid var(--white-05);
    color: var(--white);
    border-radius: 10px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--white-10);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white-05);
    border-color: var(--white-15);
    color: var(--white);
}

/* Button with Icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon svg,
.btn-icon i {
    width: 16px;
    height: 16px;
}

/* ----------------------------------------
   7. NAVIGATION (Exact Framer Header)
---------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 6.64%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--white-10);
    z-index: 10;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 25px;
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: var(--white-60) !important;
    padding: 10px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile Navigation */
@media (max-width: 809px) {
    .navbar {
        padding: 0 30px;
        height: 84px;
        max-width: 100%;
        background: linear-gradient(180deg, rgba(19, 19, 19, 0.5) 6.64%, rgba(0, 0, 0, 0.3) 100%);
        backdrop-filter: blur(20px);
    }
}

.navbar-toggler {
    border: 1px solid var(--white-15);
    padding: 8px 12px;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.6%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 20px;
    margin-top: 10px;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent;
        padding: 0;
        margin-top: 0;
    }
}

/* ----------------------------------------
   8. TAG BADGE / SECTION LABELS
---------------------------------------- */
.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, var(--white-08) -100%, var(--white-05) 100%);
    border: 1px solid var(--white-05);
    border-radius: 100px;
    padding: 6px 16px 6px 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-60);
    letter-spacing: -0.5px;
}

.tag-badge .highlight {
    background: linear-gradient(180deg, rgb(30, 136, 229) 0%, rgb(91, 192, 235) 100%);
    border: 2px solid var(--white-15);
    border-radius: 26px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 10px;
}

/* Section Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-bg);
    border: 1px solid var(--white-05);
    border-radius: 100px;
    padding: 6px 16px 6px 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 26px;
}

.section-label img {
    width: 20px;
    height: 20px;
}

/* ----------------------------------------
   9. HERO SECTION (Exact Framer Layout)
---------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 150px 80px 0;
    position: relative;
    overflow: hidden;
    max-width: 1440px;
    margin: 0 auto;
}

.hero-glow {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.hero-glow img {
    height: auto;
    object-fit: cover;
    object-position: bottom;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero h1 {
    margin-bottom: 0;
}

.hero h1.gradient-text {
    margin-bottom: 30px;
}

.hero p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.2px;
    color: var(--white-50);
    max-width: 460px;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Tablet */
@media (min-width: 810px) and (max-width: 1199px) {
    .hero {
        padding: 120px 50px 0;
    }
}

/* Hero Mobile */
@media (max-width: 809px) {
    .hero {
        padding: 100px 30px 0;
    }
}

/* Logo Marquee - Inside the glow arc */
.hero-logos-wrapper {
    width: 34em;
    position: relative;
    bottom: 80px;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-logos {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.hero-logos .logo-img {
    height: 28px;
    width: auto;
    opacity: 0.4;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.hero-logos .logo-img:hover {
    opacity: 0.7;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ----------------------------------------
   10. ELLIPSE ORBIT / FEATURES
   JavaScript-controlled 3D ellipse with cards facing viewer
---------------------------------------- */
.ellipse-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 1000px;
    pointer-events: auto;
    z-index: 1;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.orbit-card {
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgb(8, 8, 8);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 26px;
    padding: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.orbit-card:hover {
    box-shadow: 0 12px 32px rgba(79, 26, 214, 0.3);
}

.orbit-card-inner {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.orbit-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orbit-card-border {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    border-top-width: 1px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.15) 100%);
    pointer-events: none;
}

/* Responsive */
@media (min-width: 810px) and (max-width: 1199px) {
    .ellipse-orbit {
        width: 900px;
        height: 550px;
    }

    .orbit-card {
        width: 90px;
        height: 90px;
        border-radius: 22px;
        padding: 4px;
    }

    .orbit-card-inner {
        border-radius: 18px;
    }

    .orbit-card-border {
        border-radius: 18px;
    }
}

@media (max-width: 809px) {
    .ellipse-orbit {
        width: 500px;
        height: 350px;
    }

    .orbit-card {
        width: 65px;
        height: 65px;
        border-radius: 16px;
        padding: 3px;
    }

    .orbit-card-inner {
        border-radius: 13px;
    }

    .orbit-card-border {
        border-radius: 13px;
    }
}

@media (max-width: 576px) {
    .ellipse-orbit {
        width: 340px;
        height: 240px;
    }

    .orbit-card {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        padding: 2px;
    }

    .orbit-card-inner {
        border-radius: 10px;
    }

    .orbit-card-border {
        border-radius: 10px;
    }
}

/* ----------------------------------------
   11. ABOUT INTRO SECTION
---------------------------------------- */
.about-intro {
    padding: 60px 0 60px;
    text-align: center;
}

.about-intro-text {
    font-family: var(--font-primary);
    font-size: 42px;
    line-height: 1.3;
    font-weight: 400;
    letter-spacing: -1.5px;
    color: var(--white-30);
    margin: 0 auto 40px;
}

.about-intro-text .word {
    display: inline-block;
    transition: color 0.3s ease;
}

.about-intro-text .word.active {
    color: var(--white);
}

@media (min-width: 810px) and (max-width: 1199px) {
    .about-intro {
        padding: 100px 50px;
    }

    .about-intro-text {
        font-size: 34px;
    }
}

@media (max-width: 809px) {
    .about-intro {
        padding: 80px 30px;
    }

    .about-intro-text {
        font-size: 26px;
    }
}

/* ----------------------------------------
   11b. ABOUT US SECTION (After FAQ)
---------------------------------------- */
.about-section {
    padding: 80px 0;
}

.about-section>.container>.row {
    align-items: flex-start;
}

.about-section .col-lg-6:last-child {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.about-header {
    margin-bottom: 40px;
}

.about-title h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.1;
    margin: 0;
}

.about-title h2.gradient-text {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(153, 153, 153, 0) 410%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white-60);
    margin-top: 24px;
    max-width: 400px;
}

/* About Cards Wrapper */
.about-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* About Sticky Image */
.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--white-10);
}

/* About Info Cards */
.about-info-card {
    background: var(--dark-bg);
    border: 1px solid var(--white-07);
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-info-card-inner {
    background: var(--dark-bg);
    border: 1px solid rgba(41, 171, 226, 0.15);
    border-radius: 18px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.about-info-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(41, 171, 226, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-icon-box {
    width: 40px;
    height: 40px;
    background: var(--dark-bg);
    border: 1px solid rgba(41, 171, 226, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(41, 171, 226, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card-tag {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(97, 97, 97, 0.08) 100%);
    border: 1px solid var(--white-05);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--white-60);
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-content h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.card-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    margin-bottom: 16px;
}

.card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--white-50);
    margin: 0;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.info-tag {
    background: linear-gradient(180deg, rgba(41, 171, 226, 0.15) 0%, rgba(97, 97, 97, 0.08) 100%);
    border: 1px solid var(--white-05);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
}

.card-cta {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .about-header {
        text-align: center;
    }

    .about-title h2 {
        font-size: 36px;
    }

    .about-description {
        max-width: 100%;
    }

    .about-section .col-lg-6:last-child {
        position: static;
    }

    .about-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .about-title h2 {
        font-size: 28px;
    }

    .card-content h4 {
        font-size: 18px;
    }

    .tag-badge {
        font-size: 10px;
    }
}

/* ----------------------------------------
   12. FEATURES FLOATING SECTION
---------------------------------------- */
.features-floating {
    padding: 180px 0;
    position: relative;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.features-floating-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 40% 40% at 50% 50%, rgba(41, 171, 226, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.features-floating-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.features-floating-content h2 {
    font-size: 54px;
    line-height: 50px;
    margin-bottom: 0;
}

.features-floating-content p {
    max-width: 400px;
    margin-bottom: 10px;
}

@media (max-width: 809px) {
    .features-floating-content h2 {
        font-size: 36px;
        line-height: 34px;
    }
}

/* ----------------------------------------
   13. SECTION CONTAINERS
---------------------------------------- */
.section {
    max-width: 1480px;
    width: 100%;
    padding: 120px 80px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.section-header {
    max-width: 630px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.section-header h2 {
    margin-bottom: 0;
}

.section-header p {
    max-width: 460px;
    margin-top: 10px;
}

/* Responsive */
@media (min-width: 810px) and (max-width: 1199px) {
    .section {
        padding: 100px 50px;
    }
}

@media (max-width: 809px) {
    .section {
        padding: 80px 30px;
    }
}

/* ----------------------------------------
   14. SERVICES SECTION
---------------------------------------- */
.services {
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(50px, 1fr));
    gap: 24px;
    max-width: 1160px;
}

.service-card {
    background-color: var(--dark-bg);
    border: 1px solid var(--white-07);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--white-15);
    transform: translateY(-4px);
}

.service-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: -0.3px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.service-card h4 {
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    line-height: 22px;
    color: var(--white-50);
    margin: 0;
}

/* Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}

.service-tag-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-bg);
    border: 1px solid var(--white-07);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.5px;
}

.service-tag-item img {
    width: 16px;
    height: 16px;
}

/* Tablet */
@media (min-width: 810px) and (max-width: 1199px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(50px, 1fr));
    }
}

/* Mobile */
@media (max-width: 809px) {
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}

/* ----------------------------------------
   15. PORTFOLIO SECTION
---------------------------------------- */
.portfolio {
    padding: 120px 0;
}

.portfolio-card {
    background-color: var(--dark-bg);
    border: 1px solid var(--white-07);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow:
        0 0.6px 1.8px rgba(0, 0, 0, 0.02),
        0 2.3px 6.9px rgba(0, 0, 0, 0.03),
        0 10px 31px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    border-color: var(--white-15);
    transform: translateY(-8px);
}

.portfolio-card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.05);
}

.portfolio-card-content {
    padding: 30px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.portfolio-tag {
    display: inline-block;
    background: var(--white-05);
    border: 1px solid var(--white-07);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--white-60);
    letter-spacing: -0.5px;
}

.portfolio-card-content h3 {
    margin-bottom: 8px;
}

.portfolio-card-content .year {
    font-size: 14px;
    color: var(--white-50);
    margin-bottom: 20px;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.feature-item .icon {
    width: 20px;
    height: 20px;
    color: var(--primary-purple);
}

/* ----------------------------------------
   16. PRICING SECTION
---------------------------------------- */
.pricing {
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(50px, 1fr));
    gap: 20px;
    max-width: 1160px;
}

.pricing-card {
    background-color: var(--dark-bg);
    border: 1px solid var(--white-07);
    border-radius: 30px;
    padding: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card-inner {
    background-color: var(--dark-bg);
    border-radius: 24px;
    padding: 30px;
}

.pricing-card:hover {
    border-color: var(--white-15);
}

.pricing-card.featured {
    border-color: var(--primary-purple);
}

.pricing-card.featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgb(30, 136, 229) 0%, rgb(91, 192, 235) 100%);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--white-07);
}

.pricing-header h4 {
    margin-bottom: 8px;
}

.pricing-header .price {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-header .price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-50);
    letter-spacing: 0;
}

.pricing-header p {
    font-size: 14px;
    color: var(--white-50);
    margin: 10px 0 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--white-60);
    letter-spacing: -0.5px;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

/* Tablet */
@media (min-width: 810px) and (max-width: 1199px) {
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(50px, 1fr));
    }
}

/* Mobile */
@media (max-width: 809px) {
    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}

/* ----------------------------------------
   17. TESTIMONIALS SECTION
---------------------------------------- */
.testimonials {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(50px, 1fr));
    gap: 20px;
    max-width: 1160px;
}

.testimonial-card {
    background-color: var(--dark-bg);
    border: 1px solid var(--white-07);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--white-15);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--primary-purple);
    fill: var(--primary-purple);
}

.testimonial-card blockquote {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.7;
    color: var(--white-60);
    margin: 0 0 24px;
    padding: 0;
    border: none;
    letter-spacing: -0.3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white-10);
}

.testimonial-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.testimonial-author-info p {
    font-size: 13px;
    color: var(--white-50);
    margin: 0;
}

/* Tablet */
@media (min-width: 810px) and (max-width: 1199px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(50px, 1fr));
    }
}

/* Mobile */
@media (max-width: 809px) {
    .testimonials-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}

/* ----------------------------------------
   18. FAQ SECTION
---------------------------------------- */
.faq {
    padding: 120px 0;
}

.faq-header {
    position: sticky;
    top: 120px;
}

.faq>.container>.row {
    align-items: flex-start;
}

.faq>.container>.row>.col-lg-5 {
    position: sticky;
    top: 120px;
}

.faq-header h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.1;
    margin: 0;
}

.faq-header h2.gradient-text {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(153, 153, 153, 0) 410%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white-60);
    margin-top: 24px;
    max-width: 400px;
}

@media (max-width: 991px) {
    .faq-header {
        position: static;
        text-align: center;
    }

    .faq>.container>.row>.col-lg-5 {
        position: static;
    }

    .faq-header h2 {
        font-size: 36px;
    }

    .faq-description {
        max-width: 100%;
    }
}

/* Bootstrap Accordion Override */
.faq-accordion .accordion-item {
    background: transparent;
    border: 1px solid var(--white-10);
    border-radius: 16px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 500;
    padding: 24px 28px;
    box-shadow: none;
    border-radius: 16px !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--white-15);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3e%3cline x1='12' y1='5' x2='12' y2='19'%3e%3c/line%3e%3cline x1='5' y1='12' x2='19' y2='12'%3e%3c/line%3e%3c/svg%3e");
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3e%3cline x1='12' y1='5' x2='12' y2='19'%3e%3c/line%3e%3cline x1='5' y1='12' x2='19' y2='12'%3e%3c/line%3e%3c/svg%3e");
    transform: rotate(45deg);
}

.faq-accordion .accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: var(--white);
    font-size: 15px;
    line-height: 1.7;
    padding: 0 28px 24px;
}

.faq-accordion .accordion-collapse {
    border-top: 1px solid var(--white-07);
}

/* ----------------------------------------
   19. CONTACT SECTION
---------------------------------------- */
.contact {
    padding: 120px 0;
}

.contact-card {
    background-color: var(--dark-bg);
    border: 1px solid var(--white-07);
    border-radius: 30px;
    padding: 100px 80px 60px;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    margin-bottom: 16px;
}

.contact-form {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.form-control {
    width: 100%;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 18px;
    padding: 10px 10px 10px 12px;
    background-color: var(--dark-bg);
    border: 1px solid var(--white-07);
    border-radius: 10px;
    color: var(--white);
    transition: border-color 0.3s ease;
}

.form-control::placeholder {
    color: var(--white-30);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-purple);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 809px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 60px 30px 40px;
    }
}

/* ----------------------------------------
   20. FOOTER
---------------------------------------- */
.footer {
    margin: 0 auto;
    padding: 100px 80px 24px;
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.footer-main {
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.footer-brand {
    flex: 2;
}

.footer-brand img {
    height: 25px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--white-50);
    max-width: 280px;
}

.footer-links-col {
    flex: 1;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--white-50);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-newsletter {
    flex: 2;
}

.footer-newsletter .form-control {
    margin-bottom: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--white-05);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--white-50);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-10);
    border-radius: 8px;
    color: var(--white-50);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

/* Tablet */
@media (min-width: 810px) and (max-width: 1199px) {
    .footer {
        padding: 100px 50px 24px;
    }

    .footer-main {
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 809px) {
    .footer {
        padding: 80px 30px 24px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ----------------------------------------
   20.5 FEATURES GRID SECTION
---------------------------------------- */
.features-grid-section {
    padding: 80px 0 100px;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--white-08);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(41, 171, 226, 0.5) 50%,
            transparent 100%);
    opacity: 1;
}

.feature-card:hover {
    border-color: var(--white-15);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 26, 214, 0.2) 0%, rgba(79, 26, 214, 0.05) 100%);
    border-radius: 12px;
    color: var(--primary-purple);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white-60);
    margin: 0;
}

/* Features Grid Responsive */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid-section {
        padding: 60px 0 80px;
    }
}

@media (max-width: 575px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .features-grid-section {
        padding: 50px 0 60px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-card h4 {
        font-size: 18px;
    }
}

/* ----------------------------------------
   21. SEPARATOR / DIVIDER
---------------------------------------- */
.separator {
    width: 100%;
    max-width: 1300px;
    height: 1px;
    margin: 0 auto;
    border: none;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.02) 100%);
}

/* Vertical Divider */
.divider-vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(270deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
}

/* ----------------------------------------
   22. ICON CONTAINERS
---------------------------------------- */
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-purple-08);
    border: 1px solid var(--primary-purple-15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle svg,
.icon-circle i {
    width: 24px;
    height: 24px;
    color: var(--primary-purple);
}

.icon-sm {
    width: 36px;
    height: 36px;
}

.icon-md {
    width: 44px;
    height: 44px;
}

.icon-lg {
    width: 110px;
    height: 110px;
}

/* ----------------------------------------
   23. CARDS (General)
---------------------------------------- */
.card-section {
    background-color: var(--dark-bg);
    border: 1px solid var(--white-05);
    border-radius: 20px;
    padding: 100px 80px 60px;
    overflow: hidden;
}

.card-feature {
    background-color: var(--dark-bg);
    border: 1px solid var(--white-07);
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 -9px 12px 1px rgba(0, 0, 0, 0.25);
}

/* Card Glow Effect */
.card-glow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
}

/* ----------------------------------------
   24. BACKGROUND EFFECTS
---------------------------------------- */
.fade-bottom {
    background: linear-gradient(180deg, transparent 0%, #000000 100%);
}

.fade-top {
    background: linear-gradient(180deg, #000000 0%, transparent 100%);
}

.glow-bg {
    background: radial-gradient(ellipse at center, rgba(79, 26, 214, 0.3) 0%, transparent 70%);
    opacity: 0.8;
}

/* ----------------------------------------
   25. ANIMATIONS
---------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delay */
.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

/* ----------------------------------------
   26. SCROLL TO TOP BUTTON
---------------------------------------- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    border: none;
    border-radius: 12px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(79, 26, 214, 0.4);
}

/* ----------------------------------------
   27. PRELOADER
---------------------------------------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--white-10);
    border-top-color: var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ----------------------------------------
   28. COMPARISON TABLE
---------------------------------------- */
.comparison {
    padding: 120px 0;
}

.comparison-table {
    background-color: var(--dark-bg);
    border: 1px solid var(--white-07);
    border-radius: 24px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--white-07);
}

.comparison-header>div {
    padding: 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.comparison-header>div:first-child {
    text-align: left;
}

.comparison-header>div.featured {
    background: var(--primary-purple-08);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--white-05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row>div {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white-60);
}

.comparison-row>div:first-child {
    justify-content: flex-start;
    color: var(--white);
}

.comparison-row>div.featured {
    background: var(--primary-purple-08);
}

.comparison-check {
    width: 24px;
    height: 24px;
    color: var(--primary-purple);
}

.comparison-cross {
    width: 24px;
    height: 24px;
    color: var(--white-30);
}

/* ----------------------------------------
   29. GRIDS (Exact Framer Values)
---------------------------------------- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(50px, 1fr));
    gap: 24px;
    max-width: 1160px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(50px, 1fr));
    gap: 24px;
}

/* Tablet */
@media (min-width: 810px) and (max-width: 1199px) {
    .grid-3 {
        grid-template-columns: repeat(2, minmax(50px, 1fr));
    }
}

/* Mobile */
@media (max-width: 809px) {

    .grid-3,
    .grid-2 {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}

/* ----------------------------------------
   30. FLEX UTILITIES
---------------------------------------- */
.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gap-0 {
    gap: 0;
}

.gap-8 {
    gap: 8px;
}

.gap-10 {
    gap: 10px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.gap-20 {
    gap: 20px;
}

.gap-24 {
    gap: 24px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

.gap-60 {
    gap: 60px;
}

.features-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 0 0px;
    overflow: hidden;
    background: #050508;
}

/* Cards Slider - Shows 7 at a time, centered */
.cards-slider-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 40px 0 60px;
}

/* Top and Bottom horizontal lines */
.cards-slider-wrapper::before,
.cards-slider-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(41, 171, 226, 0.3) 20%, rgba(41, 171, 226, 0.5) 50%, rgba(41, 171, 226, 0.3) 80%, transparent 100%);
}

.cards-slider-wrapper::before {
    top: 0;
}

.cards-slider-wrapper::after {
    bottom: 0;
}

.cards-slider-track {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    animation: sliderSlide 20s linear infinite;
}

@keyframes sliderSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slider-card {
    flex-shrink: 0;
    width: 160px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, opacity 0.5s ease;
    background: #0a0b12;
    border: 2px solid rgba(41, 171, 226, 0.6);
    padding: 4px;
}

.slider-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive Cards Slider */
@media (max-width: 1024px) {
    .cards-slider-wrapper {
        max-width: 100%;
    }

    .slider-card {
        width: 120px;
        height: 200px;
    }

    .cards-slider-track {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .cards-slider-wrapper {
        margin-bottom: 20px;
        padding-bottom: 30px;
    }

    .slider-card {
        width: 80px;
        height: 140px;
    }

    .cards-slider-track {
        gap: 12px;
    }

    .features-section {
        min-height: auto;
        padding: 20px 0 30px;
    }
}

@media (max-width: 480px) {
    .slider-card {
        width: 55px;
        height: 95px;
        border-radius: 8px;
    }

    .cards-slider-track {
        gap: 8px;
    }
}

/* Center Content */
.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 550px;
    padding: 0 20px;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.features-badge .icon {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-badge .icon svg {
    width: 10px;
    height: 10px;
    fill: white;
}

.features-badge span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.main-heading {
    font-size: 48px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #7c3aed);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.4);
}

/* Services CTA Section */
.services-cta {
    position: relative;
    background: #050508;
    padding: 120px 20px 80px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.services-cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 0;
}

.services-cta-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.5;
}

.services-cta-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #050508 100%);
    pointer-events: none;
}

.services-cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(180deg, rgba(41, 171, 226, 0.3) 0%, rgba(30, 136, 229, 0.15) 30%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.services-cta-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    border-radius: 24px 24px 0 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 2;
    mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, black 0%, transparent 80%);
}

.services-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 50px;
}

.services-cta-content .section-label {
    justify-content: center;
    margin-bottom: 30px;
}

.services-cta-content h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.1;
    margin: 0;
}

.services-cta-content h2.gradient-text {
    margin-bottom: 24px;
}

.services-cta-content p {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--white-60);
    line-height: 1.6;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .services-cta-content h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .services-cta-content p br {
        display: none;
    }
}

/* Feature Cards Section */
.cards-section {
    background: #050508;
    padding: 0px 20px 60px;
    position: relative;
}

.service-cards {
    background-color: #07080d;
    padding-bottom: 100px;
    border-radius: 0px 0px 24px 24px;
}

.cards-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(41, 171, 226, 0.5) 20%,
            rgba(91, 192, 235, 0.9) 50%,
            rgba(41, 171, 226, 0.5) 80%,
            transparent 100%);
    border-radius: 0 0 4px 4px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgb(30, 136, 229), rgb(91, 192, 235));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.card-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 12px;
}

.card-description {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .cards-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 1100px) and (min-width: 901px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive Content Styles */
@media (max-width: 800px) {
    .main-heading {
        font-size: 32px;
    }

    .subtitle {
        font-size: 13px;
    }
}

/* ----------------------------------------
   MOBILE RESPONSIVE (360px+)
---------------------------------------- */
@media (max-width: 576px) {

    /* Container */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Navigation */
    .navbar {
        padding: 0 16px;
        height: 70px;
    }

    .navbar-brand img {
        height: 28px;
    }

    .navbar-collapse {
        padding: 16px;
        margin-top: 8px;
    }

    /* Hero Section */
    .hero {
        padding: 80px 16px 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .hero h1.gradient-text {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .tag-badge {
        font-size: 10px;
        padding: 8px 14px;
    }

    /* Hero Logos */
    .hero-logos-wrapper {
        width: 100%;
        max-width: 280px;
        bottom: 40px;
    }

    .hero-logos {
        gap: 40px;
    }

    .hero-logos .logo-img {
        height: 20px;
    }

    .hero-glow img {
        max-width: 450px;
    }

    .hero-glow {
        display: flex;
        justify-content: center;
    }

    /* Section Labels */
    .section-label {
        font-size: 12px;
        padding: 8px 14px;
    }

    /* About Intro */
    .about-intro {
        padding: 60px 0 0px;
    }

    .about-intro-text {
        font-size: 22px;
        line-height: 1.5;
    }

    /* Separator */
    .separator {
        margin: 20px auto;
    }

    /* Cards Slider */
    .slider-card {
        width: 120px;
        height: 180px;
        margin: 0 6px;
        border-radius: 12px;
    }

    /* Services CTA */
    .services-cta {
        padding: 60px 20px;
        border-radius: 24px;
    }

    .services-cta h2 {
        font-size: 28px;
    }

    .services-cta p {
        font-size: 14px;
    }

    /* Feature Cards */
    .service-cards {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .feature-card {
        padding: 24px;
        border-radius: 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 13px;
    }

    /* FAQ Section */
    .faq {
        padding: 30px 0;
    }

    .faq-header h2 {
        font-size: 32px;
    }

    .faq-description {
        font-size: 14px;
    }

    .faq-accordion .accordion-button {
        font-size: 15px;
        padding: 16px 20px;
    }

    .faq-accordion .accordion-body {
        font-size: 14px;
        padding: 0 20px 16px;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-title h2 {
        font-size: 32px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-info-card {
        border-radius: 20px;
        padding: 6px;
    }

    .about-info-card-inner {
        padding: 20px;
        border-radius: 16px;
    }

    .card-content h4 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 14px;
    }

    .info-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-brand p {
        font-size: 14px;
    }

    .footer-links-col {
        text-align: center;
    }

    .footer-newsletter {
        max-width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Scroll to Top */
    .scroll-top {
        width: 44px;
        height: 44px;
        right: 16px;
        bottom: 16px;
    }
}

/* Extra Small Devices (360px) */
@media (max-width: 400px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero h1,
    .hero h1.gradient-text {
        font-size: 32px;
    }

    .about-intro-text {
        font-size: 20px;
    }

    .services-cta h2 {
        font-size: 24px;
    }

    .faq-header h2,
    .about-title h2 {
        font-size: 28px;
    }

    .slider-card {
        width: 160px;
        height: 220px;
    }
}

/* ===== Footer CTA Section ===== */
.footer-cta {
    position: relative;
    background: linear-gradient(180deg, #050508 0%, #0a0b12 100%);
    padding: 120px 20px 80px;
    overflow: hidden;
    border-radius: 24px;
}

.footer-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 0;
}

.footer-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.35;
}

.footer-cta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #050508 100%);
    pointer-events: none;
}

.footer-cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(180deg, rgba(41, 171, 226, 0.3) 0%, rgba(30, 136, 229, 0.15) 30%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.footer-cta-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    border-radius: 24px 24px 0 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 2;
    mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, black 0%, transparent 80%);
}

.footer-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 50px;
}

.footer-cta-content .section-label {
    justify-content: center;
    margin-bottom: 30px;
}

.footer-cta-content h2 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.1;
    margin: 0;
}

.footer-cta-content h2.gradient-text {
    margin-bottom: 24px;
}

/* Footer CTA Mobile */
@media (max-width: 809px) {
    .footer-cta-content h2 {
        font-size: 28px;
        line-height: 1.1;
        letter-spacing: -1.2px;
    }
}

.footer-cta-content p {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--white-70);
    line-height: 1.6;
    margin-top: 24px;
    margin-bottom: 0;
}

/* Contact Form in Footer CTA */
.contact-form-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: var(--white-50);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(41, 171, 226, 0.5);
    box-shadow: 0 0 0 3px rgba(41, 171, 226, 0.15);
    color: var(--white);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
}

.contact-form .invalid-feedback {
    text-align: left;
    font-size: 12px;
}

.contact-form textarea.form-control {
    resize: none;
}

#formSuccess {
    background: rgba(25, 135, 84, 0.15);
    border: 1px solid rgba(25, 135, 84, 0.3);
    color: #75d9a0;
    border-radius: 8px;
}

/* Simple Footer */
.footer-simple {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0;
}

.footer-simple .footer-info {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: var(--white-70);
}

.footer-simple .footer-info i {
    color: var(--white-50);
}

.footer-simple .footer-info a {
    color: var(--white-70);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-simple .footer-info a:hover {
    color: rgb(41, 171, 226);
}

.footer-simple .footer-logo img {
    height: 48px;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(1);
}

.footer-simple .footer-logo:hover img {
    opacity: 1;
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* Footer Contact Info */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--white-50);
}

.footer-contact li span,
.footer-contact li a {
    flex: 1;
}