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

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#f4f6fb;
color:#1f2937;
line-height:1.6;
}

/* HEADER */
.header{
background:linear-gradient(90deg,#1e3a8a,#2563eb);
position:sticky;
top:0;
z-index:1000;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.nav{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 20px;
position:relative;
}

.logo{
color:white;
font-size:22px;
font-weight:700;
letter-spacing:.3px;
}

.logo span{
color:#ff6a00;
}

nav{
display:flex;
gap:30px;
align-items:center;
}

nav a{
color:white;
text-decoration:none;
font-weight:500;
transition:0.3s;
position:relative;
}

nav a:hover{
opacity:0.8;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#ff6a00;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

/* MOBILE MENU */
.menu-toggle{
display:none;
font-size:28px;
color:white;
cursor:pointer;
line-height:1;
}

/* HERO */
.hero{
min-height:630px;
background:url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1600') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
position:relative;
padding:30px 20px;
overflow:hidden;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:linear-gradient(180deg,rgba(0,0,0,0.78),rgba(30,58,138,0.95));
}

.hero-content{
position:relative;
max-width:860px;
text-align:center;
color:white;
padding:46px;
border-radius:20px;
background:rgba(255,255,255,0.10);
backdrop-filter:blur(14px);
box-shadow:0 24px 70px rgba(0,0,0,0.28);
border:1px solid rgba(255,255,255,0.16);
text-shadow:0 2px 12px rgba(0,0,0,0.45);
}

.hero-badge{
display:inline-block;
background:rgba(255,255,255,0.15);
padding:10px 16px;
border-radius:999px;
margin-bottom:18px;
font-size:14px;
font-weight:600;
color:#ffffff;
}

.hero h1{
font-size:46px;
line-height:1.15;
margin-bottom:18px;
font-weight:700;
color:#ffffff;
text-shadow:0 4px 20px rgba(0,0,0,0.6);
}

.hero p{
font-size:18px;
color:#ffffff;
opacity:1;
max-width:760px;
margin:0 auto;
font-weight:400;
text-shadow:0 2px 12px rgba(0,0,0,0.55);
}

.hero-points{
display:flex;
justify-content:center;
gap:12px;
flex-wrap:wrap;
margin-top:22px;
}

.hero-points span{
background:rgba(255,255,255,0.14);
padding:10px 14px;
border-radius:999px;
font-size:14px;
font-weight:500;
color:#ffffff;
}

.hero-actions{
display:flex;
justify-content:center;
gap:12px;
flex-wrap:wrap;
margin-top:24px;
}

.btn{
background:#ff6a00;
color:white;
padding:14px 28px;
border-radius:10px;
text-decoration:none;
display:inline-block;
font-weight:600;
transition:0.3s;
box-shadow:0 10px 24px rgba(255,106,0,0.22);
}

.btn:hover{
background:#e65c00;
transform:translateY(-2px);
}

.btn-secondary{
background:rgba(255,255,255,0.14);
border:1px solid rgba(255,255,255,0.25);
box-shadow:none;
}

.btn-secondary:hover{
background:rgba(255,255,255,0.22);
}

/* SECTIONS */
.container{
max-width:1100px;
margin:auto;
padding:70px 20px;
}

h2{
font-size:32px;
margin-bottom:20px;
line-height:1.2;
color:#0f172a;
}

h3{
font-size:20px;
margin-bottom:10px;
color:#111827;
}

p{
color:#4b5563;
}

/* INTRO */
.intro-section{
padding-top:40px;
}

.intro-grid{
display:grid;
grid-template-columns:1.3fr 1fr;
gap:25px;
align-items:start;
}

.intro-text p{
margin-bottom:16px;
font-size:16px;
}

.intro-box{
background:white;
padding:24px;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.intro-box ul{
padding-left:18px;
margin-top:10px;
}

.intro-box li{
margin-bottom:10px;
color:#374151;
}

/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:10px;
}

.card{
background:white;
padding:28px 24px;
border-radius:16px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:0.3s;
border:1px solid #eef2f7;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.10);
}

.card h3{
margin-bottom:8px;
}

.card p{
font-size:15px;
line-height:1.7;
}

/* PROCESS */
.process-section{
padding-top:20px;
}

.steps-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:25px;
}

.step-card{
background:white;
padding:24px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
border:1px solid #eef2f7;
}

.step-number{
width:44px;
height:44px;
border-radius:50%;
background:#1e3a8a;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
margin-bottom:14px;
}

/* TRUST */
.trust-section{
padding-top:10px;
}

.trust-banner{
background:linear-gradient(135deg,#1e3a8a,#2563eb);
color:white;
padding:38px;
border-radius:20px;
box-shadow:0 16px 40px rgba(30,58,138,0.22);
}

.trust-banner h2{
color:white;
margin-bottom:10px;
}

.trust-banner p{
color:rgba(255,255,255,0.92);
font-size:17px;
}

/* FORM */
.form-intro{
margin-bottom:20px;
color:#4b5563;
font-size:16px;
}

.pro-form{
background:white;
padding:32px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.10);
border:1px solid #eef2f7;
}

.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

input,select,textarea{
width:100%;
padding:14px;
margin:10px 0;
border-radius:10px;
border:1px solid #dbe1ea;
font-size:14px;
font-family:'Poppins',sans-serif;
background:#fff;
color:#111827;
transition:border-color .2s, box-shadow .2s;
}

input:focus,
select:focus,
textarea:focus{
outline:none;
border-color:#2563eb;
box-shadow:0 0 0 4px rgba(37,99,235,0.10);
}

textarea{
min-height:140px;
resize:vertical;
}

button{
background:#1e3a8a;
color:white;
padding:15px;
border:none;
border-radius:10px;
width:100%;
font-weight:600;
font-size:16px;
cursor:pointer;
transition:0.3s;
font-family:'Poppins',sans-serif;
margin-top:6px;
}

button:hover{
background:#162c6e;
transform:translateY(-1px);
}

.form-note{
margin-top:14px;
font-size:14px;
color:#6b7280;
}

/* SUCCESS */
.success-box{
background:#dcfce7;
color:#166534;
padding:15px 16px;
border-radius:10px;
margin-bottom:20px;
font-weight:500;
border:1px solid #bbf7d0;
}

/* THANK YOU */
.thankyou-box{
max-width:800px;
margin:40px auto;
background:white;
padding:40px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;
}

.thankyou-box h1{
margin-bottom:20px;
font-size:36px;
color:#1e3a8a;
}

.thankyou-box p{
font-size:17px;
line-height:1.7;
margin-bottom:16px;
}

.thankyou-actions{
display:flex;
justify-content:center;
gap:15px;
margin-top:25px;
flex-wrap:wrap;
}

/* FOOTER */
footer{
background:#1e3a8a;
color:white;
text-align:center;
padding:28px 20px;
margin-top:60px;
}

footer p{
color:white;
opacity:0.95;
}

/* MOBILE */
@media(max-width:992px){
.intro-grid{
grid-template-columns:1fr;
}

.steps-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){

nav{
display:none;
flex-direction:column;
position:absolute;
top:72px;
right:0;
background:#1e3a8a;
width:240px;
padding:20px;
border-radius:0 0 0 14px;
box-shadow:0 12px 24px rgba(0,0,0,0.15);
}

nav.active{
display:flex;
}

.menu-toggle{
display:block;
}

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

.form-row{
grid-template-columns:1fr;
}

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

.hero{
min-height:620px;
background-position:center center;
}

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

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

.hero-content{
padding:26px 22px;
}

.hero-points,
.hero-actions{
flex-direction:column;
align-items:center;
}

h2{
font-size:28px;
}
}