:root{
--purple:#2B0A57;
--gold:#F4C430;
--black:#000;
--white:#fff;
--light:#fafafa;
}

/* RESET */

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

.page{
background:#fff;
overflow:hidden;
}

/* HERO */

.hero{
padding:0px 0px;
background:
linear-gradient(
135deg,
#ffffff,
#fffdf5
);
display:grid;
grid-template-columns:1.2fr .9fr;
gap:60px;
align-items:center;
position:relative;
}

.hero::before{
content:'';
position:absolute;
width:500px;
height:500px;
background:rgba(244,196,48,.08);
border-radius:50%;
top:-250px;
right:-150px;
}

.hbadge{
display:inline-flex;
align-items:center;
gap:8px;
padding:10px 18px;
border-radius:50px;
background:rgba(244,196,48,.12);
border:1px solid rgba(244,196,48,.25);
color:var(--purple);
font-weight:700;
margin-bottom:25px;
}

.hbadge i{
color:var(--gold);
}

.hero h1{
font-family:'Playfair Display',serif;
font-size:72px;
line-height:1.05;
color:var(--purple);
margin-bottom:20px;
font-weight:900;
}

.hero h1 em{
color:var(--gold);
font-style:normal;
}

.hero p{
color:#000;
font-size:18px;
line-height:1.9;
max-width:700px;
margin-bottom:35px;
}

/* BUTTONS */

.hbtns{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.bp{
background:linear-gradient(
135deg,
#F4C430,
#E4B100
);

color:#2B0A57;
border:none;
padding:16px 34px;
border-radius:12px;
font-weight:800;
cursor:pointer;
transition:.4s;
}

.bp:hover{
transform:translateY(-5px);

box-shadow:
0 0 20px rgba(244,196,48,.45),
0 0 40px rgba(244,196,48,.25);
}

.bo{
background:#fff;
color:#2B0A57;
border:2px solid #2B0A57;
padding:16px 34px;
border-radius:12px;
font-weight:800;
cursor:pointer;
transition:.4s;
}

.bo:hover

/* RIGHT CARD */

.hcard{

background-color: #ffffff;
backdrop-filter:blur(18px);
border-radius:28px;
padding:35px;
border:1px solid rgba(244,196,48,.15);

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

transition:.4s;
}

.hcard:hover{
transform:translateY(-8px);

box-shadow:
0 20px 60px rgba(43,10,87,.12),
0 0 25px rgba(244,196,48,.18);
}

.hcr{
display:flex;
align-items:center;
gap:15px;
padding:8px 0;

border-bottom:1px solid rgba(0,0,0,.08);
}

.hcr:last-child{
border:none;
}

.hci{
width:55px;
height:55px;
border-radius:14px;
background:#2B0A57;
color:#F4C430;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
}

.hct{
color:#ffffff;
font-size:18px;
font-weight:800;
}

.hcs{
color:#e3c60c;
font-size:13px;
}

.hcv{
margin-left:auto;
color:#F4C430;
font-size:24px;
font-weight:900;
}

/* STATS */

.sband{
background:#2B0A57;
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
padding:35px 40px;
}

.sbn{
color:#F4C430;
font-size:42px;
font-family:'Playfair Display',serif;
font-weight:900;
}

.sbl{
color:#fff;
margin-top:8px;
}

/* BODY */

.body{
padding:80px 70px;
}

.twocol{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.lbl{
color:#F4C430;
letter-spacing:3px;
text-transform:uppercase;
font-weight:800;
margin-bottom:15px;
}

.stitle{
font-family:'Playfair Display',serif;
font-size:48px;
color:#2B0A57;
margin-bottom:20px;
}

.sdesc{
color:#000;
line-height:1.8;
margin-bottom:25px;
}

/* FEATURE CARDS */

.incls{
display:flex;
flex-direction:column;
gap:18px;
}

.incl{
background:#fff;
border-radius:18px;
border:1px solid rgba(244,196,48,.15);
padding:22px;
display:flex;
gap:18px;
transition:.4s;
}

.incl:hover{
transform:translateY(-6px);

box-shadow:
0 15px 40px rgba(43,10,87,.10),
0 0 20px rgba(244,196,48,.18);
}

.iico{
width:55px;
height:55px;
border-radius:14px;
background:#2B0A57;
color:#F4C430;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
}

.inn{
color:#2B0A57;
font-size:18px;
font-weight:800;
}

.ind{
color:#000;
line-height:1.8;
margin-top:5px;
}

/* PRICING */

.pbox{
background:#2B0A57;
border-radius:24px;
padding:35px;
}

.pbl{
color:#F4C430;
letter-spacing:3px;
margin-bottom:20px;
}

.ptr{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
border-bottom:1px solid rgba(255,255,255,.08);
}

.ptn{
color:#fff;
}

.pts{
color:rgba(255,255,255,.6);
}

.ptv{
color:#F4C430;
font-size:24px;
font-weight:900;
}

/* TESTIMONIALS */

.trow{
background:#fafafa;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
padding:80px 70px;
}

.tc{
background:#fff;
padding:28px;
border-radius:24px;
border:1px solid rgba(244,196,48,.15);
transition:.4s;
}

.tc:hover{
transform:translateY(-8px);

box-shadow:
0 20px 50px rgba(43,10,87,.10),
0 0 20px rgba(244,196,48,.18);
}

.tcs{
color:#F4C430;
margin-bottom:12px;
}

.tct{
color:#000;
line-height:1.8;
margin-bottom:18px;
}

.tcan{
color:#2B0A57;
font-weight:800;
}

/* CTA */

.cbar{
background:#2B0A57;
padding:60px 70px;
display:flex;
justify-content:space-between;
align-items:center;
}

.cbar h2{
font-size:42px;
color:#fff;
font-family:'Playfair Display',serif;
}

.cbar p{
color:rgba(255,255,255,.8);
}

.cbw{
background:#F4C430;
color:#2B0A57;
border:none;
padding:18px 35px;
border-radius:12px;
font-weight:800;
cursor:pointer;
transition:.4s;
}

.cbw:hover{
transform:translateY(-4px);
box-shadow:0 0 25px rgba(244,196,48,.35);
}

/* SCROLL REVEAL */

.hero,
.incl,
.tc,
.pbox,
.cbar{
opacity:0;
transform:translateY(60px);
animation:reveal .8s forwards;
}

@keyframes reveal{
to{
opacity:1;
transform:translateY(0);
}
}

/* MOBILE */

@media(max-width:992px){

.hero,
.twocol,
.trow{
grid-template-columns:1fr;
}

.hero{
padding:60px 30px;
}

.body{
padding:60px 30px;
}

.trow{
padding:60px 30px;
}

.cbar{
flex-direction:column;
gap:20px;
text-align:center;
}

.hero h1{
font-size:52px;
}

.stitle{
font-size:36px;
}

}

@media(max-width:768px){

.hero h1{
font-size:38px;
}

.stitle{
font-size:30px;
}

.hbtns{
flex-direction:column;
}

.bp,
.bo,
.cbw{
width:100%;
}

.sband{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.body,
.hero,
.trow,
.cbar{
padding:40px 20px;
}

.steps{
flex-wrap:wrap;
gap:20px;
}

.step{
min-width:120px;
}

}
