body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.08), transparent 40%), radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.06), transparent 40%), radial-gradient(circle at 50% 80%, rgba(0, 150, 255, 0.05), transparent 50%), linear-gradient(to bottom, #f8fbff, #eef3fa);
    background-attachment: fixed;
}

    body::after {
        content: "";
        position: fixed;
        inset: 0;
        background: radial-gradient(circle at center, rgba(0, 120, 255, 0.05), transparent 70%);
        pointer-events: none;
        z-index: -1;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}

    .logo img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

*:focus,
*:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}
h1 {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.2;
}

h2 {
    font-size: clamp(22px, 4vw, 36px);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 60px 0;
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {

    .hero {
        height: 75vh;
        background-position: center top;
    }

    .hero-content {
        padding-top: 120px;
        max-width: 100%;
    }
}

h1, h2, h3, p {
    word-wrap: break-word;
}



p {
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.6;
}

.btn-primary,
.btn-secondary {
    padding: 12px 22px;
    font-size: 16px;
    border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {

    .about-grid,
    .why-grid,
    .stats,
    .hero-buttons {
        flex-direction: column !important;
        align-items: flex-start;
    }

        .about-grid > div,
        .why-grid > div {
            width: 100% !important;
        }
}