:root {
    --bg: #f4f7f1;
    --surface: #ffffff;
    --surface-soft: #eef4e7;
    --text: #19322c;
    --muted: #5b736b;
    --accent: #2e8c6a;
    --accent-dark: #1f5b46;
    --accent-soft: #d9f0e5;
    --coral-soft: #ffe4de;
    --blue-soft: #e5ebff;
    --gold-soft: #fff3cf;
    --outline: #cfe0d6;
    --shadow: 0 20px 45px rgba(25, 50, 44, 0.12);
    --radius: 14px;
    --radius-small: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(46, 140, 106, 0.14), transparent 32%),
        radial-gradient(circle at 85% 20%, rgba(244, 155, 140, 0.14), transparent 18%),
        radial-gradient(circle at 68% 72%, rgba(106, 128, 232, 0.11), transparent 20%),
        linear-gradient(180deg, #fbfdf8 0%, var(--bg) 100%);
}

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

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    min-height: 100vh;
}

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

.narrow {
    width: min(800px, calc(100% - 2rem));
}

.skip-link {
    position: absolute;
    left: -999px;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 99;
    background: var(--surface);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(207, 224, 214, 0.8);
}

.header-inner,
.nav-list,
.header-tools,
.hero-actions,
.hero-points,
.cookie-actions,
.footer-grid,
.process-grid {
    display: flex;
    gap: 1rem;
}

.header-inner,
.nav-list {
    align-items: center;
    justify-content: space-between;
}

.header-inner {
    padding: 1rem 0;
}

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

.brand img {
    width: 72px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.brand span {
    display: grid;
    gap: 0.2rem;
}

.brand strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.15rem;
}

.brand small,
.translate-toolbar span,
.hero-points span,
.info-panel p,
.feature-list,
.legal-content p,
.legal-content li,
.contact-form small {
    color: var(--muted);
}

.header-tools {
    align-items: center;
    flex-wrap: wrap;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1rem;
    border: 1px solid var(--outline);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.translate-toolbar {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.92rem;
}

.translate-label {
    font-weight: 600;
}

.language-select-wrap {
    display: block;
}

.language-select {
    min-width: 88px;
    padding: 0.28rem 1.8rem 0.28rem 0.55rem;
    border: 1px solid var(--outline);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text);
    font: inherit;
    font-size: 0.84rem;
    line-height: 1.2;
}

.site-nav {
    border-top: 1px solid rgba(207, 224, 214, 0.55);
}

.nav-list {
    overflow-x: auto;
    padding: 0.85rem 0;
}

.nav-list a {
    padding: 0.65rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    color: var(--muted);
}

.nav-list a.is-active,
.nav-list a:hover {
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #54b68a 100%);
    color: #fff;
    box-shadow: var(--shadow);
}

.button-secondary {
    background: var(--surface);
    border-color: var(--outline);
}

.button-ghost {
    background: transparent;
    border-color: var(--outline);
}

.button-small {
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
}

.hero,
.page-hero {
    padding: 5rem 0 3rem;
}

.hero-grid,
.feature-grid,
.two-column,
.stats-grid,
.sector-grid,
.footer-grid {
    display: grid;
    gap: 2rem;
}

.hero-grid,
.feature-grid,
.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.feature-grid h2,
.two-column h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.05;
}

.hero h1 {
    font-size: clamp(1.8rem, 3.8vw, 3.1rem);
    margin: 0.1rem 0 0.75rem;
    max-width: 13ch;
    line-height: 1.04;
}

.page-hero h1,
.section-heading h2,
.feature-grid h2,
.two-column h2 {
    font-size: clamp(1.5rem, 2.7vw, 2.25rem);
    margin: 0.2rem 0 1rem;
}

.lead {
    font-size: 1rem;
    color: var(--muted);
    max-width: 62ch;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.eyebrow::before {
    content: "";
    width: 1.5rem;
    height: 0.15rem;
    background: var(--accent);
    border-radius: 8px;
}

.hero-visual,
.illustration-card,
.info-panel,
.sector-card,
.status-box,
.contact-form,
.cookie-card,
.cookie-modal__card,
.stats-grid article,
.process-grid article {
    background: var(--surface);
    border: 1px solid rgba(207, 224, 214, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-visual,
.illustration-card {
    padding: 1.5rem;
}

.hero-visual img,
.illustration-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-visual {
    background: #ffffff;
}

.hero-visual--compact img {
    max-width: 75%;
    margin: 0 auto;
}

.illustration-card--soft {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 245, 0.98)),
        var(--surface);
}

.hero-points {
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.hero-points span {
    padding: 0.7rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--outline);
}

.stats-grid article,
.process-grid article {
    padding: 1.5rem;
}

.process-grid article:nth-child(1) {
    background: linear-gradient(180deg, #ffffff, var(--accent-soft));
}

.process-grid article:nth-child(2) {
    background: linear-gradient(180deg, #ffffff, var(--blue-soft));
}

.process-grid article:nth-child(3) {
    background: linear-gradient(180deg, #ffffff, var(--gold-soft));
}

.stats-grid strong,
.process-grid strong {
    display: block;
    font-size: 2rem;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.section {
    padding: 2.5rem 0 4.5rem;
}

.section-heading {
    margin-bottom: 1.8rem;
}

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

.sector-card {
    padding: 1.6rem;
    background:
        linear-gradient(180deg, rgba(217, 240, 229, 0.55), rgba(255, 255, 255, 0.98)),
        var(--surface);
    position: relative;
    overflow: hidden;
}

.sector-card::after {
    content: "";
    position: absolute;
    right: -18px;
    top: -18px;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(56, 166, 122, 0.2), rgba(244, 155, 140, 0.18));
    clip-path: polygon(20% 0, 80% 0, 80% 16%, 100% 16%, 100% 54%, 84% 54%, 84% 100%, 20% 100%, 20% 84%, 0 84%, 0 28%, 20% 28%);
}

.sector-card h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.sector-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.sector-card a {
    color: var(--accent-dark);
    font-weight: 800;
}

.accent-section {
    background: linear-gradient(180deg, rgba(217, 240, 229, 0.4), transparent);
}

.puzzle-strip {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.puzzle-strip__text {
    max-width: 60ch;
}

.feature-list {
    padding-left: 1.1rem;
    line-height: 1.8;
}

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

.two-column--top {
    align-items: start;
}

.two-column--stretch {
    align-items: stretch;
}

.side-stack {
    display: grid;
    gap: 1.2rem;
}

.side-stack--top {
    align-content: start;
}

.illustration-card--compact img {
    max-width: 82%;
    margin: 0 auto;
}

.illustration-card--fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-intro {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto 2rem;
}

.info-panel,
.contact-form,
.legal-content {
    padding: 1.6rem;
}

.info-panel--accent {
    background:
        linear-gradient(145deg, rgba(255, 243, 207, 0.88), rgba(255, 255, 255, 0.98)),
        var(--surface);
}

.section-tight {
    padding-top: 0;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--outline);
    background: #fbfdf9;
    font: inherit;
}

.form-protection small {
    color: var(--muted);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.recaptcha-wrap {
    min-height: 78px;
}

.consent {
    grid-template-columns: auto 1fr;
    align-items: start;
}

.consent input {
    width: auto;
    margin-top: 0.3rem;
}

.status-box {
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
}

.status-box--success {
    border-color: #9ad0b5;
    background: #effaf4;
}

.status-box--error {
    border-color: #e4b4b4;
    background: #fff2f2;
}

.legal-content {
    line-height: 1.75;
}

.site-footer {
    padding: 4rem 0;
    background: #153028;
    color: rgba(255, 255, 255, 0.9);
}

.footer-logo {
    width: 84px;
    margin-bottom: 1rem;
}

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

.site-footer a,
.footer-link-button {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.7rem;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.cookie-banner {
    position: fixed;
    inset: auto 1rem 1rem auto;
    z-index: 50;
}

.cookie-card {
    max-width: 420px;
    padding: 1.4rem;
}

.cookie-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.92rem;
}

.goog-te-gadget-simple {
    display: none !important;
}

.goog-logo-link,
.goog-te-gadget span,
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd span,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
iframe.skiptranslate {
    display: none !important;
}

body > .skiptranslate {
    display: none !important;
}

body.translated {
    top: 0 !important;
}

@media (max-width: 980px) {
    .hero-grid,
    .feature-grid,
    .two-column,
    .feature-grid.reverse,
    .stats-grid,
    .footer-grid,
    .sector-grid,
    .puzzle-strip {
        grid-template-columns: 1fr;
    }

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

    .header-tools {
        width: 100%;
        justify-content: space-between;
    }

    .brand {
        max-width: 100%;
    }

    .brand span {
        max-width: 100%;
    }

    .translate-toolbar {
        justify-content: flex-start;
    }

    .footer-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        position: static;
    }

    .container,
    .narrow {
        width: min(100% - 1.25rem, 1160px);
    }

    .header-inner {
        padding: 0.8rem 0;
        gap: 0.85rem;
    }

    .header-tools {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .menu-toggle {
        display: inline-flex;
        width: 100%;
    }

    .header-tools > a.button-small {
        display: none;
    }

    .translate-toolbar {
        width: 100%;
        flex-wrap: wrap;
    }

    .language-select-wrap,
    .language-select {
        width: 100%;
    }

    .site-nav {
        border-top: 0;
    }

    .nav-list {
        display: none;
        gap: 0.55rem;
        padding: 0.65rem 0 0.9rem;
        width: 100%;
        overflow: visible;
    }

    .nav-list.is-open {
        display: flex;
        flex-direction: column;
    }

    .nav-list a {
        padding: 0.6rem 0.85rem;
        width: 100%;
    }

    .button,
    .button-small {
        width: 100%;
    }

    .hero,
    .page-hero,
    .section {
        padding-left: 0;
        padding-right: 0;
    }

    .hero,
    .page-hero {
        padding-top: 2.75rem;
    }

    .section {
        padding-bottom: 3rem;
    }

    .hero-actions,
    .hero-points,
    .process-grid,
    .cookie-actions {
        flex-direction: column;
    }

    .hero-points span {
        width: 100%;
        text-align: center;
    }

    .hero-visual,
    .illustration-card,
    .info-panel,
    .contact-form,
    .cookie-card,
    .status-box,
    .sector-card,
    .process-grid article {
        padding: 1.15rem;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 0.85rem 0.9rem;
    }

    .puzzle-strip,
    .footer-grid {
        gap: 1.35rem;
    }

    .cookie-banner {
        inset: auto 0.75rem 0.75rem 0.75rem;
    }

    .cookie-card {
        max-width: none;
    }

    .hero-visual--home,
    .illustration-card--puzzle-mobile-hidden {
        display: none;
    }

    .hero-points {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero,
    .page-hero {
        padding-top: 3rem;
    }

    .brand {
        gap: 0.75rem;
    }

    .brand img {
        width: 58px;
    }

    .brand strong {
        font-size: 1rem;
    }

    .brand small {
        font-size: 0.88rem;
    }

    .hero h1 {
        font-size: clamp(1.65rem, 8vw, 2.35rem);
        max-width: 100%;
    }

    .page-hero h1,
    .section-heading h2,
    .feature-grid h2,
    .two-column h2 {
        font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    }

    .lead {
        font-size: 0.96rem;
    }

    .sector-card__image {
        aspect-ratio: 16 / 10;
    }

    .consent {
        grid-template-columns: 1fr;
    }

    .consent input {
        margin-top: 0;
    }

    .cookie-banner {
        left: 0.75rem;
    }
}

@media (max-width: 420px) {
    .container,
    .narrow {
        width: min(100% - 1rem, 1160px);
    }

    .header-inner {
        gap: 0.7rem;
    }

    .translate-toolbar {
        gap: 0.45rem;
        font-size: 0.88rem;
    }

    .language-select {
        font-size: 0.82rem;
        min-width: 0;
    }

    .nav-list a {
        font-size: 0.92rem;
    }

    .hero-visual--compact img,
    .illustration-card--compact img {
        max-width: 100%;
    }

    .site-footer {
        padding: 3rem 0;
    }
}
