:root {
    --green: #78b82a;
    --green-dark: #5e941f;
    --dark: #202428;
    --grey-dark: #4a4f54;
    --grey-light: #f4f5f5;
    --white: #ffffff;
    --text: #333333;
    --border: #dddddd;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Top bar */

.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 0.9rem;
}

.top-bar .container {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

/* Header */

.main-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-image {
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
    color: var(--dark);
}

.main-nav a:hover {
    color: var(--green-dark);
}

.nav-cta {
    background: var(--green);
    color: var(--white) !important;
    padding: 12px 18px;
    border-radius: 6px;
}

.mobile-menu-toggle {
    display: none;
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(120, 184, 42, 0.16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #202428 0%,
            #2a3035 100%
        );
    color: var(--white);
}

.hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    right: -120px;
    top: -150px;
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    align-items: center;
    gap: 70px;
}

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

.eyebrow {
    margin: 0 0 14px;

    color: #b9f03b;

    text-transform: uppercase;
    letter-spacing: 0.13em;

    font-size: 0.82rem;
    font-weight: 700;
}

.hero h1 {
    margin: 0 0 24px;

    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.hero-text {
    max-width: 680px;
    margin: 0;

    color: #d5dadd;

    font-size: 1.16rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 32px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;

    margin-top: 32px;

    color: #bfc6ca;

    font-size: 0.9rem;
}

.hero-points span {
    white-space: nowrap;
}

/* Hero panel */

.hero-panel {
    padding: 40px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;

    backdrop-filter: blur(4px);
}

.hero-panel-label {
    margin: 0 0 12px;

    color: #b9f03b;

    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-panel h2 {
    margin: 0 0 18px;

    font-size: 1.8rem;
    line-height: 1.25;
}

.hero-panel p {
    margin: 0 0 22px;

    color: #ccd2d5;

    line-height: 1.7;
}

.hero-panel a {
    color: #b9f03b;

    font-weight: 700;
    text-decoration: none;
}

.hero-panel a:hover {
    color: var(--white);
}

/* Intro */

.intro-section {
    padding: 90px 0;
}

.intro-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
    font-size: 1.05rem;
}

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

.service-card {
    padding: 35px;
    background: var(--grey-light);
    border-radius: 10px;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.35rem;
}

.service-card a {
    color: var(--green-dark);
    font-weight: 700;
    text-decoration: none;
}

/* Footer */

.site-footer {
    background: var(--dark);
    color: #d7d7d7;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer a {
    text-decoration: none;
    color: #d7d7d7;
}

.site-footer a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid #3b4146;
}

.footer-bottom p {
    margin: 0;
    padding: 18px 0;
    font-size: 0.85rem;
}

/* Mobile */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: 0;
        font-size: 1.8rem;
        cursor: pointer;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    }

    .hero-panel {
    max-width: 600px;
    }

}

@media (max-width: 600px) {

    .top-bar .container {
        flex-direction: column;
        justify-content: center;
        padding: 8px 0;
        gap: 2px;
        text-align: center;
    }

    .header-inner {
        min-height: 75px;
    }

    @media (max-width: 600px) {

    .site-logo-image {
        width: 170px;
    }

    }

    .hero {
        padding: 75px 0;
    }

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

    .button {
        text-align: center;
    }

}