/* ==========================================
   GOOGLE FONT
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   ROOT
========================================== */

:root{

--bg:#070B14;
--card:#111827;
--card-hover:#182235;

--border:#243246;

--green:#22C55E;
--blue:#3B82F6;
--purple:#8B5CF6;
--yellow:#F59E0B;

--text:#F8FAFC;
--muted:#94A3B8;

}

/* ==========================================
   RESET
========================================== */

*{

margin:0;
padding:0;
box-sizing:border-box;

}

body{

font-family:'Poppins',sans-serif;

background:linear-gradient(
180deg,
#070B14,
#0B1120,
#101827
);

color:white;

overflow-x:hidden;

}

a{

text-decoration:none;

}

.container{

width:92%;

max-width:1400px;

margin:auto;

}

/* ==========================================
   HERO
========================================== */

.pricing-hero{

padding:120px 20px 80px;

text-align:center;

position:relative;

overflow:hidden;

}

.pricing-hero::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:#22C55E20;

filter:blur(100px);

left:-200px;

top:-200px;

}

.pricing-hero::after{

content:"";

position:absolute;

width:450px;

height:450px;

background:#3B82F620;

filter:blur(100px);

right:-150px;

bottom:-150px;

}

.badge{

display:inline-block;

padding:10px 20px;

border-radius:50px;

background:#182235;

border:1px solid #243246;

color:#22C55E;

font-weight:600;

margin-bottom:25px;

}

.pricing-hero h1{

font-size:60px;

font-weight:800;

margin-bottom:20px;

}

.pricing-hero p{

font-size:20px;

color:#CBD5E1;

max-width:700px;

margin:auto;

line-height:1.8;

}

/* ==========================================
   GRID
========================================== */

.pricing-section{

padding:40px 20px 120px;

}

.pricing-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:35px;

}

/* ==========================================
   CARD
========================================== */

.pricing-card{

background:rgba(17,24,39,.85);

backdrop-filter:blur(15px);

border:1px solid #243246;

border-radius:25px;

padding:40px 35px;

position:relative;

transition:.4s;

overflow:hidden;

}

.pricing-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:linear-gradient(

90deg,

transparent,

rgba(255,255,255,.05),

transparent

);

transition:.8s;

}

.pricing-card:hover::before{

left:100%;

}

.pricing-card:hover{

transform:translateY(-15px);

border-color:#22C55E;

box-shadow:

0 30px 60px rgba(0,0,0,.45);

}

/* ==========================================
   POPULAR
========================================== */

.popular{

transform:scale(1.06);

border:2px solid #22C55E;

}

.popular-tag{

position:absolute;

top:18px;

right:-42px;

background:#22C55E;

padding:8px 50px;

font-size:13px;

font-weight:700;

transform:rotate(45deg);

color:white;

}

.yearly{

border:2px solid #3B82F6;

}

/* ==========================================
   PRICE
========================================== */

.plan-name{

font-size:26px;

font-weight:700;

margin-bottom:20px;

}

.price{

font-size:55px;

font-weight:800;

color:#22C55E;

margin-bottom:10px;

}

.duration{

color:#CBD5E1;

margin-bottom:15px;

}

.save{

display:inline-block;

padding:8px 16px;

background:#1F2937;

border-radius:50px;

margin-bottom:25px;

color:#FACC15;

font-weight:600;

}

/* ==========================================
   LIST
========================================== */

.pricing-card ul{

list-style:none;

margin-bottom:35px;

}

.pricing-card li{

padding:12px 0;

border-bottom:1px solid rgba(255,255,255,.08);

color:#E5E7EB;

}

/* ==========================================
   BUTTON
========================================== */

.pricing-card a{

display:block;

text-align:center;

padding:15px;

border-radius:15px;

background:#22C55E;

color:white;

font-weight:700;

transition:.3s;

}

.pricing-card a:hover{

background:#16A34A;

transform:scale(1.04);

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px){

.pricing-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.pricing-grid{

grid-template-columns:1fr;

}

.pricing-hero h1{

font-size:40px;

}

.pricing-hero p{

font-size:17px;

}

.popular{

transform:none;

}

}