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

  --max-w: 1380px;
  --space-x: 1.9rem;
  --space-y: 1.5rem;
  --gap: 2.14rem;

  --radius-xl: 1.14rem;
  --radius-lg: 1rem;
  --radius-md: 0.55rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.16);
  --shadow-md: 0 8px 22px rgba(0,0,0,0.21);
  --shadow-lg: 0 22px 32px rgba(0,0,0,0.25);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 430ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

  --brand: #0056b3;
  --brand-contrast: #ffffff;
  --accent: #00a8e8;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  --bg-page: #ffffff;
  --fg-on-page: #212529;

  --bg-alt: #f8f9fa;
  --fg-on-alt: #495057;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #dee2e6;

  --surface-light: #ffffff;
  --fg-on-surface-light: #495057;
  --border-on-surface-light: #ced4da;

  --bg-primary: #0056b3;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004494;
  --ring: rgba(0, 86, 179, 0.4);

  --bg-accent: #e6f7ff;
  --fg-on-accent: #003f5c;
  --bg-accent-hover: #0091cc;

  --link: #0056b3;
  --link-hover: #003f7a;

  --gradient-hero: linear-gradient(135deg, #0056b3 0%, #00a8e8 100%);
  --gradient-accent: linear-gradient(90deg, #e6f7ff 0%, #f0f9ff 100%);

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

.site-header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 100;
        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;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-link {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo-link:hover {
        color: var(--accent);
    }

    .nav-group {
        display: flex;
        gap: var(--gap);
    }

    .left-nav,
    .right-nav {
        display: flex;
    }

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

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 2.5rem;
        height: 2.5rem;
        flex-direction: column;
        justify-content: space-around;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        z-index: 99;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-inner {
        background-color: var(--surface-1);
        width: 90%;
        max-width: 400px;
        border-radius: var(--radius-lg);
        padding: calc(var(--space-y) * 2);
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
        box-shadow: var(--shadow-lg);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        font-size: calc(var(--font-size-base) * 1.2);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 767px) {
        .left-nav,
        .right-nav {
            display: none;
        }

        .burger-btn {
            display: flex;
        }

        .logo {
            position: static;
            transform: none;
            margin-right: auto;
        }

        .header-container {
            justify-content: flex-start;
        }

        .mobile-nav.active {
            display: flex;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #555;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 1px;
        color: #2c3e50;
    }
    .footer-tagline {
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
        color: #95a5a6;
    }
    .footer-legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
    }
    .footer-disclaimer {
        margin: 0 auto 1rem;
        max-width: 800px;
        font-style: italic;
        line-height: 1.5;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.intro-band {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .intro-band .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .intro-band .eyebrow {
        margin: 0 0 8px;
        opacity: 0.9;
    }

    .intro-band h1 {
        margin: 0 0 10px;
        font-size: clamp(34px, 5.6vw, 60px);
    }

    .intro-band .lead {
        margin: 0 0 16px;
        max-width: 70ch;
        opacity: 0.9;
    }

    .intro-band .row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .intro-band .fact {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        padding: 12px;
    }

    .intro-band .label {
        margin: 0;
        opacity: 0.85;
    }

    .intro-band .number {
        margin: 6px 0 0;
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 600;
    }

    .intro-band .actions {
        margin-top: 16px;
    }

    .intro-band .actions a {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
    }

.values-beads-c3 {
        padding: clamp(3.5rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

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

    .values-beads-c3__head {
        margin-bottom: 1.1rem;
    }

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

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

    .values-beads-c3__head span {
        display: block;
        margin-top: .8rem;

    }

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

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

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

    .values-beads-c3__top i {
        font-style: normal;
    }

    .values-beads-c3__top strong {
        color: var(--bg-accent);
    }

    .values-beads-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-beads-c3__grid p {
        margin: 0;

    }

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

.next-signal-c7 {
        padding: clamp(3.7rem, 8vw, 6.3rem) var(--space-x);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .next-signal-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 1rem;
        align-items: center;
    }

    .next-signal-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

    .next-signal-c7__copy h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .next-signal-c7__copy span {
        display: block;
        margin-top: .85rem;

    }

    .next-signal-c7__stack {
        display: grid;
        gap: .7rem;
    }

    .next-signal-c7__stack a {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        padding: .9rem 1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .next-signal-c7__stack span {
        color: rgba(255, 255, 255, .8);
    }

    .next-signal-c7__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

    @media (max-width: 820px) {
        .next-signal-c7__wrap {
            grid-template-columns: 1fr;
        }
    }

.why-choose-light-alt {

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

    .why-choose-light-alt .why-choose-light-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    }

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

    .why-choose-light-alt h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            opacity: 1;
            transform: scaleX(1);
        }
        50% {
            opacity: 0.4;
            transform: scaleX(0.8);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

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

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

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

    .why-choose-light-alt .why-choose-light-alt__wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
        var(--bg-primary) 0%,
        var(--accent) 50%,
        var(--bg-primary) 100%);
        background-size: 200% 100%;
        animation: wave 3s linear infinite;

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

    @keyframes wave {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 0%;
        }
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover .why-choose-light-alt__wave {
        opacity: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        animation: sparkle 4s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        10% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
        20%, 80% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        90% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
    }

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

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

    .why-choose-light-alt .why-choose-light-alt__item h3::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        transition: height var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover h3::before {
        height: 100%;
    }

    .why-choose-light-alt .why-choose-light-alt__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.site-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: 100;
        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;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-link {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo-link:hover {
        color: var(--accent);
    }

    .nav-group {
        display: flex;
        gap: var(--gap);
    }

    .left-nav,
    .right-nav {
        display: flex;
    }

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

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 2.5rem;
        height: 2.5rem;
        flex-direction: column;
        justify-content: space-around;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        z-index: 99;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-inner {
        background-color: var(--surface-1);
        width: 90%;
        max-width: 400px;
        border-radius: var(--radius-lg);
        padding: calc(var(--space-y) * 2);
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
        box-shadow: var(--shadow-lg);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        font-size: calc(var(--font-size-base) * 1.2);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 767px) {
        .left-nav,
        .right-nav {
            display: none;
        }

        .burger-btn {
            display: flex;
        }

        .logo {
            position: static;
            transform: none;
            margin-right: auto;
        }

        .header-container {
            justify-content: flex-start;
        }

        .mobile-nav.active {
            display: flex;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #555;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 1px;
        color: #2c3e50;
    }
    .footer-tagline {
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
        color: #95a5a6;
    }
    .footer-legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
    }
    .footer-disclaimer {
        margin: 0 auto 1rem;
        max-width: 800px;
        font-style: italic;
        line-height: 1.5;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.product-list {

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

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

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 4vw, 48px);
    }

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

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

    .product-list .product-list__filters {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        margin-bottom: clamp(32px, 5vw, 48px);
        justify-content: center;
    }

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

    .product-list .product-list__filter {
        padding: 0.625rem 1.25rem;
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        backdrop-filter: blur(8px);
        font-weight: 500;
    }

    .product-list .product-list__filter:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

    .product-list .product-list__masonry {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: clamp(20px, 3vw, 32px);
        grid-auto-rows: auto;
    }

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

    .product-list .product-list__card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
    }

    .product-list .product-list__card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .product-list .product-list__image-wrapper {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

    .product-list .product-list__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__image {
        transform: scale(1.1);
    }

    .product-list .product-list__badge {
        position: absolute;
        top: 12px;
        right: 12px;
        padding: 0.375rem 0.75rem;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .product-list .product-list__content {
        padding: clamp(20px, 2.5vw, 28px);
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .product-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.4vw, 22px);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .product-list .product-list__description {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
        margin: 0 0 1.25rem;
        font-size: 0.9rem;
        flex: 1;
    }

    .product-list .product-list__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-top: auto;
    }

    .product-list .product-list__price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--fg-on-primary);
        margin: 0;
    }

    .product-list .product-list__btn {
        padding: 0.625rem 1.25rem;
        border-radius: var(--radius-md);
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    .product-list .product-list__btn:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 767px) {
        .product-list .product-list__masonry {
            grid-template-columns: 1fr;
        }

        .product-list .product-list__footer {
            flex-direction: column;
            align-items: stretch;
        }

        .product-list .product-list__btn {
            width: 100%;
            text-align: center;
        }
    }

.education-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

    .education-struct-v2 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .education-struct-v2 h2, .education-struct-v2 h3, .education-struct-v2 p {
        margin: 0
    }

    .education-struct-v2 a {
        text-decoration: none
    }

    .education-struct-v2 article, .education-struct-v2 .row, .education-struct-v2 details, .education-struct-v2 .program {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .education-struct-v2 .grid, .education-struct-v2 .tiers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .education-struct-v2 .grid a, .education-struct-v2 .tiers a, .education-struct-v2 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v2 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v2 .path article {
        position: relative;
        padding-left: 1.25rem
    }

    .education-struct-v2 .path article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .education-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v2 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v2 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v2 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v2 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo, .education-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

.site-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: 100;
        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;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-link {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo-link:hover {
        color: var(--accent);
    }

    .nav-group {
        display: flex;
        gap: var(--gap);
    }

    .left-nav,
    .right-nav {
        display: flex;
    }

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

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 2.5rem;
        height: 2.5rem;
        flex-direction: column;
        justify-content: space-around;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        z-index: 99;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-inner {
        background-color: var(--surface-1);
        width: 90%;
        max-width: 400px;
        border-radius: var(--radius-lg);
        padding: calc(var(--space-y) * 2);
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
        box-shadow: var(--shadow-lg);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        font-size: calc(var(--font-size-base) * 1.2);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 767px) {
        .left-nav,
        .right-nav {
            display: none;
        }

        .burger-btn {
            display: flex;
        }

        .logo {
            position: static;
            transform: none;
            margin-right: auto;
        }

        .header-container {
            justify-content: flex-start;
        }

        .mobile-nav.active {
            display: flex;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #555;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 1px;
        color: #2c3e50;
    }
    .footer-tagline {
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
        color: #95a5a6;
    }
    .footer-legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
    }
    .footer-disclaimer {
        margin: 0 auto 1rem;
        max-width: 800px;
        font-style: italic;
        line-height: 1.5;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.product-item--light-v6 {
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.product-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
}

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

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

.gallery--colored-v5 {
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.gallery__header {
    text-align: center;
    margin-bottom: 24px;
}

.gallery__header h2 {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

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

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

.gallery__item--featured {
    border-color: var(--accent);
}

.gallery__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

.site-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: 100;
        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;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-link {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo-link:hover {
        color: var(--accent);
    }

    .nav-group {
        display: flex;
        gap: var(--gap);
    }

    .left-nav,
    .right-nav {
        display: flex;
    }

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

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 2.5rem;
        height: 2.5rem;
        flex-direction: column;
        justify-content: space-around;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        z-index: 99;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-inner {
        background-color: var(--surface-1);
        width: 90%;
        max-width: 400px;
        border-radius: var(--radius-lg);
        padding: calc(var(--space-y) * 2);
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
        box-shadow: var(--shadow-lg);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        font-size: calc(var(--font-size-base) * 1.2);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 767px) {
        .left-nav,
        .right-nav {
            display: none;
        }

        .burger-btn {
            display: flex;
        }

        .logo {
            position: static;
            transform: none;
            margin-right: auto;
        }

        .header-container {
            justify-content: flex-start;
        }

        .mobile-nav.active {
            display: flex;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #555;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 1px;
        color: #2c3e50;
    }
    .footer-tagline {
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
        color: #95a5a6;
    }
    .footer-legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
    }
    .footer-disclaimer {
        margin: 0 auto 1rem;
        max-width: 800px;
        font-style: italic;
        line-height: 1.5;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.product-item--light-v6 {
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.product-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
}

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

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

.values-beads-c3 {
        padding: clamp(3.5rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

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

    .values-beads-c3__head {
        margin-bottom: 1.1rem;
    }

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

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

    .values-beads-c3__head span {
        display: block;
        margin-top: .8rem;

    }

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

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

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

    .values-beads-c3__top i {
        font-style: normal;
    }

    .values-beads-c3__top strong {
        color: var(--bg-accent);
    }

    .values-beads-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-beads-c3__grid p {
        margin: 0;

    }

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

.site-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: 100;
        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;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-link {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo-link:hover {
        color: var(--accent);
    }

    .nav-group {
        display: flex;
        gap: var(--gap);
    }

    .left-nav,
    .right-nav {
        display: flex;
    }

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

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 2.5rem;
        height: 2.5rem;
        flex-direction: column;
        justify-content: space-around;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        z-index: 99;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-inner {
        background-color: var(--surface-1);
        width: 90%;
        max-width: 400px;
        border-radius: var(--radius-lg);
        padding: calc(var(--space-y) * 2);
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
        box-shadow: var(--shadow-lg);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        font-size: calc(var(--font-size-base) * 1.2);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 767px) {
        .left-nav,
        .right-nav {
            display: none;
        }

        .burger-btn {
            display: flex;
        }

        .logo {
            position: static;
            transform: none;
            margin-right: auto;
        }

        .header-container {
            justify-content: flex-start;
        }

        .mobile-nav.active {
            display: flex;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #555;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 1px;
        color: #2c3e50;
    }
    .footer-tagline {
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
        color: #95a5a6;
    }
    .footer-legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
    }
    .footer-disclaimer {
        margin: 0 auto 1rem;
        max-width: 800px;
        font-style: italic;
        line-height: 1.5;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.product-item--light-v6 {
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.product-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
}

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

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

.site-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: 100;
        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;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-link {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo-link:hover {
        color: var(--accent);
    }

    .nav-group {
        display: flex;
        gap: var(--gap);
    }

    .left-nav,
    .right-nav {
        display: flex;
    }

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

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 2.5rem;
        height: 2.5rem;
        flex-direction: column;
        justify-content: space-around;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        z-index: 99;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-inner {
        background-color: var(--surface-1);
        width: 90%;
        max-width: 400px;
        border-radius: var(--radius-lg);
        padding: calc(var(--space-y) * 2);
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
        box-shadow: var(--shadow-lg);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        font-size: calc(var(--font-size-base) * 1.2);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 767px) {
        .left-nav,
        .right-nav {
            display: none;
        }

        .burger-btn {
            display: flex;
        }

        .logo {
            position: static;
            transform: none;
            margin-right: auto;
        }

        .header-container {
            justify-content: flex-start;
        }

        .mobile-nav.active {
            display: flex;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #555;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 1px;
        color: #2c3e50;
    }
    .footer-tagline {
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
        color: #95a5a6;
    }
    .footer-legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
    }
    .footer-disclaimer {
        margin: 0 auto 1rem;
        max-width: 800px;
        font-style: italic;
        line-height: 1.5;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.education-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

    .education-struct-v2 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .education-struct-v2 h2, .education-struct-v2 h3, .education-struct-v2 p {
        margin: 0
    }

    .education-struct-v2 a {
        text-decoration: none
    }

    .education-struct-v2 article, .education-struct-v2 .row, .education-struct-v2 details, .education-struct-v2 .program {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .education-struct-v2 .grid, .education-struct-v2 .tiers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .education-struct-v2 .grid a, .education-struct-v2 .tiers a, .education-struct-v2 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v2 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v2 .path article {
        position: relative;
        padding-left: 1.25rem
    }

    .education-struct-v2 .path article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .education-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v2 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v2 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v2 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v2 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo, .education-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

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

    .nfform-v10__form {
        max-width: 760px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

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

    .nfform-v10__steps {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfform-v10__steps span {
        padding: 4px 8px;
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .nfform-v10 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v10 label strong {
        color: var(--neutral-800);
        font-size: .9rem;
    }

    .nfform-v10 input {
        width: 100%;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

    .nfform-v10 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

.contacts-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .contacts-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    }

    .contacts-fresh-v1 .intro p {
        max-width: 56ch;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v1 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap);
    }

    .contacts-fresh-v1 article {
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .contacts-fresh-v1 h3 {
        margin: 0 0 .6rem;
    }

    .contacts-fresh-v1 .value {
        margin: 0;
        font-weight: 700;
    }

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

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

    @media (max-width: 900px) {
        .contacts-fresh-v1 .cards {
            grid-template-columns:1fr;
        }
    }

.site-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: 100;
        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;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-link {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo-link:hover {
        color: var(--accent);
    }

    .nav-group {
        display: flex;
        gap: var(--gap);
    }

    .left-nav,
    .right-nav {
        display: flex;
    }

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

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 2.5rem;
        height: 2.5rem;
        flex-direction: column;
        justify-content: space-around;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        z-index: 99;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-inner {
        background-color: var(--surface-1);
        width: 90%;
        max-width: 400px;
        border-radius: var(--radius-lg);
        padding: calc(var(--space-y) * 2);
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
        box-shadow: var(--shadow-lg);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        font-size: calc(var(--font-size-base) * 1.2);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 767px) {
        .left-nav,
        .right-nav {
            display: none;
        }

        .burger-btn {
            display: flex;
        }

        .logo {
            position: static;
            transform: none;
            margin-right: auto;
        }

        .header-container {
            justify-content: flex-start;
        }

        .mobile-nav.active {
            display: flex;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #555;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 1px;
        color: #2c3e50;
    }
    .footer-tagline {
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
        color: #95a5a6;
    }
    .footer-legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
    }
    .footer-disclaimer {
        margin: 0 auto 1rem;
        max-width: 800px;
        font-style: italic;
        line-height: 1.5;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.policy-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

.site-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: 100;
        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;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-link {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo-link:hover {
        color: var(--accent);
    }

    .nav-group {
        display: flex;
        gap: var(--gap);
    }

    .left-nav,
    .right-nav {
        display: flex;
    }

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

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 2.5rem;
        height: 2.5rem;
        flex-direction: column;
        justify-content: space-around;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        z-index: 99;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-inner {
        background-color: var(--surface-1);
        width: 90%;
        max-width: 400px;
        border-radius: var(--radius-lg);
        padding: calc(var(--space-y) * 2);
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
        box-shadow: var(--shadow-lg);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        font-size: calc(var(--font-size-base) * 1.2);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 767px) {
        .left-nav,
        .right-nav {
            display: none;
        }

        .burger-btn {
            display: flex;
        }

        .logo {
            position: static;
            transform: none;
            margin-right: auto;
        }

        .header-container {
            justify-content: flex-start;
        }

        .mobile-nav.active {
            display: flex;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #555;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 1px;
        color: #2c3e50;
    }
    .footer-tagline {
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
        color: #95a5a6;
    }
    .footer-legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
    }
    .footer-disclaimer {
        margin: 0 auto 1rem;
        max-width: 800px;
        font-style: italic;
        line-height: 1.5;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

    .terms-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .terms-layout-f .section-head {
        margin-bottom: 16px;
    }

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

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

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

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

.site-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: 100;
        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;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-link {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo-link:hover {
        color: var(--accent);
    }

    .nav-group {
        display: flex;
        gap: var(--gap);
    }

    .left-nav,
    .right-nav {
        display: flex;
    }

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

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 2.5rem;
        height: 2.5rem;
        flex-direction: column;
        justify-content: space-around;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        z-index: 99;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-inner {
        background-color: var(--surface-1);
        width: 90%;
        max-width: 400px;
        border-radius: var(--radius-lg);
        padding: calc(var(--space-y) * 2);
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
        box-shadow: var(--shadow-lg);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        font-size: calc(var(--font-size-base) * 1.2);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 767px) {
        .left-nav,
        .right-nav {
            display: none;
        }

        .burger-btn {
            display: flex;
        }

        .logo {
            position: static;
            transform: none;
            margin-right: auto;
        }

        .header-container {
            justify-content: flex-start;
        }

        .mobile-nav.active {
            display: flex;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #555;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 1px;
        color: #2c3e50;
    }
    .footer-tagline {
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
        color: #95a5a6;
    }
    .footer-legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
    }
    .footer-disclaimer {
        margin: 0 auto 1rem;
        max-width: 800px;
        font-style: italic;
        line-height: 1.5;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

.nfthank-v8 {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

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

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

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

.site-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: 100;
        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;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-link {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .logo-link:hover {
        color: var(--accent);
    }

    .nav-group {
        display: flex;
        gap: var(--gap);
    }

    .left-nav,
    .right-nav {
        display: flex;
    }

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

    .nav-link:hover {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

    .burger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        width: 2.5rem;
        height: 2.5rem;
        flex-direction: column;
        justify-content: space-around;
        padding: 0.5rem;
        border-radius: var(--radius-sm);
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .burger-btn:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--overlay);
        z-index: 99;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-inner {
        background-color: var(--surface-1);
        width: 90%;
        max-width: 400px;
        border-radius: var(--radius-lg);
        padding: calc(var(--space-y) * 2);
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
        box-shadow: var(--shadow-lg);
    }

    .mobile-nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        text-align: center;
        font-size: calc(var(--font-size-base) * 1.2);
        font-weight: 500;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .mobile-nav-link:hover {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 767px) {
        .left-nav,
        .right-nav {
            display: none;
        }

        .burger-btn {
            display: flex;
        }

        .logo {
            position: static;
            transform: none;
            margin-right: auto;
        }

        .header-container {
            justify-content: flex-start;
        }

        .mobile-nav.active {
            display: flex;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #eaeaea;
        color: #555;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 2.5rem 1rem 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 300;
        letter-spacing: 1px;
        color: #2c3e50;
    }
    .footer-tagline {
        font-style: italic;
        color: #7f8c8d;
        margin-bottom: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-legal-links {
        margin-top: 0.5rem;
        color: #95a5a6;
    }
    .footer-legal-links a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-legal-links a:hover {
        text-decoration: underline;
        color: #555;
    }
    .footer-contact address {
        font-style: normal;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-social {
        margin-top: 1rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        text-align: center;
        font-size: 0.85rem;
        color: #95a5a6;
    }
    .footer-disclaimer {
        margin: 0 auto 1rem;
        max-width: 800px;
        font-style: italic;
        line-height: 1.5;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            gap: 1rem;
        }
        .footer-bottom {
            text-align: left;
        }
    }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

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

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

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

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

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

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

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

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