﻿/* 🔥 HERO */
.hero {
    height: 85vh;
    background: linear-gradient(120deg, #020617, #0f172a);
    display: flex;
    align-items: center;
    color: #fff;
}

    .hero h1 {
        font-size: 48px;
        font-weight: 700;
    }

.gradient-text {
    background: linear-gradient(90deg, #6366f1, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-buttons {
    margin-top: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #22c55e);
    padding: 12px 25px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid #fff;
    padding: 12px 25px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
}

/* 🔥 SECTION */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-sub {
    color: #64748b;
}

/* 🔥 PRODUCTS */
 
 
 

/* 🔥 WORKFLOW */
.workflow {
    background: #f1f5f9;
    padding: 60px 0;
}

.workflow-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

    .workflow-steps div {
        background: #fff;
        padding: 15px 25px;
        border-radius: 12px;
    }

/* 🔥 CTA */
.cta {
    background: #020617;
    color: #fff;
    padding: 60px 0;
}

/* 🔥 MODAL */
.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    top: 0;
}

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    width: 400px;
    margin: 10% auto;
}

.close {
    float: right;
    cursor: pointer;
}

/* 🔥 MOBILE */
@media(max-width:768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }
}
/* 🔥 CAROUSEL */
.premium-carousel {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

    .carousel-slide img {
        width: 100%;
        height: 85vh;
        object-fit: cover;
        filter: brightness(0.6);
    }

.carousel-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
}

    .carousel-content h1 {
        font-size: 46px;
    }

    .carousel-content span {
        background: linear-gradient(90deg, #6366f1, #22c55e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* 🔥 BUTTON */
.btn-primary {
    background: linear-gradient(135deg, #6366f1, #22c55e);
    padding: 12px 25px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
}

/* 🔥 CONTROLS */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #fff;
    background: rgba(0,0,0,0.4);
    border: none;
    padding: 10px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

    .carousel-dots span {
        width: 10px;
        height: 10px;
        background: #fff;
        display: inline-block;
        margin: 5px;
        border-radius: 50%;
        opacity: 0.5;
    }

    .carousel-dots .active {
        opacity: 1;
    }

/* 🔥 PRODUCTS */
 
 

  
/* 🔥 CTA */
.cta {
    background: #020617;
    color: #fff;
    padding: 60px;
}

/* 🔥 MODAL */
.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    background: #fff;
    padding: 30px;
    width: 400px;
    margin: 10% auto;
    border-radius: 16px;
}

/* 🔥 MOBILE */
@@media(max-width:768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .carousel-content h1 {
        font-size: 28px;
    }
}


/* 🔥 FULL SCREEN MODAL */
.premium-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2,6,23,0.85);
    z-index: 9999;
    overflow-y: auto;
}

/* 🔥 WRAPPER */
.modal-wrapper {
    background: #fff;
    max-width: 900px;
    margin: 60px auto;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 🔥 CLOSE */
.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

/* 🔥 HEADER */
.modal-header h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.modal-header p {
    color: #64748b;
}

/* 🔥 FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 25px;
}

.feature-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
}

/* 🔥 EXTRA */
.modal-extra {
    margin-top: 30px;
}

/* 🔥 CTA */
.modal-cta {
    margin-top: 30px;
}







/* 🔥 GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* 🔥 CARD */
.product-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    cursor: pointer;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid #e2e8f0;
}

/* 🔥 ICON */
.card-icon {
    font-size: 32px;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* 🔥 TEXT */
.product-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #020617;
}

.product-card p {
    color: #64748b;
    font-size: 14px;
}

/* 🔥 HOVER EFFECT */
.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* 🔥 GRADIENT GLOW */
.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6366f1, #22c55e);
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

.product-card:hover::before {
    opacity: 0.08;
}

/* 🔥 ICON ANIMATION */
.product-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

/* 🔥 CONTENT ABOVE */
.product-card * {
    position: relative;
    z-index: 1;
}

/* 🔥 MOBILE */
@@media(max-width:768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}






/*-----------*/

/* 🔥 INTRO HERO */
.intro-hero {
    max-width: 900px;
    margin: auto;
}

/* 🔥 TITLE */
.intro-title {
    font-size: 42px;
    font-weight: 700;
    color: #020617;
}

/* 🔥 TAGLINE */
.intro-tagline {
    font-size: 20px;
    margin-top: 10px;
    color: #475569;
}

    .intro-tagline span {
        background: linear-gradient(90deg, #6366f1, #22c55e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 600;
    }

/* 🔥 DESCRIPTION */
.intro-desc {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

/* 🔥 HIGHLIGHTS */
.intro-highlights {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.highlight-item {
    background: #f1f5f9;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s;
}

    .highlight-item:hover {
        background: #e2e8f0;
    }



/* 🔥 SECTION */
.ultra-intro {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

/* 🔥 WRAPPER */
.ultra-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* 🔥 LEFT */
.ultra-left {
    flex: 1;
}

/* 🔥 TITLE */
.ultra-title {
    font-size: 48px;
    font-weight: 800;
    color: #020617;
}

    .ultra-title span {
        display: block;
        background: linear-gradient(90deg, #6366f1, #22c55e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* 🔥 DESC */
.ultra-desc {
    margin-top: 15px;
    font-size: 18px;
    color: #475569;
}

/* 🔥 BUTTONS */
.ultra-buttons {
    margin-top: 25px;
}

.btn-light {
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid #020617;
    margin-left: 10px;
    color: #020617;
}

/* 🔥 STATS */
.ultra-stats {
    margin-top: 40px;
    display: flex;
    gap: 40px;
}

    .ultra-stats h3 {
        font-size: 28px;
        margin: 0;
        color: #020617;
    }

    .ultra-stats span {
        font-size: 14px;
        color: #64748b;
    }

/* 🔥 RIGHT SIDE */
.ultra-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 🔥 GLASS CARDS */
.glass-card {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

    .glass-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    }

/* 🔥 MOBILE */
@media(max-width:768px) {
    .ultra-wrapper {
        flex-direction: column;
    }

    .ultra-title {
        font-size: 32px;
    }
}


/* 🔥 SECTION */
.cta-ultra {
    margin-top: 80px;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #fff;
    position: relative;
    overflow: hidden;
}

    /* 🔥 GLOW EFFECT */
    .cta-ultra::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 144%;
        background: radial-gradient(circle, rgba(99,102,241,0.3), transparent);
        top: -100px;
        left: -100px;
    }

    /* 🔥 TITLE */
    .cta-ultra h2 {
        font-size: 40px;
        font-weight: 700;
    }

    .cta-ultra span {
        background: linear-gradient(90deg, #6366f1, #22c55e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* 🔥 TEXT */
    .cta-ultra p {
        margin-top: 15px;
        color: #cbd5e1;
        font-size: 18px;
    }

/* 🔥 BUTTONS */
.cta-actions {
    margin-top: 25px;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #6366f1, #22c55e);
    padding: 14px 30px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-right: 10px;
    display: inline-block;
    transition: 0.3s;
}

    .cta-btn-primary:hover {
        transform: scale(1.08);
    }

.cta-btn-secondary {
    border: 1px solid #fff;
    padding: 14px 30px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
}

/* 🔥 TRUST */
.cta-trust {
    margin-top: 25px;
    font-size: 14px;
    color: #94a3b8;
}