:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 15.1px;
  --line-height-base: 1.46;

  --max-w: 1280px;
  --space-x: 1.28rem;
  --space-y: 1.27rem;
  --gap: 1.02rem;

  --radius-xl: 1.04rem;
  --radius-lg: 0.68rem;
  --radius-md: 0.45rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.11);
  --shadow-md: 0 5px 16px rgba(0,0,0,0.14);
  --shadow-lg: 0 20px 42px rgba(0,0,0,0.18);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 200ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #E65100;
  --brand-contrast: #FFFFFF;
  --accent: #FF9800;
  --accent-contrast: #212121;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #E0E0E0;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

  --bg-page: #FFFBF7;
  --fg-on-page: #3E2723;

  --bg-alt: #FBE9E7;
  --fg-on-alt: #4E342E;

  --surface-1: #FFFFFF;
  --surface-2: #FFECB3;
  --fg-on-surface: #3E2723;
  --border-on-surface: #D7CCC8;

  --surface-light: #FFF8E1;
  --fg-on-surface-light: #5D4037;
  --border-on-surface-light: #FFCC80;

  --bg-primary: #E65100;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #FF6D00;
  --ring: #FF9800;

  --bg-accent: #FFF3E0;
  --fg-on-accent: #5D4037;
  --bg-accent-hover: #FFB74D;

  --link: #E65100;
  --link-hover: #FF6D00;

  --gradient-hero: linear-gradient(135deg, #FF9800 0%, #E65100 100%);
  --gradient-accent: linear-gradient(90deg, #FFF3E0 0%, #FFECB3 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neutral-0);
    text-shadow: 1px 1px 2px var(--neutral-800);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: var(--neutral-0);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    background-color: var(--surface-light);
    border-bottom: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-page);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        z-index: 1000;
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2d5a27;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #666;
    }
    .footer-contacts address {
        display: inline;
        font-style: normal;
    }
    .footer-contacts span {
        margin: 0 0.5rem;
    }
    .footer-contacts a {
        color: #2d5a27;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #777;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #999;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-contacts span {
            margin: 0;
        }
    }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

* {
        box-sizing: border-box;
    }

    .intro-tableau-l14 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .intro-tableau-l14__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 1rem;
        align-items: start;
    }

    .intro-tableau-l14__copy p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-tableau-l14__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.1rem);
        line-height: 1.04;
    }

    .intro-tableau-l14__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-tableau-l14__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-tableau-l14__stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-tableau-l14__stats strong {
        display: block;
        color: var(--brand);
        font-size: 1.35rem;
    }

    .intro-tableau-l14__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 860px) {
        .intro-tableau-l14__wrap {
            grid-template-columns: 1fr;
        }
    }

.values-cloud-c5 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .values-cloud-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-cloud-c5__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .values-cloud-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

    .values-cloud-c5__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-cloud-c5__cloud {
        display: flex;
        gap: .8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .values-cloud-c5__cloud article {
        width: min(16rem, 100%);
        padding: 1rem;
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-cloud-c5__cloud p {
        margin: .45rem 0 0;

    }

    .values-cloud-c5__cloud span {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.plans-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .plans-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .plans-lv4__head {
        text-align: center;
        margin-bottom: 14px;
    }

    .plans-lv4__head h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .plans-lv4__head p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .plans-lv4__stack {
        display: grid;
        gap: 10px;
    }

    .plans-lv4__stack article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-light);
        padding: 12px;
    }

    .plans-lv4__line {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 8px;
    }

    .plans-lv4__line h3 {
        margin: 0;
    }

    .plans-lv4__line p {
        margin: 0;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv4__chips {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-lv4__chips span {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 5px 9px;
        font-size: .88rem;
    }

    .plans-lv4__stack button {
        margin-top: 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 11px;
    }

.nfsocial-v7 {
        padding: clamp(20px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .nfsocial-v7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .nfsocial-v7__head {
        margin-bottom: 14px;
    }

    .nfsocial-v7 h2 {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
    }

    .nfsocial-v7__head p {
        margin: 10px 0 0;
        max-width: 70ch;
        opacity: .92;
    }

    .nfsocial-v7__logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(430px, 1fr));
        gap: 10px;
    }

    .nfsocial-v7__logos div {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .1);
        min-height: 80px;
        height: 320px;
        display: grid;
        place-items: center;
        padding: 10px;
    }

    .nfsocial-v7__logos img {
        max-width: 100%;
        height: 100%;
    }

    .nfsocial-v7__stats {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .nfsocial-v7__stats article {
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
    }

    .nfsocial-v7__stats strong,
    .nfsocial-v7__stats span {
        display: block;
    }

    .nfsocial-v7__stats span {
        margin-top: 5px;
        opacity: .92;
    }

.next-pins-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .next-pins-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-pins-l4__head {
        margin-bottom: 1.1rem;
    }

    .next-pins-l4__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .next-pins-l4__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-pins-l4__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
        max-width: 38rem;
    }

    .next-pins-l4__pins {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-pins-l4__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .next-pins-l4__pins div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-pins-l4__pins h3 {
        margin: .75rem 0 .35rem;
    }

    .next-pins-l4__pins a {
        color: var(--link);
        text-decoration: none;
    }

    .next-pins-l4__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neutral-0);
    text-shadow: 1px 1px 2px var(--neutral-800);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: var(--neutral-0);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    background-color: var(--surface-light);
    border-bottom: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-page);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        z-index: 1000;
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2d5a27;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #666;
    }
    .footer-contacts address {
        display: inline;
        font-style: normal;
    }
    .footer-contacts span {
        margin: 0 0.5rem;
    }
    .footer-contacts a {
        color: #2d5a27;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #777;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #999;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-contacts span {
            margin: 0;
        }
    }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.product-list {

        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .product-list .product-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .product-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .product-list .product-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .product-list .product-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .product-list .product-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .product-list .product-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .product-list .product-list__image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .product-list .product-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .product-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 20px);
        color: var(--fg-on-page);
    }

    .product-list .product-list__price {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0.5rem 0 1rem;
    }

    .product-list .product-list__btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__btn:hover {
        background: var(--bg-accent);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.index-recommendations {
        background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

    .index-recommendations__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-recommendations__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-recommendations__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations__card {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(58, 46, 61, 0.12);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
    }

    .index-recommendations__card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.65;
        pointer-events: none;
    }

    .index-recommendations__card h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -0.01em;
    }

    .index-recommendations__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.nftouch-v12 {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nftouch-v12__wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .nftouch-v12__header {
        margin-bottom: 14px;
    }

    .nftouch-v12 h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .nftouch-v12__header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nftouch-v12 ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .nftouch-v12 li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 8px;
        align-items: center;
    }

    .nftouch-v12 li span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .nftouch-v12 li a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .nftouch-v12__cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

    @media (max-width: 680px) {
        .nftouch-v12 li {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neutral-0);
    text-shadow: 1px 1px 2px var(--neutral-800);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: var(--neutral-0);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    background-color: var(--surface-light);
    border-bottom: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-page);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        z-index: 1000;
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2d5a27;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #666;
    }
    .footer-contacts address {
        display: inline;
        font-style: normal;
    }
    .footer-contacts span {
        margin: 0 0.5rem;
    }
    .footer-contacts a {
        color: #2d5a27;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #777;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #999;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-contacts span {
            margin: 0;
        }
    }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.product-item--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.product-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

.product-item__header h1 {
    margin: 0;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.product-item__price {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

.product-item__desc {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-200);
}

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neutral-0);
    text-shadow: 1px 1px 2px var(--neutral-800);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: var(--neutral-0);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    background-color: var(--surface-light);
    border-bottom: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-page);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        z-index: 1000;
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2d5a27;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #666;
    }
    .footer-contacts address {
        display: inline;
        font-style: normal;
    }
    .footer-contacts span {
        margin: 0 0.5rem;
    }
    .footer-contacts a {
        color: #2d5a27;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #777;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #999;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-contacts span {
            margin: 0;
        }
    }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.product-item {

        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-600);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neutral-0);
    text-shadow: 1px 1px 2px var(--neutral-800);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: var(--neutral-0);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    background-color: var(--surface-light);
    border-bottom: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-page);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        z-index: 1000;
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2d5a27;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #666;
    }
    .footer-contacts address {
        display: inline;
        font-style: normal;
    }
    .footer-contacts span {
        margin: 0 0.5rem;
    }
    .footer-contacts a {
        color: #2d5a27;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #777;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #999;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-contacts span {
            margin: 0;
        }
    }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.product-item {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.index-recommendations {
        background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

    .index-recommendations__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-recommendations__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-recommendations__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations__card {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(58, 46, 61, 0.12);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
    }

    .index-recommendations__card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.65;
        pointer-events: none;
    }

    .index-recommendations__card h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -0.01em;
    }

    .index-recommendations__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neutral-0);
    text-shadow: 1px 1px 2px var(--neutral-800);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: var(--neutral-0);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    background-color: var(--surface-light);
    border-bottom: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-page);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        z-index: 1000;
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2d5a27;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #666;
    }
    .footer-contacts address {
        display: inline;
        font-style: normal;
    }
    .footer-contacts span {
        margin: 0 0.5rem;
    }
    .footer-contacts a {
        color: #2d5a27;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #777;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #999;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-contacts span {
            margin: 0;
        }
    }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.index-recommendations {
        background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

    .index-recommendations__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-recommendations__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-recommendations__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations__card {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(58, 46, 61, 0.12);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
    }

    .index-recommendations__card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.65;
        pointer-events: none;
    }

    .index-recommendations__card h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -0.01em;
    }

    .index-recommendations__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.map-cards-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .map-cards-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-cards-l2__head {
        text-align: center;
        margin-bottom: 1rem;
    }

    .map-cards-l2__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .map-cards-l2__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-cards-l2__frame {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .map-cards-l2__frame iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    .map-cards-l2__grid {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .map-cards-l2__grid article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-cards-l2__grid p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    @media (max-width: 640px) {
        .map-cards-l2__grid {
            grid-template-columns: 1fr;
        }
    }

.form-fresh-v4 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .form-fresh-v4 .shell {
        max-width: 820px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v4 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .form-fresh-v4 form {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        display: grid;
        gap: .85rem;
    }

    .form-fresh-v4 .steps {
        display: flex;
        gap: .5rem;
        flex-wrap: wrap;
    }

    .form-fresh-v4 .steps span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--btn-ghost-bg-hover);
        font-size: .8rem;
    }

    .form-fresh-v4 .fields {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }

    .form-fresh-v4 label {
        display: grid;
        gap: .3rem;
        font-size: .88rem;
    }

    .form-fresh-v4 input {
        padding: .62rem .72rem;
        border: 1px solid var(--btn-ghost-bg-hover);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        font: inherit;
    }

    .form-fresh-v4 button {
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 700px) {
        .form-fresh-v4 .fields {
            grid-template-columns:1fr;
        }
    }

.contacts-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .contacts-fresh-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .contacts-fresh-v6 .columns {
        display: flex;
        gap: var(--gap);
        overflow: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: .2rem;
    }

    .contacts-fresh-v6 article {
        min-width: 260px;
        scroll-snap-align: start;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v6 h3 {
        margin: 0 0 .5rem;
    }

    .contacts-fresh-v6 p {
        margin: 0;
    }

    .contacts-fresh-v6 .hint {
        margin: .4rem 0 .8rem;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v6 a {
        text-decoration: none;
        color: var(--link);
        font-weight: 700;
    }

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neutral-0);
    text-shadow: 1px 1px 2px var(--neutral-800);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: var(--neutral-0);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    background-color: var(--surface-light);
    border-bottom: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-page);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        z-index: 1000;
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2d5a27;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #666;
    }
    .footer-contacts address {
        display: inline;
        font-style: normal;
    }
    .footer-contacts span {
        margin: 0 0.5rem;
    }
    .footer-contacts a {
        color: #2d5a27;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #777;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #999;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-contacts span {
            margin: 0;
        }
    }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.terms-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .terms-layout-e .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .terms-layout-e .section-head {
        margin-bottom: 14px;
        text-align: center;
    }

    .terms-layout-e h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .terms-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

    .terms-layout-e h4 {
        margin: 10px 0 6px;
    }

    .terms-layout-e p, .terms-layout-e li {
        color: var(--neutral-600);
    }

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neutral-0);
    text-shadow: 1px 1px 2px var(--neutral-800);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: var(--neutral-0);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    background-color: var(--surface-light);
    border-bottom: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-page);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        z-index: 1000;
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2d5a27;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #666;
    }
    .footer-contacts address {
        display: inline;
        font-style: normal;
    }
    .footer-contacts span {
        margin: 0 0.5rem;
    }
    .footer-contacts a {
        color: #2d5a27;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #777;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #999;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-contacts span {
            margin: 0;
        }
    }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.policy-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .policy-layout-e .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .policy-layout-e .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

    .policy-layout-e h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .policy-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 72ch;
        color: var(--neutral-100);
    }

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neutral-0);
    text-shadow: 1px 1px 2px var(--neutral-800);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: var(--neutral-0);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    background-color: var(--surface-light);
    border-bottom: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-page);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        z-index: 1000;
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2d5a27;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #666;
    }
    .footer-contacts address {
        display: inline;
        font-style: normal;
    }
    .footer-contacts span {
        margin: 0 0.5rem;
    }
    .footer-contacts a {
        color: #2d5a27;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #777;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #999;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-contacts span {
            margin: 0;
        }
    }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.nfthank-v12 {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nfthank-v12__shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: clamp(30px, 4vw, 46px);
    }

    .nfthank-v12 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
        color: var(--brand);
    }

    .nfthank-v12 p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nfthank-v12 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

.site-header {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    box-shadow: var(--shadow-sm);
}
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}
.header-top {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    padding: var(--space-y) 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap);
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neutral-0);
    text-shadow: 1px 1px 2px var(--neutral-800);
}
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}
.contact-link {
    color: var(--neutral-0);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--anim-duration) var(--anim-ease);
}
.contact-link:hover {
    color: var(--brand-contrast);
}
.btn-cta {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.btn-cta:hover {
    background-color: var(--bg-accent-hover);
}
.header-bottom {
    padding: calc(var(--space-y) / 1.5) 0;
    background-color: var(--surface-light);
    border-bottom: 1px solid var(--border-on-surface-light);
}
.header-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-nav {
    flex-grow: 1;
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: calc(var(--gap) * 2);
}
.nav-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
    color: var(--link-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after {
    width: 100%;
}
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-page);
        box-shadow: var(--shadow-lg);
        padding: 5rem 2rem 2rem;
        z-index: 1000;
        transition: right var(--anim-duration) var(--anim-ease);
        overflow-y: auto;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        font-family: sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-section {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2d5a27;
        margin-bottom: 1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
    }
    .footer-nav a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-contacts {
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #666;
    }
    .footer-contacts address {
        display: inline;
        font-style: normal;
    }
    .footer-contacts span {
        margin: 0 0.5rem;
    }
    .footer-contacts a {
        color: #2d5a27;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        color: #777;
        text-decoration: none;
        margin: 0 0.5rem;
    }
    .footer-legal-links a:hover {
        color: #2d5a27;
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #999;
        line-height: 1.4;
        max-width: 800px;
        margin: 0 auto;
    }
    #currentYear {
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 0.75rem;
        }
        .footer-contacts {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-contacts span {
            margin: 0;
        }
    }

.nfcookie-v9 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v9__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, var(--bg-primary), var(--neutral-900));
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .nfcookie-v9__stack strong {display: block; margin-bottom: 6px;}
    .nfcookie-v9__stack p {margin: 0; opacity: .9;}

    .nfcookie-v9__actions {margin-top: 12px; display: flex; flex-wrap: wrap; gap: 10px;}

    .nfcookie-v9__actions button {
        border: 1px solid rgba(255, 255, 255, .4);
        background: transparent;
        color: var(--fg-on-primary);
        border-radius: 999px;
        padding: 7px 12px;
        cursor: pointer;
    }

    .nfcookie-v9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        border-color: transparent;
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.nf404-v8 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nf404-v8__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        padding: clamp(28px, 4vw, 46px);
        box-shadow: var(--shadow-md);
    }

    .nf404-v8 h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
        color: var(--brand);
    }

    .nf404-v8 p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nf404-v8 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }