:root {
    --navy: #062b63;
    --blue: #087bdc;
    --light-blue: #eaf5ff;
    --orange: #f7941d;
    --dark: #071a33;
    --text: #526174;
    --white: #ffffff;
    --light: #f7faff;
    --border: #e2e9f2;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.7;
}

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

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.logo img {
    width: 245px;
    height: auto;
    display: block;
}

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

nav a {
    font-size: 14px;
    font-weight: 600;
    color: #25364d;
    transition: .25s;
}

nav a:hover {
    color: var(--blue);
}

.nav-contact {
    background: var(--navy);
    color: white !important;
    padding: 11px 20px;
    border-radius: 7px;
}

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
}


/* HERO */

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 90% 20%, #dff1ff 0, transparent 35%),
        linear-gradient(135deg, #f9fcff, #eef7ff);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 80px;
    align-items: center;
}

.eyebrow {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.08;
    margin: 20px 0;
    letter-spacing: -2px;
}

.hero h1 span {
    display: block;
    color: var(--blue);
}

.hero p {
    max-width: 650px;
    font-size: 18px;
    color: var(--text);
}

.hero-buttons {
    margin-top: 32px;
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 7px;
    font-weight: 700;
    transition: .25s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--navy);
    color: white;
}

.btn-primary:hover {
    background: var(--blue);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--navy);
    color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: white;
}

.hero-card {
    background: white;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(15, 55, 100, .12);
    border: 1px solid var(--border);
}

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

.hero-card h3 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-card p {
    font-size: 15px;
}

.hero-stat {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.hero-stat strong,
.hero-stat span {
    display: block;
}

.hero-stat strong {
    color: var(--blue);
}


/* TRUST */

.trust-bar {
    background: var(--navy);
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    padding: 25px;
    border-right: 1px solid rgba(255,255,255,.15);
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    font-size: 17px;
}

.trust-grid span {
    color: #b8cbe2;
    font-size: 13px;
}


/* SECTIONS */

.section {
    padding: 100px 0;
}

.light {
    background: var(--light);
}

.section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.section-heading h2,
.about-grid h2 {
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    margin: 15px 0;
}

.section-heading p,
.about-grid p {
    color: var(--text);
}


/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: .35fr 1fr;
    gap: 80px;
}

.section-label span {
    color: var(--blue);
    font-weight: 800;
    letter-spacing: 2px;
}

.about-grid h2 span {
    color: var(--blue);
}

.about-grid p {
    margin: 18px 0;
}

.text-link {
    color: var(--blue);
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}


/* SERVICES */

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

.service-card {
    padding: 32px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(15,55,100,.1);
}

.service-icon {
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text);
    font-size: 14px;
}


/* INDUSTRIES */

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

.industry {
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 10px;
    background: white;
    text-align: center;
    transition: .25s;
}

.industry:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
}

.industry span {
    font-size: 32px;
}

.industry h3 {
    margin-top: 10px;
    font-size: 16px;
}


/* WHY US */

.dark {
    background: var(--dark);
    color: white;
}

.light-heading h2,
.light-heading p {
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.why-grid > div {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
}

.check {
    display: inline-flex;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    margin-bottom: 15px;
}

.why-grid h3 {
    margin-bottom: 8px;
}

.why-grid p {
    color: #afc0d4;
}


/* TESTIMONIALS */

.testimonial-placeholder {
    max-width: 850px;
    margin: auto;
    text-align: center;
    padding: 55px;
    background: var(--light);
    border-radius: 15px;
    border: 1px solid var(--border);
}

.quote-mark {
    font-size: 65px;
    color: var(--blue);
    line-height: 1;
}

.testimonial-placeholder p {
    font-size: 19px;
    color: var(--text);
}

.testimonial-author {
    margin-top: 25px;
}

.testimonial-author strong,
.testimonial-author span {
    display: block;
}

.testimonial-author span {
    color: var(--text);
    font-size: 14px;
}

.testimonial-note {
    text-align: center;
    color: var(--text);
    font-size: 13px;
    margin-top: 20px;
}


/* CTA */

.cta {
    padding: 70px 0;
    background: linear-gradient(110deg, var(--blue), var(--navy));
    color: white;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta h2 {
    font-size: 40px;
    margin: 8px 0;
}

.cta p {
    color: #d7e8fa;
}

.btn-white {
    background: white;
    color: var(--navy);
    white-space: nowrap;
}


/* CONTACT */

.contact-section {
    background: #f8fbff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-grid h2 {
    font-size: 45px;
    line-height: 1.15;
    margin: 15px 0;
}

.contact-grid > div > p {
    color: var(--text);
}

.contact-details {
    margin-top: 35px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--light-blue);
    color: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item p {
    margin: 2px 0 0;
    color: var(--text);
    font-size: 14px;
}


/* FORM */

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(15,55,100,.08);
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-size: 25px;
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin: 15px 0 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d7e0eb;
    border-radius: 6px;
    font: inherit;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
}

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

.contact-form button {
    margin-top: 20px;
    cursor: pointer;
}


/* FOOTER */

footer {
    background: #041426;
    color: white;
    padding-top: 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr 1fr;
    gap: 70px;
    padding-bottom: 50px;
}

.footer-logo {
    width: 230px;
    background: white;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.footer-grid p {
    color: #9eb1c7;
    font-size: 14px;
}

.footer-grid h4 {
    margin-bottom: 15px;
}

.footer-grid a {
    display: block;
    color: #9eb1c7;
    margin: 8px 0;
    font-size: 14px;
}

.footer-grid a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 20px;
    color: #8195aa;
    font-size: 13px;
}


/* MOBILE */

@media (max-width: 900px) {

    .menu-btn {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 25px;
        border-bottom: 1px solid var(--border);
    }

    nav.active {
        display: flex;
    }

    .hero-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        gap: 50px;
    }

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

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

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

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

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


@media (max-width: 600px) {

    .logo img {
        width: 190px;
    }

    .hero {
        padding: 80px 0;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .section {
        padding: 70px 0;
    }

    .cards,
    .industry-grid,
    .why-grid,
    .trust-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-grid h2 {
        font-size: 36px;
    }
}
