* {
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
    --tg-body-font-family: 'Outfit', sans-serif;
    --tg-heading-font-family: 'Plus Jakarta Sans', sans-serif;
    --tg-body-background: #050816;
    --tg-primary-color: #D6F966;
    --tg-secondary-color: #090B1B;
    --tg-body-font-color: white;
}
:root {
    scroll-behavior: auto;
}

body {
    font-family: var(--tg-body-font-family);
    background: var(--tg-body-background);
    color: var(--tg-body-font-color);
}


/* ==========================
        HEADER
========================== */

/* ==========================
        STICKY HEADER
========================== */

.main-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    transition: 0.4s ease;
}

/* ACTIVE ON SCROLL */

.main-header.scrolled {
    position: fixed;
    padding: 12px 0;
    background: rgba(5, 8, 22, 0.75);
    backdrop-filter: blur(20px);
}

/* NAVBAR */

.navbar {
    background: rgba(5, 8, 22, 0.45);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 25px;
    padding: 12px 25px;
    transition: 0.4s ease;
}

.main-header.scrolled .navbar {
    background: rgba(5, 8, 22, 0.9);
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(37, 99, 235, 0.15);
}

.navbar {
    background: rgba(5, 8, 22, 0.65);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 25px;
    padding: 12px 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* LOGO */

.navbar-brand {
    font-family: var(--tg-heading-font-family);
    font-size: 32px;
    font-weight: 800;
    color: white !important;
    letter-spacing: -1px;
}

.navbar-brand span {
    background: linear-gradient(90deg, #38bdf8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* MENU */

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: #94a3b8 !important;
    font-weight: 500;
    padding: 12px 6px !important;
    border-radius: 12px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

/* DROPDOWN */

.dropdown-menu {
    margin-top: 15px;
    padding: 12px;
    background: #0f172a;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.dropdown-item {
    color: #94a3b8;
    padding: 12px 18px;
    border-radius: 12px;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
}

/* BUTTON */

.header-btn {
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.header-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.7);
}

/* MOBILE */

.navbar-toggler {
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
}

.navbar-toggler i {
    font-size: 28px;
}

@media (max-width: 991px) {
    .navbar {
        border-radius: 20px;
    }

    .navbar-collapse {
        background: #050816;
        margin-top: 15px;
        padding: 20px;
        border-radius: 20px;
        border: 1px solid rgba(56, 189, 248, 0.15);
    }

    .header-btn {
        display: inline-block;
        margin-top: 15px;
    }
}




/* ==========================
        HERO
========================== */

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, #2563eb55, transparent 35%),
        radial-gradient(circle at bottom left, #06b6d433, transparent 35%);
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, .15);
    left: -250px;
    top: 100px;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .05);
    right: -450px;
    top: -300px;
}



@media (max-width: 768px) {

    .hero-section::before {
        width: 300px;
        height: 300px;
        left: -150px;
        top: 40px;
    }

    .hero-section::after {
        width: 450px;
        height: 450px;
        right: -220px;
        top: -150px;
    }

    .slider-wrapper {
        margin-top: 2rem;
    }
}

/* TEXT */
.subtitle {
    color: #38bdf8;
    letter-spacing: 6px;
    font-size: 14px;
}

.hero-title {
    font-size: 85px;
    line-height: .95;
    font-weight: 900;
    letter-spacing: -3px;
}

.hero-title span {
    background:
        linear-gradient(90deg, #38bdf8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: #94a3b8;
    font-size: 20px;
    max-width: 520px;
}

/* BUTTONS */
.btn-primary-custom {
    background:
        linear-gradient(135deg, #2563eb, #06b6d4);
    border: none;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary-custom:hover {
    box-shadow:
        0 0 30px rgba(56, 189, 248, .6);
    color: white;
}

.btn-outline-custom {
    border: 1px solid #334155;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
}

.btn-outline-custom:hover {
    background: #0f172a;
    color: white;
}

/* ==========================
        SLIDER AREA
========================== */
.slider-wrapper {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel {
    width: 90%;
    padding: 20px;
}

.carousel-inner {
    border-radius: 30px;
    overflow: hidden;
}

.slider-img {
    height: 550px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    border: 1px solid rgba(56, 189, 248, .25);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, .6),
        0 0 40px rgba(37, 99, 235, .35);
    transition:
        all .6s ease;
}

/* IMAGE HOVER */
.carousel:hover .slider-img {
    transform:
        scale(1.05) translateY(-8px);
    box-shadow:
        0 40px 90px rgba(0, 0, 0, .8),
        0 0 70px rgba(56, 189, 248, .5);
}

/* CONTROLS */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;

    top: 50%;
    transform: translateY(-50%);

    bottom: auto;

    background: rgba(15, 23, 42, .85);
    border: 1px solid rgba(56, 189, 248, .35);
    border-radius: 50%;

    opacity: 1;
    transition: .35s ease;
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 0 25px rgba(56, 189, 248, .6);
}

.carousel-control-prev {
    left: 35px;
}

.carousel-control-next {
    right: 35px;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    position: relative;
}

.carousel-control-prev-icon:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    left: 11px;
    top: 9px;
}

.carousel-control-next-icon:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-right: 2px solid white;
    border-top: 2px solid white;
    transform: rotate(45deg);
    right: 11px;
    top: 9px;
}




/* MOBILE */
@media(max-width:992px) {
    .hero-title {
        font-size: 55px;
    }

    .slider-wrapper {
        height: auto;
        margin-top: 50px;
    }

    .slider-img {
        height: 300px;
    }

    .carousel {
        width: 100%;
    }
}



/*Why Choose Us*/
.why-us {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, #2563eb33, transparent 35%),
    radial-gradient(circle at bottom left, #06b6d422, transparent 35%);
}

/* HEADER */

.badge-ai {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #0f172a;
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    letter-spacing: 2px;
    font-size: 13px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
}

.section-title span {
    background: linear-gradient(90deg, #38bdf8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    color: #94a3b8;
    font-size: 18px;
}

/* CARDS */

.why-card {
    height: 100%;
    padding: 40px 30px;
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    top: -80px;
    background: #2563eb;
    filter: blur(90px);
    opacity: 0;
    transition: 0.4s;
}

.why-card:hover::before {
    opacity: 0.5;
}

.why-card:hover {
    transform: translateY(-12px);
    border-color: #38bdf8;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
    0 0 35px rgba(56, 189, 248, 0.15);
}

/* ICON */

.why-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    font-size: 32px;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
    transition: 0.4s;
}

.why-card:hover .why-icon {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.6);
}

.why-card h5 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.why-card p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 0;
}



/*How It Work*/
.investigation-process {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #2563eb33, transparent 35%),
    radial-gradient(circle at bottom right, #06b6d422, transparent 35%);
}

/* HEADER */

.investigation-process .badge-ai {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #0f172a;
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    letter-spacing: 2px;
    font-size: 13px;
}

.investigation-process .section-title {
    font-size: 48px;
    font-weight: 900;
}

.investigation-process .section-title span {
    background: linear-gradient(90deg, #38bdf8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.investigation-process .section-description {
    color: #94a3b8;
    font-size: 18px;
}

/* TIMELINE */

.investigation-process .timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 80px;
}

/* CONNECT LINE */

.investigation-process .timeline:before {
    content: "";
    position: absolute;
    top: 40px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
    z-index: 0;
}

.investigation-process .timeline-item {
    position: relative;
    width: 20%;
    text-align: center;
    z-index: 1;
}

/* NUMBER */

.investigation-process .timeline-number {
    width: 82px;
    height: 82px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    border: 2px solid #334155;
    font-size: 24px;
    font-weight: 900;
    color: #38bdf8;
    transition: 0.4s;
}

.investigation-process .timeline-item.active .investigation-process .timeline-number, .timeline-item:hover .timeline-number {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    border-color: #38bdf8;
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.7);
    transform: scale(1.1);
}

/* CARD */

.investigation-process .timeline-card {
    margin-top: 35px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 35px 25px;
    min-height: 280px;
    transition: 0.4s;
}

.investigation-process .timeline-card:hover {
    transform: translateY(-12px);
    border-color: #38bdf8;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(56, 189, 248, 0.15);
}

.investigation-process .timeline-card i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 18px;
    font-size: 28px;
    color: white;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.investigation-process .timeline-card h5 {
    font-weight: 700;
    font-size: 21px;
}

.investigation-process .timeline-card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
}

/* MOBILE */

@media (max-width: 991px) {
    .investigation-process .timeline {
        display: block;
    }

    .investigation-process .timeline:before {
        top: 0;
        bottom: 0;
        left: 40px;
        right: auto;
        height: auto;
        width: 3px;
    }

    .investigation-process .timeline-item {
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 25px;
        margin-bottom: 45px;
        text-align: left;
    }

    .investigation-process .timeline-number {
        min-width: 82px;
    }

    .investigation-process .timeline-card {
        margin-top: 0;
    }

    .investigation-process .timeline-card i {
        margin-left: 0;
    }
}

/*Use Cases*/

.use-cases {
    /*background: radial-gradient(circle at top left, #2563eb33, transparent 35%), radial-gradient(circle at bottom right, #06b6d422, transparent 35%);*/
    overflow: hidden;
}

/* HEADER */

.badge-ai {
    background: #0f172a;
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 2px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
}

.section-title span {
    background: linear-gradient(90deg, #38bdf8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LEFT */

.use-case-left {
    top: 100px;
}

.case-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
}

.case-title {
    font-size: 45px;
    font-weight: 900;
}

/* IMAGE */

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.hero-img {
    bottom: 0;
    max-width: 500px;
    width: 100%;
}

.use-case-gradient {
    background: linear-gradient(0deg, #050816 60%, #050816e6 80%, #0000);
    bottom: -100px;
    height: 420px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    z-index: 2;
}

/* RIGHT */

.border-start {
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.case-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    transition: 0.4s;
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(56, 189, 248, 0.15);
}

.case-card-body {
    padding: 30px;
    display: flex;
    gap: 20px;
}

.icon-circle {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    font-size: 20px;
}

.case-card h5 {
    font-size: 20px;
    font-weight: 700;
}

.case-card p {
    color: #94a3b8;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .border-start {
        border-left: none !important;
        margin-top: 50px;
        padding-left: 0 !important;
    }

    .hero-img {
        width: 100%;
        margin-left: 0;
    }

    .case-title {
        font-size: 35px;
    }
}

.use-cases-inner {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    position: relative;
}

.use-cases-inner:before {
    background: #ced0d1;
    bottom: 70px;
    content: "";
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 70px;
    width: 1px;
}



/*Road Map*/
.roadmap-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: radial-gradient(circle at top right, #2563eb55, transparent 35%), radial-gradient(circle at bottom left, #06b6d433, transparent 35%);
}

.roadmap-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.15);
    left: -250px;
    top: 200px;
}

/* HEADER */

.roadmap-section .subtitle {
    color: #38bdf8;
    letter-spacing: 6px;
    font-size: 14px;
}

.roadmap-section .main-title {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: -2px;
}

.roadmap-section .main-title span {
    background: linear-gradient(90deg, #38bdf8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.roadmap-section .description {
    color: #94a3b8;
    max-width: 650px;
    margin: auto;
    font-size: 18px;
}

/* TIMELINE */

.roadmap-section .timeline {
    position: relative;
    margin-top: 90px;
}

.roadmap-section .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(#38bdf8, #2563eb, transparent);
    transform: translateX(-50%);
}

/* ITEM */

.roadmap-section .timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 50px;
}

.roadmap-section .timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.roadmap-section .timeline-item:nth-child(even) {
    left: 50%;
}

/* DOT */

.roadmap-section .timeline-dot {
    position: absolute;
    top: 50px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #050816;
    border: 4px solid #38bdf8;
    box-shadow: 0 0 25px #38bdf8;
}

.roadmap-section .timeline-item:nth-child(odd) .timeline-dot {
    right: -11px;
}

.roadmap-section .timeline-item:nth-child(even) .timeline-dot {
    left: -11px;
}

/* CARD */

.roadmap-section .roadmap-card {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid #1e293b;
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 35px;
    transition: 0.35s;
}

.roadmap-section .roadmap-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.25);
}

.roadmap-section .phase {
    font-size: 13px;
    letter-spacing: 3px;
    color: #38bdf8;
    font-weight: 700;
}

.roadmap-section .roadmap-card h3 {
    font-weight: 800;
    margin-top: 10px;
}

.roadmap-section .roadmap-card p {
    color: #94a3b8;
}

.roadmap-section .feature-list {
    padding: 0;
    list-style: none;
    margin-top: 20px;
}

.roadmap-section .feature-list li {
    color: #cbd5e1;
    margin-bottom: 10px;
}

.roadmap-section .feature-list li::before {
    content: "✓";
    color: #22c55e;
    margin-right: 10px;
}

/* STATUS */

.roadmap-section .status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 15px;
}

.roadmap-section .completed {
    background: #052e16;
    color: #22c55e;
    border: 1px solid #166534;
}

.roadmap-section .active {
    background: #082f49;
    color: #38bdf8;
    border: 1px solid #0369a1;
}

.roadmap-section .upcoming {
    background: #1e293b;
    color: #94a3b8;
    border: 1px solid #334155;
}

/* ACTIVE GLOW */

.roadmap-section .timeline-item.active-phase .roadmap-card {
    border-color: #38bdf8;
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.25);
}

.roadmap-section .timeline-item.active-phase .timeline-dot {
    background: #38bdf8;
}

/* MOBILE */

@media (max-width: 991px) {
    .roadmap-section .timeline::before {
        left: 20px;
    }

    .roadmap-section .timeline-item,
    .roadmap-section .timeline-item:nth-child(even),
    .roadmap-section .timeline-item:nth-child(odd) {
        width: 100%;
        left: 0;
        text-align: left;
        padding-left: 60px;
    }

    .roadmap-section .timeline-dot,
    .roadmap-section .timeline-item:nth-child(even) .timeline-dot,
    .roadmap-section .timeline-item:nth-child(odd) .timeline-dot {
        left: 9px;
        right: auto;
    }

    .roadmap-section .main-title {
        font-size: 42px;
    }
}

/* SCROLL ANIMATION */

.roadmap-section .timeline-item {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.roadmap-section .timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Alternating animation */

.roadmap-section .timeline-item:nth-child(odd) {
    transform: translateX(-80px);
}

.roadmap-section .timeline-item:nth-child(even) {
    transform: translateX(80px);
}

.roadmap-section .timeline-item:nth-child(odd).show,
.roadmap-section .timeline-item:nth-child(even).show {
    transform: translateX(0);
}

/* stagger effect */

.roadmap-section .timeline-item:nth-child(1) {
    transition-delay: 0.1s;
}

.roadmap-section .timeline-item:nth-child(2) {
    transition-delay: 0.2s;
}

.roadmap-section .timeline-item:nth-child(3) {
    transition-delay: 0.3s;
}

.roadmap-section .timeline-item:nth-child(4) {
    transition-delay: 0.4s;
}

.roadmap-section .timeline-item:nth-child(5) {
    transition-delay: 0.5s;
}


/*Testimonial*/

.testimonials-section {
    background: radial-gradient(circle at center, #1e40af22, transparent 40%), #050816;
}

.testimonials-section .testimonial-badge {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 10px 20px;
    border-radius: 50px;
    color: #38bdf8;
}

.testimonials-section .testimonial-card {
    height: 100%;
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 30px;
    border-radius: 22px;
    transition: 0.3s;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #0ea5e9;
    box-shadow: 0 20px 50px #0008;
}

.testimonials-section .stars {
    color: #fbbf24;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testimonials-section .testimonial-card p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
}

.testimonials-section .customer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.testimonials-section .avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    font-weight: bold;
}

.testimonials-section .customer h6 {
    margin: 0;
    color: white;
}

.testimonials-section .customer span {
    color: #94a3b8;
    font-size: 14px;
}

.testimonials-section .trust-stat {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 25px;
    text-align: center;
    border-radius: 18px;
}

.testimonials-section .trust-stat h2 {
    color: #38bdf8;
    font-weight: 700;
}

.testimonials-section .trust-stat p {
    color: #94a3b8;
    margin: 0;
}


/*FAQS Section*/

.faq-section {
    background: #050816;
}

.faq-section .faq-badge {
    padding: 10px 20px;
    border-radius: 50px;
    background: #0f172a;
    border: 1px solid #1e293b;
    color: #38bdf8;
}

.faq-section .custom-accordion .accordion-item {
    background: #0f172a;
    border: 1px solid #1e293b;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
}

.faq-section .custom-accordion .accordion-button {
    background: #0f172a;
    color: white;
    font-weight: 600;
    padding: 22px;
    box-shadow: none;
}

.faq-section .custom-accordion .accordion-button:not(.collapsed) {
    color: #38bdf8;
}

.faq-section .custom-accordion .accordion-body {
    background: #111827;
    color: #94a3b8;
    line-height: 1.7;
    padding: 25px;
}

.faq-section .accordion-button::after {
    filter: invert(1);
}


/*CTA Section*/

.cta-section {
    background: radial-gradient(circle at center, #2563eb55, transparent 45%), #050816;
}

.cta-section .cta-box {
    position: relative;
    padding: 70px 40px;
    border-radius: 35px;
    background: linear-gradient(145deg, #0f172a, #020617);
    border: 1px solid #1e293b;
    box-shadow: 0 30px 80px #0009;
}

.cta-section .cta-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    font-size: 40px;
    color: white;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 0 40px #0ea5e966;
}


/* =========================
      MAIN FOOTER
========================= */

.main-footer {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #2563eb33, transparent 35%), #050816;
    border-top: 1px solid rgba(56, 189, 248, 0.15);
}

/*.main-footer::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    width: 500px;*/
/*    height: 500px;*/
/*    border-radius: 50%;*/
/*    background: #06b6d4;*/
/*    filter: blur(150px);*/
/*    opacity: 0.08;*/
/*    right: -200px;*/
/*    bottom: -200px;*/
/*}*/

/* BRAND */

.footer-brand h3 {
    font-family: var(--tg-heading-font-family);
    font-size: 34px;
    color: white;
    font-weight: 800;
}

.footer-brand h3 span {
    background: linear-gradient(90deg, #38bdf8, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #94a3b8;
    max-width: 350px;
    line-height: 1.7;
}

/* SOCIAL */

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    background: #0f172a;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: 0.3s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.5);
}

/* LINKS */

.main-footer h5 {
    color: white;
    font-size: 17px;
    margin-bottom: 25px;
}

.main-footer ul {
    padding: 0;
    list-style: none;
}

.main-footer li {
    margin-bottom: 14px;
}

.main-footer a {
    text-decoration: none;
    color: #94a3b8;
    transition: 0.3s;
}

.main-footer a:hover {
    color: #38bdf8;
    padding-left: 5px;
}

/* CONTACT */

.footer-contact {
    color: #94a3b8;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-contact i {
    color: #38bdf8;
}

.security-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 15px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    font-size: 14px;
}

.security-box i {
    margin-right: 8px;
}

/* BOTTOM */

.main-footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 14px;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/*AI TECHNOLOGY*/


.ai-section {
    background: radial-gradient(circle at top right, #2563eb33, transparent 35%),
    #050816;
}

.ai-section .ai-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: #0f172a;
    border: 1px solid #1e293b;
    color: #38bdf8;
}

.ai-section .ai-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 18px;
    padding: 20px;
    height: 100%;
    transition: 0.3s;
}

.ai-section .ai-card:hover {
    transform: translateY(-8px);
    border-color: #0ea5e9;
    box-shadow: 0 20px 40px #0008;
}

.ai-section .ai-card h5 {
    color: white;
    margin-top: 15px;
}

.ai-section .ai-card p {
    color: #94a3b8;
    font-size: 14px;
}

.ai-section .ai-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    font-size: 20px;
}

.ai-section .ai-dashboard {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 25px;
    padding: 30px;

    box-shadow: 0 30px 80px #0008;
}

.ai-section .scan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 18px;
    font-weight: 600;
}

.ai-section .status {
    background: #052e16;
    color: #22c55e;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
}

.ai-section .ai-circle {
    width: 170px;
    height: 170px;
    margin: 40px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    color: #38bdf8;
    background: radial-gradient(circle, #0ea5e933, #020617);
    box-shadow: 0 0 60px #0ea5e966;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    50% {
        transform: scale(1.05);
    }
}

.ai-section .analysis-box {
    background: #0f172a;
    padding: 20px;
    border-radius: 20px;
}

.ai-section .analysis-item {
    display: flex;
    justify-content: space-between;
    color: #cbd5e1;
}

.ai-section .progress {
    height: 8px;
    background: #1e293b;
    margin-top: 10px;
}

.ai-section .report-box {
    margin-top: 25px;
    padding: 15px;
    border-radius: 15px;
    background: #111827;
    color: #38bdf8;
    text-align: center;
}


/*About Us Page*/

.about-hero {
    padding: 120px 0;
    background: radial-gradient(circle at top right, #2563eb44, transparent 40%), radial-gradient(circle at bottom left, #06b6d433, transparent 35%);
}

.badge-about {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 10px 20px;
    border-radius: 50px;
    color: #38bdf8;
}

/* Cards */

.about-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 22px;
    padding: 35px;
    height: 100%;
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: #0ea5e9;
}

/* ICON */

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    font-size: 28px;
    margin-bottom: 25px;
}

/* Stats */

.stat-box {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.stat-box h2 {
    color: #38bdf8;
    font-weight: 800;
}

.cta {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 30px;
    padding: 60px;
}


/*Contact Us Page*/
.contact-hero{
    padding:110px 0;
    background:
        radial-gradient(circle at top right,#2563eb44,transparent 40%),
        radial-gradient(circle at bottom left,#06b6d433,transparent 35%);
}

.contact-badge{
    background:#0f172a;
    border:1px solid #1e293b;
    padding:10px 20px;
    border-radius:50px;
    color:#38bdf8;
}

/* Cards */
.contact-card{
    background:#0f172a;
    border:1px solid #1e293b;
    border-radius:22px;
    padding:30px;
    height:100%;
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#0ea5e9;
}

.contact-icon{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: linear-gradient(135deg,#2563eb,#06b6d4);
    border-radius:18px;
    font-size:28px;
    margin-bottom:20px;
}

/* FORM */
.form-box{
    background:#0f172a;
    border:1px solid #1e293b;
    border-radius:25px;
    padding:40px;
}

.form-control,
.form-select{
    border:1px solid #1e293b;
    color:white;
    padding:14px;
}

.form-control:focus,
.form-select:focus{
    background:#020617;
    color:white;
    border-color:#0ea5e9;
    box-shadow:none;
}

textarea{
    resize:none;
}


/*Grapfic home*/


.flow__node rect {
    fill: #fff;
    stroke: #f6faf7;
    stroke-width: 1;
    filter: drop-shadow(0 6px 16px rgba(29, 137, 90, 0.08));
}

.flow__title {
    font: 600 15px / 1 var(--sans);
    fill: #0c1a14;
    letter-spacing: -0.01em;
}

.flow__sub {
    font: 500 11.5px / 1.2 var(--sans);
    fill: #50635a;
    letter-spacing: 0.01em;
}

.flow__paths path {
    stroke: #c9c5b7;
    stroke-width: 1.5;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 4 4;
    animation: dash 1.4s linear infinite;
}

.flow__node--accent .flow__sub,
.flow__node--accent .flow__title {
    fill: #e9f4ee;
}

.flow__node--accent rect {
    fill: #0e2620;
    stroke: #1d3a30;
}

.flow__route-mini circle {
    fill: hsla(0, 0%, 100%, 0.55);
}

.flow__route-mini line {
    stroke: hsla(0, 0%, 100%, 0.4);
}

.flow__route-mini .flow__route-target {
    fill: #34d399;
    filter: drop-shadow(0 0 4px rgba(52, 211, 153, 0.6));
    animation: targetPulse 1.8s ease-in-out infinite;
}

.flow__edge-label--slow rect {
    fill: #fffbeb;
    stroke: #fcd34d;
}

.flow__edge-label--slow text {
    fill: #b45309;
}

.flow__edge-label--fast rect {
    fill: #ecfdf5;
    stroke: #bbf7d0;
}

.flow__edge-label--fast text {
    fill: #047857;
}

.flow__node--ai .flow__ai-glyph line {
    stroke: hsla(0, 0%, 100%, 0.32);
}

.flow__node--ai .flow__ai-dot {
    fill: hsla(0, 0%, 100%, 0.5);
    animation: aiDotPulse 1.8s ease-in-out infinite;
}

.flow__node--pool rect {
    fill: #0a1f17;
    stroke: #1d895a;
    stroke-width: 1.5;
    filter: drop-shadow(0 8px 24px rgba(29, 137, 90, 0.32));
}

.flow__node--pool .flow__sub,
.flow__node--pool .flow__title {
    fill: #e9f4ee;
}

.flow__coin {
    animation: coinBob 3.6s ease-in-out infinite;
    animation-delay: calc(var(--i) * -1.2s);
    transform-origin: center;
    transform-box: fill-box;
}

.flow__packet {
    fill: #fff;
}

.flow__sub--muted {
    fill: #82948a;
    font-size: 10.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@keyframes aiDotPulse {
    0%,
    to {
        fill: hsla(0, 0%, 100%, 0.45);
    }

    50% {
        fill: #34d399;
    }
}

@keyframes coinBob {
    0%,
    to {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.flow__packet--slow {
    fill: #b45309;
    opacity: 0.7;
}

.flow__packet--fast {
    fill: #1d895a;
    filter: drop-shadow(0 0 6px rgba(29, 137, 90, 0.45));
}

.flow[data-mode="payout"] .flow__packet--slow {
    fill: #1d895a;
    opacity: 0.85;
}

.crypto-process .badge {
    background: #dcfce7;
    color: #15803d;
    font-weight: 600;
}

.crypto-card {
    height: 100%;
    min-height: 270px;
    padding: 25px 18px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.7));
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    text-align: center;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

.crypto-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #14b8a6);
}

.crypto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(34, 197, 94, 0.18);
}

.crypto-card .icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    background: linear-gradient(135deg, #22c55e, #047857);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.35);
}

.crypto-card span {
    font-size: 12px;
    color: #16a34a;
    font-weight: 700;
    letter-spacing: 2px;
}

.crypto-card h5 {
    margin-top: 12px;
    font-weight: 700;
    font-size: 17px;
}

.crypto-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .crypto-card {
        min-height: 240px;
    }
}

.crypto-process {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at top right, #2563eb33, transparent 35%),
    radial-gradient(circle at bottom left, #06b6d422, transparent 35%);
}

.crypto-process .badge {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.25);
    font-weight: 600;
}

.crypto-process h2 {
    font-size: 52px;
    font-weight: 800;
}

.crypto-process p {
    color: #94a3b8;
}

.process-wrapper {
    position: relative;
}

.process-wrapper::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #2563eb,
        #38bdf8,
        transparent
    );
    z-index: 0;
}

.crypto-card {
    position: relative;
    z-index: 2;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid #1e293b;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.35s;
    overflow: hidden;
}

.crypto-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.crypto-card:hover {
    transform: translateY(-12px);
    border-color: #38bdf8;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
}

.icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 22px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    font-size: 28px;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
    transition: 0.35s;
}

.crypto-card:hover .icon {
    transform: rotate(-8deg) scale(1.08);
}

.crypto-card span {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #38bdf8;
}

.crypto-card h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.crypto-card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .process-wrapper::before {
        display: none;
    }

    .crypto-card {
        margin-bottom: 20px;
    }
}



/*Investigation*/


.report-hero {
    padding: 100px 0;
    background: radial-gradient(
        circle at top right,
        #2563eb44,
        transparent 40%
    );
}

.badge-ai {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 10px 20px;
    border-radius: 50px;
    color: #38bdf8;
}

.report-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 22px;
    padding: 30px;
    height: 100%;
}

.report-card:hover {
    border-color: #0ea5e9;
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    font-size: 25px;
}

.wallet-address {
    background: #020617;
    border: 1px solid #1e293b;
    padding: 20px;
    border-radius: 15px;
    font-family: monospace;
    color: #38bdf8;
}

.risk-score {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #22c55e33, #020617);
    border: 8px solid #22c55e;
    margin: auto;
}

.risk-score h1 {
    color: #22c55e;
    font-weight: 800;
}

.graph {
    height: 260px;
    background: radial-gradient(circle, #2563eb44 2px, transparent 2px);
    background-size: 40px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.node {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    box-shadow: 0 0 25px #2563eb;
}

.report-card .timeline-item {
    border-left: 2px solid #2563eb;
    padding-left: 25px;
    margin-bottom: 25px;
}

.report-card .timeline-item span {
    color: #38bdf8;
}


/*security*/
.security-hero {
    padding: 120px 0;
    background: radial-gradient(circle at top right, #2563eb55, transparent 40%),
    radial-gradient(circle at bottom left, #06b6d433, transparent 35%);
}

.security-badge {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 10px 20px;
    border-radius: 50px;
    color: #38bdf8;
}

/* CARDS */

.security-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 22px;
    padding: 35px;
    height: 100%;
    transition: 0.3s;
}

.security-card:hover {
    transform: translateY(-8px);
    border-color: #0ea5e9;
    box-shadow: 0 20px 50px #0008;
}

.icon-box {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    font-size: 30px;
    margin-bottom: 25px;
}

/* SECURITY PANEL */

.security-panel {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 25px;
    padding: 40px;
}

.check-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.check-item i {
    color: #22c55e;
    font-size: 22px;
}


/* platform BC */
.platform-hero {
    padding: 120px 0;
    background: radial-gradient(circle at top right, #2563eb55, transparent 40%),
    radial-gradient(circle at bottom left, #06b6d433, transparent 35%);
}

.platform-badge {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 10px 20px;
    border-radius: 50px;
    color: #38bdf8;
}

/* CARDS */

.platform-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    transition: 0.3s;
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: #0ea5e9;
    box-shadow: 0 20px 50px #0008;
}

.icon-box {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 18px;
    font-size: 30px;
    margin-bottom: 25px;
}

/* WORKFLOW */

.workflow-step {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 20px;
    padding: 25px;
    position: relative;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    font-weight: bold;
    margin-bottom: 20px;
}

/* DASHBOARD */

.dashboard-box {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 30px;
    padding: 35px;
}

.metric {
    background: #0f172a;
    padding: 20px;
    border-radius: 15px;
}

.metric h3 {
    color: #38bdf8;
}

.progress {
    background: #1e293b;
}


.pricing-hero {
    padding: 120px 0;
    background:
        radial-gradient(circle at top right, #2563eb55, transparent 40%),
        radial-gradient(circle at bottom left, #06b6d433, transparent 35%);
}

.badge-custom {
    background: #0f172a;
    border: 1px solid #1e293b;
    padding: 10px 20px;
    border-radius: 50px;
    color: #38bdf8;
}

/* PRICING CARD */
.price-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 25px;
    padding: 40px;
    height: 100%;
    transition: .3s;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: #0ea5e9;
    box-shadow: 0 20px 50px #0008;
}

.price-card.featured {
    border: 2px solid #38bdf8;
    box-shadow: 0 0 40px #0ea5e944;
}

.plan-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background:
        linear-gradient(135deg, #2563eb, #06b6d4);
    font-size: 28px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    color: #cbd5e1;
}

.feature-list i {
    color: #22c55e;
    margin-right: 10px;
}

/* TABLE */
.compare-box {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 25px;
    padding: 35px;
}

.table {
    color: white;
}

.table td,
.table th {
    border-color: #1e293b;
    padding: 18px;
}

/* ENTERPRISE */
.enterprise-box {
    background:
        linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 30px;
    padding: 70px 40px;
}

input::placeholder {
    color: white;
    opacity: 0.5;
}
