:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  --max-w: 1280px;
  --space-x: 24px;
  --space-y: 20px;
  --gap: 16px;

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

  --overlay: rgba(0, 0, 0, 0.6);
  --anim-duration: 0.3s;
  --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --random-number: 2;

  --brand: #0056b3;
  --brand-contrast: #ffffff;
  --accent: #ff6b35;
  --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: #343a40;

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

  --surface-light: #ffffff;
  --fg-on-surface-light: #343a40;
  --border-on-surface-light: #dee2e6;

  --bg-primary: #0056b3;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004494;
  --ring: #0056b3;

  --bg-accent: #fff2ed;
  --fg-on-accent: #a83c0f;
  --bg-accent-hover: #ff8a5c;

  --link: #0056b3;
  --link-hover: #004494;

  --gradient-hero: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #e85a25 100%);

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

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    .main-nav {
        display: flex;
    }

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

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

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

    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 2) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 1000;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding-top: 2.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section {
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 250px;
}
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #bdc3c7;
  border-bottom: 1px solid #4a6572;
  padding-bottom: 0.5rem;
}
.footer-nav ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li,
.footer-social li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-nav a:hover,
.footer-social a:hover {
  color: #3498db;
  padding-left: 5px;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  background-color: #1a252f;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-legal a {
  color: #bdc3c7;
  font-size: 0.85rem;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  color: #3498db;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

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

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

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

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

    .hero--left .hero__content {
        text-align: left;
        max-width: 720px;
    }

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

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

.next-beam {
        padding: clamp(60px, 9vw, 108px) clamp(16px, 3vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .next-beam::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, .16) 50%, transparent 75%);
        transform: translateX(-120%);
        animation: beam 7s ease-in-out infinite;
    }

    .next-beam .wrap {
        position: relative;
        z-index: 1;
        max-width: 860px;
        margin: 0 auto;
        text-align: center;
    }

    .next-beam .kicker {
        margin: 0;
        opacity: .9;
    }

    .next-beam h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.4vw, 46px);
    }

    .next-beam .text {
        margin: 0 auto;
        max-width: 62ch;
        opacity: .9;
    }

    .next-beam .actions {
        margin-top: 16px;
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .next-beam .btn {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .4);
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
    }

    .next-beam .btn-primary {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

    @keyframes beam {
        0% {
            transform: translateX(-120%);
        }
        55% {
            transform: translateX(120%);
        }
        100% {
            transform: translateX(120%);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .next-beam::before {
            animation: none;
        }
    }

.two-column-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.two-column-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: center;
}

.two-column-section__media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.two-column-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.two-column-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.plans-c2 {

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

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

    .plans-c2__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .plans-c2__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .plans-c2__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .plans-c2__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .plans-c2__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-lg);
        padding: 16px;
        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    /* spotlight */
    .plans-c2__card::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(220px 220px at var(--sx, 50%) var(--sy, 35%),
        rgba(255, 107, 53, 0.28), transparent 60%);

        transition: opacity 260ms var(--anim-ease);
        pointer-events: none;
    }

    .plans-c2__card.is-hot {
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .plans-c2__card.is-hot::before {
        opacity: 1;
    }

    .plans-c2__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .plans-c2__name {
        font-weight: 900;
        letter-spacing: -.01em;
    }

    .plans-c2__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: rgba(255, 255, 255, .92);
        font-weight: 900;
        white-space: nowrap;
    }

    .plans-c2__price {
        margin-top: 12px;
        font-size: clamp(20px, 3vw, 34px);
        font-weight: 900;
        letter-spacing: -.02em;
    }

    .plans-c2__bullets {
        margin-top: 12px;
        display: grid;
        gap: 8px;
        color: rgba(255, 255, 255, .84);
        line-height: var(--line-height-base);
    }

    .plans-c2__btn {
        margin-top: 14px;
        width: 100%;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.14);
        color: var(--fg-on-primary);
        font-weight: 900;
        cursor: pointer;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .plans-c2__btn:hover {
        background: rgba(255, 255, 255, 0.20);
    }

    @media (max-width: 980px) {
        .plans-c2__card {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .plans-c2__card {
            grid-column: span 12;
        }
    }

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    .main-nav {
        display: flex;
    }

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

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

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

    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 2) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 1000;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding-top: 2.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section {
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 250px;
}
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #bdc3c7;
  border-bottom: 1px solid #4a6572;
  padding-bottom: 0.5rem;
}
.footer-nav ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li,
.footer-social li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-nav a:hover,
.footer-social a:hover {
  color: #3498db;
  padding-left: 5px;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  background-color: #1a252f;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-legal a {
  color: #bdc3c7;
  font-size: 0.85rem;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  color: #3498db;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-note button[data-cookie='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;
    }

    /* randomNumber este 2, deci 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;
    }

    /* randomNumber este 2, deci 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;
        }
    }

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    .main-nav {
        display: flex;
    }

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

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

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

    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 2) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 1000;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding-top: 2.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section {
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 250px;
}
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #bdc3c7;
  border-bottom: 1px solid #4a6572;
  padding-bottom: 0.5rem;
}
.footer-nav ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li,
.footer-social li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-nav a:hover,
.footer-social a:hover {
  color: #3498db;
  padding-left: 5px;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  background-color: #1a252f;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-legal a {
  color: #bdc3c7;
  font-size: 0.85rem;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  color: #3498db;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.product-item--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

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

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

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

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

.product-item__sku {
    opacity: 0.9;
}

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

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

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
    cursor: pointer;
    transition: transform var(--anim-duration) var(--anim-ease);
}

.gallery__thumb:hover {
    transform: translateY(-4px);
}

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

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    .main-nav {
        display: flex;
    }

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

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

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

    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 2) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 1000;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding-top: 2.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section {
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 250px;
}
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #bdc3c7;
  border-bottom: 1px solid #4a6572;
  padding-bottom: 0.5rem;
}
.footer-nav ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li,
.footer-social li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-nav a:hover,
.footer-social a:hover {
  color: #3498db;
  padding-left: 5px;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  background-color: #1a252f;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-legal a {
  color: #bdc3c7;
  font-size: 0.85rem;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  color: #3498db;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.product-item--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

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

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

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

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

.product-item__sku {
    opacity: 0.9;
}

.about-mission {

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

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

    .about-mission .about-mission__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .about-mission p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__grid {
            grid-template-columns: 1fr;
        }
    }

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    .main-nav {
        display: flex;
    }

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

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

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

    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 2) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 1000;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding-top: 2.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section {
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 250px;
}
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #bdc3c7;
  border-bottom: 1px solid #4a6572;
  padding-bottom: 0.5rem;
}
.footer-nav ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li,
.footer-social li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-nav a:hover,
.footer-social a:hover {
  color: #3498db;
  padding-left: 5px;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  background-color: #1a252f;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-legal a {
  color: #bdc3c7;
  font-size: 0.85rem;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  color: #3498db;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.product-item--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

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

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

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

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

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

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

.product-item__sku {
    opacity: 0.9;
}

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    .main-nav {
        display: flex;
    }

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

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

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

    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 2) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 1000;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding-top: 2.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section {
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 250px;
}
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #bdc3c7;
  border-bottom: 1px solid #4a6572;
  padding-bottom: 0.5rem;
}
.footer-nav ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li,
.footer-social li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-nav a:hover,
.footer-social a:hover {
  color: #3498db;
  padding-left: 5px;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  background-color: #1a252f;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-legal a {
  color: #bdc3c7;
  font-size: 0.85rem;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  color: #3498db;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.contact-hub {
        padding: clamp(56px, 8vw, 96px) 16px;
        background:
            radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.35), transparent 55%),
            linear-gradient(135deg, var(--bg-accent), var(--bg-accent-hover));
        color: var(--fg-on-accent);
        position: relative;
        overflow: hidden;
    }

    .contact-hub::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
        background-size: 140px 140px;
        opacity: 0.25;
        pointer-events: none;
    }

    .contact-hub .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .contact-hub .lead {
        margin-bottom: 14px;
        margin-right: 4rem;
        max-width: 380px;
    }

    .contact-hub .lead h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        letter-spacing: -0.02em;
        text-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    }

    .contact-hub .lead p {
        margin: 10px 0 0;
    }

    .contact-hub .layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        min-width: 320px;
    }

    .contact-hub .meta {
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.18);
        padding: 16px;
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(10px);
    }

    .contact-hub h3 {
        margin: 0 0 10px;
    }

    .contact-hub article {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px 0;
    }

    .contact-hub article:last-child {
        border-bottom: 0;
    }

    .contact-hub article p {
        margin: 0 0 5px;
    }

    .contact-hub .k {
        font-size: .8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        opacity: .8;
    }

    .contact-hub .social {
        margin-top: 10px;
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
    }

    .contact-hub .social p {
        margin: 0;
    }

    .contact-hub .social a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.3);
        display: grid;
        place-items: center;
        color: var(--fg-on-primary);
        text-decoration: none;
        background: rgba(0, 0, 0, 0.2);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .contact-hub .social a:hover {
        transform: translateY(-2px);
        background: rgba(0, 0, 0, 0.35);
    }

    @media (max-width: 860px) {
        .contact-hub .wrap {
            flex-direction: column;
        }

        .contact-hub .lead {
            margin-right: 0;
            max-width: none;
        }
    }

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

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

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

        transform: translateY(-18px);
    }

    .index-recommendations-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-recommendations-list__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-recommendations-list__list {
        display: grid;
        gap: 12px;
    }

    .index-recommendations-list__row {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-recommendations-list__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--fg-on-page);
        font: inherit;
        text-align: left;
    }

    .index-recommendations-list__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-recommendations-list__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-recommendations-list__title {
        font-weight: 900;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 30ch;
    }

    .index-recommendations-list__right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

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

    .index-recommendations-list__chev {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 900;
        line-height: 1;
    }

    .index-recommendations-list__a {
        display: none;
        padding: 0 16px 14px;
        overflow: hidden;
    }

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

    .index-recommendations-list__actions {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

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

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

    .index-recommendations-list__cta::after {
        content: '->';
    }

    .index-recommendations-list__cta:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 560px) {
        .index-recommendations-list__tag {
            display: none;
        }
    }

.form-glass {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .form-glass .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .form-glass header {
        margin-bottom: 14px;
    }

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

    .form-glass header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .form-glass .grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-glass label {
        display: grid;
        gap: 6px;
        margin-bottom: 8px;
    }

    .form-glass input:not([type="checkbox"]),
    .form-glass textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .form-glass input::placeholder,
    .form-glass textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .form-glass .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 12px;
        margin-bottom: 16px;
    }

    .form-glass .agree a {
        color: var(--accent);
    }

    .form-glass button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 12px 24px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
        width: 100%;
    }

    .form-glass button:hover {
        background: var(--accent-hover);
    }

    @media (max-width: 860px) {
        .form-glass .grid {
            grid-template-columns: 1fr;
        }
    }

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    .main-nav {
        display: flex;
    }

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

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

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

    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 2) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 1000;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding-top: 2.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section {
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 250px;
}
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #bdc3c7;
  border-bottom: 1px solid #4a6572;
  padding-bottom: 0.5rem;
}
.footer-nav ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li,
.footer-social li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-nav a:hover,
.footer-social a:hover {
  color: #3498db;
  padding-left: 5px;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  background-color: #1a252f;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-legal a {
  color: #bdc3c7;
  font-size: 0.85rem;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  color: #3498db;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

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

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

    .policy-zigzag .lead {
        margin: 10px 0 14px;
    }

    .policy-zigzag .list {
        display: grid;
        gap: 10px;
    }

    .policy-zigzag article {
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
    }

    .policy-zigzag article:nth-child(even) {
        margin-left: 24px;
    }

    .policy-zigzag article:nth-child(odd) {
        margin-right: 24px;
    }

    .policy-zigzag .meta {
        margin: 0;
        font-size: .85rem;
        color: var(--neutral-300);
    }

    .policy-zigzag h3 {
        margin: 6px 0;
    }

    .policy-zigzag article p {
        margin: 0;
    }

    @media (max-width: 680px) {
        .policy-zigzag article:nth-child(even),
        .policy-zigzag article:nth-child(odd) {
            margin: 0;
        }
    }

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    .main-nav {
        display: flex;
    }

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

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

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

    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 2) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 1000;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding-top: 2.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section {
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 250px;
}
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #bdc3c7;
  border-bottom: 1px solid #4a6572;
  padding-bottom: 0.5rem;
}
.footer-nav ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li,
.footer-social li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-nav a:hover,
.footer-social a:hover {
  color: #3498db;
  padding-left: 5px;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  background-color: #1a252f;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-legal a {
  color: #bdc3c7;
  font-size: 0.85rem;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  color: #3498db;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

    .terms-scroll .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 16px;
    }

    .terms-scroll .sidebar {
        position: sticky;
        top: 16px;
        align-self: start;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        padding: 12px;
    }

    .terms-scroll .sidebar h2 {
        margin: 0;
        font-size: clamp(24px, 3vw, 30px);
    }

    .terms-scroll .sidebar p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .terms-scroll .content {
        display: grid;
        gap: 10px;
    }

    .terms-scroll .block {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

    .terms-scroll h3,
    .terms-scroll h4 {
        margin: 0 0 8px;
    }

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

    @media (max-width: 860px) {
        .terms-scroll .wrap {
            grid-template-columns: 1fr;
        }

        .terms-scroll .sidebar {
            position: static;
        }
    }

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    .main-nav {
        display: flex;
    }

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

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

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

    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 2) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 1000;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding-top: 2.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section {
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 250px;
}
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #bdc3c7;
  border-bottom: 1px solid #4a6572;
  padding-bottom: 0.5rem;
}
.footer-nav ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li,
.footer-social li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-nav a:hover,
.footer-social a:hover {
  color: #3498db;
  padding-left: 5px;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  background-color: #1a252f;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-legal a {
  color: #bdc3c7;
  font-size: 0.85rem;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  color: #3498db;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.th-core-c {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: linear-gradient(150deg, #4c1d95, #1e1b4b);
        color: #eef2ff;
    }

    .th-core-c .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .th-core-c h1 {
        margin: 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .th-core-c p {
        margin: 10px 0 0;
        color: #c7d2fe;
    }

    .th-core-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .35);
        color: #eef2ff;
    }

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

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    .main-nav {
        display: flex;
    }

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

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

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

    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            max-width: 300px;
            background-color: var(--surface-2);
            box-shadow: var(--shadow-lg);
            padding: calc(var(--space-y) * 2) var(--space-x);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 1000;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            overflow-y: auto;
        }

        .main-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding-top: 2.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.footer-section {
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 250px;
}
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #bdc3c7;
  border-bottom: 1px solid #4a6572;
  padding-bottom: 0.5rem;
}
.footer-nav ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li,
.footer-social li {
  margin-bottom: 0.6rem;
}
.footer-nav a,
.footer-social a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-nav a:hover,
.footer-social a:hover {
  color: #3498db;
  padding-left: 5px;
}
.footer-contact p {
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.footer-contact a {
  color: #3498db;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-bottom {
  background-color: #1a252f;
  padding: 1.2rem 0;
  margin-top: 2rem;
}
.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer-legal a {
  color: #bdc3c7;
  font-size: 0.85rem;
  text-decoration: none;
  margin: 0 0.3rem;
}
.footer-legal a:hover {
  color: #3498db;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

    .cookie-note .actions {
        display: flex;
        gap: 8px;
    }

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

.nf-core-d {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nf-core-d .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border: 1px dashed var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        padding: clamp(18px, 3vw, 30px);
    }

    .nf-core-d h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
    }

    .nf-core-d p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nf-core-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-page);
        text-decoration: none;
    }