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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#111827;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   HEADER
========================= */

.header{
    background:#ffffff;
    padding:10px 0;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 20px rgba(0,0,0,0.04);
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:80px;
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
    text-decoration:none;
}

.site-logo{
    width:145px;
    height:auto;
    object-fit:contain;
}

/* NAVIGATION */

.nav-links{
    display:flex;
    align-items:center;
    gap:45px;
}

.nav-links a{
    text-decoration:none;
    color:#111827;
    font-weight:600;
    font-size:16px;
    transition:0.3s ease;
}

.nav-links a:hover{
    color:#0a66ff;
}

/* BUTTONS */

.call-btn,
.primary-btn{
    background:#0a66ff;
    color:#fff;
    padding:15px 30px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:0.3s ease;
    border:none;
    cursor:pointer;
}

.call-btn:hover,
.primary-btn:hover{
    background:#0052d6;
    transform:translateY(-2px);
}

.secondary-btn{
    border:1px solid #fff;
    color:#fff;
    padding:15px 30px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

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

.dark-btn{
    border-color:#fff;
}

/* =========================
   HERO
========================= */

.hero{
    background:
    linear-gradient(
        rgba(15,23,42,0.78),
        rgba(15,23,42,0.82)
    ),
    url('../images/hero-bg.jpg');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    padding:130px 0;
    color:#fff;
    position:relative;
}
.hero::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at 20% 20%,
    rgba(255,255,255,0.08),
    transparent 35%);

    pointer-events:none;
}
.hero-grid{
    display:grid;
    grid-template-columns:1fr 450px;
    gap:70px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    background:#ffffff20;
    padding:12px 20px;
    border-radius:50px;
    margin-bottom:25px;
    font-weight:500;
}

.hero-content h1{
    font-size:72px;
    line-height:1.05;
    margin-bottom:30px;
    font-weight:800;
}

.hero-content p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:35px;
    color:#e2e8f0;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    margin-bottom:40px;
    font-weight:500;
}

.hero-cta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* FORM */

.hero-form{
    background:#ffffffee;
    backdrop-filter:blur(14px);
    padding:40px;
    border-radius:28px;
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
    color:#111827;
}

.hero-form h2{
    margin-bottom:25px;
    font-size:40px;
}

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

.hero-form input,
.hero-form select,
.hero-form textarea{
    padding:16px;
    border:1px solid #d1d5db;
    border-radius:14px;
    font-size:16px;
    color:#111827;
    background:#fff;
    outline:none;
}

.hero-form textarea{
    min-height:120px;
    resize:none;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder{
    color:#6b7280;
}

.hero-form button{
    background:#0a66ff;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:14px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.hero-form button:hover{
    background:#0052d6;
}

.tcpa{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:12px;
    line-height:1.7;
    color:#4b5563;
    margin-top:5px;
}

.tcpa input{
    margin-top:4px;
    min-width:18px;
    height:18px;
}

.tcpa label{
    flex:1;
}

.tcpa a{
    color:#0a66ff;
    text-decoration:none;
    font-weight:600;
}

.tcpa a:hover{
    text-decoration:underline;
}
/* =========================
   TRUST SECTION
========================= */

.trust-section{
    padding:60px 0;
    background:#0a66ff;
    color:#fff;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.trust-box h2{
    font-size:46px;
    margin-bottom:10px;
}

/* =========================
   SECTIONS
========================= */

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading span{
    color:#0a66ff;
    font-weight:600;
}

.section-heading h2{
    font-size:48px;
    margin-top:15px;
    color:#0f172a;
}

/* =========================
   SERVICES
========================= */

.services{
    padding:110px 0;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px;
    border-radius:28px;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
    transition:0.3s ease;
}

.service-card:hover{
    transform:translateY(-8px);
}

.icon{
    font-size:48px;
    margin-bottom:25px;
}

.service-card h3{
    font-size:28px;
    margin-bottom:18px;
}

.service-card p{
    line-height:1.8;
    color:#64748b;
}

/* =========================
   WHY US
========================= */

.why-us{
    padding:110px 0;
    background:#fff;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    border-radius:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.section-tag{
    display:inline-block;
    background:#dbeafe;
    color:#0a66ff;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.why-grid h2{
    font-size:52px;
    margin-bottom:25px;
}

.why-grid p{
    font-size:18px;
    line-height:1.9;
    color:#64748b;
}

.check-list{
    list-style:none;
    margin-top:30px;
}

.check-list li{
    margin-bottom:18px;
    font-size:18px;
}

/* =========================
   PROCESS
========================= */

.process{
    padding:110px 0;
    background:#f1f5f9;
}

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

.process-card{
    background:#fff;
    padding:45px;
    border-radius:28px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.step{
    width:80px;
    height:80px;
    background:#0a66ff;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 25px;
    font-size:28px;
    font-weight:700;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials{
    padding:110px 0;
}

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

.testimonial-card{
    background:#fff;
    padding:40px;
    border-radius:28px;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.stars{
    font-size:22px;
    color:#fbbf24;
    margin-bottom:20px;
}

.testimonial-card p{
    line-height:1.9;
    color:#64748b;
    margin-bottom:20px;
}

/* =========================
   COVERAGE
========================= */

.coverage{
    padding:110px 0;
    background:#f1f5f9;
}

.coverage-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.coverage-list{
    list-style:none;
    margin-top:30px;
}

.coverage-list li{
    margin-bottom:16px;
    font-size:18px;
}

/* =========================
   FAQ
========================= */

.faq-section{
    padding:110px 0;
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    margin-bottom:20px;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #e5e7eb;
    background:#fff;
}

.faq-question{
    width:100%;
    background:#fff;
    border:none;
    padding:24px;
    text-align:left;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
}

.faq-answer{
    display:none;
    padding:0 24px 24px;
    color:#64748b;
    line-height:1.9;
}

/* =========================
   CTA
========================= */

.final-cta{
    padding:110px 0;
    background:#0a66ff;
}

.final-cta-box{
    text-align:center;
    color:#fff;
}

.final-cta-box h2{
    font-size:56px;
    margin-bottom:20px;
}

.final-cta-box p{
    font-size:20px;
    margin-bottom:35px;
}

.final-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#07142b;
    color:#fff;
    padding:90px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:60px;
}

.footer h3,
.footer h4{
    margin-bottom:20px;
}

.footer p{
    line-height:1.9;
    color:#d1d5db;
}

.footer-links{
    list-style:none;
    margin-top:20px;
}

.footer-links li{
    margin-bottom:16px;
}

.footer-links a{
    color:#d1d5db;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#fff;
    transform:translateX(5px);
}

.copyright{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:50px;
    padding-top:30px;
    text-align:center;
    color:#d1d5db;
}

/* =========================
   LEGAL PAGES
========================= */

.page-banner{
    background:linear-gradient(135deg,#f8fafc,#eef4ff);
    padding:80px 0 60px;
    text-align:center;
}

.page-banner .container{
    max-width:900px;
}

.legal-tag{
    display:inline-block;
    background:#dbeafe;
    color:#0a66ff;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:25px;
}

.page-banner h1{
    font-size:72px;
    margin-bottom:25px;
}

.legal-subtitle{
    font-size:22px;
    line-height:1.9;
    color:#64748b;
}

.legal-page{
    padding:80px 0 120px;
    background:#f8fafc;
}

.legal-container{
    max-width:1100px;
}

.legal-card{
    background:#fff;
    padding:50px;
    border-radius:28px;
    margin-bottom:35px;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.legal-card h2{
    font-size:32px;
    margin-bottom:25px;
}

.legal-card p{
    font-size:18px;
    line-height:1.9;
    color:#4b5563;
}

.legal-list{
    margin-top:20px;
    padding-left:20px;
}

.legal-list li{
    margin-bottom:15px;
    font-size:18px;
    color:#4b5563;
}

/* =========================
   SERVICE PAGES
========================= */

.service-hero{
    padding:110px 0;
    background:linear-gradient(135deg,#f8fafc,#eef4ff);
}

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

.service-badge{
    display:inline-block;
    background:#dbeafe;
    color:#0a66ff;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:25px;
}

.service-hero h1{
    font-size:60px;
    margin-bottom:25px;
}

.service-hero p{
    font-size:20px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:35px;
}

.service-image{
    border-radius:28px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.service-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.service-content{
    padding:110px 0;
}

.content-grid{
    display:grid;
    gap:35px;
}

.content-card{
    background:#fff;
    padding:45px;
    border-radius:28px;
    box-shadow:0 10px 35px rgba(0,0,0,0.05);
}

.content-card h2{
    font-size:34px;
    margin-bottom:20px;
}

.content-card p{
    font-size:18px;
    line-height:1.9;
    color:#64748b;
}

.service-list{
    margin-top:20px;
    padding-left:20px;
}

.service-list li{
    margin-bottom:15px;
    font-size:18px;
    color:#4b5563;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .hero-grid,
    .why-grid,
    .coverage-grid,
    .service-hero-grid{
        grid-template-columns:1fr;
    }

    .service-grid,
    .testimonial-grid,
    .process-grid,
    .trust-grid{
        grid-template-columns:1fr 1fr;
    }

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

}

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .site-logo{
        width:120px;
    }

    .hero-content h1,
    .page-banner h1,
    .service-hero h1{
        font-size:42px;
    }

    .hero{
        padding:90px 0;
    }

    .hero-grid{
        gap:40px;
    }

    .hero-form{
        padding:30px;
    }

    .service-grid,
    .testimonial-grid,
    .process-grid,
    .trust-grid{
        grid-template-columns:1fr;
    }

    .final-buttons,
    .hero-cta{
        flex-direction:column;
    }

    .call-btn,
    .primary-btn,
    .secondary-btn{
        width:100%;
        text-align:center;
    }

    .legal-card,
    .content-card{
        padding:30px;
    }

}