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

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    line-height: 1.7;
    background: #fff;
}

.container {
    width: min(1100px, 90%);
    margin: auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(135deg,
            #0f172a,
            #1e3a5f);
    color: white;
}

.hero-content {
    max-width: 800px;
}

.logo {
    width: 220px;
    max-width: 80%;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.15rem;
    opacity: .9;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    background: #3b82f6;
    color: white;
    font-weight: 600;
    transition: .3s;
}

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

.trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 2.5rem;
    margin-bottom: 50px;
    opacity: .8;
    font-weight: 600;
}

@media(max-width:768px) {
    .trust-bar {
        gap: 20px;
    }
}

.section {
    padding: 100px 0;
}

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

.section-heading span {
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading h2 {
    margin-top: 12px;
    font-size: 2.5rem;
}

.grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    padding: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    transition: .3s;
}

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

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

.dark {
    background: #0f172a;
    color: white;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stats strong {
    display: block;
    font-size: 3rem;
}

.stats span {
    opacity: .8;
}

.about-text {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

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

.step {
    text-align: center;
    padding: 32px;
}

.step span {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #3b82f6;
    color: white;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.accent {
    background: #eff6ff;
    text-align: center;
}

.coverage p {
    max-width: 700px;
    margin: auto;
}

.contact {
    text-align: center;
}

.contact-box address {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;

    font-style: normal;
}

.contact-box address a {
    color: inherit;
    text-decoration: none;
}

.contact-box address a:hover {
    text-decoration: underline;
}

.footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 32px 0;
}

.footer p {
    opacity: .7;
    font-size: .9rem;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media(max-width:768px) {

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

    .stats {
        gap: 40px;
    }

    .section {
        padding: 80px 0;
    }

}