:root {
    --green-dark: #567412;
    --green-main: #95c11f;
    --green-mid: #aecc53;
    --green-light: #c8dc8d;
    --gray: #3c3c3c;
    --white: #ffffff;
    --soft: #f7faee;
    --shadow: 0 18px 40px rgba(149, 193, 31, 0.16);
    --radius-lg: 28px;
    --radius-md: 20px;
    --max-width: 1180px;
}

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: var(--white);
    color: var(--gray);
    line-height: 1.7;
    text-align: justify;
    hyphens: auto;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gray); text-decoration: none; }
a:hover { color: var(--green-dark); }
p { margin: 0 0 1rem; }
.container { width: min(calc(100% - 2rem), var(--max-width)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(149,193,31,0.22);
    box-shadow: 0 8px 24px rgba(149, 193, 31, 0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 108px;
    padding: 0.85rem 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}
.brand-logo {
    width: auto;
    height: 76px;
    max-width: min(100%, 620px);
    object-fit: contain;
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.05rem;
    border-radius: 999px;
    font-weight: 600;
    color: var(--gray);
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--green-dark);
    background: rgba(174,204,83,0.2);
}
.nav-toggle {
    display: none;
    border: 1px solid rgba(149,193,31,0.35);
    background: #fff;
    color: var(--gray);
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.hero {
    padding: 1.4rem 0 3rem;
}
.hero-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    overflow: hidden;
    min-height: 580px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(149,193,31,0.18);
    background: #fff;
    isolation: isolate;
}
.hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.78) 42%, rgba(255,255,255,0.18) 78%, rgba(255,255,255,0.06) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: min(100%, 720px);
    padding: 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-image-wrap {
    position: absolute;
    inset: 0;
    background: #eef5da;
}
.hero-image {
    width: 100%;
    height: 100%;
    min-height: 580px;
    object-fit: cover;
    object-position: center center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(200,220,141,0.34);
    color: var(--green-dark);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
h1, h2, h3 {
    margin: 0 0 1rem;
    line-height: 1.18;
    text-align: left;
    color: var(--green-dark);
}
h1 { font-size: clamp(2rem, 3vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 2.6vw, 2.5rem); }
h3 { font-size: 1.24rem; }
.lead { font-size: 1.08rem; }
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    background: var(--green-main);
    color: #fff;
    box-shadow: var(--shadow);
}
.button:hover { background: #84ad1a; color: #fff; }
.button-secondary {
    background: #fff;
    color: var(--gray);
    border: 1px solid rgba(149,193,31,0.26);
    box-shadow: none;
}
.button-secondary:hover { background: rgba(174,204,83,0.12); color: var(--green-dark); }

.section { padding: 1.2rem 0 4rem; }
.section-alt { background: linear-gradient(180deg, #ffffff 0%, #f8fbef 100%); }
.section-heading { max-width: 760px; margin-bottom: 1.6rem; }
.grid-3, .grid-2, .split-grid, .footer-grid, .contact-grid {
    display: grid;
    gap: 1.5rem;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2, .contact-grid { grid-template-columns: repeat(2, 1fr); }
.split-grid { grid-template-columns: 0.92fr 1.08fr; align-items: center; }
.card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.6rem;
    border: 1px solid rgba(149,193,31,0.14);
    border-top: 4px solid var(--green-main);
    box-shadow: var(--shadow);
}
.card-image {
    padding: 1rem;
}
.card-image img, .card-image svg {
    width: 100%;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.75rem;
}
.check-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: -0.02rem;
    color: var(--green-main);
    font-size: 1.5rem;
    line-height: 1;
}
.notice {
    border-left: 5px solid var(--green-main);
    padding-left: 1rem;
}
.promo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-top: 0.5rem;
}
.promo-link:hover { color: var(--gray); }

.site-footer {
    background: var(--green-light);
    padding-top: 2.5rem;
    margin-top: 1rem;
    border-top: 5px solid var(--green-main);
}
.footer-grid {
    grid-template-columns: 1.15fr 1fr 0.9fr;
    gap: 2rem;
}
.site-footer h3 {
    color: var(--green-dark);
}
.site-footer p,
.site-footer a {
    color: var(--gray);
}
.footer-bottom {
    margin-top: 1.4rem;
    padding: 1.2rem 0 2rem;
    border-top: 1px solid rgba(86,116,18,0.15);
}
.footer-bottom p:last-child { margin-bottom: 0; }

.legal-content { max-width: 860px; }

@media (max-width: 1080px) {
    .split-grid,
    .grid-3,
    .grid-2,
    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-card,
    .hero-image {
        min-height: 500px;
    }
    .hero-card::after {
        background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 36%, rgba(255,255,255,0.26) 100%);
    }
}

@media (max-width: 900px) {
    .brand-logo { height: 62px; }
    .nav-toggle { display: inline-flex; }
    .main-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.4rem);
        background: #fff;
        border: 1px solid rgba(149,193,31,0.16);
        border-radius: 20px;
        box-shadow: var(--shadow);
        padding: 1rem;
        display: none;
    }
    .main-nav.open { display: block; }
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
    }
    .main-nav a { justify-content: flex-start; }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 1.1rem), var(--max-width)); }
    .header-inner { min-height: 82px; gap: 0.8rem; }
    .brand-logo { height: 48px; max-width: 100%; }
    .hero-card,
    .hero-image { min-height: 420px; }
    .hero-content { width: 100%; padding: 1.5rem; }
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.55rem; }
    .section { padding: 0.8rem 0 3rem; }
}
