/* =========================================================
   IDING.MY.ID
   Modern Personal Branding UI
========================================================= */

:root{

    --primary:#2563eb;
    --primary2:#4f46e5;
    --secondary:#7c3aed;

    --dark:#0f172a;
    --dark2:#111827;

    --text:#1e293b;
    --muted:#64748b;

    --white:#ffffff;

    --border:#e2e8f0;

    --bg:#f8fafc;

    --success:#22c55e;

    --shadow:
    0 10px 40px rgba(15,23,42,.08);

    --shadow-hover:
    0 25px 60px rgba(37,99,235,.16);

    --radius:28px;
}

/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:
    radial-gradient(circle at top left,
    rgba(37,99,235,.08),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(124,58,237,.08),
    transparent 30%),

    var(--bg);

    color:var(--text);

    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.wrapper,
.main-wrapper{
    position:relative;
    z-index:2;
}

/* =========================================================
   CONTAINER
========================================================= */

.container{

    width:min(1200px, calc(100% - 40px));

    margin:auto;
}

/* =========================================================
   BACKGROUND EFFECT
========================================================= */

.bg-glow{

    position:fixed;

    width:500px;
    height:500px;

    border-radius:50%;

    filter:blur(120px);

    opacity:.12;

    z-index:0;
}

.glow1{

    background:#2563eb;

    top:-150px;
    left:-150px;
}

.glow2{

    background:#7c3aed;

    bottom:-150px;
    right:-150px;
}

/* =========================================================
   TOPBAR
========================================================= */

.topbar{

    background:
    linear-gradient(
        90deg,
        #0f172a,
        #111827
    );

    padding:12px 0;

    border-bottom:
    1px solid rgba(255,255,255,.06);
}

.topbar-content{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    color:#cbd5e1;

    font-size:13px;

    letter-spacing:.4px;
}

.topbar-badge{

    width:8px;
    height:8px;

    border-radius:50%;

    background:var(--success);

    box-shadow:
    0 0 12px var(--success);
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar{

    position:sticky;
    top:0;
    z-index:999;

    background:
    rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border-bottom:
    1px solid rgba(255,255,255,.5);
}

.navbar-wrapper{

    height:88px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;
}

.navbar-logo{

    display:flex;
    flex-direction:column;

    line-height:1.1;

    white-space:nowrap;

    font-size:34px;
    font-weight:800;

    color:var(--dark);

    font-family:'Outfit',sans-serif;
}

.navbar-logo span{
    color:var(--primary);
}

.navbar-logo small{

    margin-top:8px;

    font-size:12px;
    font-weight:600;

    color:var(--muted);

    letter-spacing:.5px;
}

.navbar-menu{

    display:flex;
    align-items:center;
    gap:36px;
}

.navbar-menu a{

    position:relative;

    color:var(--muted);

    font-size:15px;
    font-weight:600;

    transition:.3s;
}

.navbar-menu a:hover{
    color:var(--primary);
}

.navbar-menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    border-radius:10px;

    background:var(--primary);

    transition:.3s;
}

.navbar-menu a:hover::after{
    width:100%;
}

.navbar-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:16px 24px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:14px;
    font-weight:700;

    box-shadow:
    0 15px 35px rgba(37,99,235,.22);

    transition:.35s;
}

.navbar-btn:hover{

    transform:translateY(-4px);
}

/* =========================================================
   MOBILE
========================================================= */

.mobile-toggle{

    display:none;

    width:48px;
    height:48px;

    border:none;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    font-size:22px;

    cursor:pointer;
}

.mobile-menu{

    display:none;

    flex-direction:column;

    gap:20px;

    padding:25px;

    background:#fff;

    border-top:
    1px solid rgba(0,0,0,.06);
}

.mobile-menu a{

    color:var(--dark);

    font-weight:600;
}

.mobile-btn{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:15px;

    border-radius:16px;

    background:var(--primary);

    color:#fff !important;
}

/* =========================================================
   HERO
========================================================= */

.hero-section{

    padding:
    120px 0 100px;
}

.hero-wrapper{

    display:grid;

    grid-template-columns:
    1.1fr 1fr;

    gap:70px;

    align-items:center;
}

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:14px 20px;

    border-radius:999px;

    background:
    rgba(37,99,235,.08);

    color:var(--primary);

    font-size:14px;
    font-weight:700;
}

.hero-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:var(--success);
}

.hero-content h1{

    font-size:68px;

    line-height:1.08;

    margin:
    28px 0 24px;

    color:var(--dark);

    font-family:'Outfit',sans-serif;

    letter-spacing:-2px;
}

.hero-description{

    color:var(--muted);

    font-size:18px;

    line-height:2;

    max-width:680px;
}

.hero-action{

    display:flex;
    gap:18px;

    margin-top:40px;
}

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 32px;

    border-radius:18px;

    font-weight:700;

    transition:.35s;
}

.btn-primary{

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    box-shadow:
    0 18px 40px rgba(37,99,235,.22);
}

.btn-primary:hover{

    transform:translateY(-5px);
}

.btn-secondary{

    background:#fff;

    border:
    1px solid var(--border);

    color:var(--dark);
}

.hero-stats{

    display:flex;

    gap:20px;

    margin-top:50px;
}

.stat-card{

    background:
    rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,.5);

    border-radius:26px;

    padding:26px;

    min-width:180px;

    box-shadow:var(--shadow);
}

.stat-card h3{

    font-size:38px;

    color:var(--primary);

    margin-bottom:10px;
}

.stat-card p{

    color:var(--muted);

    font-size:14px;
}

.hero-preview-wrapper{

    position:relative;
}

.hero-preview-wrapper img{

    border-radius:34px;

    box-shadow:
    0 30px 80px rgba(15,23,42,.18);

    border:
    1px solid rgba(255,255,255,.6);
}

/* =========================================================
   SECTION
========================================================= */

.section,
.featured-system,
.technology-section,
.workflow-section,
.about-section{

    padding:110px 0;
}

.section-header{

    margin-bottom:60px;

    text-align:center;
}

.section-badge{

    display:inline-block;

    padding:12px 18px;

    border-radius:999px;

    background:
    rgba(37,99,235,.08);

    color:var(--primary);

    font-size:13px;
    font-weight:700;

    margin-bottom:20px;
}

.section-header h2{

    font-size:46px;

    color:var(--dark);

    margin-bottom:20px;

    font-family:'Outfit',sans-serif;
}

.section-header p{

    color:var(--muted);

    max-width:720px;

    margin:auto;

    line-height:1.9;
}

/* =========================================================
   FEATURED
========================================================= */

.featured-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.featured-left h2{

    font-size:48px;

    line-height:1.2;

    margin:
    20px 0 24px;

    font-family:'Outfit',sans-serif;
}

.featured-left p{

    color:var(--muted);

    line-height:2;

    margin-bottom:30px;
}

.featured-list{

    display:grid;

    gap:16px;
}

.featured-list li{

    color:var(--text);

    font-weight:600;
}

.featured-right img{

    border-radius:34px;

    box-shadow:
    0 30px 70px rgba(15,23,42,.12);
}

/* =========================================================
   PROJECT
========================================================= */

.project-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(330px,1fr));

    gap:30px;
}

.project-card{

    background:#fff;

    border-radius:32px;

    overflow:hidden;

    transition:.4s;

    border:
    1px solid rgba(226,232,240,.8);

    box-shadow:var(--shadow);
}

.project-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    var(--shadow-hover);
}

.project-image{

    position:relative;

    height:250px;

    overflow:hidden;
}

.project-image img{

    height:100%;

    object-fit:cover;

    transition:.5s;
}

.project-card:hover img{

    transform:scale(1.08);
}

.project-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(15,23,42,.8),
        transparent
    );
}

.project-badge{

    position:absolute;

    top:18px;
    left:18px;

    padding:10px 16px;

    border-radius:999px;

    background:#fff;

    color:var(--primary);

    font-size:12px;
    font-weight:700;
}

.project-content{

    padding:30px;
}

.project-content h3{

    font-size:24px;

    margin-bottom:14px;

    color:var(--dark);
}

.project-content p{

    color:var(--muted);

    line-height:1.9;

    margin-bottom:20px;
}

.project-content a{

    color:var(--primary);

    font-weight:700;
}

/* =========================================================
   TECHNOLOGY
========================================================= */

.tech-grid{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;

    gap:18px;
}

.tech-item{

    padding:16px 22px;

    border-radius:999px;

    background:#fff;

    border:
    1px solid var(--border);

    font-weight:700;

    box-shadow:
    0 10px 25px rgba(15,23,42,.05);

    transition:.35s;
}

.tech-item:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-4px);
}

/* =========================================================
   WORKFLOW
========================================================= */

.workflow-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:28px;
}

.workflow-item{

    background:#fff;

    padding:45px 35px;

    border-radius:30px;

    text-align:center;

    border:
    1px solid rgba(226,232,240,.8);

    box-shadow:var(--shadow);
}

.workflow-item span{

    font-size:58px;

    font-weight:800;

    color:rgba(37,99,235,.12);

    display:block;

    margin-bottom:20px;
}

.workflow-item h4{

    font-size:24px;

    margin-bottom:14px;
}

.workflow-item p{

    color:var(--muted);

    line-height:1.8;
}

/* =========================================================
   ABOUT
========================================================= */

.about-wrapper{

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #111827
    );

    border-radius:40px;

    padding:70px;

    display:grid;

    grid-template-columns:.8fr 1fr;

    gap:60px;

    color:#fff;

    overflow:hidden;

    position:relative;
}

.about-wrapper::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
    rgba(255,255,255,.04);

    top:-180px;
    right:-180px;
}

.about-left h2{

    font-size:48px;

    margin:
    20px 0 10px;

    font-family:'Outfit',sans-serif;
}

.about-left h3{

    color:#cbd5e1;

    font-weight:500;

    line-height:1.8;
}

.about-right p{

    color:#cbd5e1;

    line-height:2;

    margin-bottom:24px;
}

/* =========================================================
   CTA
========================================================= */

.cta-section{

    padding:
    0 0 110px;
}

.cta-wrapper{

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    border-radius:40px;

    padding:90px 60px;

    text-align:center;

    color:#fff;

    position:relative;

    overflow:hidden;
}

.cta-wrapper::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(255,255,255,.18),
    transparent 30%);
}

.cta-wrapper h2{

    position:relative;
    z-index:2;

    font-size:52px;

    margin-bottom:22px;

    font-family:'Outfit',sans-serif;
}

.cta-wrapper p{

    position:relative;
    z-index:2;

    color:#e0e7ff;

    font-size:18px;

    margin-bottom:36px;
}

.cta-button{

    position:relative;
    z-index:2;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 34px;

    border-radius:18px;

    background:#fff;

    color:var(--primary);

    font-weight:700;

    transition:.35s;
}

.cta-button:hover{

    transform:translateY(-5px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .hero-wrapper,
    .featured-wrapper,
    .about-wrapper{

        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:54px;
    }
}

@media(max-width:992px){

    .navbar-menu,
    .navbar-btn{

        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .mobile-menu.active{
        display:flex;
    }
}

@media(max-width:768px){

    .hero-content h1{
        font-size:42px;
    }

    .section-header h2,
    .featured-left h2,
    .about-left h2,
    .cta-wrapper h2{

        font-size:34px;
    }

    .hero-stats{

        flex-direction:column;
    }

    .about-wrapper{

        padding:40px 30px;
    }

    .cta-wrapper{

        padding:70px 30px;
    }
}

@media(max-width:500px){

    .hero-action{

        flex-direction:column;
    }

    .hero-action .btn{

        width:100%;
    }

    .hero-content h1{

        font-size:34px;
    }

    .project-grid{

        grid-template-columns:1fr;
    }

    .container{

        width:min(100% - 24px);
    }
}
/* =========================================================
   IDING.MY.ID
   Modern Personal Branding UI
========================================================= */

:root{

    --primary:#2563eb;
    --primary2:#4f46e5;
    --secondary:#7c3aed;

    --dark:#0f172a;
    --dark2:#111827;

    --text:#1e293b;
    --muted:#64748b;

    --white:#ffffff;

    --border:#e2e8f0;

    --bg:#f8fafc;

    --success:#22c55e;

    --shadow:
    0 10px 40px rgba(15,23,42,.08);

    --shadow-hover:
    0 25px 60px rgba(37,99,235,.16);

    --radius:28px;
}

/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:
    radial-gradient(circle at top left,
    rgba(37,99,235,.08),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(124,58,237,.08),
    transparent 30%),

    var(--bg);

    color:var(--text);

    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.wrapper,
.main-wrapper{
    position:relative;
    z-index:2;
}

/* =========================================================
   CONTAINER
========================================================= */

.container{

    width:min(1200px, calc(100% - 40px));

    margin:auto;
}

/* =========================================================
   BACKGROUND EFFECT
========================================================= */

.bg-glow{

    position:fixed;

    width:500px;
    height:500px;

    border-radius:50%;

    filter:blur(120px);

    opacity:.12;

    z-index:0;
}

.glow1{

    background:#2563eb;

    top:-150px;
    left:-150px;
}

.glow2{

    background:#7c3aed;

    bottom:-150px;
    right:-150px;
}

/* =========================================================
   TOPBAR
========================================================= */

.topbar{

    background:
    linear-gradient(
        90deg,
        #0f172a,
        #111827
    );

    padding:12px 0;

    border-bottom:
    1px solid rgba(255,255,255,.06);
}

.topbar-content{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    color:#cbd5e1;

    font-size:13px;

    letter-spacing:.4px;
}

.topbar-badge{

    width:8px;
    height:8px;

    border-radius:50%;

    background:var(--success);

    box-shadow:
    0 0 12px var(--success);
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar{

    position:sticky;
    top:0;
    z-index:999;

    background:
    rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border-bottom:
    1px solid rgba(255,255,255,.5);
}

.navbar-wrapper{

    height:88px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;
}

.navbar-logo{

    display:flex;
    flex-direction:column;

    line-height:1.1;

    white-space:nowrap;

    font-size:34px;
    font-weight:800;

    color:var(--dark);

    font-family:'Outfit',sans-serif;
}

.navbar-logo span{
    color:var(--primary);
}

.navbar-logo small{

    margin-top:8px;

    font-size:12px;
    font-weight:600;

    color:var(--muted);

    letter-spacing:.5px;
}

.navbar-menu{

    display:flex;
    align-items:center;
    gap:36px;
}

.navbar-menu a{

    position:relative;

    color:var(--muted);

    font-size:15px;
    font-weight:600;

    transition:.3s;
}

.navbar-menu a:hover{
    color:var(--primary);
}

.navbar-menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    border-radius:10px;

    background:var(--primary);

    transition:.3s;
}

.navbar-menu a:hover::after{
    width:100%;
}

.navbar-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:16px 24px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:14px;
    font-weight:700;

    box-shadow:
    0 15px 35px rgba(37,99,235,.22);

    transition:.35s;
}

.navbar-btn:hover{

    transform:translateY(-4px);
}

/* =========================================================
   MOBILE
========================================================= */

.mobile-toggle{

    display:none;

    width:48px;
    height:48px;

    border:none;

    border-radius:14px;

    background:var(--primary);

    color:#fff;

    font-size:22px;

    cursor:pointer;
}

.mobile-menu{

    display:none;

    flex-direction:column;

    gap:20px;

    padding:25px;

    background:#fff;

    border-top:
    1px solid rgba(0,0,0,.06);
}

.mobile-menu a{

    color:var(--dark);

    font-weight:600;
}

.mobile-btn{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:15px;

    border-radius:16px;

    background:var(--primary);

    color:#fff !important;
}

/* =========================================================
   HERO
========================================================= */

.hero-section{

    padding:
    120px 0 100px;
}

.hero-wrapper{

    display:grid;

    grid-template-columns:
    1.1fr 1fr;

    gap:70px;

    align-items:center;
}

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:14px 20px;

    border-radius:999px;

    background:
    rgba(37,99,235,.08);

    color:var(--primary);

    font-size:14px;
    font-weight:700;
}

.hero-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:var(--success);
}

.hero-content h1{

    font-size:68px;

    line-height:1.08;

    margin:
    28px 0 24px;

    color:var(--dark);

    font-family:'Outfit',sans-serif;

    letter-spacing:-2px;
}

.hero-description{

    color:var(--muted);

    font-size:18px;

    line-height:2;

    max-width:680px;
}

.hero-action{

    display:flex;
    gap:18px;

    margin-top:40px;
}

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 32px;

    border-radius:18px;

    font-weight:700;

    transition:.35s;
}

.btn-primary{

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    box-shadow:
    0 18px 40px rgba(37,99,235,.22);
}

.btn-primary:hover{

    transform:translateY(-5px);
}

.btn-secondary{

    background:#fff;

    border:
    1px solid var(--border);

    color:var(--dark);
}

.hero-stats{

    display:flex;

    gap:20px;

    margin-top:50px;
}

.stat-card{

    background:
    rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,.5);

    border-radius:26px;

    padding:26px;

    min-width:180px;

    box-shadow:var(--shadow);
}

.stat-card h3{

    font-size:38px;

    color:var(--primary);

    margin-bottom:10px;
}

.stat-card p{

    color:var(--muted);

    font-size:14px;
}

.hero-preview-wrapper{

    position:relative;
}

.hero-preview-wrapper img{

    border-radius:34px;

    box-shadow:
    0 30px 80px rgba(15,23,42,.18);

    border:
    1px solid rgba(255,255,255,.6);
}

/* =========================================================
   SECTION
========================================================= */

.section,
.featured-system,
.technology-section,
.workflow-section,
.about-section{

    padding:110px 0;
}

.section-header{

    margin-bottom:60px;

    text-align:center;
}

.section-badge{

    display:inline-block;

    padding:12px 18px;

    border-radius:999px;

    background:
    rgba(37,99,235,.08);

    color:var(--primary);

    font-size:13px;
    font-weight:700;

    margin-bottom:20px;
}

.section-header h2{

    font-size:46px;

    color:var(--dark);

    margin-bottom:20px;

    font-family:'Outfit',sans-serif;
}

.section-header p{

    color:var(--muted);

    max-width:720px;

    margin:auto;

    line-height:1.9;
}

/* =========================================================
   FEATURED
========================================================= */

.featured-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.featured-left h2{

    font-size:48px;

    line-height:1.2;

    margin:
    20px 0 24px;

    font-family:'Outfit',sans-serif;
}

.featured-left p{

    color:var(--muted);

    line-height:2;

    margin-bottom:30px;
}

.featured-list{

    display:grid;

    gap:16px;
}

.featured-list li{

    color:var(--text);

    font-weight:600;
}

.featured-right img{

    border-radius:34px;

    box-shadow:
    0 30px 70px rgba(15,23,42,.12);
}

/* =========================================================
   PROJECT
========================================================= */

.project-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(330px,1fr));

    gap:30px;
}

.project-card{

    background:#fff;

    border-radius:32px;

    overflow:hidden;

    transition:.4s;

    border:
    1px solid rgba(226,232,240,.8);

    box-shadow:var(--shadow);
}

.project-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    var(--shadow-hover);
}

.project-image{

    position:relative;

    height:250px;

    overflow:hidden;
}

.project-image img{

    height:100%;

    object-fit:cover;

    transition:.5s;
}

.project-card:hover img{

    transform:scale(1.08);
}

.project-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(15,23,42,.8),
        transparent
    );
}

.project-badge{

    position:absolute;

    top:18px;
    left:18px;

    padding:10px 16px;

    border-radius:999px;

    background:#fff;

    color:var(--primary);

    font-size:12px;
    font-weight:700;
}

.project-content{

    padding:30px;
}

.project-content h3{

    font-size:24px;

    margin-bottom:14px;

    color:var(--dark);
}

.project-content p{

    color:var(--muted);

    line-height:1.9;

    margin-bottom:20px;
}

.project-content a{

    color:var(--primary);

    font-weight:700;
}

/* =========================================================
   TECHNOLOGY
========================================================= */

.tech-grid{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;

    gap:18px;
}

.tech-item{

    padding:16px 22px;

    border-radius:999px;

    background:#fff;

    border:
    1px solid var(--border);

    font-weight:700;

    box-shadow:
    0 10px 25px rgba(15,23,42,.05);

    transition:.35s;
}

.tech-item:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-4px);
}

/* =========================================================
   WORKFLOW
========================================================= */

.workflow-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:28px;
}

.workflow-item{

    background:#fff;

    padding:45px 35px;

    border-radius:30px;

    text-align:center;

    border:
    1px solid rgba(226,232,240,.8);

    box-shadow:var(--shadow);
}

.workflow-item span{

    font-size:58px;

    font-weight:800;

    color:rgba(37,99,235,.12);

    display:block;

    margin-bottom:20px;
}

.workflow-item h4{

    font-size:24px;

    margin-bottom:14px;
}

.workflow-item p{

    color:var(--muted);

    line-height:1.8;
}

/* =========================================================
   ABOUT
========================================================= */

.about-wrapper{

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #111827
    );

    border-radius:40px;

    padding:70px;

    display:grid;

    grid-template-columns:.8fr 1fr;

    gap:60px;

    color:#fff;

    overflow:hidden;

    position:relative;
}

.about-wrapper::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
    rgba(255,255,255,.04);

    top:-180px;
    right:-180px;
}

.about-left h2{

    font-size:48px;

    margin:
    20px 0 10px;

    font-family:'Outfit',sans-serif;
}

.about-left h3{

    color:#cbd5e1;

    font-weight:500;

    line-height:1.8;
}

.about-right p{

    color:#cbd5e1;

    line-height:2;

    margin-bottom:24px;
}

/* =========================================================
   CTA
========================================================= */

.cta-section{

    padding:
    0 0 110px;
}

.cta-wrapper{

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    border-radius:40px;

    padding:90px 60px;

    text-align:center;

    color:#fff;

    position:relative;

    overflow:hidden;
}

.cta-wrapper::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(255,255,255,.18),
    transparent 30%);
}

.cta-wrapper h2{

    position:relative;
    z-index:2;

    font-size:52px;

    margin-bottom:22px;

    font-family:'Outfit',sans-serif;
}

.cta-wrapper p{

    position:relative;
    z-index:2;

    color:#e0e7ff;

    font-size:18px;

    margin-bottom:36px;
}

.cta-button{

    position:relative;
    z-index:2;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 34px;

    border-radius:18px;

    background:#fff;

    color:var(--primary);

    font-weight:700;

    transition:.35s;
}

.cta-button:hover{

    transform:translateY(-5px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

    .hero-wrapper,
    .featured-wrapper,
    .about-wrapper{

        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:54px;
    }
}

@media(max-width:992px){

    .navbar-menu,
    .navbar-btn{

        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .mobile-menu.active{
        display:flex;
    }
}

@media(max-width:768px){

    .hero-content h1{
        font-size:42px;
    }

    .section-header h2,
    .featured-left h2,
    .about-left h2,
    .cta-wrapper h2{

        font-size:34px;
    }

    .hero-stats{

        flex-direction:column;
    }

    .about-wrapper{

        padding:40px 30px;
    }

    .cta-wrapper{

        padding:70px 30px;
    }
}

@media(max-width:500px){

    .hero-action{

        flex-direction:column;
    }

    .hero-action .btn{

        width:100%;
    }

    .hero-content h1{

        font-size:34px;
    }

    .project-grid{

        grid-template-columns:1fr;
    }

    .container{

        width:min(100% - 24px);
    }
}

/* =========================================================
   NAVBAR MODERN
========================================================= */

.navbar{

    position:sticky;
    top:0;
    z-index:999;

    width:100%;

    background:
    rgba(255,255,255,.72);

    backdrop-filter:blur(20px);

    border-bottom:
    1px solid rgba(255,255,255,.5);

    box-shadow:
    0 10px 30px rgba(15,23,42,.05);
}

.navbar-wrapper{

    min-height:86px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;
}

/* =========================================================
   LOGO
========================================================= */

.navbar-logo{

    display:flex;
    flex-direction:column;

    text-decoration:none;

    flex-shrink:0;
}

.logo-text{

    font-size:30px;
    font-weight:800;

    color:#0f172a;

    line-height:1;
    letter-spacing:-1px;
}

.logo-text span{

    color:#2563eb;
}

.logo-subtitle{

    margin-top:6px;

    font-size:13px;
    font-weight:600;

    color:#64748b;

    letter-spacing:.3px;
}

/* =========================================================
   MENU
========================================================= */

.navbar-menu{

    display:flex;
    align-items:center;
    gap:34px;
}

.navbar-menu a{

    position:relative;

    color:#475569;

    font-size:15px;
    font-weight:600;

    text-decoration:none;

    transition:.3s;
}

.navbar-menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:#2563eb;

    border-radius:20px;

    transition:.3s;
}

.navbar-menu a:hover{

    color:#2563eb;
}

.navbar-menu a:hover::after{

    width:100%;
}

/* =========================================================
   RIGHT
========================================================= */

.navbar-right{

    display:flex;
    align-items:center;
    gap:16px;
}

/* =========================================================
   BUTTON
========================================================= */

.navbar-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 24px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:#fff;

    font-size:14px;
    font-weight:700;

    text-decoration:none;

    transition:.35s;

    box-shadow:
    0 14px 30px rgba(37,99,235,.25);
}

.navbar-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 20px 40px rgba(37,99,235,.35);
}

/* =========================================================
   MOBILE BUTTON
========================================================= */

.mobile-toggle{

    width:48px;
    height:48px;

    border:none;

    border-radius:14px;

    background:
    rgba(37,99,235,.08);

    color:#2563eb;

    font-size:20px;

    cursor:pointer;

    display:none;

    transition:.3s;
}

.mobile-toggle:hover{

    background:#2563eb;
    color:#fff;
}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu{

    display:none;

    border-top:
    1px solid rgba(255,255,255,.5);

    background:
    rgba(255,255,255,.95);

    backdrop-filter:blur(20px);
}

.mobile-menu.active{

    display:block;
}

.mobile-menu-wrapper{

    display:flex;
    flex-direction:column;

    gap:18px;

    padding:25px 0;
}

.mobile-menu a{

    text-decoration:none;

    color:#334155;

    font-weight:600;

    transition:.3s;
}

.mobile-menu a:hover{

    color:#2563eb;
}

.mobile-btn{

    margin-top:10px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:#fff !important;

    padding:15px 20px;

    border-radius:16px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

    .navbar-menu,
    .navbar-btn{

        display:none;
    }

    .mobile-toggle{

        display:flex;
        align-items:center;
        justify-content:center;
    }

    .navbar-wrapper{

        min-height:78px;
    }

    .logo-text{

        font-size:26px;
    }
}

@media(max-width:576px){

    .logo-text{

        font-size:22px;
    }

    .logo-subtitle{

        font-size:11px;
    }

    .navbar-wrapper{

        gap:15px;
    }
}

/* =========================================================
   CONTAINER
========================================================= */

.container-custom{

    width:100%;
    max-width:1280px;

    margin:auto;

    padding-left:24px;
    padding-right:24px;
}

/* =========================================================
   BODY
========================================================= */

body{

    font-family:'Inter',sans-serif;

    background:
    radial-gradient(circle at top left,
    rgba(37,99,235,.10),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(124,58,237,.08),
    transparent 30%),

    #f8fafc;

    color:#0f172a;

    overflow-x:hidden;
}

/* =========================================================
   TOPBAR
========================================================= */

.topbar{

    background:
    linear-gradient(
        90deg,
        #0f172a,
        #111827
    );

    padding:12px 0;

    color:#cbd5e1;

    font-size:13px;
}

.topbar-content{

    display:flex;
    align-items:center;
    justify-content:center;

    gap:10px;
}

.topbar-dot{

    width:8px;
    height:8px;

    border-radius:50%;

    background:#22c55e;

    box-shadow:
    0 0 12px #22c55e;
}

/* =========================================================
   HERO
========================================================= */

.hero{

    padding:
    110px 0 90px;

    position:relative;
}

.hero-grid{

    display:grid;

    grid-template-columns:
    1.1fr .9fr;

    gap:70px;

    align-items:center;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content h1{

    font-size:72px;

    line-height:1.05;

    font-weight:800;

    letter-spacing:-3px;

    color:#0f172a;

    margin:
    28px 0;
}

.hero-content p{

    font-size:20px;

    line-height:1.9;

    color:#475569;

    max-width:720px;
}

/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 18px;

    border-radius:999px;

    background:
    rgba(37,99,235,.08);

    color:#2563eb;

    font-size:14px;
    font-weight:700;
}

.hero-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#22c55e;
}

/* =========================================================
   BUTTON
========================================================= */

.hero-action{

    display:flex;
    align-items:center;

    gap:18px;

    margin-top:42px;
}

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 28px;

    border-radius:18px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;
}

.btn.primary{

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:#fff;

    box-shadow:
    0 18px 40px rgba(37,99,235,.22);
}

.btn.primary:hover{

    transform:translateY(-5px);
}

.btn.secondary{

    background:#fff;

    border:
    1px solid #e2e8f0;

    color:#0f172a;
}

.btn.secondary:hover{

    transform:translateY(-5px);

    border-color:#2563eb;
}

/* =========================================================
   STATS
========================================================= */

.stats{

    display:flex;
    gap:20px;

    margin-top:50px;
}

.stat{

    background:
    rgba(255,255,255,.75);

    backdrop-filter:blur(16px);

    border:
    1px solid rgba(255,255,255,.6);

    box-shadow:
    0 15px 35px rgba(15,23,42,.05);

    border-radius:24px;

    padding:26px;

    min-width:180px;
}

.stat h3{

    font-size:36px;

    color:#2563eb;

    margin-bottom:8px;
}

.stat p{

    color:#64748b;

    font-size:15px;
}

/* =========================================================
   HERO PREVIEW
========================================================= */

.hero-preview{

    position:relative;
}

.hero-preview img{

    width:100%;

    border-radius:34px;

    box-shadow:
    0 40px 80px rgba(15,23,42,.16);

    border:
    1px solid rgba(255,255,255,.5);
}

/* =========================================================
   FEATURED
========================================================= */

.featured{

    padding:
    100px 0;
}

.featured-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:60px;

    align-items:center;
}

.featured-left h2{

    font-size:48px;

    line-height:1.2;

    margin:
    24px 0;
}

.featured-left p{

    line-height:1.9;

    color:#64748b;

    margin-bottom:28px;
}

.featured-left ul{

    display:grid;

    gap:14px;

    color:#0f172a;
}

.featured-right img{

    border-radius:30px;

    box-shadow:
    0 25px 70px rgba(15,23,42,.12);
}

/* =========================================================
   SECTION
========================================================= */

.section,
.technology,
.workflow,
.about-section{

    padding:
    110px 0;
}

.section-header{

    text-align:center;

    max-width:800px;

    margin:
    0 auto 70px;
}

.section-header h2{

    font-size:52px;

    line-height:1.2;

    margin:
    20px 0;
}

.section-header p{

    color:#64748b;

    line-height:1.8;

    font-size:18px;
}

.section-badge{

    display:inline-flex;
    align-items:center;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(37,99,235,.08);

    color:#2563eb;

    font-size:13px;
    font-weight:700;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

    .hero-grid,
    .featured-grid,
    .about-card{

        grid-template-columns:1fr;
    }

    .hero{

        padding-top:90px;
    }

    .hero-content h1{

        font-size:54px;
    }

    .featured-left h2,
    .section-header h2{

        font-size:40px;
    }
}

@media(max-width:768px){

    .navbar-menu,
    .navbar-btn{

        display:none;
    }

    .hero-content h1{

        font-size:42px;
    }

    .hero-content p{

        font-size:17px;
    }

    .hero-action{

        flex-direction:column;

        align-items:stretch;
    }

    .stats{

        flex-direction:column;
    }

    .section-header h2{

        font-size:34px;
    }
}

@media(max-width:576px){

    .hero{

        padding:
        70px 0 60px;
    }

    .hero-content h1{

        font-size:34px;

        letter-spacing:-1px;
    }

    .container-custom{

        padding-left:18px;
        padding-right:18px;
    }
}

/* =========================================================
FOOTER MODERN FINAL
========================================================= */

.footer-modern{

    position:relative;

    margin-top:120px;

    background:
    linear-gradient(
        180deg,
        #081120 0%,
        #030712 100%
    );

    overflow:hidden;

    border-top:
    1px solid rgba(255,255,255,.06);
}

/* BLUR */

.footer-blur{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.18;

    z-index:0;
}

.footer-blur-1{

    width:320px;
    height:320px;

    background:#2563eb;

    top:-120px;
    left:-120px;
}

.footer-blur-2{

    width:280px;
    height:280px;

    background:#7c3aed;

    bottom:-120px;
    right:-120px;
}

/* TOP GRID */

.footer-top-grid{

    position:relative;
    z-index:2;

    display:grid;

    grid-template-columns:
    1.3fr .8fr .9fr 1fr;

    gap:50px;

    padding:90px 0 70px;
}

/* BRAND */

.footer-logo{

    display:inline-block;

    font-size:38px;

    font-weight:800;

    color:#fff;

    text-decoration:none;

    line-height:1;
}

.footer-logo span{

    color:#3b82f6;
}

.footer-subtitle{

    margin-top:10px;

    color:#94a3b8;

    font-size:15px;

    font-weight:600;
}

.footer-description{

    margin-top:28px;

    color:rgba(255,255,255,.68);

    line-height:1.9;

    font-size:15px;
}

/* TITLE */

.footer-title{

    color:#fff;

    font-size:20px;

    margin-bottom:26px;

    font-weight:700;
}

/* MENU */

.footer-menu{

    list-style:none;

    display:flex;
    flex-direction:column;

    gap:16px;
}

.footer-menu a{

    color:rgba(255,255,255,.62);

    text-decoration:none;

    transition:.3s;
}

.footer-menu a:hover{

    color:#fff;

    transform:translateX(5px);
}

/* SOCIAL */

.footer-social{

    display:flex;

    gap:14px;

    margin-top:30px;
}

.footer-social a{

    width:48px;
    height:48px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#fff;

    font-size:18px;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.08);

    transition:.35s;
}

.footer-social a:hover{

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px rgba(37,99,235,.35);
}

/* CONTACT */

.footer-contact-list{

    display:flex;

    flex-direction:column;

    gap:16px;
}

.footer-contact-item{

    display:flex;

    gap:16px;

    align-items:flex-start;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.06);

    padding:16px;

    border-radius:18px;
}

.footer-contact-icon{

    width:44px;
    height:44px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:#fff;

    flex-shrink:0;
}

.footer-contact-text{

    color:rgba(255,255,255,.72);

    line-height:1.7;

    font-size:14px;
}

/* CTA */

.footer-cta{

    position:relative;
    z-index:2;

    margin-top:10px;

    padding:50px;

    border-radius:36px;

    background:
    linear-gradient(
        135deg,
        rgba(37,99,235,.22),
        rgba(124,58,237,.18)
    );

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;
}

.footer-cta-badge{

    display:inline-block;

    padding:10px 16px;

    border-radius:999px;

    background:
    rgba(255,255,255,.08);

    color:#fff;

    font-size:12px;

    letter-spacing:.5px;

    margin-bottom:18px;
}

.footer-cta h2{

    color:#fff;

    font-size:38px;

    line-height:1.2;

    margin-bottom:18px;
}

.footer-cta p{

    color:rgba(255,255,255,.72);

    max-width:700px;

    line-height:1.9;
}

.footer-cta-button{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 30px;

    border-radius:18px;

    background:#fff;

    color:#2563eb;

    text-decoration:none;

    font-weight:700;

    transition:.35s;
}

.footer-cta-button:hover{

    transform:translateY(-4px);

    box-shadow:
    0 18px 45px rgba(255,255,255,.18);
}

/* BOTTOM */

.footer-bottom{

    position:relative;
    z-index:2;

    margin-top:60px;

    padding:30px 0 40px;

    border-top:
    1px solid rgba(255,255,255,.06);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}

.footer-copy{

    color:rgba(255,255,255,.55);

    font-size:14px;
}

.footer-bottom-links{

    display:flex;

    gap:24px;

    flex-wrap:wrap;
}

.footer-bottom-links a{

    color:rgba(255,255,255,.55);

    text-decoration:none;

    transition:.3s;
}

.footer-bottom-links a:hover{

    color:#fff;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .footer-top-grid{

        grid-template-columns:
        1fr 1fr;
    }
}

@media(max-width:768px){

    .footer-top-grid{

        grid-template-columns:1fr;

        gap:40px;

        padding:70px 0 50px;
    }

    .footer-cta{

        flex-direction:column;

        align-items:flex-start;

        padding:35px 28px;
    }

    .footer-cta h2{

        font-size:30px;
    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;
    }

    .footer-bottom-links{

        justify-content:center;
    }

    .footer-logo{

        font-size:32px;
    }
}

/* =========================================================
MOBILE MENU
========================================================= */

.mobile-toggle{

    width:48px;
    height:48px;

    border:none;

    border-radius:14px;

    display:none;

    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:#fff;

    font-size:22px;

    cursor:pointer;

    transition:.3s;
}

.mobile-toggle:hover{

    transform:translateY(-3px);
}

/* MOBILE MENU */

.mobile-menu{

    position:absolute;

    top:100%;

    left:0;
    right:0;

    background:
    rgba(255,255,255,.98);

    backdrop-filter:blur(20px);

    border-bottom:
    1px solid rgba(0,0,0,.06);

    padding:24px;

    display:flex;

    flex-direction:column;

    gap:16px;

    opacity:0;

    visibility:hidden;

    transform:
    translateY(-10px);

    transition:.35s;

    z-index:998;
}

.mobile-menu.active{

    opacity:1;

    visibility:visible;

    transform:
    translateY(0);
}

.mobile-menu a{

    text-decoration:none;

    color:#0f172a;

    font-weight:600;

    padding:14px 16px;

    border-radius:14px;

    transition:.3s;
}

.mobile-menu a:hover{

    background:
    rgba(37,99,235,.08);

    color:#2563eb;
}

.mobile-btn{

    margin-top:10px;

    display:flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    padding:16px 22px;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:#fff !important;

    font-weight:700;
}

/* =========================================================
NAVBAR SCROLL
========================================================= */

.navbar{

    transition:
    background .35s ease,
    box-shadow .35s ease,
    padding .35s ease;
}

.navbar.scrolled{

    background:
    rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    box-shadow:
    0 10px 40px rgba(15,23,42,.08);
}

/* =========================================================
PRELOADER
========================================================= */

.preloader{

    position:fixed;

    inset:0;

    background:
    linear-gradient(
        135deg,
        #081120,
        #0f172a
    );

    z-index:99999;

    display:flex;

    align-items:center;
    justify-content:center;

    transition:.5s;
}

.preloader.hide{

    opacity:0;

    visibility:hidden;
}

.preloader::before{

    content:"";

    width:70px;
    height:70px;

    border-radius:50%;

    border:
    4px solid rgba(255,255,255,.1);

    border-top:
    4px solid #3b82f6;

    animation:
    loadingSpin 1s linear infinite;
}

@keyframes loadingSpin{

    100%{

        transform:rotate(360deg);
    }
}

/* =========================================================
BUTTON EFFECT
========================================================= */

.btn,
.navbar-btn,
.footer-cta-button,
.cta-btn{

    position:relative;

    overflow:hidden;
}

.btn::before,
.navbar-btn::before,
.footer-cta-button::before,
.cta-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.22),
        transparent
    );

    transition:.7s;
}

.btn:hover::before,
.navbar-btn:hover::before,
.footer-cta-button:hover::before,
.cta-btn:hover::before{

    left:100%;
}

/* =========================================================
SCROLLBAR
========================================================= */

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-track{

    background:#e2e8f0;
}

::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
        180deg,
        #2563eb,
        #7c3aed
    );

    border-radius:30px;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:992px){

    .navbar-menu,
    .navbar-btn{

        display:none;
    }

    .mobile-toggle{

        display:flex;
    }
}

@media(max-width:768px){

    .mobile-menu{

        padding:20px;
    }
}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-toggle{

    width:50px;
    height:50px;

    border:none;
    outline:none;

    display:none;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:
    rgba(255,255,255,.08);

    color:#fff;

    font-size:22px;

    cursor:pointer;
}

.mobile-menu{

    position:absolute;

    top:100%;
    left:0;

    width:100%;

    background:
    rgba(3,7,18,.98);

    backdrop-filter:blur(20px);

    border-top:
    1px solid rgba(255,255,255,.06);

    padding:25px;

    display:flex;
    flex-direction:column;

    gap:18px;

    opacity:0;
    visibility:hidden;

    transform:translateY(-10px);

    transition:.35s ease;
}

.mobile-menu.active{

    opacity:1;
    visibility:visible;

    transform:translateY(0);
}

.mobile-menu a{

    color:#cbd5e1;

    text-decoration:none;

    font-size:15px;
    font-weight:500;
}

.mobile-btn{

    margin-top:10px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff !important;

    padding:14px 18px;

    border-radius:16px;
}