/* =========================
   ROOT COLORS
========================= */

:root{

--primary:#ff4fa3;
--primary-light:#ff7bc3;
--primary-dark:#ff2f92;

--white:#ffffff;
--bg:#fff8fc;
--card:#ffffff;

--text:#1a1a1a;
--muted:#6b7280;

--border:#ffd6ea;

--shadow:
0 20px 60px rgba(255,79,163,.12);

}

/* =========================
   RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{

background:var(--bg);

color:var(--text);

overflow-x:hidden;

position:relative;

}

/* =========================
   BACKGROUND BLOBS
========================= */

body::before{

content:"";

position:fixed;

width:500px;
height:500px;

background:
radial-gradient(
circle,
rgba(255,79,163,.18),
transparent 70%
);

top:-200px;
left:-200px;

z-index:-2;

}

body::after{

content:"";

position:fixed;

width:600px;
height:600px;

background:
radial-gradient(
circle,
rgba(255,123,195,.15),
transparent 70%
);

right:-250px;
bottom:-250px;

z-index:-2;

}

/* =========================
   LOADER
========================= */

#loader{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:white;

display:flex;
justify-content:center;
align-items:center;

z-index:99999;

}

.loader-logo{

font-size:52px;

font-weight:900;

background:
linear-gradient(
135deg,
#ff4fa3,
#ff7bc3
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

animation:pulse 2s infinite;

}

@keyframes pulse{

50%{
transform:scale(1.08);
}

}

/* =========================
   NAVBAR
========================= */

.navbar{

position:fixed;

top:0;

width:100%;

padding:20px 8%;

display:flex;
justify-content:space-between;
align-items:center;

background:
rgba(255,255,255,.85);

backdrop-filter:blur(20px);

border-bottom:
1px solid rgba(255,79,163,.08);

z-index:999;

transition:.4s;

}

.navbar.scrolled{

box-shadow:
0 10px 40px rgba(0,0,0,.06);

}

.logo{

font-size:30px;

font-weight:900;

background:
linear-gradient(
135deg,
#ff4fa3,
#ff7bc3
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

/* =========================
   NAV LINKS
========================= */

.nav-links{

display:flex;

gap:30px;

list-style:none;

}

.nav-links a{

text-decoration:none;

font-weight:600;

color:var(--text);

transition:.3s;

}

.nav-links a:hover{

color:var(--primary);

}

/* =========================
   BUTTONS
========================= */

.nav-buttons{

display:flex;

gap:15px;

}

.login-btn,
.start-btn,
.primary-btn,
.secondary-btn,
.buy-btn{

padding:14px 28px;

border-radius:999px;

text-decoration:none;

font-weight:700;

transition:.35s;

display:inline-flex;
align-items:center;
justify-content:center;

}

.start-btn,
.primary-btn,
.buy-btn{

background:
linear-gradient(
135deg,
#ff4fa3,
#ff7bc3
);

color:white;

box-shadow:
0 15px 35px rgba(255,79,163,.3);

}

.start-btn:hover,
.primary-btn:hover,
.buy-btn:hover{

transform:
translateY(-4px);

box-shadow:
0 25px 45px rgba(255,79,163,.35);

}

.login-btn,
.secondary-btn{

border:2px solid var(--primary);

color:var(--primary);

background:white;

}

.login-btn:hover,
.secondary-btn:hover{

background:var(--primary);

color:white;

}

/* =========================
   SECTION DEFAULT
========================= */

section{

padding:110px 8%;

}

.section-header{

text-align:center;

margin-bottom:70px;

}

.section-header span{

display:inline-block;

padding:10px 18px;

background:#ffe8f4;

color:var(--primary);

font-weight:700;

border-radius:999px;

margin-bottom:15px;

}

.section-header h2{

font-size:54px;

font-weight:800;

margin-bottom:15px;

}

.section-header p{

max-width:700px;

margin:auto;

color:var(--muted);

line-height:1.8;

}
/* =========================
   HERO SECTION
========================= */

.hero{

min-height:100vh;

display:grid;

grid-template-columns:1.1fr .9fr;

align-items:center;

gap:80px;

padding-top:160px;

}

.hero-left{

position:relative;

z-index:2;

}

.badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 22px;

background:#ffe8f4;

color:var(--primary);

font-weight:700;

border-radius:999px;

margin-bottom:30px;

box-shadow:
0 10px 30px rgba(255,79,163,.08);

}

.hero h1{

font-size:78px;

font-weight:900;

line-height:1.05;

margin-bottom:25px;

color:var(--text);

}

.hero h1 span{

background:
linear-gradient(
135deg,
#ff4fa3,
#ff7bc3
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.hero p{

font-size:18px;

line-height:1.9;

color:var(--muted);

max-width:650px;

margin-bottom:35px;

}

.hero-features{

display:grid;

grid-template-columns:
repeat(2,minmax(180px,1fr));

gap:15px;

margin-bottom:40px;

}

.hero-features div{

background:white;

padding:15px 18px;

border-radius:15px;

font-weight:600;

box-shadow:
0 10px 30px rgba(0,0,0,.04);

}

.hero-features i{

margin-right:10px;

color:var(--primary);

}

.hero-buttons{

display:flex;

gap:15px;

margin-bottom:50px;

}

/* =========================
   HERO CARD
========================= */

.hero-right{

display:flex;

justify-content:center;

}

.hero-card{

width:100%;

max-width:500px;

background:white;

border-radius:35px;

padding:40px;

box-shadow:
0 30px 80px rgba(255,79,163,.12);

border:1px solid #ffe1ef;

position:relative;

overflow:hidden;

animation:
float 5s ease-in-out infinite;

}

.hero-card::before{

content:"";

position:absolute;

width:200px;
height:200px;

background:
radial-gradient(
circle,
rgba(255,79,163,.18),
transparent
);

top:-60px;
right:-60px;

}

.server-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

font-weight:700;

}

.status-dot{

width:14px;
height:14px;

background:#00d26a;

border-radius:50%;

box-shadow:
0 0 15px #00d26a;

}

.hero-card h3{

font-size:34px;

font-weight:800;

margin-bottom:10px;

}

.hero-card p{

color:var(--muted);

}

.server-stats{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:15px;

margin-top:35px;

}

.server-stats div{

background:#fff8fc;

padding:20px;

border-radius:18px;

text-align:center;

}

.server-stats strong{

display:block;

font-size:26px;

font-weight:800;

color:var(--primary);

margin-bottom:6px;

}

/* =========================
   TRUST BANNER
========================= */

.trust-banner{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:-40px;

background:white;

padding:50px;

border-radius:35px;

box-shadow:
0 20px 60px rgba(0,0,0,.05);

}

.trust-item{

text-align:center;

padding:20px;

}

.trust-item h2{

font-size:54px;

font-weight:900;

background:
linear-gradient(
135deg,
#ff4fa3,
#ff7bc3
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

margin-bottom:10px;

}

.trust-item p{

color:var(--muted);

font-size:17px;

}

/* =========================
   SERVICES
========================= */

.service-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.service-card{

background:white;

padding:40px;

border-radius:28px;

border:1px solid #ffe4f0;

box-shadow:
0 15px 45px rgba(0,0,0,.04);

transition:.4s;

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:4px;

background:
linear-gradient(
90deg,
#ff4fa3,
#ff7bc3
);

transform:scaleX(0);

transition:.4s;

}

.service-card:hover::before{

transform:scaleX(1);

}

.service-card:hover{

transform:
translateY(-10px);

box-shadow:
0 25px 60px rgba(255,79,163,.15);

}

.service-card i{

font-size:45px;

margin-bottom:20px;

color:var(--primary);

}

.service-card h3{

font-size:26px;

font-weight:800;

margin-bottom:15px;

}

.service-card p{

color:var(--muted);

line-height:1.8;

}

/* =========================
   FLOAT ANIMATION
========================= */

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}
/* =========================
   VPS SECTION
========================= */

.vps-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:35px;

}

.vps-card{

background:white;

padding:45px;

border-radius:30px;

border:1px solid #ffe3ef;

box-shadow:
0 15px 40px rgba(0,0,0,.05);

position:relative;

transition:.4s;

overflow:hidden;

}

.vps-card::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:5px;

background:
linear-gradient(
90deg,
#ff4fa3,
#ff7bc3
);

}

.vps-card:hover{

transform:
translateY(-12px);

box-shadow:
0 30px 70px rgba(255,79,163,.15);

}

.vps-card h3{

font-size:30px;

font-weight:800;

margin-bottom:15px;

}

.price{

font-size:65px;

font-weight:900;

color:var(--primary);

margin:25px 0;

}

.price span{

font-size:18px;

color:var(--muted);

}

.vps-card ul{

list-style:none;

margin:30px 0;

}

.vps-card ul li{

padding:14px 0;

border-bottom:1px solid #f6dbe8;

font-weight:500;

}

.vps-card ul li:last-child{

border:none;

}

.featured{

transform:scale(1.05);

border:2px solid var(--primary);

background:
linear-gradient(
180deg,
#ffffff,
#fff3f9
);

}

.popular{

display:inline-block;

padding:10px 18px;

background:
linear-gradient(
135deg,
#ff4fa3,
#ff7bc3
);

color:white;

font-weight:700;

border-radius:999px;

margin-bottom:20px;

}

/* =========================
   WHY CHOOSE US
========================= */

.choose-layout{
    display:grid;
    grid-template-columns:1fr 300px 1fr;
    gap:30px;
    align-items:center;
}

.choose-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    border:1px solid #ffe3ef;
    margin-bottom:20px;
}

.choose-card h3{
    font-size:24px;
    margin-bottom:10px;
}

.choose-card p{
    color:#666;
}

.choose-center{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hex-content{
    width:220px;
    height:220px;
    border-radius:50%;
    background:linear-gradient(135deg,#ff4fa3,#ff7bc3);
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hex-content h3{
    font-size:55px;
    font-weight:900;
}

.hex-content p{
    color:#fff;
}

/* =========================
   AI SECTION
========================= */

.ai-container{

display:grid;

grid-template-columns:
1fr 1fr;

gap:60px;

align-items:center;

}

.ai-demo{

background:white;

border-radius:30px;

overflow:hidden;

box-shadow:
0 20px 60px rgba(255,79,163,.12);

border:1px solid #ffe4ef;

}

.chat-header{

padding:20px;

display:flex;

align-items:center;

gap:10px;

background:#fff4fa;

border-bottom:1px solid #ffe2ef;

}

.dot{

width:12px;
height:12px;

border-radius:50%;

}

.red{
background:#ff5f57;
}

.yellow{
background:#ffbd2e;
}

.green{
background:#28c840;
}

.chat-body{

padding:25px;

display:flex;

flex-direction:column;

gap:18px;

}

.message{

padding:15px 20px;

border-radius:18px;

max-width:85%;

font-size:15px;

}

.user{

background:#ffe5f2;

align-self:flex-end;

}

.bot{

background:#f7f7f7;

align-self:flex-start;

}

/* AI FEATURES */

.ai-features{

display:grid;

grid-template-columns:
repeat(2,1fr);

gap:20px;

}

.feature-card{

background:white;

padding:30px;

border-radius:25px;

border:1px solid #ffe3ef;

box-shadow:
0 12px 35px rgba(0,0,0,.04);

transition:.4s;

}

.feature-card:hover{

transform:
translateY(-8px);

box-shadow:
0 20px 50px rgba(255,79,163,.15);

}

.feature-card i{

font-size:40px;

margin-bottom:15px;

color:var(--primary);

}

.feature-card h3{

font-size:22px;

margin-bottom:10px;

}

.feature-card p{

color:var(--muted);

line-height:1.7;

}

/* =========================
   FEATURES SECTION
========================= */

.features-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:25px;

}

.feature-box{

background:white;

padding:35px;

border-radius:25px;

border:1px solid #ffe3ef;

transition:.4s;

box-shadow:
0 12px 35px rgba(0,0,0,.04);

}

.feature-box:hover{

transform:
translateY(-10px);

box-shadow:
0 25px 55px rgba(255,79,163,.15);

}

.feature-box i{

font-size:45px;

margin-bottom:18px;

color:var(--primary);

}

.feature-box h3{

font-size:24px;

margin-bottom:10px;

}

.feature-box p{

line-height:1.8;

color:var(--muted);

}
/* =========================
   PREMIUM EFFECTS
========================= */

/* Mouse Glow */

.cursor-glow{
position:fixed;
width:350px;
height:350px;
border-radius:50%;

background:
radial-gradient(
circle,
rgba(255,79,163,.18),
transparent 70%
);

pointer-events:none;

transform:
translate(-50%,-50%);

z-index:-1;

filter:blur(60px);
}

/* Floating Blobs */

.blob{
position:fixed;
border-radius:50%;
filter:blur(100px);
z-index:-2;
animation:blobFloat 12s ease-in-out infinite;
}

.blob1{
width:350px;
height:350px;
background:rgba(255,79,163,.18);
top:-120px;
left:-120px;
}

.blob2{
width:400px;
height:400px;
background:rgba(255,123,195,.15);
right:-150px;
top:30%;
}

.blob3{
width:300px;
height:300px;
background:rgba(255,183,221,.18);
bottom:-100px;
left:40%;
}

@keyframes blobFloat{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-30px);
}

100%{
transform:translateY(0);
}

}

/* Card Shine Effect */

.service-card,
.vps-card,
.feature-card,
.feature-box,
.founder-card,
.contact-card,
.testimonial-card{

position:relative;
overflow:hidden;

}

.service-card::after,
.vps-card::after,
.feature-card::after,
.feature-box::after,
.founder-card::after,
.contact-card::after,
.testimonial-card::after{

content:"";

position:absolute;

top:-100%;
left:-100%;

width:120%;
height:120%;

background:
linear-gradient(
120deg,
transparent,
rgba(255,255,255,.5),
transparent
);

transition:.8s;

}

.service-card:hover::after,
.vps-card:hover::after,
.feature-card:hover::after,
.feature-box:hover::after,
.founder-card:hover::after,
.contact-card:hover::after,
.testimonial-card:hover::after{

top:100%;
left:100%;

}

/* Reveal Animation */

.reveal{

opacity:0;

transform:
translateY(50px);

transition:
all .8s ease;

}

.reveal.show{

opacity:1;

transform:
translateY(0);

}

/* Floating Icons */

.service-card i,
.feature-card i,
.feature-box i{

transition:.4s;

}

.service-card:hover i,
.feature-card:hover i,
.feature-box:hover i{

transform:
scale(1.15)
rotate(8deg);

}

/* Gradient Text */

.gradient-text{

background:
linear-gradient(
135deg,
#ff4fa3,
#ff7bc3
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

/* Hero Background */

.hero{

position:relative;

}

.hero::before{

content:"";

position:absolute;

width:600px;
height:600px;

background:
radial-gradient(
circle,
rgba(255,79,163,.12),
transparent 70%
);

right:0;
top:50px;

z-index:-1;

}

/* Pricing Glow */

.featured{

box-shadow:
0 20px 70px rgba(255,79,163,.25);

}

/* Smooth Hover */

a,
button{

transition:.3s ease;

}

/* Glass Cards */

.glass{

background:
rgba(255,255,255,.7);

backdrop-filter:
blur(20px);

border:
1px solid rgba(255,255,255,.5);

}

/* Selection Color */

::selection{

background:#ff4fa3;
color:white;

}

/* Scrollbar */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#fff2f8;
}

::-webkit-scrollbar-thumb{

background:
linear-gradient(
180deg,
#ff4fa3,
#ff7bc3
);

border-radius:20px;
}

/* Page Fade */

body{

animation:
pageLoad 1s ease;

}

@keyframes pageLoad{

from{
opacity:0;
}

to{
opacity:1;
}

}

/* ================= FAQ ================= */

.faq-section{
padding:120px 8%;
}

.faq-container{
max-width:900px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.faq-item{
background:white;
border-radius:25px;
overflow:hidden;
box-shadow:0 10px 30px rgba(255,105,180,.08);
border:1px solid rgba(255,105,180,.12);
transition:.4s;
}

.faq-item:hover{
transform:translateY(-5px);
box-shadow:0 20px 50px rgba(255,105,180,.15);
}

.faq-btn{
width:100%;
padding:25px;
background:none;
border:none;
font-size:20px;
font-weight:600;
text-align:left;
cursor:pointer;
color:#111;
display:flex;
justify-content:space-between;
align-items:center;
}

.faq-btn::after{
content:"+";
font-size:28px;
color:#ff4fa1;
}

.faq-content{
max-height:0;
overflow:hidden;
transition:max-height .5s ease;
}

.faq-content p{
padding:0 25px 25px;
color:#666;
line-height:1.8;
}

/* ================= NEWSLETTER ================= */

.newsletter-section{
padding:120px 8%;
}

.newsletter-box{
background:white;
border-radius:35px;
padding:60px;
display:flex;
justify-content:space-between;
align-items:center;
gap:40px;
box-shadow:0 20px 60px rgba(255,105,180,.12);
border:1px solid rgba(255,105,180,.15);
}

.newsletter-left h2{
font-size:48px;
margin:15px 0;
}

.newsletter-left p{
color:#666;
max-width:550px;
}

.newsletter-form{
display:flex;
gap:15px;
}

.newsletter-form input{
width:350px;
padding:18px 25px;
border:none;
outline:none;
border-radius:15px;
background:#f9f4f7;
font-size:16px;
}

.newsletter-form button{
padding:18px 35px;
border:none;
cursor:pointer;
border-radius:15px;
font-weight:700;
background:linear-gradient(
135deg,
#ff4fa1,
#ff8ec6
);
color:white;
transition:.3s;
}

.newsletter-form button:hover{
transform:translateY(-4px);
}

/* ================= CONTACT ================= */

.contact-preview{
padding:120px 8%;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:70px;
}

.contact-card{
background:white;
padding:40px;
border-radius:30px;
text-align:center;
box-shadow:0 15px 40px rgba(255,105,180,.08);
transition:.4s;
}

.contact-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(255,105,180,.15);
}

.contact-card i{
font-size:45px;
margin-bottom:20px;
color:#ff4fa1;
}

.contact-card h3{
font-size:26px;
margin-bottom:10px;
}

.contact-card p{
color:#666;
}

/* ================= FOOTER ================= */

.footer{
padding:100px 8% 40px;
background:white;
border-top:1px solid rgba(255,105,180,.12);
}

.footer-top{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:60px;
}

.footer-column h3{
font-size:26px;
margin-bottom:20px;
}

.footer-column p{
color:#666;
line-height:1.8;
}

.footer-column ul{
list-style:none;
}

.footer-column li{
margin:15px 0;
}

.footer-column a{
text-decoration:none;
color:#555;
transition:.3s;
}

.footer-column a:hover{
color:#ff4fa1;
padding-left:5px;
}

.footer-social{
display:flex;
gap:15px;
margin-top:25px;
}

.footer-social a{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#fff0f7;
color:#ff4fa1;
font-size:18px;
transition:.3s;
}

.footer-social a:hover{
transform:translateY(-5px);
background:#ff4fa1;
color:white;
}

.footer-bottom{
margin-top:60px;
padding-top:30px;
border-top:1px solid rgba(255,105,180,.15);
text-align:center;
color:#666;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

.contact-grid{
grid-template-columns:1fr 1fr;
}

.footer-top{
grid-template-columns:1fr 1fr;
}

.newsletter-box{
flex-direction:column;
text-align:center;
}

.newsletter-form{
width:100%;
flex-direction:column;
}

.newsletter-form input{
width:100%;
}

}

@media(max-width:700px){

.contact-grid{
grid-template-columns:1fr;
}

.footer-top{
grid-template-columns:1fr;
}

.newsletter-left h2{
font-size:34px;
}

} /* <-- ADD THIS */

.location-card{
    font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
}
/* =========================
   FOUNDER PREMIUM SECTION
========================= */

.founder-section{
    padding:120px 8%;
}

.founder-card{
    display:grid;
    grid-template-columns:520px 1fr;
    gap:60px;

    background:#fff;

    padding:40px;

    border-radius:35px;

    border:1px solid #ffe3ef;

    box-shadow:0 25px 70px rgba(255,79,163,.12);
}

.founder-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    border-radius:30px;

    border:6px solid #fff;

    box-shadow:0 20px 50px rgba(255,79,163,.15);
}

.founder-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.founder-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    width:fit-content;

    padding:12px 22px;

    border-radius:999px;

    background:#fff0f7;

    color:#ff4fa3;

    font-weight:700;

    margin-bottom:25px;
}

.founder-content h3{
    font-size:72px;
    line-height:1;
    font-weight:900;

    margin-bottom:10px;

    background:linear-gradient(
        135deg,
        #ff4fa3,
        #ff7bc3
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.founder-role{
    font-size:26px;
    font-weight:700;

    color:#222;

    margin-bottom:25px;
}

.founder-content p{
    font-size:18px;

    line-height:2;

    color:#666;

    margin-bottom:30px;
}

.founder-tags{
    display:flex;
    flex-wrap:wrap;
    gap:15px;

    margin-bottom:35px;
}

.founder-tags span{
    background:#fff0f7;

    color:#ff4fa3;

    padding:12px 20px;

    border-radius:999px;

    font-weight:600;
}

.founder-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;

    margin-bottom:35px;
}

.founder-stats div{
    background:white;

    padding:30px;

    border-radius:25px;

    text-align:center;

    border:1px solid #ffe3ef;

    box-shadow:0 10px 30px rgba(255,79,163,.08);
}

.founder-stats strong{
    display:block;

    font-size:48px;

    color:#ff4fa3;

    font-weight:900;

    margin-bottom:10px;
}

.founder-stats span{
    color:#666;
}

.contact-founder{
    width:fit-content;

    padding:18px 35px;

    border-radius:999px;

    text-decoration:none;

    font-weight:700;

    color:white;

    background:linear-gradient(
        135deg,
        #ff4fa3,
        #ff7bc3
    );

    box-shadow:0 15px 35px rgba(255,79,163,.25);

    transition:.3s;
}

.contact-founder:hover{
    transform:translateY(-5px);
}

@media(max-width:1000px){

    .founder-card{
        grid-template-columns:1fr;
    }

    .founder-content h3{
        font-size:52px;
    }

    .founder-stats{
        grid-template-columns:1fr;
    }
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}
/* =========================
   RESPONSIVE FIXES
========================= */

html{
    overflow-x:hidden;
}

body{
    overflow-x:hidden;
    overflow-y:auto;
    min-height:100vh;
}

img{
    max-width:100%;
    height:auto;
}

@media (max-width:991px){

    .navbar{
        padding:15px 20px;
        flex-wrap:wrap;
    }
    @media (max-width:991px){

    .nav-links{
        display:flex;
        flex-wrap:wrap;
        gap:10px;
    
}

    }

    .nav-buttons{
        width:100%;
        justify-content:center;
        margin-top:15px;
    }

    section{
        padding:80px 20px;
    }

    .hero{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
        padding-top:140px;
    }

    .hero h1{
        font-size:52px;
    }

    .hero p{
        max-width:100%;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-features{
        grid-template-columns:1fr;
    }

    .server-stats{
        grid-template-columns:1fr;
    }

    .trust-banner{
        grid-template-columns:1fr 1fr;
    }

    .choose-layout{
        grid-template-columns:1fr;
    }

    .ai-container{
        grid-template-columns:1fr;
    }

    .ai-features{
        grid-template-columns:1fr;
    }

    .founder-card{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-top{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width:768px){

    .hero h1{
        font-size:40px;
    }

    .section-header h2{
        font-size:34px;
    }

    .trust-banner{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .footer-top{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .start-btn,
    .login-btn,
    .primary-btn,
    .secondary-btn,
    .buy-btn{
        width:100%;
    }

    .price{
        font-size:48px;
    }
}

@media (max-width:480px){

    .hero h1{
        font-size:32px;
    }

    .section-header h2{
        font-size:28px;
    }

    .hero-card{
        padding:25px;
    }

    .price{
        font-size:42px;
    }
}
