:root {

    --primary: #238D87;
    --accent: #F07A24;

    --text: #111111;
    --text-light: #666666;

    --background: #ffffff;
    --background-alt: #f8f9fa;

    --border: #e5e5e5;

    --container: 1200px;

    --radius: 24px;

    --shadow:
        0 10px 30px rgba(0,0,0,.08);

}

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

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--background);

    line-height: 1.7;

    -webkit-font-smoothing: antialiased;

}

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

a {
    text-decoration: none;
}

.container {

    width: 90%;
    max-width: var(--container);

    margin: 0 auto;

}

.narrow {

    max-width: 850px;

}

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

.header {

    position: sticky;
    top: 0;

    background: rgba(255,255,255,.92);

    backdrop-filter: blur(12px);

    z-index: 999;

    border-bottom: 1px solid rgba(0,0,0,.05);

}

.nav-container {

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 84px;

}

.logo {

    height: 52px;
    width: auto;

}

.desktop-nav {

    display: flex;
    align-items: center;
    gap: 2rem;

}

.desktop-nav a {

    color: var(--text);

    font-weight: 500;

    transition: .25s;

}

.desktop-nav a:hover {

    color: var(--primary);

}

.mobile-menu-btn {

    display: none;

    border: none;
    background: transparent;

    font-size: 2rem;

    cursor: pointer;

}

/* =====================================
   LANGUAGE
===================================== */

.language-switch {

    display: flex;
    gap: .5rem;

}

.lang-btn {

    border: 1px solid var(--border);

    background: white;

    padding: .5rem .9rem;

    border-radius: 999px;

    cursor: pointer;

}

.lang-btn.active {

    background: var(--primary);

    color: white;

    border-color: var(--primary);

}

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

.hero {

    padding-top: 8rem;
    padding-bottom: 7rem;

}

.hero-grid {

    display: grid;

    grid-template-columns:
        1.15fr
        .85fr;

    gap: 5rem;

    align-items: center;

}

.eyebrow {

    color: var(--primary);

    font-weight: 600;

    margin-bottom: 1rem;

    display: block;

}

.hero h1 {

    font-size: clamp(3rem, 7vw, 5.5rem);

    line-height: .95;

    letter-spacing: -3px;

    margin-bottom: 1rem;

}

.hero h2 {

    font-size: 1.8rem;

    font-weight: 500;

    color: var(--text-light);

    margin-bottom: 1.5rem;

}

.expertise {

    color: var(--primary);

    font-weight: 600;

    margin-bottom: 2rem;

}

.intro {

    font-size: 1.1rem;

    color: var(--text-light);

    max-width: 700px;

    margin-bottom: 2.5rem;

}

.hero-image {

    position: relative;

}

.hero-image img {

    width: 100%;

    border-radius: 28px;

    box-shadow: var(--shadow);

}

/* =====================================
   BUTTONS
===================================== */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 1rem;

}

.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding:
        .9rem
        1.5rem;

    border-radius: 999px;

    font-weight: 600;

    transition: .25s ease;

}

.btn:hover {

    transform:
        translateY(-2px);

}

.btn-primary {

    background: var(--primary);

    color: white;

}

.btn-primary:hover {

    background: #1f7b76;

}

.btn-secondary {

    color: var(--text);

    border: 1px solid var(--border);

}

.btn-secondary:hover {

    border-color: var(--primary);

}

/* =====================================
   TRUST BAR
===================================== */

.trust-bar {

    background: var(--background-alt);

    padding:
        2rem
        0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

}

.trust-bar p {

    text-align: center;

    font-weight: 500;

    color: var(--text-light);

}

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

.section {

    padding:
        7rem
        0;

}

.section h2 {

    font-size: 2.4rem;

    margin-bottom: 2rem;

    letter-spacing: -1px;

}

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

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,
        minmax(260px,1fr));

    gap: 2rem;

}

.service-card {

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 2rem;

    transition: .25s;

}

.service-card:hover {

    transform:
        translateY(-5px);

    box-shadow: var(--shadow);

}

.service-card h3 {

    margin-bottom: 1rem;

    font-size: 1.2rem;

}

.service-card p {

    color: var(--text-light);

}

/* =====================================
   LOGO STRIP
===================================== */

.logo-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,
        minmax(140px,1fr));

    gap: 2rem;

    align-items: center;

}

.logo-grid img {

    max-height: 60px;

    width: auto;

    margin: auto;

    filter: grayscale(100%);

    opacity: .75;

    transition: .3s;

}

.logo-grid img:hover {

    filter: grayscale(0);

    opacity: 1;

}

/* =====================================
   CONTACT
===================================== */

.contact-grid {

    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    gap: 4rem;

}

.contact-details {

    margin-top: 2rem;

}

.contact-details p {

    margin-bottom: 1.2rem;

}

.contact-details a {

    color: var(--primary);

}

.hubspot-form {

    background: white;

    border-radius: var(--radius);

}

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

footer {

    border-top: 1px solid var(--border);

    padding:
        2rem
        0;

}

.footer-content {

    text-align: center;

    color: var(--text-light);

}

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

@media (max-width: 900px) {

    .desktop-nav {

        display: none;

    }

    .mobile-menu-btn {

        display: block;

    }

    .hero-grid {

        grid-template-columns: 1fr;

    }

    .hero-image {

        order: -1;

    }

    .contact-grid {

        grid-template-columns: 1fr;

    }

    .hero {

        padding-top: 5rem;

    }

    .section {

        padding:
            5rem
            0;

    }

}

@media (max-width: 600px) {

    .hero h1 {

        font-size: 3rem;

        letter-spacing: -2px;

    }

    .hero h2 {

        font-size: 1.3rem;

    }

    .section h2 {

        font-size: 2rem;

    }

    .btn {

        width: 100%;

    }

}
/* =====================================
   ANIMATIONS
===================================== */

.fade-element {

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.fade-element.visible {

    opacity: 1;

    transform:
        translateY(0);

}