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

:root{
--bg:#0f172a;
--card:#111c34;
--card-2:#16213f;
--text:#ffffff;
--muted:#cbd5e1;
--border:rgba(255,255,255,.08);
--shadow:0 15px 50px rgba(0,0,0,.25);
--radius:28px;
--green:#25D366;
}

html{
scroll-behavior:smooth;
}

body{
font-family:Arial,sans-serif;
background:linear-gradient(180deg,#0f172a 0%,#101827 100%);
color:var(--text);
line-height:1.7;
overflow-x:hidden;
}

.container{
width:100%;
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* HEADER */

.header{
padding:30px 0;
}

.nav{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
flex-wrap:wrap;
}

.logo{
width:280px;
max-width:90%;
height:auto;
display:block;
object-fit:contain;
}

.langs{
display:flex;
align-items:center;
gap:12px;
flex-wrap:wrap;
}

.lang-link{
padding:12px 18px;
border-radius:16px;
background:#fff;
color:#111827;
text-decoration:none;
font-weight:700;
transition:.25s ease;
}

.lang-link:hover{
transform:translateY(-3px);
}

/* HERO */

.hero{
padding:60px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:50px;
align-items:center;
}

.badge{
display:inline-flex;
padding:10px 18px;
border-radius:999px;
background:#1e293b;
font-size:14px;
font-weight:700;
margin-bottom:20px;
}

.hero h1{
font-size:58px;
line-height:1.1;
margin-bottom:22px;
font-weight:800;
}

.hero-text{
font-size:19px;
line-height:1.9;
color:var(--muted);
margin-bottom:30px;
max-width:700px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-top:30px;
}

.btn{
display:inline-flex;
justify-content:center;
align-items:center;
padding:18px 26px;
border-radius:20px;
text-decoration:none;
font-weight:800;
font-size:17px;
transition:.25s ease;
}

.btn-primary{
background:var(--green);
color:#fff;
}

.btn-secondary{
background:#fff;
color:#111827;
}

.btn:hover{
transform:translateY(-4px);
}

/* IMAGE */

.hero-image img{
width:100%;
max-width:520px;
display:block;
margin:auto;
border-radius:28px;
box-shadow:var(--shadow);
}

/* FEATURES */

.features{
display:flex;
gap:12px;
flex-wrap:wrap;
margin-top:35px;
}

.feature{
background:#1e293b;
padding:12px 18px;
border-radius:14px;
font-weight:700;
font-size:14px;
border:1px solid rgba(255,255,255,.06);
}

/* PACKAGES */

.section-title{
text-align:center;
font-size:44px;
margin-bottom:15px;
font-weight:800;
}

.section-desc{
text-align:center;
color:var(--muted);
max-width:750px;
margin:0 auto 40px;
font-size:18px;
}

.packages{
padding:90px 0;
}

.pack-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.package-card{
background:var(--card);
border:1px solid var(--border);
border-radius:28px;
padding:40px 28px;
text-align:center;
box-shadow:var(--shadow);
transition:.25s ease;
}

.package-card:hover{
transform:translateY(-6px);
}

.package-title{
font-size:28px;
font-weight:800;
margin-bottom:12px;
}

.package-price{
font-size:52px;
font-weight:900;
margin-bottom:20px;
}

.package-price span{
font-size:20px;
opacity:.85;
}

.package-features{
display:flex;
flex-direction:column;
gap:12px;
margin:25px 0;
}

.package-feature{
background:#1e293b;
padding:14px;
border-radius:14px;
font-size:15px;
}

/* CTA */

.cta{
padding:90px 0;
}

.cta-card{
background:var(--card);
border-radius:30px;
padding:60px 35px;
text-align:center;
border:1px solid var(--border);
box-shadow:var(--shadow);
}

.cta-card h2{
font-size:46px;
margin-bottom:20px;
}

.cta-card p{
max-width:750px;
margin:0 auto 30px;
font-size:18px;
color:var(--muted);
}

/* FAQ */

.faq{
padding:90px 0;
}

.faq-grid{
display:grid;
gap:18px;
}

.faq-item{
background:var(--card);
padding:28px;
border-radius:24px;
border:1px solid var(--border);
}

.faq-item h3{
font-size:22px;
margin-bottom:10px;
}

.faq-item p{
color:var(--muted);
}

/* FOOTER */

.footer{
padding:35px 0;
text-align:center;
color:#94a3b8;
font-size:14px;
}

/* RESPONSIVE */

@media(max-width:992px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-text{
margin:auto auto 30px;
}

.features{
justify-content:center;
}

.pack-grid{
grid-template-columns:1fr;
}

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

.section-title{
font-size:36px;
}

.cta-card h2{
font-size:34px;
}
}

@media(max-width:768px){

.logo{
width:220px;
}

.hero{
padding:30px 0;
}

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

.hero-text{
font-size:16px;
}

.btn{
width:100%;
}

.hero-buttons{
flex-direction:column;
}

.section-title{
font-size:30px;
}

.package-price{
font-size:42px;
}

.cta-card{
padding:40px 22px;
}

.cta-card h2{
font-size:30px;
}

.section-desc{
font-size:16px;
}
}
/* footer legal */

.footer{
padding:45px 0;
text-align:center;
border-top:1px solid rgba(255,255,255,.06);
}

.footer-links{
display:flex;
justify-content:center;
align-items:center;
gap:14px;
flex-wrap:wrap;
margin-bottom:22px;
}

.footer-link{
padding:12px 18px;
border-radius:14px;
background:#18233f;
border:1px solid rgba(255,255,255,.08);
color:#fff;
text-decoration:none;
font-weight:700;
font-size:14px;
transition:.25s ease;
}

.footer-link:hover{
transform:translateY(-2px);
background:#223155;
}

.footer-copy{
font-size:14px;
color:#94a3b8;
line-height:1.8;
}

@media(max-width:768px){

.footer-links{
gap:10px;
}

.footer-link{
font-size:13px;
padding:10px 14px;
}
}