:root {
  --font-family: "Open Sans", sans-serif;
  --font-size-base: 13.4px;
  --line-height-base: 1.4;

  --max-w: 1140px;
  --space-x: 0.61rem;
  --space-y: 1.02rem;
  --gap: 0.45rem;

  --radius-xl: 0.86rem;
  --radius-lg: 0.63rem;
  --radius-md: 0.39rem;
  --radius-sm: 0.16rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 22px rgba(0,0,0,0.07);

  --overlay: rgba(0, 0, 0, 0.65);
  --anim-duration: 150ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #FFC107;
  --brand-contrast: #1A1A1A;
  --accent: #FF5722;
  --accent-contrast: #FFFFFF;

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

  --bg-page: #FFFFFF;
  --fg-on-page: #1A1A1A;

  --bg-alt: #F8F9FA;
  --fg-on-alt: #212529;

  --surface-1: #FFFFFF;
  --surface-2: #F5F5F5;
  --fg-on-surface: #1A1A1A;
  --border-on-surface: #E0E0E0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #424242;
  --border-on-surface-light: #E0E0E0;

  --bg-primary: #FFC107;
  --fg-on-primary: #1A1A1A;
  --bg-primary-hover: #FFB300;
  --ring: #FFC107;

  --bg-accent: #FF5722;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #E64A19;

  --link: #1976D2;
  --link-hover: #0D47A1;

  --gradient-hero: linear-gradient(135deg, #1A1A1A 0%, #424242 100%);
  --gradient-accent: linear-gradient(90deg, #FFC107 0%, #FF9800 100%);

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

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

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

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}

.header__nav {
  display: flex;
}

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger__line {
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
  transform-origin: center;
}

/* Stil pentru burger când meniul este deschis */
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Offcanvas pentru mobil */
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background-color: var(--surface-2);
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav[data-state="open"] {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
  }

  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: calc(var(--font-size-base) * 1.1);
  }

  /* Overlay */
  .header__nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: -1;
  }

  .header__nav[data-state="open"]::before {
    opacity: 1;
    visibility: visible;
    left: -100vw;
  }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #95a5a6;
    }
    .footer-legal-links a:hover {
        color: #7f8c8d;
        text-decoration: underline;
    }
    .footer-contacts {
        padding: 1.5rem 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .contact-address {
        margin-bottom: 0.5rem;
        color: #555;
    }
    .contact-phone-email a {
        text-decoration: none;
        color: #3498db;
    }
    .contact-phone-email a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .current-year {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-contacts {
            grid-column: 1 / span 2;
            grid-row: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .contact-address {
            margin-bottom: 0;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 3;
            text-align: center;
            padding-top: 1rem;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.hero-arc-v6 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .hero-arc-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: calc(var(--gap) * 1.5);
    }

    .hero-arc-v6 .top {
        display: grid;
        grid-template-columns:1fr minmax(260px, .82fr);
        gap: var(--gap);
        align-items: stretch;
    }

    .hero-arc-v6 .copy {
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        display: grid;
        align-content: center;
        gap: var(--gap);
    }

    .hero-arc-v6 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.3vw, 3.5rem);
        line-height: 1.1;
    }

    .hero-arc-v6 .subtitle {
        margin: 0;
        max-width: 50ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v6 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .hero-arc-v6 .actions a {
        padding: .64rem .95rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .hero-arc-v6 .actions a:hover {
        background: var(--bg-primary-hover);
    }

    .hero-arc-v6 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border: 1px solid var(--border-on-surface);
    }

    .hero-arc-v6 .image {
        overflow: hidden;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v6 img {
        width: 100%;
        height: 100%;
        min-height: 300px;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v6 .bottom {
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v6 .bottom article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v6 .bottom p {
        margin: .3rem 0 0;
        opacity: .92;
    }

    @media (max-width: 960px) {
        .hero-arc-v6 .top {
            grid-template-columns:1fr;
        }

        .hero-arc-v6 .bottom {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

.next-fan-c5 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--brand-contrast);
    }

    .next-fan-c5__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-fan-c5__banner p {
        margin: 0;
        color: var(--neutral-900);
        font-weight: 600;
    }

    .next-fan-c5__banner h2 {
        margin: .5rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
        color: var(--neutral-900);
    }

    .next-fan-c5__fan {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-fan-c5__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-900);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--neutral-0);
        text-decoration: none;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .next-fan-c5__fan a:hover {
        background-color: var(--neutral-800);
    }

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
        font-size: 0.9em;
        color: var(--neutral-300);
    }

    .next-fan-c5__tail {
        margin-top: 1rem;
        color: var(--neutral-800);
        line-height: 1.5;
        max-width: 48rem;
        margin-left: auto;
        margin-right: auto;
    }

    .next-fan-c5__wrap > a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: 999px;
        background: var(--neutral-900);
        color: var(--brand);
        text-decoration: none;
        font-weight: 600;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .next-fan-c5__wrap > a:hover {
        background-color: var(--brand);
        color: var(--neutral-900);
        border-color: var(--neutral-900);
    }

.faq-fresh-v3 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .faq-fresh-v3 .shell {
        max-width: 920px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

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

    .faq-fresh-v3 .list {
        display: grid;
        gap: var(--gap);
        padding: 0;
        margin: 0;
        counter-reset: faqnum;
    }

    .faq-fresh-v3 li {
        list-style: none;
        padding: 1rem 1rem 1rem 3rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        position: relative;
        background: var(--surface-2);
    }

    .faq-fresh-v3 li::before {
        counter-increment: faqnum;
        content: counter(faqnum);
        position: absolute;
        left: 1rem;
        top: 1rem;
        width: 1.4rem;
        height: 1.4rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-size: .78rem;
        font-weight: 700;
    }

    .faq-fresh-v3 h3 {
        margin: 0 0 .45rem;
    }

    .faq-fresh-v3 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

.profile {

        color: var(--fg-on-page);
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-page) 100%);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .profile .profile__c {
        max-width: 900px;
        margin: 0 auto;
    }

    .profile .profile__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .profile h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .profile .profile__tabs {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: clamp(32px, 5vw, 48px);
        flex-wrap: wrap;
    }

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

    .profile .profile__tab {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .profile .profile__tab:hover {
        background: var(--bg-alt);
        border-color: var(--bg-primary);
    }

    .profile .profile__tab.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-sm);
    }

    .profile .profile__panels {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__panel {
        display: none;
    }

    .profile .profile__panel.active {
        display: block;
    }

    .profile .profile__avatar-section {
        display: flex;
        gap: clamp(24px, 4vw, 40px);
        align-items: center;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
        flex-shrink: 0;
    }

    .profile .profile__avatar-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .profile .profile__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        text-align: center;
        border: 2px solid var(--bg-primary);
    }

    .profile .profile__upload-btn input {
        display: none;
    }

    .profile .profile__upload-btn:hover {
        background: var(--bg-primary-hover);
    }

    .profile .profile__remove-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-page);
        border: 2px solid var(--ring);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .profile .profile__remove-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(239, 68, 68, 0.1);
    }

    .profile .profile__form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
        margin-bottom: clamp(20px, 3vw, 28px);
    }

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

    @media (max-width: 767px) {
        .profile .profile__form-row {
            grid-template-columns: 1fr;
        }

        .profile .profile__avatar-section {
            flex-direction: column;
            text-align: center;
        }
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: clamp(20px, 3vw, 24px);
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {
        color: var(--neutral-600);
    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .profile .profile__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
        box-shadow: var(--shadow-md);
    }

    .profile .profile__submit:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

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

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

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}

.header__nav {
  display: flex;
}

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger__line {
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
  transform-origin: center;
}

/* Stil pentru burger când meniul este deschis */
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Offcanvas pentru mobil */
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background-color: var(--surface-2);
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav[data-state="open"] {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
  }

  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: calc(var(--font-size-base) * 1.1);
  }

  /* Overlay */
  .header__nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: -1;
  }

  .header__nav[data-state="open"]::before {
    opacity: 1;
    visibility: visible;
    left: -100vw;
  }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #95a5a6;
    }
    .footer-legal-links a:hover {
        color: #7f8c8d;
        text-decoration: underline;
    }
    .footer-contacts {
        padding: 1.5rem 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .contact-address {
        margin-bottom: 0.5rem;
        color: #555;
    }
    .contact-phone-email a {
        text-decoration: none;
        color: #3498db;
    }
    .contact-phone-email a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .current-year {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-contacts {
            grid-column: 1 / span 2;
            grid-row: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .contact-address {
            margin-bottom: 0;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 3;
            text-align: center;
            padding-top: 1rem;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.profile {

        color: var(--fg-on-page);
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-page) 100%);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .profile .profile__c {
        max-width: 900px;
        margin: 0 auto;
    }

    .profile .profile__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .profile h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .profile .profile__tabs {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: clamp(32px, 5vw, 48px);
        flex-wrap: wrap;
    }

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

    .profile .profile__tab {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .profile .profile__tab:hover {
        background: var(--bg-alt);
        border-color: var(--bg-primary);
    }

    .profile .profile__tab.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-sm);
    }

    .profile .profile__panels {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__panel {
        display: none;
    }

    .profile .profile__panel.active {
        display: block;
    }

    .profile .profile__avatar-section {
        display: flex;
        gap: clamp(24px, 4vw, 40px);
        align-items: center;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
        flex-shrink: 0;
    }

    .profile .profile__avatar-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .profile .profile__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        text-align: center;
        border: 2px solid var(--bg-primary);
    }

    .profile .profile__upload-btn input {
        display: none;
    }

    .profile .profile__upload-btn:hover {
        background: var(--bg-primary-hover);
    }

    .profile .profile__remove-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-page);
        border: 2px solid var(--ring);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .profile .profile__remove-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(239, 68, 68, 0.1);
    }

    .profile .profile__form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
        margin-bottom: clamp(20px, 3vw, 28px);
    }

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

    @media (max-width: 767px) {
        .profile .profile__form-row {
            grid-template-columns: 1fr;
        }

        .profile .profile__avatar-section {
            flex-direction: column;
            text-align: center;
        }
    }

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: clamp(20px, 3vw, 24px);
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {
        color: var(--neutral-600);
    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .profile .profile__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
        box-shadow: var(--shadow-md);
    }

    .profile .profile__submit:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.support-lv1 {
        padding: clamp(50px, 7vw, 88px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .support-lv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

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

    .support-lv1__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

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

    .support-lv1__grid h3 {
        margin: 0 0 6px;
    }

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

    .support-lv1__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 900px) {
        .support-lv1__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .support-lv1__grid {
            grid-template-columns: 1fr;
        }
    }

.security--colored-v5 {
    padding: 64px 20px;
    background: radial-gradient(circle at top left, rgba(255, 193, 7, 0.15), transparent),
                radial-gradient(circle at bottom right, rgba(255, 87, 34, 0.2), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

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

.security__hero {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
}

.security__icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: var(--accent);
    color: var(--fg-on-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.security__content h2 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,30px);
    color: var(--brand);
}

.security__content p {
    margin: 0;
    color: var(--neutral-300);
}

.security__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 14px;
}

.security__card {
    border-radius: var(--radius-xl);
    padding: 14px 16px;
    background: rgba(26, 26, 26, 0.96);
    border: 1px solid rgba(224, 224, 224, 0.3);
}

.security__card--critical {
    border-color: var(--accent);
    background: rgba(255, 87, 34, 0.05);
}

.security__card--accent {
    border-color: var(--brand);
    background: rgba(255, 193, 7, 0.05);
}

.security__card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--neutral-0);
}

.security__card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

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

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

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}

.header__nav {
  display: flex;
}

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger__line {
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
  transform-origin: center;
}

/* Stil pentru burger când meniul este deschis */
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Offcanvas pentru mobil */
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background-color: var(--surface-2);
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav[data-state="open"] {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
  }

  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: calc(var(--font-size-base) * 1.1);
  }

  /* Overlay */
  .header__nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: -1;
  }

  .header__nav[data-state="open"]::before {
    opacity: 1;
    visibility: visible;
    left: -100vw;
  }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #95a5a6;
    }
    .footer-legal-links a:hover {
        color: #7f8c8d;
        text-decoration: underline;
    }
    .footer-contacts {
        padding: 1.5rem 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .contact-address {
        margin-bottom: 0.5rem;
        color: #555;
    }
    .contact-phone-email a {
        text-decoration: none;
        color: #3498db;
    }
    .contact-phone-email a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .current-year {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-contacts {
            grid-column: 1 / span 2;
            grid-row: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .contact-address {
            margin-bottom: 0;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 3;
            text-align: center;
            padding-top: 1rem;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.settings {

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

    .settings .settings__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .settings .settings__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 64px);
    }

    .settings h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .settings .settings__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
    }

    .settings .settings__layout {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: start;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .settings .settings__layout > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 1023px) {
        .settings .settings__layout {
            grid-template-columns: 1fr;
        }
    }

    .settings .settings__sidebar {
        position: sticky;
        top: 20px;
    }

    .settings .settings__nav {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2.5vw, 24px);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .settings .settings__nav > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__nav-link {
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 500;
    }

    .settings .settings__nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .settings .settings__nav-link.active {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

    .settings .settings__nav-icon {
        font-size: 1.25rem;
        width: 24px;
        text-align: center;
    }

    .settings .settings__main {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
    }

    .settings .settings__panel {
        display: none;
    }

    .settings .settings__panel.active {
        display: block;
    }

    .settings .settings__panel h2 {
        margin: 0 0 clamp(24px, 4vw, 32px);
        font-size: clamp(24px, 3.5vw, 28px);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .settings .settings__avatar-section {
        display: flex;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
        margin-bottom: clamp(24px, 4vw, 32px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .settings .settings__avatar-section > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
        border: 4px solid rgba(255, 255, 255, 0.3);
    }

    .settings .settings__avatar-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .settings .settings__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.2);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        text-align: center;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .settings .settings__upload-btn input {
        display: none;
    }

    .settings .settings__upload-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .settings .settings__remove-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-primary);
        border: 2px solid rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .settings .settings__remove-btn:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    .settings .settings__form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .settings .settings__form-grid > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 767px) {
        .settings .settings__form-grid {
            grid-template-columns: 1fr;
        }
    }

    .settings .settings__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: clamp(20px, 3vw, 28px);
    }

    .settings .settings__form-group label {
        font-weight: 600;
        color: var(--fg-on-primary);
        font-size: 0.875rem;
    }

    .settings .settings__form-group input,
    .settings .settings__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__form-group input::placeholder,
    .settings .settings__form-group textarea::placeholder {

    }

    .settings .settings__form-group input:focus,
    .settings .settings__form-group textarea:focus {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    }

    .settings .settings__form-actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(24px, 4vw, 32px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .settings .settings__form-actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .settings .settings__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .settings .settings__submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .settings .settings__cancel {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: transparent;
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__cancel:hover {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 1023px) {
        .settings .settings__sidebar {
            position: static;
        }
    }

.security--colored-v5 {
    padding: 64px 20px;
    background: radial-gradient(circle at top left, rgba(255, 193, 7, 0.15), transparent),
                radial-gradient(circle at bottom right, rgba(255, 87, 34, 0.2), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

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

.security__hero {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
}

.security__icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: var(--accent);
    color: var(--fg-on-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.security__content h2 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,30px);
    color: var(--brand);
}

.security__content p {
    margin: 0;
    color: var(--neutral-300);
}

.security__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 14px;
}

.security__card {
    border-radius: var(--radius-xl);
    padding: 14px 16px;
    background: rgba(26, 26, 26, 0.96);
    border: 1px solid rgba(224, 224, 224, 0.3);
}

.security__card--critical {
    border-color: var(--accent);
    background: rgba(255, 87, 34, 0.05);
}

.security__card--accent {
    border-color: var(--brand);
    background: rgba(255, 193, 7, 0.05);
}

.security__card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--neutral-0);
}

.security__card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

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

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

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}

.header__nav {
  display: flex;
}

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger__line {
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
  transform-origin: center;
}

/* Stil pentru burger când meniul este deschis */
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Offcanvas pentru mobil */
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background-color: var(--surface-2);
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav[data-state="open"] {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
  }

  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: calc(var(--font-size-base) * 1.1);
  }

  /* Overlay */
  .header__nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: -1;
  }

  .header__nav[data-state="open"]::before {
    opacity: 1;
    visibility: visible;
    left: -100vw;
  }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #95a5a6;
    }
    .footer-legal-links a:hover {
        color: #7f8c8d;
        text-decoration: underline;
    }
    .footer-contacts {
        padding: 1.5rem 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .contact-address {
        margin-bottom: 0.5rem;
        color: #555;
    }
    .contact-phone-email a {
        text-decoration: none;
        color: #3498db;
    }
    .contact-phone-email a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .current-year {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-contacts {
            grid-column: 1 / span 2;
            grid-row: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .contact-address {
            margin-bottom: 0;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 3;
            text-align: center;
            padding-top: 1rem;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.activity {

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

    .activity .activity__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .activity .activity__h {
        margin-bottom: var(--space-y);
    }

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

    .activity .activity__timeline {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--ring);
    }

    .activity .activity__item {
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__item::before {
        content: '';
        position: absolute;
        left: -1.625rem;
        top: 0.5rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 2px solid var(--bg-page);
    }

    .activity .activity__date {
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .activity .activity__content {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

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

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

.about-timeline {

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

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

    .about-timeline .about-timeline__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .about-timeline .about-timeline__cell {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
    }

    .about-timeline time {
        opacity: .9;
    }

    @media (max-width: 767px) {
        .about-timeline .about-timeline__grid {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

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

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

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}

.header__nav {
  display: flex;
}

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger__line {
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
  transform-origin: center;
}

/* Stil pentru burger când meniul este deschis */
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Offcanvas pentru mobil */
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background-color: var(--surface-2);
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav[data-state="open"] {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
  }

  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: calc(var(--font-size-base) * 1.1);
  }

  /* Overlay */
  .header__nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: -1;
  }

  .header__nav[data-state="open"]::before {
    opacity: 1;
    visibility: visible;
    left: -100vw;
  }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #95a5a6;
    }
    .footer-legal-links a:hover {
        color: #7f8c8d;
        text-decoration: underline;
    }
    .footer-contacts {
        padding: 1.5rem 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .contact-address {
        margin-bottom: 0.5rem;
        color: #555;
    }
    .contact-phone-email a {
        text-decoration: none;
        color: #3498db;
    }
    .contact-phone-email a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .current-year {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-contacts {
            grid-column: 1 / span 2;
            grid-row: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .contact-address {
            margin-bottom: 0;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 3;
            text-align: center;
            padding-top: 1rem;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.security--colored-v5 {
    padding: 64px 20px;
    background: radial-gradient(circle at top left, rgba(255, 193, 7, 0.15), transparent),
                radial-gradient(circle at bottom right, rgba(255, 87, 34, 0.2), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

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

.security__hero {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
}

.security__icon {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: var(--accent);
    color: var(--fg-on-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.security__content h2 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,30px);
    color: var(--brand);
}

.security__content p {
    margin: 0;
    color: var(--neutral-300);
}

.security__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 14px;
}

.security__card {
    border-radius: var(--radius-xl);
    padding: 14px 16px;
    background: rgba(26, 26, 26, 0.96);
    border: 1px solid rgba(224, 224, 224, 0.3);
}

.security__card--critical {
    border-color: var(--accent);
    background: rgba(255, 87, 34, 0.05);
}

.security__card--accent {
    border-color: var(--brand);
    background: rgba(255, 193, 7, 0.05);
}

.security__card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--neutral-0);
}

.security__card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.support-lv1 {
        padding: clamp(50px, 7vw, 88px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .support-lv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

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

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

    .support-lv1__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

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

    .support-lv1__grid h3 {
        margin: 0 0 6px;
    }

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

    .support-lv1__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 900px) {
        .support-lv1__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .support-lv1__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}

.header__nav {
  display: flex;
}

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger__line {
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
  transform-origin: center;
}

/* Stil pentru burger când meniul este deschis */
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Offcanvas pentru mobil */
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background-color: var(--surface-2);
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav[data-state="open"] {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
  }

  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: calc(var(--font-size-base) * 1.1);
  }

  /* Overlay */
  .header__nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: -1;
  }

  .header__nav[data-state="open"]::before {
    opacity: 1;
    visibility: visible;
    left: -100vw;
  }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #95a5a6;
    }
    .footer-legal-links a:hover {
        color: #7f8c8d;
        text-decoration: underline;
    }
    .footer-contacts {
        padding: 1.5rem 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .contact-address {
        margin-bottom: 0.5rem;
        color: #555;
    }
    .contact-phone-email a {
        text-decoration: none;
        color: #3498db;
    }
    .contact-phone-email a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .current-year {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-contacts {
            grid-column: 1 / span 2;
            grid-row: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .contact-address {
            margin-bottom: 0;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 3;
            text-align: center;
            padding-top: 1rem;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

    .form-layout-c .steps {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
    }

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

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

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

.nfcontacts-v10 {
        padding: clamp(56px, 8vw, 94px) clamp(16px, 4vw, 34px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nfcontacts-v10__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .nfcontacts-v10__head {
        margin-bottom: 14px;
    }

    .nfcontacts-v10 h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--brand);
    }

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

    .nfcontacts-v10__rows {
        display: grid;
        gap: 8px;
    }

    .nfcontacts-v10__row {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: grid;
        gap: 4px;
    }

    .nfcontacts-v10__row strong {
        color: var(--neutral-900);
    }

    .nfcontacts-v10__row span {
        color: var(--neutral-800);
    }

    .nfcontacts-v10__row a {
        color: var(--link);
        text-decoration: none;
    }

    .nfcontacts-v10__row a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .nfcontacts-v10__social {
        margin-top: 12px;
    }

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

    .nfcontacts-v10__social div {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfcontacts-v10__social a {
        text-decoration: none;
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
        padding: 6px 10px;
        background-color: var(--surface-1);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .nfcontacts-v10__social a:hover {
        background-color: var(--brand);
        color: var(--brand-contrast);
        border-color: var(--brand);
    }

.connect {
        color: var(--accent-contrast);
        background: var(--accent);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .connect .connect__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        margin: 0;
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__name {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

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

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

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}

.header__nav {
  display: flex;
}

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger__line {
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
  transform-origin: center;
}

/* Stil pentru burger când meniul este deschis */
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Offcanvas pentru mobil */
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background-color: var(--surface-2);
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav[data-state="open"] {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
  }

  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: calc(var(--font-size-base) * 1.1);
  }

  /* Overlay */
  .header__nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: -1;
  }

  .header__nav[data-state="open"]::before {
    opacity: 1;
    visibility: visible;
    left: -100vw;
  }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #95a5a6;
    }
    .footer-legal-links a:hover {
        color: #7f8c8d;
        text-decoration: underline;
    }
    .footer-contacts {
        padding: 1.5rem 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .contact-address {
        margin-bottom: 0.5rem;
        color: #555;
    }
    .contact-phone-email a {
        text-decoration: none;
        color: #3498db;
    }
    .contact-phone-email a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .current-year {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-contacts {
            grid-column: 1 / span 2;
            grid-row: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .contact-address {
            margin-bottom: 0;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 3;
            text-align: center;
            padding-top: 1rem;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

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

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

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

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

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

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

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

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}

.header__nav {
  display: flex;
}

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger__line {
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
  transform-origin: center;
}

/* Stil pentru burger când meniul este deschis */
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Offcanvas pentru mobil */
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background-color: var(--surface-2);
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav[data-state="open"] {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
  }

  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: calc(var(--font-size-base) * 1.1);
  }

  /* Overlay */
  .header__nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: -1;
  }

  .header__nav[data-state="open"]::before {
    opacity: 1;
    visibility: visible;
    left: -100vw;
  }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #95a5a6;
    }
    .footer-legal-links a:hover {
        color: #7f8c8d;
        text-decoration: underline;
    }
    .footer-contacts {
        padding: 1.5rem 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .contact-address {
        margin-bottom: 0.5rem;
        color: #555;
    }
    .contact-phone-email a {
        text-decoration: none;
        color: #3498db;
    }
    .contact-phone-email a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .current-year {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-contacts {
            grid-column: 1 / span 2;
            grid-row: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .contact-address {
            margin-bottom: 0;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 3;
            text-align: center;
            padding-top: 1rem;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

    .terms-layout-b .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

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

    .terms-layout-b h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

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

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

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

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

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}

.header__nav {
  display: flex;
}

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger__line {
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
  transform-origin: center;
}

/* Stil pentru burger când meniul este deschis */
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Offcanvas pentru mobil */
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background-color: var(--surface-2);
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav[data-state="open"] {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
  }

  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: calc(var(--font-size-base) * 1.1);
  }

  /* Overlay */
  .header__nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: -1;
  }

  .header__nav[data-state="open"]::before {
    opacity: 1;
    visibility: visible;
    left: -100vw;
  }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #95a5a6;
    }
    .footer-legal-links a:hover {
        color: #7f8c8d;
        text-decoration: underline;
    }
    .footer-contacts {
        padding: 1.5rem 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .contact-address {
        margin-bottom: 0.5rem;
        color: #555;
    }
    .contact-phone-email a {
        text-decoration: none;
        color: #3498db;
    }
    .contact-phone-email a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .current-year {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-contacts {
            grid-column: 1 / span 2;
            grid-row: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .contact-address {
            margin-bottom: 0;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 3;
            text-align: center;
            padding-top: 1rem;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.nfthank-v9 {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nfthank-v9__panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: var(--radius-lg);
        padding: clamp(30px, 4vw, 44px);
        background: rgba(255, 255, 255, .06);
    }

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

    .nfthank-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nfthank-v9 a {
        display: inline-block;
        margin-top: 17px;
        color: var(--accent-contrast);
        text-decoration: none;
        border-bottom: 2px solid var(--accent-contrast);
        padding-bottom: 2px;
    }

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

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

.header__logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header__logo:hover {
  color: var(--accent);
}

.header__nav {
  display: flex;
}

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

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

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger__line {
  width: 100%;
  height: 2px;
  background-color: var(--fg-on-surface);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
  transform-origin: center;
}

/* Stil pentru burger când meniul este deschis */
.header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}
.header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Offcanvas pentru mobil */
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background-color: var(--surface-2);
    color: var(--fg-on-surface);
    padding: calc(var(--space-y) * 3) var(--space-x);
    transform: translateX(100%);
    transition: transform var(--anim-duration) var(--anim-ease);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .header__nav[data-state="open"] {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
  }

  .nav__link {
    display: block;
    padding: var(--space-y) var(--space-x);
    font-size: calc(var(--font-size-base) * 1.1);
  }

  /* Overlay */
  .header__nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: -1;
  }

  .header__nav[data-state="open"]::before {
    opacity: 1;
    visibility: visible;
    left: -100vw;
  }
}

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
    }
    .footer-brand .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-brand .tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-right {
        margin-bottom: 2rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .footer-legal-links a {
        text-decoration: none;
        color: #95a5a6;
    }
    .footer-legal-links a:hover {
        color: #7f8c8d;
        text-decoration: underline;
    }
    .footer-contacts {
        padding: 1.5rem 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .contact-address {
        margin-bottom: 0.5rem;
        color: #555;
    }
    .contact-phone-email a {
        text-decoration: none;
        color: #3498db;
    }
    .contact-phone-email a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .current-year {
        font-weight: 600;
    }
    @media (min-width: 768px) {
        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 1.5rem;
        }
        .footer-brand {
            grid-column: 1;
            grid-row: 1;
            margin-bottom: 0;
        }
        .footer-right {
            grid-column: 2;
            grid-row: 1;
            margin-bottom: 0;
            text-align: right;
        }
        .footer-nav ul {
            justify-content: flex-end;
        }
        .footer-legal-links {
            justify-content: flex-end;
        }
        .footer-contacts {
            grid-column: 1 / span 2;
            grid-row: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .contact-address {
            margin-bottom: 0;
        }
        .footer-bottom {
            grid-column: 1 / span 2;
            grid-row: 3;
            text-align: center;
            padding-top: 1rem;
        }
    }
    @media (max-width: 767px) {
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .footer-legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.err-slab-a .box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

.err-slab-a a {
    display: inline-block;
    margin-top: 18px;
    padding: 11px 18px;
    border-radius: var(--radius-md);
    background: var(--surface-1);
    color: var(--fg-on-page);
    text-decoration: none;
}