@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');

:root {
    --near-black: #0e0f0c;
    --wise-green: #9fe870;
    --dark-green: #163300;
    --light-mint: #e2f6d5;
    --pastel-green: #cdffad;
    --warm-dark: #454745;
    --gray: #868685;
    --light-surface: #e8ebe6;
    --white: #ffffff;
    --ring-shadow: rgba(14,15,12,0.12) 0px 0px 0px 1px;
    --danger: #d03238;
    --warning: #ffd11a;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-feature-settings: "calt" 1;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.44;
    letter-spacing: 0.18px;
    color: var(--near-black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--dark-green);
    text-decoration: none;
    border-radius: 2px;
    transition: opacity 0.15s ease;
}

a:hover {
    opacity: 0.75;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAVIGATION */
.site-header {
    background: var(--white);
    border-bottom: 1px solid rgba(14,15,12,0.10);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

.site-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.38rem;
    color: var(--near-black);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo span {
    color: var(--dark-green);
}

.site-logo .logo-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--wise-green);
    border-radius: 50%;
    margin-left: 2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--near-black);
    padding: 8px 14px;
    border-radius: 9999px;
    transition: background 0.15s ease;
    letter-spacing: -0.084px;
}

.site-nav a:hover {
    background: rgba(211,242,192,0.4);
    opacity: 1;
}

.site-nav a.active {
    background: var(--light-mint);
}

.nav-cta {
    background: var(--wise-green) !important;
    color: var(--dark-green) !important;
    font-weight: 600 !important;
    padding: 8px 18px !important;
    border-radius: 9999px !important;
    transition: transform 0.15s ease, background 0.15s ease !important;
    display: inline-block;
}

.nav-cta:hover {
    transform: scale(1.05);
    opacity: 1 !important;
    background: var(--wise-green) !important;
}

.nav-cta:active {
    transform: scale(0.95);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--near-black);
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.44;
    letter-spacing: -0.108px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease;
    font-feature-settings: "calt" 1;
}

.btn-primary {
    background: var(--wise-green);
    color: var(--dark-green);
    padding: 12px 28px;
}

.btn-primary:hover {
    transform: scale(1.05);
    opacity: 1;
    color: var(--dark-green);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    background: rgba(22,51,0,0.08);
    color: var(--near-black);
    padding: 10px 20px;
}

.btn-secondary:hover {
    transform: scale(1.05);
    opacity: 1;
    color: var(--near-black);
}

.btn-secondary:active {
    transform: scale(0.95);
}

/* HERO */
.hero {
    padding: 80px 0 64px;
    background: var(--white);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 0.95;
    letter-spacing: -1px;
    color: var(--near-black);
    margin-bottom: 24px;
    font-feature-settings: "calt" 1;
}

.hero-content h1 em {
    font-style: normal;
    color: var(--dark-green);
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--warm-dark);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--dark-green);
    background: var(--light-mint);
    padding: 6px 14px;
    border-radius: 9999px;
    letter-spacing: -0.084px;
}

.hero-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--ring-shadow);
    aspect-ratio: 4/3;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SECTIONS */
.section {
    padding: 72px 0;
}

.section--alt {
    background: var(--light-surface);
}

.section--dark {
    background: var(--near-black);
    color: var(--white);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark-green);
    margin-bottom: 12px;
}

.section--dark .section-label {
    color: var(--wise-green);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--near-black);
    margin-bottom: 16px;
    font-feature-settings: "calt" 1;
}

.section--dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--warm-dark);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 48px;
}

.section--dark .section-subtitle {
    color: var(--gray);
}

.section-header {
    margin-bottom: 48px;
}

/* CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cards-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--ring-shadow);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.section--alt .card {
    background: var(--white);
}

.card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card__image img {
    transform: scale(1.03);
}

.card__body {
    padding: 28px;
}

.card__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-green);
    background: var(--light-mint);
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 14px;
}

.card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.13rem;
    line-height: 1.35;
    letter-spacing: -0.396px;
    color: var(--near-black);
    margin-bottom: 10px;
    font-feature-settings: "calt" 1;
}

.card__text {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--warm-dark);
    line-height: 1.55;
    margin-bottom: 18px;
}

.card__date {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: -0.084px;
}

.card__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-green);
    letter-spacing: -0.108px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
}

.card__link::after {
    content: '→';
    transition: transform 0.15s ease;
}

.card__link:hover::after {
    transform: translateX(4px);
}

/* ARTICLE CARD (list page) */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.article-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--ring-shadow);
    overflow: hidden;
}

.article-item__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.article-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-item:hover .article-item__image img {
    transform: scale(1.03);
}

.article-item__body {
    padding: 28px 28px 28px 0;
}

/* STATS / FACTS ROW */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(14,15,12,0.08);
    border-radius: 16px;
    overflow: hidden;
    margin: 48px 0;
}

.stat-item {
    background: var(--white);
    padding: 32px 24px;
    text-align: center;
}

.stat-item__value {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--near-black);
    line-height: 1;
    margin-bottom: 8px;
    font-feature-settings: "calt" 1;
}

.stat-item__value em {
    color: var(--dark-green);
    font-style: normal;
}

.stat-item__label {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--warm-dark);
    letter-spacing: -0.084px;
}

/* FEATURE LIST */
.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--ring-shadow);
}

.feature-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--light-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-item__title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--near-black);
    margin-bottom: 6px;
    letter-spacing: -0.108px;
}

.feature-item__text {
    font-size: 0.88rem;
    color: var(--warm-dark);
    line-height: 1.55;
}

/* CONTACT FORM */
.contact-form {
    background: var(--white);
    border-radius: 40px;
    box-shadow: var(--ring-shadow);
    padding: 48px;
    max-width: 640px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 8px;
    letter-spacing: -0.084px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(14,15,12,0.18);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--near-black);
    background: var(--white);
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    font-feature-settings: "calt" 1;
}

.form-input:focus {
    border-color: var(--dark-green);
    box-shadow: rgb(134,134,133) 0px 0px 0px 1px inset;
}

.form-input::placeholder {
    color: var(--gray);
    font-weight: 400;
}

/* BREADCRUMBS */
.breadcrumbs {
    padding: 16px 0;
    font-size: 0.83rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--warm-dark);
    font-weight: 600;
}

.breadcrumbs__sep {
    color: var(--gray);
    font-size: 0.75rem;
}

/* ARTICLE SINGLE */
.article-header {
    padding: 56px 0 40px;
}

.article-header h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--near-black);
    margin-bottom: 20px;
    max-width: 760px;
    font-feature-settings: "calt" 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.83rem;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 32px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-featured-image {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 48px;
    aspect-ratio: 16/7;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--near-black);
    max-width: 760px;
}

.article-body h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.396px;
    color: var(--near-black);
    margin: 48px 0 16px;
    font-feature-settings: "calt" 1;
}

.article-body h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.13rem;
    line-height: 1.3;
    letter-spacing: -0.108px;
    color: var(--near-black);
    margin: 32px 0 12px;
}

.article-body p {
    margin-bottom: 20px;
    color: var(--warm-dark);
}

.article-body ul, .article-body ol {
    margin: 0 0 20px 24px;
    color: var(--warm-dark);
}

.article-body li {
    margin-bottom: 8px;
}

.article-body a {
    color: var(--dark-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body blockquote {
    border-left: 3px solid var(--wise-green);
    padding: 16px 24px;
    margin: 32px 0;
    background: var(--light-mint);
    border-radius: 0 16px 16px 0;
    font-weight: 600;
    color: var(--dark-green);
}

.article-body figure {
    margin: 32px 0;
}

.article-body figure img {
    border-radius: 20px;
    width: 100%;
}

.article-body figcaption {
    font-size: 0.83rem;
    color: var(--gray);
    margin-top: 10px;
    text-align: center;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--ring-shadow);
}

.article-body th {
    background: var(--near-black);
    color: var(--white);
    font-weight: 600;
    font-size: 0.83rem;
    padding: 14px 18px;
    text-align: left;
    letter-spacing: 0.5px;
}

.article-body td {
    padding: 12px 18px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(14,15,12,0.08);
    color: var(--warm-dark);
}

.article-body tr:last-child td {
    border-bottom: none;
}

.article-body tr:nth-child(even) td {
    background: rgba(14,15,12,0.02);
}

/* RELATED ARTICLES */
.related-articles {
    padding: 64px 0;
    border-top: 1px solid rgba(14,15,12,0.10);
    margin-top: 64px;
}

/* PAGE CONTENT */
.page-header {
    padding: 56px 0 40px;
    border-bottom: 1px solid rgba(14,15,12,0.10);
    margin-bottom: 56px;
}

.page-header h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--near-black);
    margin-bottom: 16px;
    font-feature-settings: "calt" 1;
}

.page-header p {
    font-size: 1rem;
    color: var(--warm-dark);
    max-width: 560px;
}

.page-content {
    padding-bottom: 80px;
}

.page-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--near-black);
    margin: 40px 0 14px;
    font-feature-settings: "calt" 1;
}

.page-content h3 {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--near-black);
    margin: 28px 0 10px;
}

.page-content p {
    color: var(--warm-dark);
    margin-bottom: 18px;
    line-height: 1.7;
}

.page-content ul {
    margin: 0 0 18px 24px;
    color: var(--warm-dark);
}

.page-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* FOOTER */
.site-footer {
    background: var(--near-black);
    color: var(--white);
    padding: 56px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--gray);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: var(--wise-green);
}

.footer-col h4 {
    font-weight: 600;
    font-size: 0.83rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.15s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.83rem;
    color: var(--gray);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.83rem;
    color: var(--gray);
    font-weight: 400;
}

.footer-bottom-links a:hover {
    color: var(--white);
    opacity: 1;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 560px;
    background: var(--near-black);
    color: var(--white);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 8px 40px rgba(14,15,12,0.35);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.55;
    margin-bottom: 18px;
}

.cookie-banner p a {
    color: var(--wise-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-accept {
    background: var(--wise-green);
    color: var(--dark-green);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease;
    font-feature-settings: "calt" 1;
}

.cookie-accept:hover {
    transform: scale(1.05);
}

.cookie-accept:active {
    transform: scale(0.95);
}

.cookie-reject {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease;
    font-feature-settings: "calt" 1;
}

.cookie-reject:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.16);
}

.cookie-reject:active {
    transform: scale(0.95);
}

/* DISCLAIMER */
.disclaimer {
    background: var(--light-mint);
    border-left: 3px solid var(--wise-green);
    border-radius: 0 10px 10px 0;
    padding: 14px 20px;
    font-size: 0.83rem;
    color: var(--dark-green);
    font-weight: 400;
    line-height: 1.5;
    margin: 24px 0;
}

/* TAG CHIP */
.tag-chip {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--dark-green);
    background: var(--light-mint);
    padding: 5px 14px;
    border-radius: 9999px;
}

/* INLINE INFO BOX */
.info-box {
    background: var(--light-mint);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 32px 0;
}

.info-box h4 {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.info-box p {
    font-size: 0.9rem;
    color: var(--warm-dark);
    line-height: 1.6;
    margin: 0;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--near-black);
    background: var(--white);
    box-shadow: var(--ring-shadow);
    transition: background 0.15s ease, transform 0.15s ease;
}

.pagination a:hover, .pagination a.active {
    background: var(--wise-green);
    color: var(--dark-green);
    opacity: 1;
    transform: scale(1.05);
}

/* SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--near-black);
    color: var(--white);
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 200;
    box-shadow: 0 4px 16px rgba(14,15,12,0.25);
    transition: transform 0.15s ease, background 0.15s ease;
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    transform: scale(1.1);
    background: var(--dark-green);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        max-height: 340px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid--2 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .article-item {
        grid-template-columns: 1fr;
    }

    .article-item__body {
        padding: 0 24px 28px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 16px;
    }

    .container, .container--narrow {
        padding: 0 16px;
    }

    .hero {
        padding: 48px 0 40px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid rgba(14,15,12,0.10);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
}
