/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}


.logo {
    display: inline-flex;
    align-items: center;
    /*gap: 10px;*/
    text-decoration: none;
    white-space: nowrap;
    font-size: 24px;
    font-weight: 800;
    color: #172033;
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.logo > span > span {
    color: #2563eb;
}


a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid #e8ebf2;
}

.nav-container {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: #686806;
}



.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-social p {
    margin: 0;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.social-icons li {
    margin: 0;
    padding: 0;
}

.social-icons a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: #1e293b;

    border-radius: 50%;

    text-decoration: none;

    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}


@media (max-width: 600px) {
    .footer-social {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}


.navbar {
    display: flex;
    gap: 30px;
}

.navbar a {
    font-weight: 600;
    color: #4b5563;
    transition: 0.25s;
}

.navbar a:hover {
    color: #2563eb;
}


.thank-you {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        linear-gradient(
            135deg,
            #f8fbff,
            #eef5ff
        );
}

.thank-you-box {
    width: min(600px, 100%);

    padding: 60px 40px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e5eaf1;
    border-radius: 20px;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.10);
}

.success-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;
    background: #16a34a;

    font-size: 36px;
    font-weight: 700;
}

.thank-you-box h1 {
    margin-bottom: 15px;

    font-size: 42px;

    color: #172033;
}

.thank-you-box p {
    max-width: 450px;

    margin: 0 auto 30px;

    color: #687386;

    font-size: 17px;
}


.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    font-size: 1.7rem;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 680px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(37, 99, 235, 0.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8fbff,
            #eef5ff
        );
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 70px;
    align-items: center;
}

.badge,
.section-label {
    display: inline-block;

    color: #2563eb;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;

    font-size: 0.78rem;
}

.hero h1 {
    margin-top: 16px;

    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.05;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    color: #2563eb;
}

.hero-text > p {
    max-width: 650px;

    margin: 24px 0;

    color: #5c6678;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 13px 24px;

    border-radius: 10px;

    font-weight: 700;

    transition:
        transform 0.2s,
        box-shadow 0.2s,
        background 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: white;
    background: #2563eb;

    box-shadow:
        0 10px 25px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-outline {
    color: #2563eb;
    border: 1px solid #b9cdf7;
    background: white;
}

.btn-light {
    color: #2563eb;
    background: white;
}


/* =========================
   HERO CARD
========================= */

.hero-card {
    padding: 45px;

    border: 1px solid rgba(255,255,255,.8);
    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #2563eb,
            #163ea3
        );

    color: white;

    box-shadow:
        0 30px 70px rgba(37, 99, 235, 0.25);
}

.hero-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 0;
}

.two-column {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;
}

.section h2,
.cta h2 {
    margin-top: 12px;

    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;

    letter-spacing: -1.5px;
}

.two-column p {
    margin-bottom: 18px;
    color: #657084;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;

    text-align: center;
}

.section-heading p {
    margin-top: 15px;
    color: #687386;
}


/* =========================
   SERVICES
========================= */

.services-section {
    background: #f7f9fc;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.service-card {
    padding: 30px;

    background: white;

    border: 1px solid #e7ebf2;
    border-radius: 18px;

    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.09);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 18px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: #6b7484;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-card a {
    color: #2563eb;
    font-weight: 700;
}


/* =========================
   FEATURES
========================= */

.features {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 45px;
}

.feature {
    padding: 30px;

    border-top: 3px solid #2563eb;
    background: #f8fafc;

    border-radius: 12px;
}

.feature > span {
    color: #2563eb;
    font-weight: 900;
}

.feature h3 {
    margin: 12px 0 8px;
}

.feature p {
    color: #697487;
}


/* =========================
   CTA
========================= */

.cta {
    padding: 90px 0;

    text-align: center;

    color: white;

    background:
        linear-gradient(
            135deg,
            #1d4ed8,
            #172554
        );
}

.cta p {
    margin: 15px auto 25px;
    color: #dbeafe;
}


/* =========================
   CONTACT
========================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form {
    padding: 35px;

    background: #f8fafc;

    border: 1px solid #e5eaf1;
    border-radius: 18px;
}

.contact-form label {
    display: block;

    margin-bottom: 6px;

    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    margin-bottom: 18px;
    padding: 13px 15px;

    border: 1px solid #d7dde7;
    border-radius: 9px;

    background: white;

    font: inherit;

    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-message {
    margin-top: 15px;
    font-weight: 600;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 40px 0;

    color: #b8c2d1;

    background: #0b1220;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer h3 {
    color: white;
    margin-bottom: 8px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .hero-content,
    .two-column,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 90px 0;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .features {
        grid-template-columns: 1fr;
    }

    .navbar {
        display: none;

        position: absolute;

        left: 4%;
        right: 4%;
        top: 76px;

        padding: 20px;

        flex-direction: column;
        gap: 15px;

        background: white;

        border: 1px solid #e5e7eb;
        border-radius: 12px;

        box-shadow:
            0 15px 40px rgba(0,0,0,.08);
    }

    .navbar.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}


@media (max-width: 600px) {

    .hero h1 {
        letter-spacing: -2px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }

    .hero-card {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
    }
}
