/* =====================================================
   GOOGLE FONT
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =====================================================
   ROOT
===================================================== */

:root{

--bg:#070B14;
--bg2:#0B1120;

--card:#111827;
--card-hover:#1B2A3D;

--border:#243246;

--green:#22C55E;
--blue:#3B82F6;
--purple:#8B5CF6;

--text:#F8FAFC;
--muted:#94A3B8;

}

/* =====================================================
   RESET
===================================================== */

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:linear-gradient(
180deg,
var(--bg),
var(--bg2),
#111827
);

color:var(--text);

overflow-x:hidden;

}

.container{

width:92%;
max-width:1350px;
margin:auto;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

/* =====================================================
   HERO
===================================================== */

.feature-hero{

padding:140px 20px 120px;

text-align:center;

position:relative;

overflow:hidden;

}

.feature-hero::before{

content:"";

position:absolute;

left:-250px;
top:-250px;

width:500px;
height:500px;

background:#22C55E20;

filter:blur(120px);

}

.feature-hero::after{

content:"";

position:absolute;

right:-250px;
bottom:-250px;

width:500px;
height:500px;

background:#3B82F620;

filter:blur(120px);

}

.badge{

display:inline-block;

padding:10px 22px;

background:#182235;

border:1px solid var(--border);

border-radius:50px;

color:var(--green);

font-weight:600;

margin-bottom:25px;

}

.feature-hero h1{

font-size:72px;

font-weight:800;

line-height:1.15;

margin-bottom:25px;

}

.feature-hero h1 span{

color:var(--green);

}

.feature-hero p{

font-size:21px;

color:#CBD5E1;

max-width:760px;

margin:auto;

line-height:1.8;

margin-bottom:45px;

}

.hero-btn{

display:inline-block;

padding:18px 42px;

background:linear-gradient(
135deg,
var(--green),
#16A34A
);

border-radius:16px;

font-weight:700;

color:white;

transition:.35s;

}

.hero-btn:hover{

transform:translateY(-6px);

box-shadow:0 20px 45px rgba(34,197,94,.35);

}

/* =====================================================
   SECTION TITLE
===================================================== */

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title h2{

font-size:48px;

margin-bottom:15px;

}

.section-title p{

font-size:18px;

color:var(--muted);

}

/* =====================================================
   FEATURES GRID
===================================================== */

.feature-grid-section{

padding:100px 0;

}

.feature-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

/* =====================================================
   FEATURE CARD
===================================================== */

.feature-card{

background:rgba(17,24,39,.85);

border:1px solid var(--border);

backdrop-filter:blur(15px);

border-radius:24px;

padding:40px;

transition:.4s;

position:relative;

overflow:hidden;

}

.feature-card::before{

content:"";

position:absolute;

top:0;
left:-100%;

width:100%;
height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.05),
transparent
);

transition:.8s;

}

.feature-card:hover::before{

left:100%;

}

.feature-card:hover{

transform:translateY(-12px);

border-color:var(--green);

background:var(--card-hover);

box-shadow:0 25px 55px rgba(0,0,0,.45);

}

.icon{

width:75px;
height:75px;

display:flex;

justify-content:center;
align-items:center;

font-size:36px;

border-radius:22px;

background:linear-gradient(
135deg,
var(--green),
#16A34A
);

margin-bottom:25px;

}

.feature-card h3{

font-size:26px;

margin-bottom:18px;

}

.feature-card p{

color:#CBD5E1;

line-height:1.8;

}

/* =====================================================
   DASHBOARD SHOWCASE
===================================================== */

.dashboard-showcase{

padding:120px 0;

}

.dashboard-flex{

display:flex;

align-items:center;

justify-content:space-between;

gap:80px;

}

.dashboard-left{

flex:1;

}

.dashboard-left h2{

font-size:52px;

margin-bottom:20px;

}

.dashboard-left p{

font-size:18px;

line-height:2;

color:#CBD5E1;

margin-bottom:40px;

}

.dashboard-left a{

display:inline-block;

padding:18px 38px;

background:var(--green);

color:white;

border-radius:16px;

font-weight:700;

transition:.35s;

}

.dashboard-left a:hover{

transform:translateY(-5px);

}

.dashboard-right{

flex:1;

}

.dashboard-right img{

border-radius:25px;

box-shadow:0 40px 80px rgba(0,0,0,.45);

transition:.4s;

}

.dashboard-right img:hover{

transform:scale(1.03) rotate(-1deg);

}

/* =====================================================
   ANALYTICS
===================================================== */

.analytics-section{

padding:120px 0;

}

.analytics-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:70px;

align-items:center;

}

.analytics-grid h2{

font-size:48px;

margin-bottom:25px;

}

.analytics-grid p{

font-size:18px;

line-height:1.9;

margin-bottom:30px;

color:#CBD5E1;

}

.analytics-grid ul{

list-style:none;

}

.analytics-grid li{

padding:12px 0;

font-size:17px;

}

/* =====================================================
   CTA
===================================================== */

.feature-cta{

padding:120px 20px;

text-align:center;

}

.feature-cta h2{

font-size:52px;

margin-bottom:20px;

}

.feature-cta p{

font-size:20px;

color:#CBD5E1;

margin-bottom:40px;

}

.feature-cta a{

display:inline-block;

padding:18px 45px;

background:var(--green);

border-radius:16px;

font-size:18px;

font-weight:700;

color:white;

transition:.35s;

}

.feature-cta a:hover{

transform:translateY(-5px);

box-shadow:0 20px 45px rgba(34,197,94,.35);

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px){

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

.dashboard-flex,
.analytics-grid{

grid-template-columns:1fr;
display:grid;

}

}

@media(max-width:768px){

.feature-hero{

padding:90px 20px;

}

.feature-hero h1{

font-size:42px;

}

.section-title h2{

font-size:34px;

}

.feature-grid{

grid-template-columns:1fr;

}

.dashboard-left h2,
.analytics-grid h2,
.feature-cta h2{

font-size:34px;

}

.feature-card{

padding:30px;

}

}