:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 1.51;

  --max-w: 1260px;
  --space-x: 1.02rem;
  --space-y: 1.46rem;
  --gap: 1.13rem;

  --radius-xl: 1.03rem;
  --radius-lg: 0.81rem;
  --radius-md: 0.43rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.12);
  --shadow-md: 0 5px 18px rgba(0,0,0,0.15);
  --shadow-lg: 0 18px 40px rgba(0,0,0,0.19);

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

  --brand: #2E7D32;
  --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: #F9F9F7;
  --fg-on-page: #2E2E2E;

  --bg-alt: #F1F8E9;
  --fg-on-alt: #33691E;

  --surface-1: #FFFFFF;
  --surface-2: #FAFAFA;
  --fg-on-surface: #37474F;
  --border-on-surface: #E8F5E9;

  --surface-light: rgba(46, 125, 50, 0.05);
  --fg-on-surface-light: #1B5E20;
  --border-on-surface-light: rgba(46, 125, 50, 0.15);

  --bg-primary: #2E7D32;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1B5E20;
  --ring: rgba(46, 125, 50, 0.4);

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

  --link: #388E3C;
  --link-hover: #1B5E20;

  --gradient-hero: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 50%, #81C784 100%);
  --gradient-accent: linear-gradient(90deg, #FF9800, #FFB74D);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.08);
  --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;}

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }

    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-align: center;
        line-height: 1.2;
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .nav__link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Stil pentru burger activ (opțional, se controlează prin JS) */
    .header__burger.active .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger.active .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    /* Responsive pentru mobile */
    @media (max-width: 767px) {
        .header__container {
            flex-direction: row;
            justify-content: center;
            position: relative;
        }

        .header__logo {
            font-size: calc(var(--font-size-base) * 1.5);
        }

        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            padding: calc(var(--space-y) * 2) var(--space-x);
            box-shadow: var(--shadow-lg);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        .nav__item {
            width: 100%;
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-sm);
        }

        /* Overlay pentru mobile */
        .header__nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
            z-index: -1;
        }

        .header__nav.active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

.site-footer {
    background-color: #2d4a2d;
    color: #f0f7f0;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: auto;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c1ffc1;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #d0e0d0;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #b0c9b0;
    margin-bottom: 0.5rem;
  }
  .footer-legal-links {
    font-size: 0.8rem;
  }
  .footer-legal-links a {
    color: #a3d1a3;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu-title, .footer-contact-title {
    font-size: 1.2rem;
    color: #c1ffc1;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #3e5f3e;
    padding-bottom: 0.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a {
    color: #e0f0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact-info {
    margin-bottom: 1.5rem;
  }
  .contact-item {
    margin-bottom: 0.7rem;
    line-height: 1.5;
  }
  .contact-item a {
    color: #e0f0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-social a {
    display: inline-block;
    background-color: #3e5f3e;
    color: #f0f7f0;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #4a6f4a;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.wp-lang-switcher-v3 {
        position: fixed;
        right: clamp(16px, 2vw, 24px);
        bottom: clamp(16px, 2vw, 24px);
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v3__btn {
        width: calc(54px + var(--local-random) * 4px);
        height: calc(54px + var(--local-random) * 4px);
        background: var(--surface-1);
        color: var(--bg-primary);
        border: calc(2px + var(--local-random) * 0.5px) solid var(--bg-primary);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .wp-lang-switcher-v3__btn::before {
        content: '';
        position: absolute;
        inset: calc(-2px - var(--local-random) * 0.5px);
        border-radius: 50%;
        background: var(--gradient-hero);

        z-index: -1;
        transition: opacity var(--anim-duration) var(--anim-ease);
        animation: pulse calc(1.8s + var(--local-random) * 0.4s) ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1);  }
        50% { transform: scale(1.1); opacity: 0.3; }
    }

    .wp-lang-switcher-v3__btn:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: scale(calc(1.03 + var(--local-random) * 0.02));
        box-shadow: var(--shadow-lg);
    }

    .wp-lang-switcher-v3__btn:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v3__text {
        font-weight: 700;
        font-size: calc(13px + var(--local-random) * 1px);
        letter-spacing: calc(0.8px + var(--local-random) * 0.2px);
    }

    .wp-lang-switcher-v3__dropdown {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-xl) - var(--local-random) * 4px);
        box-shadow: var(--shadow-lg);
        padding: calc(6px + var(--local-random) * 2px);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: calc(6px + var(--local-random) * 2px);

        transform: scale(0.8);
        transform-origin: bottom right;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v3__dropdown.open {
        display: grid;
        opacity: 1;
        transform: scale(1);
    }

    .wp-lang-switcher-v3__dropdown button,
    .wp-lang-switcher-v3__dropdown a {
        width: calc(46px + var(--local-random) * 2px);
        height: calc(46px + var(--local-random) * 2px);
        border: 2px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;

        font-size: 13px;
        font-weight: 600;
        border-radius: 50%;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        overflow: hidden;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v3__dropdown button::after {
        content: attr(data-lang);
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--fg-on-primary);
        text-transform: uppercase;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v3__dropdown button:hover {
        border-color: var(--bg-primary);
        transform: scale(calc(1.08 + var(--local-random) * 0.02));
    }

    .wp-lang-switcher-v3__dropdown button:hover::before,
    .wp-lang-switcher-v3__dropdown a:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v3__dropdown button:hover::after,
    .wp-lang-switcher-v3__dropdown a:hover::after {
        opacity: 1;
    }

.hero {
        position: relative;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
    }

    .hero--compact {
        min-height: 400px;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: 0.7;
        z-index: -1;
    }

    .hero--tint .hero__overlay {
        opacity: 0.55;
    }

    .hero__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .hero--tint .hero__content {
        background: var(--chip-bg);
        border-radius: var(--radius-lg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto 0;
        max-width: 700px;
    }

.values-flare-c9 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .15), transparent 25%), var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .values-flare-c9__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-flare-c9__head {
        margin-bottom: 1.1rem;
    }

    .values-flare-c9__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .values-flare-c9__head span {
        display: block;
        margin-top: .8rem;
        color: rgba(255, 255, 255, .86);
    }

    .values-flare-c9__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-flare-c9__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-flare-c9__meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-flare-c9__meta i {
        font-style: normal;
    }

    .values-flare-c9__meta span {
        color: var(--bg-accent);
    }

    .values-flare-c9__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-flare-c9__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .86);
    }

    .values-flare-c9__grid small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.index-recommendations-steps {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-steps__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-recommendations-steps__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(16px, 3vw, 26px);
    }

    .index-recommendations-steps__step {
        position: relative;

        transform: translateY(26px);
    }

    .index-recommendations-steps__num {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        position: absolute;
        top: 18px;
        left: 50px;
        font-size: 12px;
        box-shadow: var(--shadow-md);
    }

    .index-recommendations-steps__box {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: 26px 18px 18px;
        height: 100%;
    }

    .index-recommendations-steps__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .index-recommendations-steps__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: var(--fg-on-accent);
        flex: 0 0 auto;
    }

    .index-recommendations-steps__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
        color: var(--surface-1);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .index-recommendations-steps__box h3 {
        margin: 0 0 10px;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-surface-light);
    }

    .index-recommendations-steps__why {
        margin: 0 0 10px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--fg-on-surface-light);
        opacity: 0.75;
    }

    .index-recommendations-steps__desc {
        margin: 0 0 14px;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-steps__cta {
        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-steps__cta::after {
        content: '->';
    }

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

.why-choose-alt {

        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);

        animation: backgroundPulse 4s ease-in-out infinite;
    }

    @keyframes backgroundPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }

    .why-choose-alt .why-choose-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .why-choose-alt .why-choose-alt__h {
        color: var(--fg-on-surface-light);
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

    }

    .why-choose-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-surface-light);
    }

    .why-choose-alt .why-choose-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .why-choose-alt .why-choose-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-alt .why-choose-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-light);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .why-choose-alt .why-choose-alt__item:hover {
        transform: translateX(8px);
        box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.15);
    }

    .why-choose-alt .why-choose-alt__item:hover::before {
        left: 100%;
    }

    .why-choose-alt .why-choose-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover .why-choose-alt__number {
        transform: rotate(360deg) scale(1.1);
    }

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);

        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

    .why-choose-alt .why-choose-alt__content {
        flex: 1;
    }

    .why-choose-alt .why-choose-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover h3 {
        color: var(--bg-accent);
    }

    .why-choose-alt .why-choose-alt__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }

    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-align: center;
        line-height: 1.2;
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .nav__link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Stil pentru burger activ (opțional, se controlează prin JS) */
    .header__burger.active .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger.active .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    /* Responsive pentru mobile */
    @media (max-width: 767px) {
        .header__container {
            flex-direction: row;
            justify-content: center;
            position: relative;
        }

        .header__logo {
            font-size: calc(var(--font-size-base) * 1.5);
        }

        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            padding: calc(var(--space-y) * 2) var(--space-x);
            box-shadow: var(--shadow-lg);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        .nav__item {
            width: 100%;
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-sm);
        }

        /* Overlay pentru mobile */
        .header__nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
            z-index: -1;
        }

        .header__nav.active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

.site-footer {
    background-color: #2d4a2d;
    color: #f0f7f0;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: auto;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c1ffc1;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #d0e0d0;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #b0c9b0;
    margin-bottom: 0.5rem;
  }
  .footer-legal-links {
    font-size: 0.8rem;
  }
  .footer-legal-links a {
    color: #a3d1a3;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu-title, .footer-contact-title {
    font-size: 1.2rem;
    color: #c1ffc1;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #3e5f3e;
    padding-bottom: 0.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a {
    color: #e0f0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact-info {
    margin-bottom: 1.5rem;
  }
  .contact-item {
    margin-bottom: 0.7rem;
    line-height: 1.5;
  }
  .contact-item a {
    color: #e0f0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-social a {
    display: inline-block;
    background-color: #3e5f3e;
    color: #f0f7f0;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #4a6f4a;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.story-banner-c1 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .story-banner-c1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .story-banner-c1__copy, .story-banner-c1__media {
        flex: 1 1 20rem;
    }

    .story-banner-c1__copy p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .story-banner-c1__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-banner-c1__copy strong {
        display: block;
        margin-top: .75rem;
    }

    .story-banner-c1__copy p {
        color: rgba(255, 255, 255, .84);
    }

    .story-banner-c1__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

.about-timeline {

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

    .about-timeline .about-timeline__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-timeline .about-timeline__tl {
        display: grid;
        gap: 16px;
    }

    .about-timeline .about-timeline__tl .timeline {
        list-style: none;
        border-left: 3px solid var(--bg-primary);
        padding: .4rem .6rem .4rem 1rem;
    }

    .about-timeline time {
        display: block;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .about-timeline p {
        margin: .25rem 0 0;
        color: var(--neutral-600);
    }

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-layout-e .section-head {
        margin-bottom: 16px;
    }

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

    .faq-layout-e .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

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

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

    .identity-lv4__head {
        margin-bottom: 15px;
    }

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

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

    .identity-lv4__head span {
        color: var(--neutral-600);
    }

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

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

    .identity-lv4__line {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-wrap: wrap;
    }

    .identity-lv4__line i {
        font-style: normal;
        color: var(--link);
    }

    .identity-lv4__line h3 {
        margin: 0;
    }

    .identity-lv4__stack p {
        margin: 7px 0 6px;
        color: var(--neutral-600);
    }

    .identity-lv4__stack small {
        color: var(--neutral-800);
        font-weight: 600;
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }

    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-align: center;
        line-height: 1.2;
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .nav__link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Stil pentru burger activ (opțional, se controlează prin JS) */
    .header__burger.active .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger.active .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    /* Responsive pentru mobile */
    @media (max-width: 767px) {
        .header__container {
            flex-direction: row;
            justify-content: center;
            position: relative;
        }

        .header__logo {
            font-size: calc(var(--font-size-base) * 1.5);
        }

        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            padding: calc(var(--space-y) * 2) var(--space-x);
            box-shadow: var(--shadow-lg);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        .nav__item {
            width: 100%;
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-sm);
        }

        /* Overlay pentru mobile */
        .header__nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
            z-index: -1;
        }

        .header__nav.active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

.site-footer {
    background-color: #2d4a2d;
    color: #f0f7f0;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: auto;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c1ffc1;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #d0e0d0;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #b0c9b0;
    margin-bottom: 0.5rem;
  }
  .footer-legal-links {
    font-size: 0.8rem;
  }
  .footer-legal-links a {
    color: #a3d1a3;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu-title, .footer-contact-title {
    font-size: 1.2rem;
    color: #c1ffc1;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #3e5f3e;
    padding-bottom: 0.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a {
    color: #e0f0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact-info {
    margin-bottom: 1.5rem;
  }
  .contact-item {
    margin-bottom: 0.7rem;
    line-height: 1.5;
  }
  .contact-item a {
    color: #e0f0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-social a {
    display: inline-block;
    background-color: #3e5f3e;
    color: #f0f7f0;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #4a6f4a;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.hiw-ledger-l2 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .hiw-ledger-l2__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .hiw-ledger-l2__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

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

    .hiw-ledger-l2__head h2 {
        margin: .45rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-ledger-l2__rows {
        display: grid;
        gap: .8rem;
    }

    .hiw-ledger-l2__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .hiw-ledger-l2__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--brand);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ledger-l2__rows h3 {
        margin: 0;
    }

    .hiw-ledger-l2__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

.capabilities-spectrum {

        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(18px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .capabilities-spectrum::before,
    .capabilities-spectrum::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%);
        
        opacity: 0.6;
    }

    .capabilities-spectrum::after {
        background: radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.12), transparent 50%);
    }

    .capabilities-spectrum__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .capabilities-spectrum__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 88px);

        transform: translateY(-20px);
    }

    .capabilities-spectrum__eyebrow {
        font-size: clamp(14px, 2vw, 18px);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent, #ff9d5c);
        margin: 0 0 0.75rem;
    }

    .capabilities-spectrum h2 {
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
        line-height: 1.1;
        margin: 0;
    }

    .capabilities-spectrum__mosaic {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
        position: relative;
    }

    .capabilities-spectrum__mosaic::before {
        content: '';
        position: absolute;
        inset: 10%;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-xxl, 32px);
        pointer-events: none;
    }

    .capabilities-spectrum__tile {
        background: var(--surface-1, rgba(14, 16, 32, 0.8));
        backdrop-filter: blur(14px);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        position: relative;
        overflow: hidden;
        isolation: isolate;
        border: 1px solid rgba(255, 255, 255, 0.08);

        transform: translateY(40px) scale(0.97);
    }

    .capabilities-spectrum__halo {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 65%);

        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .capabilities-spectrum__tile:hover .capabilities-spectrum__halo {
        opacity: 1;
    }

    .capabilities-spectrum__meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.5rem;
    }

    .capabilities-spectrum__step {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        font-weight: 700;
        font-size: 18px;
        color: var(--accent-contrast, #0c0a0f);
        background: var(--accent, #ff9d5c);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    }

    .capabilities-spectrum__icon {
        font-size: 42px;
        color: var(--fg-on-primary);
        filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7));
    }

    .capabilities-spectrum__tile h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        color: var(--fg-on-surface-light, #f5f5ff);
    }

    .capabilities-spectrum__tile p {
        margin: 0;
        color: var(--neutral-300, rgba(255, 255, 255, 0.78));
        line-height: var(--line-height-base, 1.6);
    }

.index-feedback-summary {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-feedback-summary__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);
        transform: translateY(-18px);
    }

    .index-feedback-summary__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
    }

    .index-feedback-summary__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-feedback-summary__layout {
        display: grid;
        grid-template-columns: minmax(260px, 340px) 1fr;
        gap: clamp(16px, 3vw, 28px);
        align-items: start;
    }

    .index-feedback-summary__panel {
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        padding: clamp(18px, 3vw, 26px);
        box-shadow: var(--shadow-md);

        transform: translateY(22px);
        position: sticky;
        top: 16px;
    }

    .index-feedback-summary__kpi {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .index-feedback-summary__avg {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 22px;
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .index-feedback-summary__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 14px;
        line-height: 1;
        margin-bottom: 6px;
    }

    .index-feedback-summary__count {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-feedback-summary__note {
        color: var(--fg-on-accent);
        font-size: 14px;
    }

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

    .index-feedback-summary__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

        transform: translateY(22px);
    }

    .index-feedback-summary__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .index-feedback-summary__who {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-summary__avatar {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-summary__who h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 900;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-summary__who p {
        margin: 2px 0 0;
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-summary__chip {
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        white-space: nowrap;
    }

    .index-feedback-summary__quote {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    @media (max-width: 860px) {
        .index-feedback-summary__layout {
            grid-template-columns: 1fr;
        }

        .index-feedback-summary__panel {
            position: relative;
            top: 0;
        }
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }

    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-align: center;
        line-height: 1.2;
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .nav__link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Stil pentru burger activ (opțional, se controlează prin JS) */
    .header__burger.active .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger.active .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    /* Responsive pentru mobile */
    @media (max-width: 767px) {
        .header__container {
            flex-direction: row;
            justify-content: center;
            position: relative;
        }

        .header__logo {
            font-size: calc(var(--font-size-base) * 1.5);
        }

        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            padding: calc(var(--space-y) * 2) var(--space-x);
            box-shadow: var(--shadow-lg);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        .nav__item {
            width: 100%;
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-sm);
        }

        /* Overlay pentru mobile */
        .header__nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
            z-index: -1;
        }

        .header__nav.active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

.site-footer {
    background-color: #2d4a2d;
    color: #f0f7f0;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: auto;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c1ffc1;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #d0e0d0;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #b0c9b0;
    margin-bottom: 0.5rem;
  }
  .footer-legal-links {
    font-size: 0.8rem;
  }
  .footer-legal-links a {
    color: #a3d1a3;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu-title, .footer-contact-title {
    font-size: 1.2rem;
    color: #c1ffc1;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #3e5f3e;
    padding-bottom: 0.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a {
    color: #e0f0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact-info {
    margin-bottom: 1.5rem;
  }
  .contact-item {
    margin-bottom: 0.7rem;
    line-height: 1.5;
  }
  .contact-item a {
    color: #e0f0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-social a {
    display: inline-block;
    background-color: #3e5f3e;
    color: #f0f7f0;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #4a6f4a;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.form-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .form-layout-f label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-f input:not([type="checkbox"]), .form-layout-f textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-f .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .form-layout-f button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .form-layout-f .group {
            grid-template-columns: 1fr;
        }
    }

.contact-layout-d {
        padding: clamp(56px, 8vw, 94px) clamp(16px, 4vw, 34px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .contact-layout-d .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .contact-layout-d .box {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 18px;
        background: rgba(255, 255, 255, .05);
    }

    .contact-layout-d ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .contact-layout-d li {
        display: grid;
        gap: 4px;
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .06);
    }

    .contact-layout-d .social {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-d .social a {
        text-decoration: none;
        color: var(--neutral-0);
        border: 1px solid rgba(255, 255, 255, .28);
        padding: 6px 10px;
        border-radius: 999px;
    }

.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;
        }
    }

.support-cv3 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .support-cv3__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .support-cv3__head {
        margin-bottom: 14px;
    }

    .support-cv3__head h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .support-cv3__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv3__list {
        display: grid;
        gap: 10px;
    }

    .support-cv3__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-cv3__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-cv3__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-cv3__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }

    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-align: center;
        line-height: 1.2;
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .nav__link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Stil pentru burger activ (opțional, se controlează prin JS) */
    .header__burger.active .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger.active .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    /* Responsive pentru mobile */
    @media (max-width: 767px) {
        .header__container {
            flex-direction: row;
            justify-content: center;
            position: relative;
        }

        .header__logo {
            font-size: calc(var(--font-size-base) * 1.5);
        }

        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            padding: calc(var(--space-y) * 2) var(--space-x);
            box-shadow: var(--shadow-lg);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        .nav__item {
            width: 100%;
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-sm);
        }

        /* Overlay pentru mobile */
        .header__nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
            z-index: -1;
        }

        .header__nav.active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

.site-footer {
    background-color: #2d4a2d;
    color: #f0f7f0;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: auto;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c1ffc1;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #d0e0d0;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #b0c9b0;
    margin-bottom: 0.5rem;
  }
  .footer-legal-links {
    font-size: 0.8rem;
  }
  .footer-legal-links a {
    color: #a3d1a3;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu-title, .footer-contact-title {
    font-size: 1.2rem;
    color: #c1ffc1;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #3e5f3e;
    padding-bottom: 0.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a {
    color: #e0f0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact-info {
    margin-bottom: 1.5rem;
  }
  .contact-item {
    margin-bottom: 0.7rem;
    line-height: 1.5;
  }
  .contact-item a {
    color: #e0f0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-social a {
    display: inline-block;
    background-color: #3e5f3e;
    color: #f0f7f0;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #4a6f4a;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.terms-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--surface-1));
        color: var(--fg-on-page);
    }

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

    .terms-layout-c .section-head {
        margin-bottom: 14px;
    }

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

    .terms-layout-c .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }

    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-align: center;
        line-height: 1.2;
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .nav__link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Stil pentru burger activ (opțional, se controlează prin JS) */
    .header__burger.active .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger.active .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    /* Responsive pentru mobile */
    @media (max-width: 767px) {
        .header__container {
            flex-direction: row;
            justify-content: center;
            position: relative;
        }

        .header__logo {
            font-size: calc(var(--font-size-base) * 1.5);
        }

        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            padding: calc(var(--space-y) * 2) var(--space-x);
            box-shadow: var(--shadow-lg);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        .nav__item {
            width: 100%;
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-sm);
        }

        /* Overlay pentru mobile */
        .header__nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
            z-index: -1;
        }

        .header__nav.active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

.site-footer {
    background-color: #2d4a2d;
    color: #f0f7f0;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: auto;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c1ffc1;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #d0e0d0;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #b0c9b0;
    margin-bottom: 0.5rem;
  }
  .footer-legal-links {
    font-size: 0.8rem;
  }
  .footer-legal-links a {
    color: #a3d1a3;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu-title, .footer-contact-title {
    font-size: 1.2rem;
    color: #c1ffc1;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #3e5f3e;
    padding-bottom: 0.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a {
    color: #e0f0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact-info {
    margin-bottom: 1.5rem;
  }
  .contact-item {
    margin-bottom: 0.7rem;
    line-height: 1.5;
  }
  .contact-item a {
    color: #e0f0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-social a {
    display: inline-block;
    background-color: #3e5f3e;
    color: #f0f7f0;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #4a6f4a;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.policy-layout-b {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .policy-layout-b .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

    .policy-layout-b li {
        background: var(--bg-alt);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        padding: 12px;
    }

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

    .policy-layout-b li p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }

    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-align: center;
        line-height: 1.2;
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .nav__link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Stil pentru burger activ (opțional, se controlează prin JS) */
    .header__burger.active .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger.active .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    /* Responsive pentru mobile */
    @media (max-width: 767px) {
        .header__container {
            flex-direction: row;
            justify-content: center;
            position: relative;
        }

        .header__logo {
            font-size: calc(var(--font-size-base) * 1.5);
        }

        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            padding: calc(var(--space-y) * 2) var(--space-x);
            box-shadow: var(--shadow-lg);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        .nav__item {
            width: 100%;
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-sm);
        }

        /* Overlay pentru mobile */
        .header__nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
            z-index: -1;
        }

        .header__nav.active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

.site-footer {
    background-color: #2d4a2d;
    color: #f0f7f0;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: auto;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c1ffc1;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #d0e0d0;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #b0c9b0;
    margin-bottom: 0.5rem;
  }
  .footer-legal-links {
    font-size: 0.8rem;
  }
  .footer-legal-links a {
    color: #a3d1a3;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu-title, .footer-contact-title {
    font-size: 1.2rem;
    color: #c1ffc1;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #3e5f3e;
    padding-bottom: 0.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a {
    color: #e0f0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact-info {
    margin-bottom: 1.5rem;
  }
  .contact-item {
    margin-bottom: 0.7rem;
    line-height: 1.5;
  }
  .contact-item a {
    color: #e0f0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-social a {
    display: inline-block;
    background-color: #3e5f3e;
    color: #f0f7f0;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #4a6f4a;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.thank-mode-c {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: linear-gradient(180deg, var(--fg-on-page), var(--bg-page));
        color: var(--fg-on-page);
    }

    .thank-mode-c .panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 44px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

    .thank-mode-c h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
    }

    .thank-mode-c p {
        margin: 12px 0 0;
        color: var(--neutral-800);
    }

    .thank-mode-c a {
        display: inline-block;
        margin-top: 17px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: var(--shadow-sm);
    }

    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--space-x);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-y);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-align: center;
        line-height: 1.2;
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .nav__link {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        position: absolute;
        top: var(--space-y);
        right: var(--space-x);
    }

    .burger__line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Stil pentru burger activ (opțional, se controlează prin JS) */
    .header__burger.active .burger__line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .header__burger.active .burger__line:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active .burger__line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }

    /* Responsive pentru mobile */
    @media (max-width: 767px) {
        .header__container {
            flex-direction: row;
            justify-content: center;
            position: relative;
        }

        .header__logo {
            font-size: calc(var(--font-size-base) * 1.5);
        }

        .header__burger {
            display: flex;
        }

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            padding: calc(var(--space-y) * 2) var(--space-x);
            box-shadow: var(--shadow-lg);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        .nav__item {
            width: 100%;
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-sm);
        }

        /* Overlay pentru mobile */
        .header__nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
            z-index: -1;
        }

        .header__nav.active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

.site-footer {
    background-color: #2d4a2d;
    color: #f0f7f0;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: auto;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  .footer-column {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c1ffc1;
    margin-bottom: 1rem;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #d0e0d0;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #b0c9b0;
    margin-bottom: 0.5rem;
  }
  .footer-legal-links {
    font-size: 0.8rem;
  }
  .footer-legal-links a {
    color: #a3d1a3;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu-title, .footer-contact-title {
    font-size: 1.2rem;
    color: #c1ffc1;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #3e5f3e;
    padding-bottom: 0.5rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a {
    color: #e0f0e0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  .footer-contact-info {
    margin-bottom: 1.5rem;
  }
  .contact-item {
    margin-bottom: 0.7rem;
    line-height: 1.5;
  }
  .contact-item a {
    color: #e0f0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-social a {
    display: inline-block;
    background-color: #3e5f3e;
    color: #f0f7f0;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #4a6f4a;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .site-footer {
      padding: 2rem 1rem;
    }
  }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

    .cookie-lv8__actions button[data-choice='accept'] {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

.err-slab-b p {
    margin: 10px 0 0;
    color: var(--neutral-600);
}

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