/* ==========================================
   AIMSLIFY - PREMIUM SAAS LANDING PAGE
   Part 1
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#050816;
    color:#fff;
    overflow-x:hidden;
}

/* ==============================
    Animated Background
=================================*/

.gradient{
    position:fixed;
    inset:0;
    z-index:-2;
    background:linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a,
        #312e81,
        #2563eb,
        #0f172a
    );
    background-size:400% 400%;
    animation:bgMove 15s ease infinite;
}

.gradient::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:#3b82f6;
    filter:blur(180px);
    top:-200px;
    left:-200px;
    opacity:.35;
}

.gradient::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#9333ea;
    filter:blur(180px);
    right:-120px;
    bottom:-150px;
    opacity:.30;
}

@keyframes bgMove{

0%{
background-position:0% 50%;
}

50%{
background-position:100% 50%;
}

100%{
background-position:0% 50%;
}

}

/* ==============================
    NAVBAR
=================================*/

header{
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar{

max-width:1300px;
margin:auto;

display:flex;
align-items:center;
justify-content:space-between;

padding:18px 30px;

}

.logo{

display:flex;
align-items:center;
gap:12px;

}

.logo-circle{

width:46px;
height:46px;

border-radius:14px;

display:flex;
align-items:center;
justify-content:center;

font-weight:800;
font-size:22px;

background:linear-gradient(
135deg,
#2563eb,
#7c3aed
);

box-shadow:0 0 30px rgba(37,99,235,.45);

}

.logo h2{

font-size:28px;
font-weight:800;

}

.navbar ul{

display:flex;
gap:35px;
list-style:none;

}

.navbar a{

text-decoration:none;
color:white;
font-weight:500;
transition:.3s;

}

.navbar a:hover{

color:#60a5fa;

}

.nav-buttons{

display:flex;
gap:15px;

}

.login{

padding:12px 22px;

background:transparent;

border:1px solid rgba(255,255,255,.2);

color:white;

border-radius:12px;

cursor:pointer;

transition:.3s;

}

.login:hover{

background:rgba(255,255,255,.08);

}

.signup{

padding:12px 24px;

border:none;

border-radius:12px;

cursor:pointer;

background:linear-gradient(
135deg,
#2563eb,
#7c3aed
);

color:white;

font-weight:600;

transition:.35s;

}

.signup:hover{

transform:translateY(-3px);

box-shadow:0 15px 35px rgba(59,130,246,.35);

}

/* ==============================
    HERO SECTION
=================================*/

.hero{

max-width:1300px;

margin:auto;

padding-top:170px;

padding-bottom:120px;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

}

.badge{

display:inline-block;

padding:10px 18px;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.1);

border-radius:50px;

font-size:14px;

margin-bottom:25px;

backdrop-filter:blur(12px);

}

.hero h1{

font-size:68px;

line-height:1.1;

font-weight:900;

margin-bottom:30px;

}

.hero span{

background:linear-gradient(
90deg,
#60a5fa,
#a855f7
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.hero p{

font-size:20px;

color:#d1d5db;

line-height:1.8;

max-width:600px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;
gap:18px;

margin-bottom:50px;

}

.primary{

padding:16px 32px;

border:none;

border-radius:14px;

font-size:16px;

font-weight:600;

cursor:pointer;

background:linear-gradient(
135deg,
#2563eb,
#7c3aed
);

color:white;

transition:.35s;

}

.primary:hover{

transform:translateY(-4px);

box-shadow:0 20px 40px rgba(59,130,246,.35);

}

.secondary{

padding:16px 32px;

background:transparent;

border:1px solid rgba(255,255,255,.15);

border-radius:14px;

color:white;

cursor:pointer;

transition:.35s;

}

.secondary:hover{

background:rgba(255,255,255,.08);

}

/* ==============================
    STATS
=================================*/

.stats{

display:flex;

gap:60px;

margin-top:30px;

}

.stats h2{

font-size:42px;

font-weight:800;

margin-bottom:8px;

}

.stats p{

font-size:15px;

color:#9ca3af;

}

/* ==============================
    DASHBOARD
=================================*/

.hero-right{

display:flex;

justify-content:center;

}

.dashboard{

position:relative;

width:100%;

max-width:560px;

padding:22px;

border-radius:28px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(25px);

border:1px solid rgba(255,255,255,.12);

box-shadow:
0 30px 60px rgba(0,0,0,.45);

animation:float 6s ease-in-out infinite;

}

.dashboard-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:20px;

}

.dashboard-header h3{

font-size:22px;

}

.online{

width:14px;

height:14px;

border-radius:50%;

background:#22c55e;

box-shadow:0 0 20px #22c55e;

}

.dashboard img{

width:100%;

border-radius:20px;

display:block;

}

/* Floating Cards */

.floating{

position:absolute;

padding:18px;

border-radius:18px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.15);

box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.revenue{

top:-25px;

right:-30px;

}

.users{

left:-35px;

bottom:20px;

}

.floating h3{

font-size:28px;

margin-bottom:8px;

}

.floating p{

font-size:14px;

color:#d1d5db;

}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0px);
}

}

/* ==============================
    Trusted Logos
=================================*/

.logos{

max-width:1200px;

margin:80px auto;

text-align:center;

}

.logos h3{

font-size:18px;

font-weight:500;

color:#cbd5e1;

margin-bottom:40px;

}

.logo-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:30px;

}

.logo-grid span{

padding:18px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:12px;

font-size:18px;

font-weight:700;

color:#94a3b8;

transition:.3s;

}

.logo-grid span:hover{

color:white;

transform:translateY(-5px);

background:rgba(255,255,255,.08);

}
/* ======================================================
   FEATURES SECTION
====================================================== */

.features{
    max-width:1300px;
    margin:120px auto;
    padding:0 20px;
    text-align:center;
}

.features h2{
    font-size:48px;
    margin-bottom:70px;
    font-weight:800;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:40px 30px;
    transition:.4s;
    cursor:pointer;
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(37,99,235,.25);
    border-color:#2563eb;
}

.card i{
    font-size:48px;
    color:#60a5fa;
    margin-bottom:25px;
}

.card h3{
    font-size:24px;
    margin-bottom:15px;
}

.card p{
    color:#cbd5e1;
    line-height:1.8;
}


/* ======================================================
   ANALYTICS SECTION
====================================================== */

.analytics{

    max-width:1300px;
    margin:120px auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.analytics img{

    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.analytics-right h2{

    font-size:48px;
    margin-bottom:25px;

}

.analytics-right p{

    color:#d1d5db;
    line-height:1.9;
    margin-bottom:30px;
    font-size:18px;

}

.analytics-right ul{

    list-style:none;

}

.analytics-right li{

    padding:12px 0;
    font-size:18px;
    color:#f1f5f9;

}


/* ======================================================
   PRICING
====================================================== */

.pricing{

    max-width:1300px;
    margin:120px auto;
    padding:0 20px;
    text-align:center;

}

.pricing h2{

    font-size:50px;
    margin-bottom:70px;

}

.pricing-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.price-card{

    position:relative;

    padding:45px 35px;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.price-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(37,99,235,.3);

}

.popular{

    transform:scale(1.05);

    border:2px solid #2563eb;

    background:rgba(37,99,235,.12);

}

.popular:hover{

    transform:scale(1.08);

}

.popular-badge{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:#2563eb;

    color:white;

    padding:8px 18px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

}

.price-card h3{

    font-size:28px;

    margin-bottom:18px;

}

.price-card h1{

    font-size:60px;

    margin:20px 0;

}

.price-card p{

    color:#cbd5e1;

}

.price-card ul{

    list-style:none;

    margin:35px 0;

}

.price-card li{

    padding:12px 0;

    color:#f1f5f9;

}

.price-card button{

    width:100%;

    padding:16px;

    border:none;

    border-radius:14px;

    cursor:pointer;

    font-weight:700;

    color:white;

    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    transition:.35s;

}

.price-card button:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(37,99,235,.35);

}


/* ======================================================
   CTA
====================================================== */

.cta{

    margin:140px auto;

    max-width:1100px;

    text-align:center;

    padding:80px 50px;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        rgba(37,99,235,.25),
        rgba(124,58,237,.20)
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

}

.cta h2{

    font-size:52px;

    margin-bottom:20px;

}

.cta p{

    color:#d1d5db;

    font-size:20px;

    margin-bottom:35px;

}

.cta button{

    padding:18px 38px;

    border:none;

    border-radius:16px;

    cursor:pointer;

    color:white;

    font-size:17px;

    font-weight:700;

    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    transition:.35s;

}

.cta button:hover{

    transform:translateY(-4px);

}


/* ======================================================
   FOOTER
====================================================== */

footer{

    margin-top:120px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:70px 20px 30px;

}

.footer-content{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

}

.footer-content h2{

    font-size:34px;

    margin-bottom:18px;

}

.footer-content h4{

    margin-bottom:18px;

}

.footer-content p{

    color:#94a3b8;

    line-height:1.8;

}

.footer-content a{

    display:block;

    color:#cbd5e1;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer-content a:hover{

    color:#60a5fa;

    padding-left:6px;

}

.copyright{

    margin-top:60px;

    text-align:center;

    color:#64748b;

}

/* ======================================================
   RESPONSIVE DESIGN
====================================================== */

/* Large Tablets */
@media (max-width:1200px){

.hero,
.analytics{
    grid-template-columns:1fr;
    text-align:center;
    gap:60px;
}

.hero-left,
.analytics-right{
    order:2;
}

.hero-right,
.analytics-left{
    order:1;
}

.hero p{
    margin:auto;
    margin-bottom:40px;
}

.hero-buttons{
    justify-content:center;
}

.stats{
    justify-content:center;
}

.cards{
    grid-template-columns:repeat(2,1fr);
}

.pricing-grid{
    grid-template-columns:repeat(2,1fr);
}

.footer-content{
    grid-template-columns:repeat(2,1fr);
}

}


/* Tablets */

@media (max-width:992px){

.navbar{

padding:18px 20px;

}

.navbar ul{

display:none;

}

.hero{

padding-top:140px;

}

.hero h1{

font-size:52px;

}

.logo-grid{

grid-template-columns:repeat(3,1fr);

}

.dashboard{

max-width:100%;

}

.analytics-right h2{

font-size:38px;

}

.features h2,
.pricing h2{

font-size:40px;

}

}


/* Mobile */

@media (max-width:768px){

.hero{

padding:120px 20px 80px;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

}

.hero-buttons button{

width:100%;

}

.stats{

flex-direction:column;

gap:25px;

}

.cards{

grid-template-columns:1fr;

}

.pricing-grid{

grid-template-columns:1fr;

}

.popular{

transform:none;

}

.popular:hover{

transform:translateY(-8px);

}

.analytics{

padding:0 20px;

}

.analytics-right h2{

font-size:34px;

}

.analytics-right li{

font-size:16px;

}

.logo-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-content{

grid-template-columns:1fr;

text-align:center;

}

.cta{

padding:60px 25px;

}

.cta h2{

font-size:34px;

}

.cta p{

font-size:17px;

}

}


/* Small Phones */

@media (max-width:480px){

.logo h2{

font-size:22px;

}

.logo-circle{

width:40px;
height:40px;
font-size:18px;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.badge{

font-size:13px;

}

.stats h2{

font-size:32px;

}

.features h2,
.pricing h2{

font-size:34px;

}

.price-card h1{

font-size:48px;

}

.dashboard{

padding:15px;

}

.revenue{

right:-10px;
top:-15px;

}

.users{

left:-10px;
bottom:10px;

}

.floating{

padding:12px;

}

.floating h3{

font-size:20px;

}

}


/* ======================================================
   SCROLLBAR
====================================================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#070d1f;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(
180deg,
#2563eb,
#7c3aed
);

border-radius:20px;

}


/* ======================================================
   SELECTION
====================================================== */

::selection{

background:#2563eb;
color:white;

}


/* ======================================================
   GLOBAL ANIMATIONS
====================================================== */

@keyframes fadeUp{

0%{

opacity:0;
transform:translateY(50px);

}

100%{

opacity:1;
transform:translateY(0);

}

}

@keyframes zoomIn{

0%{

opacity:0;
transform:scale(.8);

}

100%{

opacity:1;
transform:scale(1);

}

}

@keyframes glow{

0%{

box-shadow:0 0 0 rgba(37,99,235,.2);

}

50%{

box-shadow:0 0 40px rgba(37,99,235,.5);

}

100%{

box-shadow:0 0 0 rgba(37,99,235,.2);

}

}


/* ======================================================
   SECTION ANIMATIONS
====================================================== */

.hero{

animation:fadeUp 1s ease;

}

.card{

animation:fadeUp .8s ease;

}

.price-card{

animation:zoomIn .8s ease;

}

.dashboard{

animation:
float 6s ease-in-out infinite,
glow 4s ease infinite;

}


/* ======================================================
   IMAGE EFFECTS
====================================================== */

img{

transition:.5s;

}

.analytics img:hover,
.dashboard img:hover{

transform:scale(1.03);

}


/* ======================================================
   BUTTON EFFECTS
====================================================== */

button{

transition:.35s;

}

button:hover{

transform:translateY(-3px);

}

button:active{

transform:scale(.96);

}


/* ======================================================
   LINK EFFECTS
====================================================== */

a{

transition:.3s;

}

a:hover{

opacity:.9;

}


/* ======================================================
   GLASS EFFECT
====================================================== */

.card,
.dashboard,
.price-card,
.cta{

backdrop-filter:blur(20px);
-webkit-backdrop-filter:blur(20px);

}


/* ======================================================
   SHADOWS
====================================================== */

.card,
.price-card,
.dashboard{

box-shadow:
0 15px 40px rgba(0,0,0,.30);

}


/* ======================================================
   HOVER GLOW
====================================================== */

.card:hover,
.price-card:hover,
.dashboard:hover{

box-shadow:
0 25px 60px rgba(37,99,235,.25);

}


/* ======================================================
   FINAL POLISH
====================================================== */

section{

position:relative;

z-index:2;

}

body{

min-height:100vh;

}

h1,h2,h3,h4{

letter-spacing:-0.5px;

}

p{

font-weight:400;

line-height:1.8;

}