:root {
    --bg: #ffffff;
    --surface: #f4f6f5;
    --text: #1f2a25;
    --muted: #5d6963;
    --accent: #2f6f59;
    --accent-dark: #245847;
    --line: #d9e1dd;
    --radius: 14px;
    --shadow: 0 10px 24px rgba(18, 34, 27, 0.07);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'PlayNixs Sans', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--accent-dark);
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

.content-photo {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.container {
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.section {
    padding: 4.4rem 0;
}

.section-soft {
    background: var(--surface);
}

.narrow {
    width: min(760px, 100%);
}

.eyebrow {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
}

h1,
h2,
h3,
h4 {
    line-height: 1.25;
    margin-top: 0;
    color: #15201a;
}

h1 {
    font-size: clamp(2rem, 2.8vw, 3.1rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    margin-bottom: 0.75rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.07rem;
    color: var(--muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
}

.header-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

.brand {
    font-size: 1.45rem;
    font-weight: 600;
    color: #132019;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.main-nav a {
    color: #2a352f;
    font-weight: 600;
    padding: 0.35rem 0.15rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.72rem 1.25rem;
    border: 1px solid transparent;
    font-weight: 600;
    transition: 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: #fff;
}

.btn-outline {
    border-color: var(--line);
    background: #fff;
    color: #24362d;
}

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

.hero-grid,
.trust-grid,
.contact-grid,
.two-col-text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-image img {
    box-shadow: var(--shadow);
}

.section-heading {
    margin-bottom: 1.7rem;
}

.card-grid {
    display: grid;
    gap: 1rem;
}

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

.card,
.step-card,
.service-item,
.contact-details .card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.1rem 0 0;
}

.check-list li {
    margin-bottom: 0.65rem;
    padding-left: 1.45rem;
    position: relative;
}

.check-list li::before {
    content: "";
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 0.52rem;
}

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

.step-card span {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #e4efe9;
    color: var(--accent-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.cta-banner {
    background: #eaf3ef;
    border: 1px solid #ccddd5;
    border-radius: calc(var(--radius) + 4px);
    padding: 1.7rem;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: space-between;
}

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

.contact-form {
    display: grid;
    gap: 0.65rem;
}

.contact-form label {
    font-weight: 600;
    margin-top: 0.35rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cfd8d4;
    border-radius: 10px;
    padding: 0.68rem 0.75rem;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #dcece5;
    border-color: var(--accent);
}

.form-notice {
    margin: 0.5rem 0 0;
    color: var(--accent-dark);
    font-weight: 600;
    min-height: 1.2rem;
}

.legal-text h2 {
    margin-top: 2rem;
    font-size: 1.25rem;
}

.site-footer {
    background: #15211b;
    color: #dce9e2;
    padding-top: 2.5rem;
    margin-top: 3rem;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.footer-grid a {
    display: block;
    color: #dce9e2;
    margin-bottom: 0.6rem;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #31433a;
    margin-top: 1.6rem;
    padding: 1rem 0 1.6rem;
    font-size: 0.95rem;
}

@media (max-width: 980px) {
    .cards-3,
    .step-grid,
    .service-list,
    .hero-grid,
    .trust-grid,
    .contact-grid,
    .two-col-text,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-wrap {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.8rem 0;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        border-top: 1px solid var(--line);
        padding-top: 0.65rem;
    }

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

@media (max-width: 620px) {
    .container {
        width: min(1120px, calc(100% - 1.35rem));
    }

    .section {
        padding: 3.1rem 0;
    }

    .btn,
    .header-cta {
        width: 100%;
    }

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