:root {
    --color-primary: #2E8B57;
    --color-secondary: #3CB371;
    --color-accent: #8FD3A0;
    --color-dark: #333333;
    --color-light: #FFFFFF;
    --color-muted: #F5F5F5;
    --color-border: rgba(46, 139, 87, 0.25);
    --font-body: 'Roboto', Arial, sans-serif;
    --space-xxs: 0.5rem;
    --space-xs: 0.75rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 36px;
    --shadow-soft: 0 12px 32px rgba(46, 139, 87, 0.18);
    --shadow-medium: 0 24px 60px rgba(27, 74, 50, 0.22);
    --transition-base: all 0.3s ease;
    --container-width: 1180px;
    --heading-xxl: clamp(2.5rem, 2.1rem + 2vw, 3.8rem);
    --heading-xl: clamp(2rem, 1.8rem + 1.2vw, 3rem);
    --heading-lg: clamp(1.6rem, 1.4rem + 0.9vw, 2.3rem);
    --heading-md: clamp(1.3rem, 1.2rem + 0.5vw, 1.7rem);
    --heading-sm: clamp(1.05rem, 1rem + 0.25vw, 1.25rem);
    --text-base: clamp(1rem, 0.98rem + 0.2vw, 1.1rem);
    --text-small: clamp(0.9rem, 0.88rem + 0.2vw, 1rem);
    --max-width-readable: 760px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    background: linear-gradient(180deg, rgba(245, 245, 245, 0.95) 0%, #ffffff 60%);
    color: var(--color-dark);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

main {
    flex: 1;
    width: 100%;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
    color: var(--color-secondary);
}

p {
    margin-bottom: var(--space-sm);
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: var(--heading-xxl);
}

h2 {
    font-size: var(--heading-xl);
}

h3 {
    font-size: var(--heading-lg);
}

h4 {
    font-size: var(--heading-md);
}

h5 {
    font-size: var(--heading-sm);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

ul,
ol {
    margin-left: var(--space-sm);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-sm);
    list-style-position: outside;
}

li + li {
    margin-top: 0.5rem;
}

blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: var(--space-sm);
    font-style: italic;
    color: rgba(51, 51, 51, 0.85);
    margin-bottom: var(--space-md);
}

figure {
    margin: 0;
}

.responsive-img {
    border-radius: var(--radius-md);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    max-width: var(--max-width-readable);
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow,
.hero-eyebrow {
    display: inline-block;
    font-size: var(--text-small);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-secondary);
    background: rgba(60, 179, 113, 0.1);
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    margin-bottom: var(--space-sm);
}

.section-intro {
    color: rgba(51, 51, 51, 0.85);
}

.page-hero {
    position: relative;
    padding: var(--space-xl) 0 var(--space-xxl);
    overflow: hidden;
}

.page-hero.homepage-hero {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.95), rgba(60, 179, 113, 0.9));
    color: var(--color-light);
}

.page-hero.homepage-hero h1,
.page-hero.homepage-hero p {
    color: var(--color-light);
}

.page-hero.homepage-hero .hero-eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-light);
}

.page-hero.inner-hero {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.12), rgba(245, 245, 245, 0.9));
}

.hero-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

.hero-content p {
    max-width: var(--max-width-readable);
    color: rgba(255, 255, 255, 0.88);
}

.page-hero.inner-hero .hero-content p {
    color: rgba(51, 51, 51, 0.75);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.hero-media {
    position: relative;
}

.image-frame {
    position: relative;
    padding: var(--space-xs);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-medium);
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(46, 139, 87, 0.25));
    z-index: -1;
}

.hero-media img {
    border-radius: calc(var(--radius-lg) - 10px);
    box-shadow: var(--shadow-soft);
    animation: floatSoft 9s ease-in-out infinite;
}

@keyframes floatSoft {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -10px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.stat-strip {
    display: grid;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.stat-card {
    background: rgba(255, 255, 255, 0.16);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.page-hero.inner-hero .stat-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--color-border);
}

.stat-card strong {
    display: block;
    font-size: var(--heading-lg);
    font-weight: 700;
    color: var(--color-light);
}

.page-hero.inner-hero .stat-card strong {
    color: var(--color-primary);
}

.stat-card span {
    font-size: var(--text-small);
    color: rgba(255, 255, 255, 0.8);
}

.page-hero.inner-hero .stat-card span {
    color: rgba(51, 51, 51, 0.7);
}

.page-section {
    padding: var(--space-xxl) 0;
}

.page-section.alt {
    background: var(--color-muted);
}

.grid {
    display: grid;
    gap: var(--space-md);
}

.grid.featured-grid {
    gap: var(--space-lg);
}

.grid.featured-grid .card {
    min-height: 100%;
}

.grid.insight-grid {
    gap: var(--space-md);
}

.card {
    position: relative;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(46, 139, 87, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    margin-bottom: var(--space-xs);
}

.card p {
    color: rgba(51, 51, 51, 0.78);
}

.card .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    margin-top: var(--space-sm);
}

.card .link-arrow span {
    transition: transform 0.25s ease;
}

.card .link-arrow:hover span {
    transform: translateX(4px);
}

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

.list-check li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: rgba(51, 51, 51, 0.85);
}

.list-check li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--color-secondary);
}

.stat-grid {
    display: grid;
    gap: var(--space-md);
}

.stat {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.12), rgba(255, 255, 255, 0.95));
    border: 1px solid var(--color-border);
}

.stat strong {
    display: block;
    font-size: var(--heading-lg);
    color: var(--color-primary);
}

.stat span {
    display: block;
    margin-top: 0.5rem;
    color: rgba(51, 51, 51, 0.72);
    font-size: var(--text-small);
}

.cta-banner {
    position: relative;
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.95), rgba(60, 179, 113, 0.9));
    color: var(--color-light);
    overflow: hidden;
}

.cta-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.25), transparent 55%);
    opacity: 0.7;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
    display: grid;
    gap: var(--space-md);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    max-width: var(--max-width-readable);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 600;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    font-size: 1rem;
    line-height: 1;
}

.btn:focus-visible {
    outline: 3px solid rgba(46, 139, 87, 0.35);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-light);
    box-shadow: 0 14px 35px rgba(46, 139, 87, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(46, 139, 87, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-light);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.page-hero.inner-hero .btn-outline {
    color: var(--color-primary);
    border-color: rgba(46, 139, 87, 0.4);
}

.btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-light);
}

.page-hero.inner-hero .btn-outline:hover {
    background: rgba(46, 139, 87, 0.08);
    color: var(--color-primary);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-light);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.28);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

button {
    font-family: inherit;
}

form {
    display: grid;
    gap: var(--space-md);
}

.form-grid {
    display: grid;
    gap: var(--space-md);
}

.form-grid.two-column {
    gap: var(--space-md);
}

.form-field {
    display: grid;
    gap: 0.5rem;
}

label {
    font-weight: 600;
    color: rgba(51, 51, 51, 0.82);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(51, 51, 51, 0.12);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 1px 2px rgba(46, 139, 87, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-size: 1rem;
    color: var(--color-dark);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(46, 139, 87, 0.6);
    box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.15);
    outline: none;
}

.form-actions {
    display: flex;
    justify-content: flex-start;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
}

thead {
    background: rgba(46, 139, 87, 0.1);
}

th,
td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(46, 139, 87, 0.12);
    font-size: var(--text-small);
    color: rgba(51, 51, 51, 0.85);
}

th {
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

tbody tr:nth-child(every) {
    background: transparent;
}

tbody tr:nth-child(even) {
    background: rgba(245, 245, 245, 0.7);
}

details {
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(46, 139, 87, 0.18);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

details + details {
    margin-top: var(--space-sm);
}

details:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "＋";
    float: right;
    font-weight: 700;
    color: var(--color-secondary);
    transition: transform 0.2s ease;
}

details[open] summary::after {
    content: "−";
}

details p {
    margin-top: var(--space-xs);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 18px rgba(46, 139, 87, 0.12);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
}

.brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-primary);
    letter-spacing: 0.04em;
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(46, 139, 87, 0.25);
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition-base);
}

.nav-toggle:hover {
    box-shadow: var(--shadow-soft);
}

.nav-toggle-icon {
    display: inline-block;
    width: 22px;
    height: 16px;
    position: relative;
}

.nav-toggle-icon span {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background: var(--color-primary);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.nav-toggle-icon span:nth-child(1) {
    top: 0;
}

.nav-toggle-icon span:nth-child(2) {
    top: 7px;
}

.nav-toggle-icon span:nth-child(3) {
    top: 14px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

.primary-navigation {
    position: fixed;
    top: 76px;
    right: var(--space-sm);
    left: var(--space-sm);
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-medium);
    transform-origin: top right;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.primary-navigation.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

.nav-list {
    list-style: none;
    display: grid;
    gap: var(--space-sm);
}

.nav-link {
    display: block;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--color-dark);
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    background: rgba(46, 139, 87, 0.1);
    color: var(--color-primary);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.15), rgba(60, 179, 113, 0.2));
    color: var(--color-primary);
}

.nav-link.nav-contact {
    border: 1px solid rgba(46, 139, 87, 0.35);
    text-align: center;
}

.split-layout {
    display: grid;
    gap: var(--space-lg);
}

.split-layout.two-column {
    align-items: center;
}

.timeline {
    position: relative;
    display: grid;
    gap: var(--space-md);
    padding-left: 1.5rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(180deg, rgba(46, 139, 87, 0.3), rgba(60, 179, 113, 0.6));
}

.timeline-item {
    position: relative;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -1.45rem;
    top: 0.35rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-secondary);
    box-shadow: 0 0 0 6px rgba(60, 179, 113, 0.18);
}

.resource-card {
    display: grid;
    gap: var(--space-xs);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(46, 139, 87, 0.12);
    color: var(--color-primary);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: var(--text-small);
}

.contact-grid {
    display: grid;
    gap: var(--space-lg);
}

.contact-card {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    border: 1px solid rgba(46, 139, 87, 0.18);
    box-shadow: var(--shadow-soft);
}

.contact-card p {
    color: rgba(51, 51, 51, 0.78);
}

.site-footer {
    background: #10251B;
    color: rgba(255, 255, 255, 0.85);
    padding: var(--space-xl) 0 var(--space-lg);
    margin-top: var(--space-xl);
}

.footer-container {
    display: grid;
    gap: var(--space-lg);
}

.footer-logo {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-light);
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-light);
}

.footer-contacts a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: var(--space-sm);
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    font-size: var(--text-small);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom-links a:hover {
    color: var(--color-light);
}

.cookie-banner {
    position: fixed;
    bottom: var(--space-sm);
    left: 50%;
    transform: translateX(-50%);
    width: min(960px, calc(100% - 2 * var(--space-sm)));
    background: rgba(16, 37, 27, 0.92);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(12px);
    z-index: 998;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 30px);
}

.cookie-banner p {
    margin-bottom: var(--space-sm);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.cookie-banner button {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition-base);
}

.cookie-banner button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.cookie-banner a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.faq-grid {
    display: grid;
    gap: var(--space-sm);
    max-width: var(--max-width-readable);
    margin: 0 auto;
}

@media (min-width: 600px) {
    .stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }

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

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

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

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

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

    .footer-container {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

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

@media (min-width: 1024px) {
    .page-hero {
        padding: var(--space-xxl) 0 var(--space-xxl);
    }

    .nav-toggle {
        display: none;
    }

    .primary-navigation {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
    }

    .nav-list {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }

    .nav-link {
        padding: 0.6rem 0.9rem;
    }

    .nav-link.nav-contact {
        border: 1px solid rgba(46, 139, 87, 0.25);
    }

    .split-layout.two-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-banner .container {
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
    }

    .page-hero {
        padding-top: calc(var(--space-xxl) + 2rem);
    }
}