@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --green: #95c11f;
    --green-mid: #aecc53;
    --green-light: #c8dc8d;
    --gray: #3c3c3c;
    --gray-soft: #6f6f6f;
    --bg: #f8fbf0;
    --white: #ffffff;
    --shadow: 0 12px 34px rgba(60, 60, 60, 0.08);
    --radius: 22px;
    --header-height: 94px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--gray);
    background: linear-gradient(180deg, #fbfdf7 0%, #f7fbef 100%);
    text-align: justify;
    hyphens: auto;
    line-height: 1.7;
}

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

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

a:hover,
a:focus {
    color: #577800;
}

h1, h2, h3, h4 {
    margin-top: 0;
    line-height: 1.2;
    text-align: left;
}

p {
    margin-top: 0;
}

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

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

.section {
    padding: 5rem 0;
}

.section-kicker,
.eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    text-align: left;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(149, 193, 31, 0.18);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.logo-image {
    max-height: 62px;
    width: auto;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    font-weight: 600;
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(149, 193, 31, 0.3);
    border-radius: 14px;
    background: var(--white);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--gray);
}

.hero {
    padding: 5rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 2.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(200,220,141,0.34) 100%);
    border: 1px solid rgba(149, 193, 31, 0.2);
    border-radius: 34px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.3rem);
    margin-bottom: 1.25rem;
}

.hero-text {
    font-size: 1.08rem;
    max-width: 740px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
    position: relative;
}

.hero-visual::before,
.hero-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(149, 193, 31, 0.12);
}

.hero-visual::before {
    width: 260px;
    height: 260px;
}

.hero-visual::after {
    width: 160px;
    height: 160px;
    bottom: 15px;
    right: 40px;
    background: rgba(174, 204, 83, 0.22);
}

.hero-logo {
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(60, 60, 60, 0.12);
}

.button-primary {
    background: var(--green);
    color: var(--white);
}

.button-secondary {
    background: var(--white);
    border: 1px solid rgba(149, 193, 31, 0.35);
}

.note-box,
.accent-box,
.cta-box,
.info-card,
.plan-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(149, 193, 31, 0.14);
}

.note-box {
    margin-top: 1.5rem;
    padding: 1.25rem 1.4rem;
    border-left: 6px solid var(--green);
}

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

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

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

.info-card,
.plan-card {
    padding: 1.5rem;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.text-link {
    font-weight: 700;
    color: #577800;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 1.75rem;
    align-items: start;
}

.accent-box,
.cta-box {
    padding: 2rem;
}

.site-footer {
    margin-top: 4rem;
    background: #eff6d8;
    border-top: 1px solid rgba(149, 193, 31, 0.2);
}

.footer-top {
    padding: 3rem 0 2rem;
}

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

.footer-brand {
    color: var(--gray);
}

.footer-brand span {
    color: var(--green);
}

.footer-grid h2,
.footer-bottom p {
    text-align: left;
}

.footer-grid h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(149, 193, 31, 0.16);
}

.footer-bottom p {
    margin-bottom: 0.45rem;
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 1.35rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1080px) {
    .card-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-block;
    }

    .nav-list {
        position: absolute;
        top: calc(var(--header-height) - 4px);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        background: var(--white);
        border-radius: 20px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(149, 193, 31, 0.15);
    }

    .main-nav.open .nav-list {
        display: flex;
    }

    .hero {
        padding-top: 2rem;
    }

    .hero-grid {
        padding: 2rem;
    }
}

@media (max-width: 700px) {
    .section {
        padding: 3.5rem 0;
    }

    .card-grid-2,
    .card-grid-4 {
        grid-template-columns: 1fr;
    }

    .section-head,
    .hero-actions,
    .cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .logo-image {
        max-height: 50px;
    }
}


.button,
.text-link {
    transition: all 0.2s ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
}

.button-primary {
    background: var(--green);
    color: var(--white);
}

.button-primary:hover,
.button-primary:focus {
    background: #7eab10;
    color: var(--white);
}

.button-secondary {
    background: transparent;
    border-color: rgba(60, 60, 60, 0.16);
}

.text-link {
    font-weight: 700;
    color: var(--green);
}

.hero-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.section-tight {
    padding: 3.5rem 0 1rem;
}

.section-soft {
    background: linear-gradient(180deg, rgba(200,220,141,0.16) 0%, rgba(255,255,255,0.85) 100%);
}

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

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

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

.info-card,
.plan-card,
.card-surface,
.cta-panel,
.note-box,
.notice-box {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(149, 193, 31, 0.14);
}

.info-card,
.note-box,
.notice-box,
.card-surface,
.cta-panel {
    padding: 1.5rem;
}

.plan-card {
    overflow: hidden;
}

.plan-card-visual {
    display: flex;
    flex-direction: column;
}

.plan-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.plan-copy {
    padding: 1.5rem;
}

.feature-list {
    margin: 0 0 1.25rem 0;
    padding-left: 1.2rem;
}

.feature-list li,
.legal-copy li {
    margin-bottom: 0.4rem;
}

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

.form-layout,
.split-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.5rem;
}

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

.form-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(60, 60, 60, 0.18);
    border-radius: 16px;
    font: inherit;
    color: var(--gray);
    background: #fff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 2px solid rgba(149, 193, 31, 0.25);
    border-color: rgba(149, 193, 31, 0.55);
}

.field-error {
    color: #a33232;
    font-size: 0.95rem;
    margin: 0.45rem 0 0;
}

.success-box,
.error-box {
    padding: 1rem 1.2rem;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.success-box {
    background: #eff8da;
    border: 1px solid rgba(149, 193, 31, 0.32);
}

.error-box {
    background: #fff1f1;
    border: 1px solid rgba(163, 50, 50, 0.25);
}

.legal-copy h2 {
    margin-top: 2rem;
}

.site-footer {
    background: #eef5df;
    margin-top: 3rem;
    border-top: 1px solid rgba(149, 193, 31, 0.2);
}

.footer-top {
    padding: 2.5rem 0 1.5rem;
}

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

.footer-brand {
    color: var(--green);
}

.footer-bottom {
    padding: 1.2rem 0 2rem;
    border-top: 1px solid rgba(60,60,60,0.08);
    font-size: 0.96rem;
}

.to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
}

.to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 991.98px) {
    .hero-grid,
    .split-grid,
    .form-layout,
    .card-grid-4,
    .card-grid-2,
    .footer-grid,
    .mini-plan-grid,
    .request-form .form-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        right: 1rem;
        left: 1rem;
        padding: 1rem;
        background: var(--white);
        border-radius: 18px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(149, 193, 31, 0.18);
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-toggle {
        display: inline-block;
    }
}


.home-plan-gallery {
    padding-top: 1rem;
}

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

.gallery-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(149, 193, 31, 0.14);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gallery-card-image {
    aspect-ratio: 3 / 2;
    background: #eef5da;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.gallery-card-content h3,
.pdf-overview-box h3 {
    margin-bottom: 0;
}

.gallery-card-content p {
    margin-bottom: 0;
}

.gallery-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: auto;
}

.pdf-overview-box {
    margin-top: 1.5rem;
    padding: 1.75rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(149, 193, 31, 0.14);
}

.pdf-overview-list {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    columns: 2;
    column-gap: 2rem;
}

.pdf-overview-list li {
    margin-bottom: 0.6rem;
    break-inside: avoid;
}

@media (max-width: 1080px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .pdf-overview-list {
        columns: 1;
    }

    .gallery-card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-card-actions .button {
        width: 100%;
    }
}
