
/*==================================================
  YUVATHY TECHNOLOGIES
  GLOBAL STYLES
==================================================*/

/*==============================
GOOGLE FONT
==============================*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");


/*==============================
CSS VARIABLES
==============================*/

:root{

    /* Colors */

    --primary:#4F46E5;
    --primary-light:#6366F1;
    --secondary:#7C3AED;

    --accent:#06B6D4;

    --success:#22C55E;

    --warning:#F59E0B;

    --danger:#EF4444;

    --bg:#070B14;

    --surface:#0F172A;

    --surface-light:#182235;

    --glass:rgba(255,255,255,.06);

    --glass-border:rgba(255,255,255,.12);

    --text:#FFFFFF;

    --text-light:#CBD5E1;

    --muted:#94A3B8;

    --border:#273449;

    /* Radius */

    --radius-sm:8px;

    --radius:16px;

    --radius-lg:24px;

    --radius-xl:32px;

    /* Shadows */

    --shadow-sm:0 8px 24px rgba(0,0,0,.18);

    --shadow:0 15px 40px rgba(0,0,0,.28);

    --shadow-lg:0 25px 60px rgba(0,0,0,.4);

    /* Transition */

    --transition:.35s ease;

    /* Width */

    --container:1280px;

}


/*==============================
RESET
==============================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;

    background:var(--bg);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font:inherit;

}

input,
textarea{

    font:inherit;

    outline:none;

}

ul{

    list-style:none;

}


/*==============================
CUSTOM SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08101f;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(

        180deg,

        var(--primary),

        var(--secondary)

    );

    border-radius:30px;

}


/*==============================
SELECTION
==============================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*==============================
BACKGROUND
==============================*/

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:

        radial-gradient(circle at top left,
        rgba(79,70,229,.18),
        transparent 35%),

        radial-gradient(circle at bottom right,
        rgba(6,182,212,.15),
        transparent 40%),

        radial-gradient(circle at center,
        rgba(124,58,237,.08),
        transparent 45%);

    pointer-events:none;

    z-index:-3;

}

.grid-overlay{

    position:fixed;

    inset:0;

    background-image:

    linear-gradient(

    rgba(255,255,255,.03) 1px,

    transparent 1px),

    linear-gradient(

    90deg,

    rgba(255,255,255,.03) 1px,

    transparent 1px);

    background-size:60px 60px;

    pointer-events:none;

    z-index:-2;

    opacity:.6;

}

.aurora-bg{

    position:fixed;

    inset:0;

    filter:blur(140px);

    background:

    radial-gradient(

    circle,

    rgba(79,70,229,.25),

    transparent 50%);

    animation:auroraMove 14s linear infinite alternate;

    z-index:-1;

    pointer-events:none;

}


/*==============================
LAYOUT
==============================*/

.container{

    width:min(92%,var(--container));

    margin:auto;

}

section{

    padding:110px 0;

}

.section-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    border-radius:999px;

    background:rgba(99,102,241,.12);

    color:#A5B4FC;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:.12em;

    text-transform:uppercase;

    border:1px solid rgba(99,102,241,.2);

    margin-bottom:22px;

}

.section-header h2{

    font-size:clamp(2rem,4vw,3.5rem);

    line-height:1.15;

    margin-bottom:22px;

}

.section-header p{

    color:var(--text-light);

    font-size:1.05rem;

}


/*==============================
TYPOGRAPHY
==============================*/

h1{

    font-size:clamp(3rem,6vw,5rem);

    line-height:1.05;

    font-weight:900;

}

h2{

    font-weight:800;

}

h3{

    font-size:1.35rem;

    font-weight:700;

}

p{

    color:var(--text-light);

}


/*==============================
BUTTONS
==============================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

}

.btn.primary{

    background:linear-gradient(

    135deg,

    var(--primary),

    var(--secondary));

    color:#fff;

    box-shadow:

    0 15px 40px

    rgba(79,70,229,.35);

}

.btn.primary:hover{

    transform:translateY(-4px);

    box-shadow:

    0 25px 55px

    rgba(79,70,229,.45);

}

.btn.secondary{

    border:1px solid var(--glass-border);

    background:var(--glass);

    backdrop-filter:blur(18px);

}

.btn.secondary:hover{

    background:rgba(255,255,255,.08);

    transform:translateY(-4px);

}


/*==============================
UTILITY CLASSES
==============================*/

.text-center{

    text-align:center;

}

.mb-1{

    margin-bottom:1rem;

}

.mb-2{

    margin-bottom:2rem;

}

.mb-3{

    margin-bottom:3rem;

}

.glass{

    background:var(--glass);

    border:1px solid var(--glass-border);

    backdrop-filter:blur(18px);

}

.shadow{

    box-shadow:var(--shadow);

}


/*==============================
SCROLL PROGRESS
==============================*/

.scroll-progress{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:

    linear-gradient(

    90deg,

    var(--primary),

    var(--accent));

    z-index:9999;

}


/*==============================
CURSOR GLOW
==============================*/

.cursor-glow{

    position:fixed;

    width:280px;

    height:280px;

    border-radius:50%;

    background:

    radial-gradient(

    rgba(99,102,241,.20),

    transparent 70%);

    pointer-events:none;

    transform:translate(-50%,-50%);

    z-index:-1;

}


/*==============================
ANIMATION
==============================*/

@keyframes auroraMove{

    from{

        transform:translate(-8%,-8%) scale(1);

    }

    to{

        transform:translate(10%,6%) scale(1.3);

    }

}

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

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    transition:all .35s ease;
    padding:20px 0;
}

#header.scrolled{
    padding:14px 0;
    background:rgba(7,11,20,.75);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

/*==================================================
  NAVIGATION
==================================================*/

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

/*==================================================
  LOGO
==================================================*/

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    font-weight:700;
    white-space:nowrap;
}

.logo-icon{
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    font-size:1.35rem;
    font-weight:800;
    box-shadow:0 10px 25px rgba(79,70,229,.35);
    transition:var(--transition);
}

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

.logo-text{
    font-size:1.1rem;
    font-weight:800;
    letter-spacing:.2px;
}

/*==================================================
  NAV LINKS
==================================================*/

.navbar{
    margin-left:auto;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:34px;
}

.nav-links a{
    position:relative;
    color:var(--text-light);
    font-weight:600;
    transition:var(--transition);
}

.nav-links a:hover{
    color:var(--text);
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    border-radius:999px;
    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );
    transition:width .3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}

.nav-links a.active{
    color:#fff;
}

/*==================================================
  NAV CTA
==================================================*/

.nav-btn{
    margin-left:16px;
}

/*==================================================
  MOBILE MENU BUTTON
==================================================*/

.menu-toggle{
    width:48px;
    height:48px;
    display:none;
    place-items:center;
    border-radius:12px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:1.35rem;
    transition:var(--transition);
}

.menu-toggle:hover{
    background:rgba(255,255,255,.08);
    transform:translateY(-2px);
}

/*==================================================
  MOBILE NAVIGATION
==================================================*/

@media (max-width:992px){

    .navbar{
        position:fixed;
        top:82px;
        left:20px;
        right:20px;

        background:rgba(15,23,42,.96);
        backdrop-filter:blur(20px);

        border:1px solid rgba(255,255,255,.08);

        border-radius:20px;

        padding:30px;

        opacity:0;
        visibility:hidden;
        transform:translateY(-20px);

        transition:.35s ease;
    }

    .navbar.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .nav-links{
        flex-direction:column;
        align-items:flex-start;
        gap:24px;
    }

    .nav-links a{
        font-size:1.05rem;
    }

    .nav-btn{
        display:none;
    }

    .menu-toggle{
        display:grid;
    }
}

/*==================================================
  SMALL MOBILE
==================================================*/

@media (max-width:576px){

    #header{
        padding:16px 0;
    }

    .logo-text{
        font-size:.95rem;
    }

    .logo-icon{
        width:42px;
        height:42px;
        font-size:1.15rem;
    }

    .navbar{
        left:12px;
        right:12px;
        padding:24px;
    }
}

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

#hero{
    position:relative;
    overflow:hidden;
    padding:180px 0 120px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:70px;
}

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

.hero-content{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(99,102,241,.12);

    border:1px solid rgba(99,102,241,.25);

    color:#A5B4FC;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:28px;
}

.hero-badge i{
    font-size:1rem;
}

.hero-content h1{

    max-width:700px;

    margin-bottom:28px;

    letter-spacing:-1px;
}

.hero-content h1 span{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    -webkit-background-clip:text;
    background-clip:text;

    color:transparent;
}

.hero-content p{

    max-width:620px;

    font-size:1.1rem;

    color:var(--text-light);

    margin-bottom:42px;
}

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

.hero-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;
}

.hero-buttons .btn{

    min-width:190px;
}

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

.hero-visual{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:560px;
}

/*==================================================
  HERO BACKGROUND GLOW
==================================================*/

.hero-visual::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:

    radial-gradient(

    rgba(79,70,229,.25),

    transparent 70%);

    filter:blur(20px);

    z-index:-2;
}

.hero-visual::after{

    content:"";

    position:absolute;

    width:340px;

    height:340px;

    border-radius:50%;

    background:

    radial-gradient(

    rgba(6,182,212,.18),

    transparent 70%);

    top:30px;

    right:20px;

    filter:blur(15px);

    z-index:-1;
}

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

#hero::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(79,70,229,.08);

    top:-80px;

    left:-100px;

    filter:blur(80px);
}

#hero::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(6,182,212,.06);

    bottom:-80px;

    right:-60px;

    filter:blur(70px);
}

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

@media(max-width:1100px){

    .hero-grid{

        gap:50px;
    }

    .hero-content h1{

        font-size:3.8rem;
    }
}

@media(max-width:992px){

    #hero{

        padding:150px 0 90px;
    }

    .hero-grid{

        grid-template-columns:1fr;

        text-align:center;
    }

    .hero-content{

        display:flex;

        flex-direction:column;

        align-items:center;
    }

    .hero-content h1{

        max-width:100%;
    }

    .hero-content p{

        max-width:680px;
    }

    .hero-buttons{

        justify-content:center;
    }

    .hero-visual{

        min-height:460px;

        margin-top:30px;
    }
}

@media(max-width:768px){

    #hero{

        padding:140px 0 80px;
    }

    .hero-content h1{

        font-size:3rem;
    }

    .hero-content p{

        font-size:1rem;
    }

    .hero-buttons{

        width:100%;

        flex-direction:column;
    }

    .hero-buttons .btn{

        width:100%;
    }

    .hero-visual{

        min-height:380px;
    }
}

@media(max-width:480px){

    .hero-content h1{

        font-size:2.4rem;

        line-height:1.15;
    }

    .hero-badge{

        font-size:.8rem;

        padding:8px 16px;
    }

    .hero-visual{

        min-height:320px;
    }
}

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

.dashboard{

    position:relative;

    width:100%;

    max-width:520px;

    border-radius:28px;

    overflow:hidden;

    background:rgba(15,23,42,.72);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(24px);

    -webkit-backdrop-filter:blur(24px);

    box-shadow:
    0 30px 80px rgba(0,0,0,.35);

    animation:dashboardFloat 6s ease-in-out infinite;
}

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

.dashboard-header{

    display:flex;

    align-items:center;

    gap:8px;

    padding:18px 22px;

    border-bottom:1px solid rgba(255,255,255,.06);

    background:rgba(255,255,255,.03);

}

.dashboard-header span{

    width:12px;

    height:12px;

    border-radius:50%;

}

.dashboard-header span:nth-child(1){

    background:#FF5F57;

}

.dashboard-header span:nth-child(2){

    background:#FEBC2E;

}

.dashboard-header span:nth-child(3){

    background:#28C840;

}

/*==================================================
  DASHBOARD BODY
==================================================*/

.dashboard-content{

    padding:28px;

    display:flex;

    flex-direction:column;

    gap:24px;

}

/*==================================================
  ANALYTICS CARD
==================================================*/

.chart-card{

    padding:24px;

    border-radius:22px;

    background:linear-gradient(
        135deg,
        rgba(79,70,229,.18),
        rgba(6,182,212,.12)
    );

    border:1px solid rgba(255,255,255,.08);

}

.chart-card h4{

    font-size:1rem;

    margin-bottom:20px;

    color:#fff;

    font-weight:700;

}

/* Fake chart */

.chart{

    position:relative;

    height:170px;

    border-radius:16px;

    overflow:hidden;

    background:
    linear-gradient(
        to top,
        rgba(255,255,255,.03),
        transparent
    );

}

.chart::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    repeating-linear-gradient(
        to top,
        rgba(255,255,255,.05),
        rgba(255,255,255,.05) 1px,
        transparent 1px,
        transparent 34px
    );

}

.chart::after{

    content:"";

    position:absolute;

    left:20px;

    right:20px;

    bottom:28px;

    height:3px;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

    clip-path:polygon(
        0% 70%,
        12% 60%,
        24% 78%,
        36% 42%,
        48% 55%,
        60% 22%,
        72% 38%,
        84% 12%,
        100% 0,
        100% 100%,
        0 100%
    );

    animation:chartPulse 3s ease-in-out infinite;
}

/*==================================================
  MINI CARDS
==================================================*/

.mini-cards{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:16px;

}

.mini-card{

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    transition:all .35s ease;

}

.mini-card:hover{

    transform:translateY(-6px);

    border-color:rgba(99,102,241,.35);

    background:rgba(255,255,255,.07);

}

.mini-card i{

    width:42px;

    height:42px;

    display:grid;

    place-items:center;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:1.15rem;

    flex-shrink:0;

}

.mini-card{

    font-weight:600;

    color:#E2E8F0;

}

/*==================================================
  RESPONSIVE
==================================================*/

@media(max-width:992px){

    .dashboard{

        margin:auto;

        max-width:560px;

    }

}

@media(max-width:576px){

    .dashboard-content{

        padding:20px;

    }

    .mini-cards{

        grid-template-columns:1fr;

    }

    .chart{

        height:140px;

    }

}

/*==================================================
  ANIMATIONS
==================================================*/

@keyframes dashboardFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes chartPulse{

    0%{

        opacity:.75;

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:.75;

    }

}

/*==================================================
  FLOATING FEATURE CARDS
==================================================*/

.floating-card{
    position:absolute;
    display:flex;
    align-items:center;
    gap:12px;

    padding:16px 20px;

    min-width:190px;

    border-radius:18px;

    background:rgba(15,23,42,.82);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.28);

    font-weight:600;

    color:var(--text);

    transition:all .35s ease;
}

.floating-card:hover{

    transform:translateY(-8px) scale(1.03);

    border-color:rgba(99,102,241,.4);

    box-shadow:
    0 25px 55px rgba(79,70,229,.25);

}

.floating-card i{

    width:42px;
    height:42px;

    display:grid;
    place-items:center;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:1.15rem;
}

/* Card Positions */

.card-1{

    top:20px;

    right:-30px;

    animation:floatCard1 6s ease-in-out infinite;

}

.card-2{

    left:-45px;

    top:210px;

    animation:floatCard2 7s ease-in-out infinite;

}

.card-3{

    right:20px;

    bottom:10px;

    animation:floatCard3 8s ease-in-out infinite;

}


/*==================================================
  STATS SECTION
==================================================*/

#stats{

    padding:20px 0 110px;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.stat-card{

    text-align:center;

    padding:34px 22px;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(16px);

    transition:all .35s ease;
}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:rgba(99,102,241,.35);

    box-shadow:
    0 20px 45px rgba(0,0,0,.22);

}

.stat-card h3{

    font-size:2.6rem;

    margin-bottom:10px;

    font-weight:800;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    -webkit-background-clip:text;

    background-clip:text;

    color:transparent;

}

.stat-card p{

    color:var(--text-light);

    font-size:.95rem;

}


/*==================================================
  HERO FLOATING EFFECTS
==================================================*/

.hero-visual{

    animation:heroFloat 8s ease-in-out infinite;

}


/*==================================================
  RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .floating-card{

        min-width:170px;

        font-size:.9rem;

    }

}

@media(max-width:992px){

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .floating-card{

        display:none;

    }

}

@media(max-width:576px){

    .stats-grid{

        grid-template-columns:1fr;

    }

    .stat-card{

        padding:28px 20px;

    }

    .stat-card h3{

        font-size:2.2rem;

    }

}


/*==================================================
  ANIMATIONS
==================================================*/

@keyframes heroFloat{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0px);

    }

}

@keyframes floatCard1{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes floatCard2{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(14px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes floatCard3{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-16px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
  ABOUT SECTION
==================================================*/

#about{
    position:relative;
    overflow:hidden;
}

#about::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-120px;
    right:-120px;
    border-radius:50%;
    background:radial-gradient(
        rgba(79,70,229,.12),
        transparent 70%
    );
    filter:blur(40px);
    pointer-events:none;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.about-card{
    position:relative;
    padding:40px 32px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    transition:all .35s ease;
    overflow:hidden;
}

.about-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(79,70,229,.08),
        rgba(6,182,212,.04)
    );
    opacity:0;
    transition:opacity .35s ease;
}

.about-card:hover{
    transform:translateY(-10px);
    border-color:rgba(99,102,241,.35);
    box-shadow:0 24px 60px rgba(0,0,0,.28);
}

.about-card:hover::before{
    opacity:1;
}

.about-card>*{
    position:relative;
    z-index:2;
}

.about-icon{
    width:72px;
    height:72px;
    display:grid;
    place-items:center;
    border-radius:18px;
    margin-bottom:24px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    font-size:1.8rem;
    box-shadow:0 12px 30px rgba(79,70,229,.30);
}

.about-card h3{
    margin-bottom:16px;
    color:var(--text);
}

.about-card p{
    color:var(--text-light);
    line-height:1.8;
}

/* Decorative top border */

.about-card::after{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .35s ease;
}

.about-card:hover::after{
    transform:scaleX(1);
}

/*==================================================
  ABOUT RESPONSIVE
==================================================*/

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .about-card{
        padding:34px 28px;
    }

}

@media(max-width:576px){

    #about{
        padding:90px 0;
    }

    .about-grid{
        margin-top:40px;
    }

    .about-card{
        padding:28px 22px;
        border-radius:20px;
    }

    .about-icon{
        width:60px;
        height:60px;
        font-size:1.5rem;
        margin-bottom:20px;
    }

    .about-card h3{
        font-size:1.25rem;
    }

}

/*==================================================
  FEATURED PRODUCT
==================================================*/

#featured-product{
    position:relative;
    overflow:hidden;
}

#featured-product::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:-180px;
    bottom:-180px;
    border-radius:50%;
    background:radial-gradient(
        rgba(6,182,212,.10),
        transparent 70%
    );
    filter:blur(60px);
    pointer-events:none;
}

.featured-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.featured-content h2{
    font-size:clamp(2.2rem,4vw,3.2rem);
    margin:18px 0 24px;
}

.featured-content>p{
    font-size:1.05rem;
    line-height:1.9;
    color:var(--text-light);
    margin-bottom:36px;
}

/*====================================
  FEATURE LIST
====================================*/

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:40px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:16px 18px;
    border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    transition:.35s ease;
}

.feature-item:hover{
    transform:translateY(-5px);
    border-color:rgba(99,102,241,.35);
}

.feature-item i{
    color:#22C55E;
    font-size:1.2rem;
}

.featured-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/*====================================
  BROWSER WINDOW
====================================*/

.featured-image{
    display:flex;
    justify-content:center;
}

.browser-window{
    width:100%;
    max-width:560px;
    border-radius:24px;
    overflow:hidden;
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    box-shadow:0 25px 60px rgba(0,0,0,.35);
    transition:.4s ease;
}

.browser-window:hover{
    transform:translateY(-10px);
    box-shadow:0 35px 80px rgba(79,70,229,.18);
}

.browser-top{
    display:flex;
    gap:8px;
    padding:18px 22px;
    background:rgba(255,255,255,.03);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.browser-top span{
    width:12px;
    height:12px;
    border-radius:50%;
}

.browser-top span:nth-child(1){
    background:#FF5F57;
}

.browser-top span:nth-child(2){
    background:#FEBC2E;
}

.browser-top span:nth-child(3){
    background:#28C840;
}

/*====================================
  DASHBOARD MOCKUP
====================================*/

.browser-body{
    display:flex;
    min-height:360px;
}

.dashboard-sidebar{
    width:90px;
    background:rgba(255,255,255,.03);
    border-right:1px solid rgba(255,255,255,.06);
}

.dashboard-main{
    flex:1;
    padding:28px;
    display:flex;
    flex-direction:column;
    gap:22px;
}

.dash-row{
    height:54px;
    border-radius:14px;
    background:linear-gradient(
        90deg,
        rgba(99,102,241,.18),
        rgba(6,182,212,.12)
    );
}

.dash-row.large{
    flex:1;
    min-height:180px;
}

/*====================================
  RESPONSIVE
====================================*/

@media(max-width:992px){

    .featured-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .featured-content{
        text-align:center;
    }

    .feature-list{
        max-width:650px;
        margin:0 auto 40px;
    }

    .featured-buttons{
        justify-content:center;
    }

}

@media(max-width:768px){

    .feature-list{
        grid-template-columns:1fr;
    }

    .browser-body{
        min-height:300px;
    }

    .dashboard-sidebar{
        width:70px;
    }

}

@media(max-width:576px){

    .browser-window{
        border-radius:18px;
    }

    .browser-top{
        padding:14px 18px;
    }

    .dashboard-main{
        padding:18px;
    }

    .dash-row{
        height:44px;
    }

}

/*==================================================
  PRODUCTS
==================================================*/

#products{
    position:relative;
    overflow:hidden;
}

#products::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(
        rgba(124,58,237,.12),
        transparent 70%
    );
    filter:blur(60px);
    pointer-events:none;
}

/*====================================
  PRODUCTS GRID
====================================*/

.products-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:28px;

    margin-top:60px;

}

/*====================================
  PRODUCT CARD
====================================*/

.product-card{

    position:relative;

    padding:34px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:all .35s ease;

    overflow:hidden;

}

.product-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        135deg,
        rgba(79,70,229,.10),
        rgba(6,182,212,.05)
    );

    opacity:0;

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-10px);

    border-color:rgba(99,102,241,.35);

    box-shadow:
        0 30px 60px rgba(0,0,0,.30);

}

.product-card:hover::before{

    opacity:1;

}

.product-card>*{

    position:relative;

    z-index:2;

}

/*====================================
  STATUS BADGE
====================================*/

.status{

    display:inline-flex;

    align-items:center;

    padding:8px 16px;

    border-radius:999px;

    font-size:.75rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.08em;

    background:rgba(255,255,255,.08);

    color:var(--text-light);

    margin-bottom:22px;

}

.status.live{

    background:rgba(34,197,94,.12);

    color:#4ADE80;

    border:1px solid rgba(34,197,94,.25);

}

/*====================================
  PRODUCT TITLE
====================================*/

.product-card h3{

    font-size:1.6rem;

    margin-bottom:16px;

}

.product-card p{

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:28px;

}

/*====================================
  PRODUCT LINK
====================================*/

.product-card a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#A5B4FC;

    font-weight:700;

    transition:.3s;

}

.product-card a:hover{

    gap:14px;

    color:#fff;

}

/*====================================
  FEATURED PRODUCT CARD
====================================*/

.product-card.active{

    border:1px solid rgba(79,70,229,.35);

    box-shadow:
        0 0 0 1px rgba(79,70,229,.15),
        0 25px 60px rgba(79,70,229,.18);

}

.product-card.active::after{

    content:"Featured";

    position:absolute;

    top:20px;

    right:-38px;

    transform:rotate(45deg);

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:.68rem;

    font-weight:700;

    padding:6px 44px;

}

/*====================================
  RESPONSIVE
====================================*/

@media(max-width:768px){

    .products-grid{

        gap:22px;

    }

    .product-card{

        padding:28px;

    }

}

@media(max-width:576px){

    .product-card{

        padding:24px;

        border-radius:20px;

    }

    .product-card h3{

        font-size:1.35rem;

    }

}

/*==================================================
  SERVICES
==================================================*/

#services{
    position:relative;
    overflow:hidden;
}

#services::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-220px;
    left:-220px;
    border-radius:50%;
    background:radial-gradient(
        rgba(79,70,229,.10),
        transparent 70%
    );
    filter:blur(70px);
    pointer-events:none;
}

/*====================================
  SERVICES GRID
====================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:28px;

    margin-top:60px;

}

/*====================================
  SERVICE CARD
====================================*/

.service-card{

    position:relative;

    padding:36px 30px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    overflow:hidden;

    transition:all .35s ease;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(99,102,241,.35);

    box-shadow:0 25px 60px rgba(0,0,0,.28);

}

/*====================================
  SERVICE ICON
====================================*/

.service-icon{

    width:72px;

    height:72px;

    display:grid;

    place-items:center;

    margin-bottom:26px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:1.8rem;

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:rotate(-8deg) scale(1.08);

    box-shadow:0 18px 35px rgba(79,70,229,.30);

}

/*====================================
  SERVICE CONTENT
====================================*/

.service-card h3{

    margin-bottom:16px;

    font-size:1.35rem;

}

.service-card p{

    color:var(--text-light);

    line-height:1.8;

}

/*====================================
  RESPONSIVE
====================================*/

@media(max-width:768px){

    .services-grid{

        gap:22px;

    }

    .service-card{

        padding:30px 24px;

    }

}

@media(max-width:576px){

    .service-card{

        border-radius:20px;

    }

    .service-icon{

        width:60px;

        height:60px;

        font-size:1.5rem;

    }

}

/*==================================================
  WHY CHOOSE US
==================================================*/

#why-us{
    position:relative;
    overflow:hidden;
}

#why-us::after{
    content:"";
    position:absolute;
    right:-180px;
    top:80px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(
        rgba(6,182,212,.10),
        transparent 70%
    );
    filter:blur(60px);
    pointer-events:none;
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    margin-top:60px;

}

.why-card{

    padding:34px 30px;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(16px);

    transition:.35s ease;

}

.why-card:hover{

    transform:translateY(-8px);

    border-color:rgba(99,102,241,.35);

    box-shadow:0 24px 55px rgba(0,0,0,.25);

}

.why-card i{

    width:64px;

    height:64px;

    display:grid;

    place-items:center;

    border-radius:16px;

    margin-bottom:22px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:1.5rem;

}

.why-card h3{

    margin-bottom:14px;

}

.why-card p{

    color:var(--text-light);

    line-height:1.8;

}

/*==================================================
  VALUES
==================================================*/

.values-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.values-content h2{

    margin:18px 0 24px;

    font-size:clamp(2rem,4vw,3rem);

}

.values-content p{

    line-height:1.9;

}

.values-list{

    display:grid;

    gap:18px;

}

.value-item{

    display:flex;

    align-items:center;

    gap:14px;

    padding:18px 22px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s ease;

    font-weight:600;

}

.value-item:hover{

    transform:translateX(8px);

    border-color:rgba(99,102,241,.35);

}

.value-item i{

    color:#22C55E;

    font-size:1.2rem;

}

/*==================================================
  RESPONSIVE
==================================================*/

@media(max-width:992px){

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .values-wrapper{

        grid-template-columns:1fr;

        gap:40px;

    }

}

@media(max-width:768px){

    .why-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .why-card{

        padding:28px 22px;

    }

    .value-item{

        padding:16px 18px;

    }

}

/*==================================================
  TECHNOLOGIES
==================================================*/

#tech{
    position:relative;
    overflow:hidden;
}

.tech-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    margin-top:60px;
}

.tech-item{

    display:flex;
    align-items:center;
    gap:10px;

    padding:16px 26px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    color:var(--text);

    font-weight:600;

    transition:.35s ease;

}

.tech-item:hover{

    transform:translateY(-6px);

    background:linear-gradient(
        135deg,
        rgba(79,70,229,.18),
        rgba(6,182,212,.15)
    );

    border-color:rgba(99,102,241,.35);

}

.tech-item i{

    font-size:1.2rem;

    color:var(--accent);

}


/*==================================================
  INDUSTRIES
==================================================*/

.industries-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:28px;

    margin-top:60px;

}

.industry-card{

    padding:34px;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.industry-card:hover{

    transform:translateY(-8px);

    border-color:rgba(99,102,241,.35);

    box-shadow:0 20px 45px rgba(0,0,0,.22);

}

.industry-card i{

    width:64px;

    height:64px;

    display:grid;

    place-items:center;

    border-radius:16px;

    margin-bottom:20px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:1.5rem;

}

.industry-card h3{

    margin-bottom:14px;

}

.industry-card p{

    color:var(--text-light);

    line-height:1.8;

}


/*==================================================
  DEVELOPMENT PROCESS
==================================================*/

.process-wrapper{

    max-width:900px;

    margin:70px auto 0;

    position:relative;

}

.process-wrapper::before{

    content:"";

    position:absolute;

    left:28px;

    top:0;

    bottom:0;

    width:3px;

    background:linear-gradient(
        var(--primary),
        var(--accent)
    );

}

.process-step{

    position:relative;

    display:flex;

    gap:30px;

    margin-bottom:50px;

}

.process-number{

    width:58px;

    height:58px;

    flex-shrink:0;

    border-radius:50%;

    display:grid;

    place-items:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-weight:700;

    box-shadow:0 12px 25px rgba(79,70,229,.25);

    z-index:2;

}

.process-card{

    flex:1;

    padding:28px;

    border-radius:20px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.process-card:hover{

    transform:translateX(8px);

    border-color:rgba(99,102,241,.35);

}

.process-card h3{

    margin-bottom:14px;

}

.process-card p{

    color:var(--text-light);

    line-height:1.8;

}


/*==================================================
  RESPONSIVE
==================================================*/

@media(max-width:768px){

    .tech-grid{

        justify-content:flex-start;

    }

    .process-wrapper::before{

        left:24px;

    }

    .process-step{

        gap:18px;

    }

    .process-number{

        width:48px;

        height:48px;

        font-size:.9rem;

    }

}

@media(max-width:576px){

    .industry-card{

        padding:26px;

    }

    .tech-item{

        width:100%;

        justify-content:center;

    }

    .process-card{

        padding:22px;

    }

}

/*==================================================
  TESTIMONIALS
==================================================*/

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:60px;
}

.testimonial-card{
    padding:35px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:rgba(99,102,241,.35);
}

.testimonial-card p{
    line-height:1.9;
    margin-bottom:25px;
}

.testimonial-author{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-avatar{
    width:56px;
    height:56px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-weight:700;
}

/*==================================================
  FAQ
==================================================*/

.faq-list{
    max-width:900px;
    margin:60px auto 0;
}

.faq-item{
    margin-bottom:18px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    overflow:hidden;
}

.faq-question{
    width:100%;
    padding:22px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:600;
}

.faq-question i{
    transition:.3s;
}

.faq-item.active .faq-question i{
    transform:rotate(180deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    padding:0 28px 24px;
}

/*==================================================
  CTA
==================================================*/

.cta-section{
    position:relative;
    overflow:hidden;
}

.cta-box{
    padding:80px 60px;
    text-align:center;
    border-radius:32px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
}

.cta-box h2{
    font-size:clamp(2rem,4vw,3rem);
    margin-bottom:20px;
}

.cta-box p{
    color:rgba(255,255,255,.85);
    max-width:700px;
    margin:0 auto 35px;
}

.cta-box .btn.secondary{
    background:rgba(255,255,255,.12);
    border-color:rgba(255,255,255,.2);
}

/*==================================================
  CONTACT
==================================================*/

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info{
    display:grid;
    gap:20px;
}

.contact-card{
    display:flex;
    gap:18px;
    padding:22px;
    border-radius:20px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.contact-card i{
    width:54px;
    height:54px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
}

.contact-form{
    display:grid;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border-radius:16px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
}

.contact-form textarea{
    resize:vertical;
    min-height:160px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--primary);
}

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

footer{
    margin-top:120px;
    padding:70px 0 30px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-grid h4{
    margin-bottom:18px;
}

.footer-grid ul{
    display:grid;
    gap:12px;
}

.footer-grid a{
    color:var(--text-light);
    transition:.3s;
}

.footer-grid a:hover{
    color:#fff;
}

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

/*==================================================
  SCROLL REVEAL
==================================================*/

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:none;
}

/*==================================================
  RESPONSIVE
==================================================*/

@media(max-width:992px){

    .contact-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .cta-box{
        padding:60px 35px;
    }

}

@media(max-width:768px){

    .testimonial-card{
        padding:28px;
    }

    .faq-question{
        padding:18px 22px;
    }

    .faq-answer p{
        padding:0 22px 20px;
    }

}

@media(max-width:576px){

    .cta-box{
        padding:45px 22px;
        border-radius:24px;
    }

    .footer-bottom{
        text-align:center;
        justify-content:center;
    }

}