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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
    background: #f5f7fa;
    line-height: 1.6;
}

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

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

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Brand colours (approx from your logo) */
:root {
    --green-main: #16a34a;
    --green-dark: #166534;
    --border-green: #16a34a;
    --bg-light: #f5f7fa;
    --bg-alt: #e5e7eb;
    --bg-strong: #0b1120;
}

/* Header */

.site-header {
    background: #ffffff;
    border-bottom: 3px solid var(--border-green);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-img {
    height: 44px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.brand-tagline {
    font-size: 0.8rem;
    color: #4b5563;
}

.main-nav {
    display: flex;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.main-nav a {
    position: relative;
    padding-bottom: 0.1rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--green-main);
    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    background: var(--green-main);
    color: #ffffff;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Hero */

.hero {
    background: linear-gradient(135deg, #0b1120, #020617);
    color: #f9fafb;
    padding: 3.2rem 0 3rem;
    border-bottom: 4px solid var(--border-green);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.2rem;
    align-items: stretch;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    color: #a7f3d0;
    margin-bottom: 0.6rem;
}

.hero h1 {
    font-size: 2.3rem;
    line-height: 1.1;
    margin-bottom: 0.9rem;
}

.hero p {
    font-size: 0.98rem;
    max-width: 32rem;
    margin-bottom: 1.3rem;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--green-main);
    color: #ffffff;
}

.btn-secondary {
    border: 1px solid #4b5563;
    color: #e5e7eb;
}

.btn-outline {
    border: 1px solid var(--green-main);
    color: #bbf7d0;
    background: transparent;
}

.hero-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    font-size: 0.8rem;
    opacity: 0.9;
}

.hero-side {
    display: flex;
    align-items: center;
}

.hero-panel {
    background: #020617;
    border-radius: 0.9rem;
    padding: 1.4rem;
    border: 1px solid #1f2937;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
}

.hero-panel h2 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.contact-list {
    list-style: none;
    margin: 0.8rem 0 1rem;
    font-size: 0.9rem;
}

.contact-list li + li {
    margin-top: 0.35rem;
}

/* Sections */

.section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.section-alt {
    background: var(--bg-alt);
}

.section-strong {
    background: var(--green-dark);
    color: #ecfdf5;
}

.section h2 {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto 2rem;
    color: #4b5563;
}

/* Grids */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

/* Cards */

.card,
.icon-card,
.review-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.section-strong .contact-form {
    background: #020617;
    border: 1px solid #16a34a;
}

.card h3,
.icon-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.card p,
.icon-card p {
    font-size: 0.93rem;
    margin-bottom: 0.7rem;
    color: #4b5563;
}

.card ul {
    list-style: disc;
    padding-left: 1.1rem;
    font-size: 0.88rem;
    color: #4b5563;
}

/* QR section */

.qr-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.qr-box {
    background: #ffffff;
    border-radius: 0.9rem;
    padding: 1.2rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Reviews */

.review-card p {
    font-size: 0.93rem;
    margin-bottom: 0.7rem;
}

.review-name {
    font-size: 0.82rem;
    color: #6b7280;
}

.reviews-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.reviews-cta a {
    color: var(--green-dark);
    font-weight: 600;
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.section-strong .section-intro {
    color: #d1fae5;
}

.section-strong .contact-list a {
    color: #bbf7d0;
}

.contact-form {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 0.75rem;
}

.contact-form label {
    display: grid;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.55rem 0.6rem;
    border-radius: 0.4rem;
    border: 1px solid #cbd5e1;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 0.5rem;
}

/* Footer */

.site-footer {
    background: #020617;
    color: #9ca3af;
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.footer-small {
    opacity: 0.8;
}

/* Responsive */

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .hero-inner,
    .grid-3,
    .contact-grid,
    .qr-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 2.4rem;
    }

    .header-inner {
        align-items: flex-start;
    }
}