﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');
:root {
    --color-near-black: #0e0f0c;
    --color-wise-green: #9fe870;
    --color-dark-green: #163300;
    --color-light-mint: #e2f6d5;
    --color-pastel-green: #cdffad;
    --color-warm-dark: #454745;
    --color-gray: #868685;
    --color-light-surface: #e8ebe6;
    --color-white: #ffffff;
    --color-off-white: #fafaf8;
    --color-positive: #054d28;
    --color-danger: #d03238;
    --color-warning: #ffd11a;
    --color-ring: rgba(14, 15, 12, 0.12);
    --color-nav-hover: rgba(211, 242, 192, 0.4);
    --font-display: 'Inter', Helvetica, Arial, sans-serif;
    --font-body: 'Inter', Helvetica, Arial, sans-serif;
    --radius-pill: 9999px;
    --radius-large: 40px;
    --radius-medium: 30px;
    --radius-card: 16px;
    --radius-small: 10px;
    --shadow-ring: rgba(14, 15, 12, 0.12) 0px 0px 0px 1px;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-feature-settings: "calt" 1;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.44;
    letter-spacing: 0.18px;
    color: var(--color-near-black);
    background-color: var(--color-off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    color: var(--color-near-black);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: var(--color-dark-green);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-off-white);
    border-bottom: 1px solid var(--color-ring);
    backdrop-filter: blur(8px);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 24px;
}
.nav-logo {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.396px;
    color: var(--color-near-black);
    white-space: nowrap;
}
.nav-logo span {
    color: var(--color-dark-green);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    font-size: 16px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    color: var(--color-near-black);
    transition: background-color 0.15s ease;
    white-space: nowrap;
}
.nav-links a:hover {
    background-color: var(--color-nav-hover);
    color: var(--color-near-black);
}
.nav-links a.active {
    background-color: var(--color-light-mint);
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-near-black);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    letter-spacing: -0.108px;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease;
    white-space: nowrap;
    font-feature-settings: "calt" 1;
}
.btn:active {
    transform: scale(0.95);
}
.btn-primary {
    background-color: var(--color-wise-green);
    color: var(--color-dark-green);
}
.btn-primary:hover {
    transform: scale(1.05);
    color: var(--color-dark-green);
}
.btn-secondary {
    background-color: rgba(22, 51, 0, 0.08);
    color: var(--color-near-black);
    padding: 8px 16px 8px 20px;
}
.btn-secondary:hover {
    transform: scale(1.05);
    color: var(--color-near-black);
}
.btn-sm {
    font-size: 15px;
    padding: 6px 14px;
}
.hero {
    padding: 80px 0 64px;
    background-color: var(--color-off-white);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-dark-green);
    background-color: var(--color-light-mint);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -1px;
    color: var(--color-near-black);
    margin-bottom: 24px;
}
.hero-desc {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    letter-spacing: -0.108px;
    color: var(--color-warm-dark);
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-image {
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-ring);
    aspect-ratio: 4/3;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section {
    padding: 72px 0;
}
.section-alt {
    background-color: var(--color-light-surface);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 900;
    line-height: 0.85;
    color: var(--color-near-black);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.44;
    color: var(--color-warm-dark);
    max-width: 560px;
    margin-bottom: 48px;
}
.section-header {
    margin-bottom: 48px;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cards-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.card {
    background-color: var(--color-white);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-ring);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(14, 15, 12, 0.1);
}
.card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.card-body {
    padding: 24px;
}
.card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-dark-green);
    background-color: var(--color-light-mint);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}
.card-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.396px;
    color: var(--color-near-black);
    margin-bottom: 10px;
}
.card-title a {
    color: var(--color-near-black);
    transition: color 0.15s ease;
}
.card-title a:hover {
    color: var(--color-dark-green);
}
.card-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-warm-dark);
    margin-bottom: 20px;
}
.card-meta {
    font-size: 13px;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-meta .dot {
    width: 3px;
    height: 3px;
    background-color: var(--color-gray);
    border-radius: 50%;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-card {
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-ring);
    padding: 28px 24px;
}
.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-light-mint);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
}
.feature-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.396px;
    color: var(--color-near-black);
    margin-bottom: 8px;
}
.feature-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-warm-dark);
}
.article-hero {
    padding: 48px 0 0;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.article-date {
    font-size: 14px;
    color: var(--color-gray);
}
.article-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 78px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -2.34px;
    color: var(--color-near-black);
    margin-bottom: 24px;
}
.article-lead {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-warm-dark);
    max-width: 720px;
    margin-bottom: 32px;
}
.article-cover {
    border-radius: var(--radius-medium);
    overflow: hidden;
    margin-bottom: 48px;
}
.article-cover img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}
.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 0 72px;
}
.article-body h2 {
    font-size: 40px;
    font-weight: 900;
    line-height: 0.85;
    color: var(--color-near-black);
    margin-top: 48px;
    margin-bottom: 20px;
}
.article-body h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.23;
    letter-spacing: -0.39px;
    color: var(--color-near-black);
    margin-top: 36px;
    margin-bottom: 16px;
}
.article-body p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--color-near-black);
    margin-bottom: 20px;
}
.article-body ul, .article-body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
.article-body li {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 8px;
    color: var(--color-near-black);
}
.article-body strong {
    font-weight: 600;
}
.article-body a {
    color: var(--color-dark-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.article-body a:hover {
    color: var(--color-positive);
}
.info-box {
    background-color: var(--color-light-mint);
    border-left: 4px solid var(--color-wise-green);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    padding: 20px 24px;
    margin: 28px 0;
}
.info-box p {
    margin-bottom: 0 !important;
    font-weight: 600;
}
.warning-box {
    background-color: rgba(255, 209, 26, 0.15);
    border-left: 4px solid var(--color-warning);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    padding: 20px 24px;
    margin: 28px 0;
}
.warning-box p {
    margin-bottom: 0 !important;
}
.step-list {
    list-style: none !important;
    padding-left: 0 !important;
    counter-reset: step-counter;
}
.step-list li {
    counter-increment: step-counter;
    padding-left: 52px;
    position: relative;
    margin-bottom: 16px !important;
}
.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background-color: var(--color-wise-green);
    color: var(--color-dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
}
.article-img {
    border-radius: var(--radius-card);
    margin: 28px 0;
    overflow: hidden;
}
.article-img img {
    width: 100%;
    object-fit: cover;
    max-height: 400px;
}
.article-img figcaption {
    font-size: 13px;
    color: var(--color-gray);
    padding: 8px 0 0;
    text-align: center;
}
.tools-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-ring);
}
.tools-table th {
    background-color: var(--color-near-black);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    padding: 14px 20px;
}
.tools-table td {
    padding: 12px 20px;
    font-size: 16px;
    border-bottom: 1px solid var(--color-ring);
    background-color: var(--color-white);
}
.tools-table tr:last-child td {
    border-bottom: none;
}
.tools-table tr:hover td {
    background-color: var(--color-light-mint);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-gray);
    padding: 20px 0;
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--color-gray);
    transition: color 0.15s ease;
}
.breadcrumb a:hover {
    color: var(--color-dark-green);
}
.breadcrumb .sep {
    color: var(--color-light-surface);
}
.contact-section {
    padding: 72px 0;
    background-color: var(--color-off-white);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}
.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 20px;
}
.contact-info p {
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-warm-dark);
    margin-bottom: 28px;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-near-black);
}
.contact-detail span.icon {
    width: 36px;
    height: 36px;
    background-color: var(--color-light-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.form-card {
    background-color: var(--color-white);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-ring);
    padding: 40px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-near-black);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-near-black);
    background-color: var(--color-off-white);
    border: 1px solid var(--color-ring);
    border-radius: var(--radius-small);
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    font-feature-settings: "calt" 1;
}
.form-control:focus {
    border-color: var(--color-dark-green);
    box-shadow: rgb(134, 134, 133) 0px 0px 0px 1px inset;
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.form-message {
    padding: 14px 20px;
    border-radius: var(--radius-card);
    font-size: 15px;
    font-weight: 600;
    display: none;
    margin-top: 16px;
}
.form-message.success {
    background-color: var(--color-light-mint);
    color: var(--color-positive);
    border: 1px solid var(--color-wise-green);
}
.form-message.visible {
    display: block;
}
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: calc(100% - 48px);
    max-width: 640px;
    background-color: var(--color-near-black);
    color: var(--color-white);
    border-radius: var(--radius-medium);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 40px rgba(14, 15, 12, 0.3);
    z-index: 9999;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.hidden {
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    pointer-events: none;
}
.cookie-banner p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    flex: 1;
    margin: 0;
}
.cookie-banner p a {
    color: var(--color-wise-green);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.btn-cookie-accept {
    background-color: var(--color-wise-green);
    color: var(--color-dark-green);
    font-size: 15px;
    padding: 8px 18px;
}
.btn-cookie-reject {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    font-size: 15px;
    padding: 8px 18px;
}
.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}
.site-footer {
    background-color: var(--color-near-black);
    color: var(--color-white);
    padding: 56px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand-name {
    font-size: 22px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 12px;
}
.footer-brand-name span {
    color: var(--color-wise-green);
}
.footer-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}
.footer-heading {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.15s ease;
}
.footer-links a:hover {
    color: var(--color-wise-green);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}
.footer-legal {
    display: flex;
    gap: 20px;
}
.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.15s ease;
}
.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}
.tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background-color: var(--color-light-surface);
    color: var(--color-warm-dark);
}
.tag-green {
    background-color: var(--color-light-mint);
    color: var(--color-dark-green);
}
.page-header {
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--color-ring);
    margin-bottom: 56px;
}
.page-header-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 80px);
    font-weight: 900;
    line-height: 0.85;
    color: var(--color-near-black);
    margin-bottom: 16px;
}
.page-header-desc {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-warm-dark);
    max-width: 600px;
}
.legal-body {
    max-width: 800px;
    padding: 0 0 80px;
}
.legal-body h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-near-black);
    margin-top: 40px;
    margin-bottom: 14px;
}
.legal-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-near-black);
    margin-top: 28px;
    margin-bottom: 10px;
}
.legal-body p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-near-black);
    margin-bottom: 16px;
}
.legal-body ul {
    padding-left: 20px;
    margin-bottom: 16px;
}
.legal-body li {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 6px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 48px 0;
}
.about-img {
    border-radius: var(--radius-medium);
    overflow: hidden;
}
.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-text h2 {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--color-near-black);
    margin-bottom: 20px;
}
.about-text p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-warm-dark);
    margin-bottom: 16px;
}
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.75;
}
.btn-loading::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: var(--color-dark-green);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-image {
        order: -1;
    }
    .hero-title {
        font-size: clamp(40px, 8vw, 72px);
    }
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-inner {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background-color: var(--color-off-white);
        border-bottom: 1px solid var(--color-ring);
        flex-direction: column;
        padding: 12px 16px 20px;
        gap: 4px;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        width: 100%;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-cta .btn {
        display: none;
    }
    .site-nav {
        position: sticky;
        top: 0;
    }
}
@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .cards-grid-2 {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 48px 0 40px;
    }
    .section {
        padding: 48px 0;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: var(--radius-medium) var(--radius-medium) 0 0;
    }
    .cookie-banner.hidden {
        transform: translateY(120%);
    }
    .form-card {
        padding: 28px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
