/* ==========================================================
   NOTAKITA LANDING PAGE
   PART 1A
   Design System
   Reset
   Background
   Navbar
==========================================================*/

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

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Plus Jakarta Sans',sans-serif;

    color:#F8FAFC;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    font-family:inherit;

    cursor:pointer;

}

ul{

    list-style:none;

}

/* ===========================
   DESIGN SYSTEM
=========================== */

:root{

    --primary:#2563EB;

    --primary-hover:#1D4ED8;

    --secondary:#22C55E;

    --dark:#071A34;

    --surface:#102443;

    --surface-2:#132C52;

    --white:#F8FAFC;

    --muted:#B8C5D6;

    --border:rgba(255,255,255,.08);

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

    --radius:22px;

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

    --container:1350px;

    --transition:.35s ease;

}

/* ===========================
   CONTAINER
=========================== */

.container{

    width:min(
        calc(100% - 20px),
        var(--container)
    );

    margin:auto;

}

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

.bg-gradient{

    position:fixed;

    inset:0;

    background:
        radial-gradient(
            circle at top left,
            rgba(37,99,235,.25),
            transparent 45%
        ),

        radial-gradient(
            circle at bottom right,
            rgba(34,197,94,.12),
            transparent 40%
        ),

        linear-gradient(
            180deg,
            #071A34,
            #081C37,
            #071A34
        );

    z-index:-5;

}

.bg-glow{

    position:fixed;

    border-radius:50%;

    filter:blur(90px);

    opacity:.35;

    z-index:-4;

}

.bg-glow-1{

    width:420px;

    height:420px;

    background:#2563EB;

    top:-120px;

    left:-100px;

}

.bg-glow-2{

    width:360px;

    height:360px;

    background:#22C55E;

    bottom:-120px;

    right:-80px;

}
/* ===========================
   NAVBAR
=========================== */

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo-dot{

    width:14px;

    height:14px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #22C55E,
        #2563EB
    );

    box-shadow:

        0 0 20px rgba(37,99,235,.8);

}

.logo-text{

    font-size:24px;

    font-weight:800;

    letter-spacing:.12em;

}

.nav-menu{

    display:flex;

    align-items:center;

    gap:38px;

}

.nav-menu a{

    color:var(--muted);

    font-size:15px;

    transition:var(--transition);

}

.nav-menu a:hover{

    color:var(--white);

}

.nav-action{

    display:flex;

    align-items:center;

    gap:18px;

}

.btn-text{

    color:var(--muted);

    transition:var(--transition);

}

.btn-text:hover{

    color:#fff;

}

.btn-primary {
    display: inline-flex;
    padding: 14px 25px;
    border-radius: 999px;
    background: linear-gradient(135deg, #b2ffaf, #ff9baa);
    color: #161616;
    font-weight: 700;
    transition: var(--transition);
    font-size: 18px;
    justify-content:center;
    border: 2px solid #fffefa69;
}

.btn-primary:hover{

    transform:translateY(-2px);

    box-shadow:

        0 20px 45px rgba(37,99,235,.45);

}

.mobile-toggle{

    display:none;

}
/* ==========================================================
   PART 1B
   HERO
==========================================================*/

.hero{

    position:relative;

    padding:40px 0 80px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    align-items:center;

    gap:60px;

}

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

.hero-content{

    position:relative;

    z-index:5;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    margin-bottom:28px;

    border-radius:999px;

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

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

    backdrop-filter:blur(12px);

    color:#7DD3FC;

    font-size:13px;

    font-weight:700;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.hero h1{

    max-width:680px;

    margin-bottom:28px;

    font-size:68px;

    line-height:1.4;

    font-weight:800;

    letter-spacing:-2px;

}

.hero h1 span{

    display:block;

    background:linear-gradient(
        135deg,
        #60A5FA,
        #22C55E
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;

}

.hero-description{

    max-width:620px;

    color:#ffffff;

    font-size:18px;

    line-height:1.9;

    margin-bottom:20px;

}

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

.hero-feature{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:40px;

}

.hero-feature span{

    padding:5px 18px;

    border-radius:999px;

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

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

    color:#D8E5F3;

    font-size:15px;

    transition:var(--transition);

}

.hero-feature span:hover{

    background:rgba(37,99,235,.18);

    border-color:rgba(37,99,235,.35);

    transform:translateY(-2px);

}

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

.hero-action{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:50px;

}

.btn-lg{

    min-width:190px;

    height:58px;

    font-size:16px;

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    min-width:190px;

    height:58px;

    border-radius:999px;

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

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

    backdrop-filter:blur(14px);

    color:#F8FAFC;

    font-weight:700;

    transition:var(--transition);

}

.btn-outline:hover{

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

    transform:translateY(-2px);

}

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

.hero-stat{

    display:flex;

    gap:22px;

    flex-wrap:wrap;

}
.stat-item{

    min-width:150px;

    padding:22px;

    border-radius:18px;

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

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

    backdrop-filter:blur(18px);

    transition:var(--transition);

}

.stat-item:hover{

    transform:translateY(-5px);

    border-color:rgba(37,99,235,.30);

}

.stat-item strong{

    display:block;

    margin-bottom:8px;

    color:#FFFFFF;

    font-size:24px;

    font-weight:800;

}

.stat-item small{

    display:block;

    color:var(--muted);

    font-size:14px;

    line-height:1.6;

}

/* ===========================
   HERO PREVIEW WRAPPER
=========================== */

.hero-preview{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:640px;

}

.hero-preview::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(
        rgba(37,99,235,.25),
        transparent 70%
    );

    filter:blur(30px);

    z-index:-1;

}
/* ==========================================================
   PART 1C
   DASHBOARD PREVIEW
==========================================================*/

.dashboard-window{

    width:100%;

    max-width:620px;

    overflow:hidden;

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

    border-radius:28px;

    background:rgba(10,22,44,.88);

    backdrop-filter:blur(30px);

    box-shadow:

        0 40px 80px rgba(0,0,0,.45);

}

.window-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px 22px;

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

}

.window-actions{

    display:flex;

    gap:8px;

}

.dot{

    width:12px;

    height:12px;

    border-radius:50%;

}

.dot.red{

    background:#EF4444;

}

.dot.yellow{

    background:#F59E0B;

}

.dot.green{

    background:#22C55E;

}

.window-title{

    color:#D6E4F3;

    font-size:14px;

    font-weight:600;

}

.dashboard-body{

    display:grid;

    grid-template-columns:150px 1fr;

}

/* ===========================
   SIDEBAR
=========================== */

.dashboard-sidebar{

    padding:24px 18px;

    border-right:1px solid rgba(255,255,255,.05);

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

}

.sidebar-logo{

    width:80px;

    height:80px;

    margin-bottom:20px;

    border-radius:16px;

    background:linear-gradient(135deg,#2563EB,#22C55E);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-weight:800;

}

.dashboard-sidebar ul{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.dashboard-sidebar li{

    padding:12px 14px;

    border-radius:5px;

    color:#AFC0D5;

    font-size:14px;

    transition:.3s;

}

.dashboard-sidebar li.active {
    background: #fdecb824;
    color: #feffe2;
}

.dashboard-sidebar li:hover{

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

    color:#fff;

}

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

.dashboard-content{

    padding:24px;

}

.dashboard-top{

    display:grid;

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

    gap:16px;

}

.metric-card{

    padding:18px;

    border-radius:18px;

    background:#132C52;

}

.metric-card span{

    display:block;

    color:#9FB4C8;

    font-size:13px;

}

.metric-card strong{

    display:block;

    margin:5px 0 6px;

    font-size:18px;

    font-weight:800;

}

.metric-card small{

    color:#C7D5E4;

}

.metric-card .up{

    color:#22C55E;

}

/* ===========================
   CHART
=========================== */

.chart-card{

    margin-top:22px;

    padding:24px;

    border-radius:18px;

    background:#132C52;

}

.chart-title{

    margin-bottom:20px;

    font-weight:700;

}

.chart-bars{

    height:180px;

    display:flex;

    align-items:flex-end;

    gap:14px;

}

.chart-bars span{

    flex:1;

    border-radius:12px 12px 0 0;

    background:linear-gradient(

        to top,

        #2563EB,

        #60A5FA

    );

}

/* ===========================
   AI CARD
=========================== */

.ai-card{

    display:flex;

    gap:18px;

    margin-top:22px;

    padding:22px;

    border-radius:18px;

    background:linear-gradient(

        135deg,

        rgba(37,99,235,.18),

        rgba(34,197,94,.12)

    );

}
.hero-grid > *{
    min-width:0;
}

.ai-avatar{

    width:72px;

    height:62px;

    border-radius:50%;

    background:linear-gradient(

        135deg,

        #2563EB,

        #22C55E

    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-weight:800;

}

.ai-info strong{

    display:block;

    margin-bottom:10px;

}

.ai-info p{

    color:#C7D5E4;

    line-height:1.8;

    font-size:14px;

}

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

.hero-scroll{

    margin-top:70px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

    color:#AFC0D5;

    font-size:14px;

}

.scroll-indicator{

    width:24px;

    height:42px;

    border-radius:20px;

    border:2px solid rgba(255,255,255,.25);

    position:relative;

}

.scroll-indicator::before{

    content:"";

    position:absolute;

    top:8px;

    left:50%;

    width:6px;

    height:6px;

    margin-left:-3px;

    border-radius:50%;

    background:#fff;

    animation:scrollDown 2s infinite;

}

@keyframes scrollDown{

    0%{

        opacity:0;

        transform:translateY(0);

    }

    40%{

        opacity:1;

    }

    100%{

        opacity:0;

        transform:translateY(18px);

    }

}

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

@media(max-width:1100px){

    .hero-grid{

        grid-template-columns:1fr;

        gap:40px;

    }

    .hero h1{

        font-size:54px;

    }

    .hero-preview{

        min-height:auto;

    }

}

@media(max-width:768px){

    .site-header{

        padding:16px 0;

    }

    .nav-menu,

    .nav-action{

        display:none;

    }

    .container{

        width:calc(100% - 5px);

    }

    .hero{

        padding:20 px 0 10px;

    }

    .hero h1{

        font-size:35px;

        letter-spacing:-1px;

    }

    .hero-description{

        font-size:17px;

    }

    .hero-action{

        flex-direction:column;

    }

    .btn-lg{

        width:100%;

    }

    .hero-stat{

        flex-direction:column;

    }

    .dashboard-body{

        grid-template-columns:1fr;

    }

    .dashboard-sidebar{

        display:none;

    }

    .dashboard-top{

        grid-template-columns:1fr;

    }

    .chart-bars{

        height:140px;

    }

    .ai-card{

        flex-direction:column;

    }

}
/* ==========================================================
   PART 2A
   WHY NOTAKITA
========================================================== */

.why-section{
    position:relative;
    padding:100px 0;
}

.section-header{
    max-width:760px;
    margin:0 auto 50px;
    text-align:center;
}

.section-header h2{
    margin:18px 0 20px;
    font-size:clamp(2rem,4vw,3.2rem);
    font-weight:800;
    line-height:1.2;
    color:white;
}

.section-header h2 span{
    color:var(--primary);
}

.section-header p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #faffdf;
}

.section-label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:999px;
    background:#eaf4ff;
    color:var(--primary);
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.why-card{
    background:#fff;
    border-radius:28px;
    padding:38px 30px;
    border:1px solid rgba(15,23,42,.06);
    box-shadow:0 18px 50px rgba(15,23,42,.06);
    transition:.35s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 70px rgba(37,99,235,.12);
}

.why-title {
    color: black;
    margin-left: 15px;
    font-size: 20px;
    font-weight: bold;
}

.why-icon {
    
    height: 60px;
    display: flex;
    align-items: center;
    font-size: 2rem;
    border-radius: 30px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #f6faff, #a1caff);
    padding-left: 8px;
}
.why-card h3{
    margin-bottom:16px;
    font-size:1.25rem;
    font-weight:700;
    color:#0f172a;
}

.why-card p{
    color:#64748b;
    line-height:1.8;
    font-size:.98rem;
}


/* ==========================================================
   HIGHLIGHT SECTION
========================================================== */

.highlight-section{
    padding:120px 0;
}

.highlight-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.highlight-content h2{

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

    margin:18px 0 20px;

    line-height:1.2;

    color:#0f172a;

}

.highlight-content h2 span{

    color:var(--primary);

}

.highlight-content p {
    color: #f9ffb2;
    line-height: 1.9;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.highlight-list{

    display:grid;

    gap:16px;

    list-style:none;

    padding:0;

    margin:0;

}
li {
    color: white;
}

.highlight-list li{

    font-weight:600;

    color:white;

    display:flex;

    align-items:center;

    gap:10px;

}

.highlight-panel{

    background:linear-gradient(180deg,#ffffff,#f8fbff);

    border-radius:34px;

    padding:35px;

    border:1px solid rgba(15,23,42,.06);

    box-shadow:0 25px 80px rgba(15,23,42,.08);

}

.mini-card{

    background:#fff;

    border-radius:20px;

    padding:22px 24px;

    margin-bottom:18px;

    border:1px solid rgba(15,23,42,.06);

    transition:.3s;

}

.mini-card:last-child{

    margin-bottom:0;

}

.mini-card:hover{

    transform:translateY(-4px);

}

.mini-card span{

    display:block;

    color:#64748b;

    font-size:.88rem;

    margin-bottom:8px;

}

.mini-card strong{

    display:block;

    font-size:1.45rem;

    color:#0f172a;

    font-weight:800;

}

.mini-card small{

    display:block;

    margin-top:10px;

    color:#64748b;

    line-height:1.6;

}

.mini-card.success{

    background:linear-gradient(135deg,#2563eb,#3b82f6);

}

.mini-card.success span,

.mini-card.success strong,

.mini-card.success small{

    color:#fff;

}


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

@media (max-width:1024px){

    .why-grid{

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

    }

    .highlight-wrapper{

        grid-template-columns:1fr;

    }

}

@media (max-width:768px){

    .why-section,
    .highlight-section{

        padding:80px 0;

    }

    .why-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .why-card{

        padding:28px;

    }

    .highlight-panel{

        padding:24px;

    }

    .section-header{

        margin-bottom:50px;

    }

}
/* ==========================================================
   PART 2B
   WORKFLOW SECTION
========================================================== */

.workflow-section{
    position:relative;
    padding:120px 0;
}

.section-header.center{
    text-align:center;
}

.workflow-grid{

    display:grid;

    grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;

    align-items:stretch;

    gap:20px;

    margin-top:70px;

}

.workflow-card{

    position:relative;

    background:#ffffff;

    border:1px solid rgba(15,23,42,.06);

    border-radius:30px;

    padding:36px 28px;

    box-shadow:0 18px 55px rgba(15,23,42,.06);

    transition:all .35s ease;

}

.workflow-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 70px rgba(37,99,235,.12);

}

.workflow-number{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:48px;

    height:48px;

    border-radius:999px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    color:#fff;

    font-weight:800;

    font-size:.9rem;
    margin-bottom:22px;
    position: absolute;
    right: 15px;

}

.workflow-icon{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:#eef5ff;

    font-size:2rem;

    margin-bottom:24px;

}

.workflow-card h3{

    margin-bottom:18px;

    font-size:1.3rem;

    color:#0f172a;

    font-weight:700;

}

.workflow-card p{

    color:#64748b;

    line-height:1.9;

    font-size:.98rem;

}

.highlight-content h2 {
    color: white;
}
.workflow-arrow{

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    font-weight:700;

    color:#94a3b8;

}

/* ==========================================================
   VALUE STRIP
========================================================== */

.value-strip {
    padding: 25px;
    background: #c8c7ff3d;
}

.value-grid{

    display:grid;

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

    gap:24px;

}

.value-item {
    background: linear-gradient(226deg, #ffeeef, #dfffe4);
    border: 1px solid rgb(255 86 196);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: .3s ease;
}

.value-item:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 60px rgba(37,99,235,.10);

}

.value-item strong{

    display:block;

    margin-bottom:10px;

    color:#0f172a;

    font-size:1.25rem;

    font-weight:800;

}

.value-item span {
    display: block;
    color: #ca0000;
    line-height: 1.7;
    font-size: 1.2rem;
}

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

@media (max-width:1200px){

    .workflow-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .workflow-arrow{

        display:none;

    }

}

@media (max-width:992px){

    .value-grid{

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

    }

}

@media (max-width:768px){

    .workflow-section{

        padding:80px 0;

    }

    .workflow-card{

        padding:28px;

    }

    .workflow-icon{

        width:64px;

        height:64px;

        font-size:1.8rem;

    }

    .value-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

}
/* ==========================================================
   PART 2C
   ERP ECOSYSTEM
========================================================== */

.ecosystem-section{
    position:relative;
    padding:120px 0;
}

.module-grid{

    display:grid;

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

    gap:28px;

    margin-top:40px;

}

.module-card{

    background:#ffffff;

    border-radius:28px;

    padding:34px;

    border:1px solid rgba(15,23,42,.06);

    box-shadow:0 18px 45px rgba(15,23,42,.05);

    transition:.35s;

}

.module-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 70px rgba(37,99,235,.10);

}

.module-icon{

    width:68px;

    height:68px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef5ff;

    font-size:1.9rem;

    margin-bottom:22px;

}

.module-card h3{

    margin-bottom:16px;

    font-size:1.25rem;

    font-weight:700;

    color:#0f172a;

}

.module-card p{

    color:#64748b;

    line-height:1.8;

}


/* ==========================================================
   DASHBOARD SHOWCASE
========================================================== */

.dashboard-showcase{

    padding:120px 0;

}

.dashboard-panel{

    background:linear-gradient(180deg,#ffffff,#f8fbff);

    border-radius:36px;

    border:1px solid rgba(15,23,42,.06);

    box-shadow:0 30px 90px rgba(15,23,42,.08);

    padding:40px;

}

.dashboard-heading{

    text-align:center;

    margin-bottom:50px;

}

.dashboard-heading h2{

    margin-top:18px;

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

    line-height:1.2;

    color:#0f172a;

}

.dashboard-heading h2 span{

    color:var(--primary);

}

.dashboard-summary{

    display:grid;

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

    gap:22px;

    margin-bottom:40px;

}

.summary-box{

    background:#fff;

    border-radius:22px;

    padding:28px;

    border:1px solid rgba(15,23,42,.05);

    text-align:center;

}

.summary-box small{

    display:block;

    color:#64748b;

    margin-bottom:12px;

    font-size:.85rem;

}

.summary-box strong{

    font-size:1.5rem;

    color:#0f172a;

    font-weight:800;

}

.dashboard-ai{

    display:flex;

    align-items:flex-start;

    gap:24px;

    background:linear-gradient(135deg,#2563eb,#3b82f6);

    padding:34px;

    border-radius:26px;

}

.ai-avatar{

    width:72px;

    height:72px;

    border-radius:50%;

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

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    flex-shrink:0;

}

.ai-content strong{

    display:block;

    color:#fff;

    margin-bottom:12px;

    font-size:1.2rem;

}

.ai-content p{

    color:rgba(255,255,255,.92);

    line-height:1.9;

}

.ai-content strong strong{

    color:#fff;

}


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

.landing-cta{

    padding:10px;

}

.cta-box{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    border-radius:40px;

    padding:40px 30px;

    text-align:center;

    color:#fff;

    box-shadow:0 30px 90px rgba(37,99,235,.22);

}

.cta-box h2{

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

    margin-bottom:24px;

}

.cta-box p{

    max-width:720px;

    margin:0 auto 30px;

    line-height:1.9;

    opacity:.95;

}

.cta-actions{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}


.cta-box .btn-primary:hover{

    background:#f8fafc;

}

.btn-secondary {
    display: inline-flex;
    padding: 14px 25px;
    border-radius: 999px;
    background: linear-gradient(
203deg, #f1eeff, #988cf6);
    color: #161616;
    font-weight: 700;
    transition: var(--transition);
    justify-content:center;
    border: 2px solid #fffefa69;
}

.cta-box .btn-secondary:hover{

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

}


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

@media (max-width:1200px){

    .module-grid{

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

    }

    .dashboard-summary{

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

    }

}

@media (max-width:768px){

    .ecosystem-section,
    .dashboard-showcase,
    .landing-cta{

        padding:20px 0;

    }

    .module-grid{

        grid-template-columns:1fr;

    }

    .dashboard-panel{

        padding:10px;

    }

    .dashboard-summary{

        grid-template-columns:1fr;

    }

    .dashboard-ai{

        flex-direction:column;

    }

    .cta-box{

        padding:40px 28px;

    }

    .cta-actions{

        flex-direction:column;

        align-items:stretch;

    }

    .cta-actions .btn{

        width:100%;

    }

}
