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

  --max-w: 1200px;
  --space-x: 1.5rem;
  --space-y: 1rem;
  --gap: 1rem;

  --radius-xl: 1rem;
  --radius-lg: 0.75rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 0.3s;
  --anim-ease: ease-in-out;
  --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: #8a3c1d;
  --bg-accent-hover: #ff8b5e;

  --success: #28a745;
  --success-contrast: #ffffff;
  --warning: #ffc107;
  --warning-contrast: #212529;
  --danger: #dc3545;
  --danger-contrast: #ffffff;

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

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

  --btn-primary-bg: var(--bg-primary);
  --btn-primary-fg: var(--fg-on-primary);
  --btn-primary-bg-hover: var(--bg-primary-hover);

  --btn-ghost-bg: transparent;
  --btn-ghost-fg: var(--fg-on-page);
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);

  --card-bg-dark: var(--surface-1);
  --card-fg-dark: var(--fg-on-surface);
  --card-border-dark: var(--border-on-surface);

  --card-bg-light: var(--surface-light);
  --card-fg-light: var(--fg-on-surface-light);
  --card-border-light: var(--border-on-surface-light);

  --chip-bg: rgba(255,255,255,0.08);
  --chip-fg: var(--fg-on-page);

  --input-bg: var(--surface-2);
  --input-fg: var(--fg-on-surface);
  --input-border: var(--border-on-surface);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);}

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

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

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

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

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

    .burger__line {
        display: block;
        height: 2px;
        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);
    }

    .header__nav {
        display: flex;
        align-items: center;
    }

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

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 5rem var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #e74c3c;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
        color: #3498db;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        text-align: center;
        padding-top: 1.5rem;
    }

    .copyright {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin-bottom: 1rem;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-legal a {
        font-size: 0.85rem;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-contact p {
            justify-content: center;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.index-hero {
        position: relative;
        font-family: var(--font-family);
        color: var(--fg-on-page);
        padding: clamp(48px, 8vw, 140px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

    .index-hero {
        background:
                repeating-linear-gradient(
                        45deg,
                        var(--bg-primary) 0px,
                        var(--fg-on-primary) 20px,
                        var(--bg-page) 20px,
                        var(--fg-on-page) 40px,
                        var(--bg-accent) 40px,
                        var(--fg-on-accent) 60px,
                        var(--ring) 60px
                );
        background-size: 200% 200%;
        animation: stripesMove 10s linear infinite;
    }

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

    .index-hero .index-hero__bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transform: scale(1.05);
    }

    .index-hero .index-hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .index-hero .index-hero__c {
        position: relative;
        max-width: var(--max-w);
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.6);
        border-radius: var(--radius-lg);
        padding: var(--space-x);
    }

    .index-hero .index-hero__center {
        text-align: center;
        color: white;
    }

    .index-hero h1 {
        font-size: clamp(34px, 7vw, 84px);
        margin: .1em 0 .2em;
        color: inherit;
        background: inherit;
    }

    .index-hero p {
        max-width: 65ch;
        margin: 0 auto 1.2rem;
        color: inherit;
        background: inherit;
    }

    .index-hero .index-hero__btn {
        display: inline-block;
        padding: 1rem 1.4rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        box-shadow: var(--shadow-md);
    }

.index-cta {
        font-family: var(--font-family);
        color: white;
        padding: clamp(28px, 5vw, 72px) clamp(16px, 3vw, 40px);
        background: linear-gradient(120deg, var(--bg-primary), var(--bg-accent), var(--ring));
        background-size: 300% 300%;
        animation: gradientFlow 8s ease-in-out infinite;
    }
    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

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

    .index-cta .index-cta__row {
        text-align: center;
    }

    .index-cta h2 {
        font-size: clamp(22px, 4.5vw, 40px);
        margin: 0 0 .3rem;
    }

    .index-cta p {
        color: var(--fg-on-page);
        margin: 2rem 0;
    }

    .index-cta .index-cta__actions {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .index-cta .index-cta__btn {
        display: inline-block;
        text-decoration: none;
        padding: .85rem 1.2rem;
        border-radius: var(--radius-lg);
        transition: transform .2s;
        background: var(--bg-accent)
    }

    .index-cta .index-cta__btn.index-cta__primary {
        background: #fff;
        color: black;
        box-shadow: var(--shadow-md);
    }

    .index-cta .index-cta__btn.index-cta__ghost {
        border: 1px solid rgba(255, 255, 255, .5);
        color: var(--fg-on-page);
    }

    .index-cta .index-cta__btn:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 767px) {
        .index-cta .index-cta__actions {
            flex-direction: column;
        }

        .index-cta .index-cta__btn {
            width: 100%;
            text-align: center;
        }
    }

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

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

    .testimonials .testimonials__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 56px);
    }

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

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

    .testimonials .testimonials__featured {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .testimonials .testimonials__featured > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .testimonials .testimonials__card {
        background: var(--card-bg-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3.5vw, 36px);
        box-shadow: var(--shadow-md);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .testimonials .testimonials__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--bg-primary);
        transform: scaleY(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .testimonials .testimonials__card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--bg-primary);
    }

    .testimonials .testimonials__card:hover::before {
        transform: scaleY(1);
    }

    .testimonials .testimonials__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: clamp(20px, 3vw, 28px);
        gap: 1rem;
    }

    .testimonials .testimonials__author-info {
        display: flex;
        gap: 1rem;
        align-items: center;
        flex: 1;
    }

    .testimonials .testimonials__avatar {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .testimonials h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
        font-size: clamp(18px, 2.2vw, 20px);
        font-weight: 600;
    }

    .testimonials .testimonials__role {
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .testimonials .testimonials__rating {
        font-size: 1rem;
        letter-spacing: 2px;
        flex-shrink: 0;
    }

    .testimonials .testimonials__quote {
        margin: 0 0 clamp(20px, 3vw, 28px);
        padding: 0;
        border: none;
        flex: 1;
    }

    .testimonials .testimonials__quote p {
        color: var(--fg-on-page);
        line-height: 1.8;
        margin: 0;
        font-size: clamp(15px, 2vw, 17px);
        font-style: italic;
        position: relative;
        padding-left: 1.5rem;
    }

    .testimonials .testimonials__quote p::before {
        content: '"';
        position: absolute;
        left: 0;
        top: -0.5rem;
        font-size: 3rem;
        color: var(--bg-primary);
        opacity: 0.2;
        line-height: 1;
    }

    .testimonials .testimonials__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: var(--gap);
        border-top: 1px solid var(--border-on-surface-light);
        margin-top: auto;
    }

    .testimonials .testimonials__date {
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .testimonials .testimonials__verified {
        font-size: 0.75rem;
        color: var(--success);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

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

        .testimonials .testimonials__header {
            flex-direction: column;
        }

        .testimonials .testimonials__rating {
            align-self: flex-start;
        }
    }

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

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

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

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

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

    .burger__line {
        display: block;
        height: 2px;
        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);
    }

    .header__nav {
        display: flex;
        align-items: center;
    }

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

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 5rem var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #e74c3c;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
        color: #3498db;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        text-align: center;
        padding-top: 1.5rem;
    }

    .copyright {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin-bottom: 1rem;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-legal a {
        font-size: 0.85rem;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-contact p {
            justify-content: center;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.about-us {
        font-family: var(--font-family);
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .about-us .about-us__wrapper {
        display: flex;
        flex-direction: column;
        gap: clamp(24px, 4vw, 40px);
    }

    .about-us .about-us__image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .about-us .about-us__image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .about-us .about-us__text {
        text-align: center;
    }

    .about-us .about-us__text h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .about-us .about-us__content {
        max-width: 70ch;
        margin: 0 auto;
    }

    .about-us .about-us__content p {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0 0 1.25rem;
    }

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

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

    .testimonials .testimonials__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 56px);
    }

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

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

    .testimonials .testimonials__featured {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .testimonials .testimonials__featured > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .testimonials .testimonials__card {
        background: var(--card-bg-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3.5vw, 36px);
        box-shadow: var(--shadow-md);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .testimonials .testimonials__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--bg-primary);
        transform: scaleY(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .testimonials .testimonials__card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--bg-primary);
    }

    .testimonials .testimonials__card:hover::before {
        transform: scaleY(1);
    }

    .testimonials .testimonials__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: clamp(20px, 3vw, 28px);
        gap: 1rem;
    }

    .testimonials .testimonials__author-info {
        display: flex;
        gap: 1rem;
        align-items: center;
        flex: 1;
    }

    .testimonials .testimonials__avatar {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .testimonials h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
        font-size: clamp(18px, 2.2vw, 20px);
        font-weight: 600;
    }

    .testimonials .testimonials__role {
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .testimonials .testimonials__rating {
        font-size: 1rem;
        letter-spacing: 2px;
        flex-shrink: 0;
    }

    .testimonials .testimonials__quote {
        margin: 0 0 clamp(20px, 3vw, 28px);
        padding: 0;
        border: none;
        flex: 1;
    }

    .testimonials .testimonials__quote p {
        color: var(--fg-on-page);
        line-height: 1.8;
        margin: 0;
        font-size: clamp(15px, 2vw, 17px);
        font-style: italic;
        position: relative;
        padding-left: 1.5rem;
    }

    .testimonials .testimonials__quote p::before {
        content: '"';
        position: absolute;
        left: 0;
        top: -0.5rem;
        font-size: 3rem;
        color: var(--bg-primary);
        opacity: 0.2;
        line-height: 1;
    }

    .testimonials .testimonials__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: var(--gap);
        border-top: 1px solid var(--border-on-surface-light);
        margin-top: auto;
    }

    .testimonials .testimonials__date {
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .testimonials .testimonials__verified {
        font-size: 0.75rem;
        color: var(--success);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

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

        .testimonials .testimonials__header {
            flex-direction: column;
        }

        .testimonials .testimonials__rating {
            align-self: flex-start;
        }
    }

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

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

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

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

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

    .burger__line {
        display: block;
        height: 2px;
        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);
    }

    .header__nav {
        display: flex;
        align-items: center;
    }

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

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 5rem var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #e74c3c;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
        color: #3498db;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        text-align: center;
        padding-top: 1.5rem;
    }

    .copyright {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin-bottom: 1rem;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-legal a {
        font-size: 0.85rem;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-contact p {
            justify-content: center;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.features--colored-v5 {
    font-family: var(--font-family);
    padding: 60px 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

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

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

.features__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.9;
    margin: 0 0 0.5rem;
    color: var(--brand-contrast);
}

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

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

.features__card {
    background: rgba(15,23,42,0.85);
    border-radius: var(--radius-xl);
    padding: 16px 18px;
    border: 1px solid rgba(191,219,254,0.5);
    color: var(--neutral-100);
}

.features__icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: var(--neutral-0);
}

.features__icon--success {
    background: var(--success);
}

.features__icon--warning {
    background: var(--warning);
}

.features__icon--danger {
    background: var(--danger);
}

.features__card h3 {
    margin: 0 0 4px;
    color: var(--neutral-0);
}

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

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

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

    .testimonials .testimonials__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 56px);
    }

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

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

    .testimonials .testimonials__featured {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .testimonials .testimonials__featured > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .testimonials .testimonials__card {
        background: var(--card-bg-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3.5vw, 36px);
        box-shadow: var(--shadow-md);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .testimonials .testimonials__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--bg-primary);
        transform: scaleY(0);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .testimonials .testimonials__card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--bg-primary);
    }

    .testimonials .testimonials__card:hover::before {
        transform: scaleY(1);
    }

    .testimonials .testimonials__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: clamp(20px, 3vw, 28px);
        gap: 1rem;
    }

    .testimonials .testimonials__author-info {
        display: flex;
        gap: 1rem;
        align-items: center;
        flex: 1;
    }

    .testimonials .testimonials__avatar {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .testimonials h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
        font-size: clamp(18px, 2.2vw, 20px);
        font-weight: 600;
    }

    .testimonials .testimonials__role {
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .testimonials .testimonials__rating {
        font-size: 1rem;
        letter-spacing: 2px;
        flex-shrink: 0;
    }

    .testimonials .testimonials__quote {
        margin: 0 0 clamp(20px, 3vw, 28px);
        padding: 0;
        border: none;
        flex: 1;
    }

    .testimonials .testimonials__quote p {
        color: var(--fg-on-page);
        line-height: 1.8;
        margin: 0;
        font-size: clamp(15px, 2vw, 17px);
        font-style: italic;
        position: relative;
        padding-left: 1.5rem;
    }

    .testimonials .testimonials__quote p::before {
        content: '"';
        position: absolute;
        left: 0;
        top: -0.5rem;
        font-size: 3rem;
        color: var(--bg-primary);
        opacity: 0.2;
        line-height: 1;
    }

    .testimonials .testimonials__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: var(--gap);
        border-top: 1px solid var(--border-on-surface-light);
        margin-top: auto;
    }

    .testimonials .testimonials__date {
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .testimonials .testimonials__verified {
        font-size: 0.75rem;
        color: var(--success);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

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

        .testimonials .testimonials__header {
            flex-direction: column;
        }

        .testimonials .testimonials__rating {
            align-self: flex-start;
        }
    }

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

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

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

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

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

    .burger__line {
        display: block;
        height: 2px;
        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);
    }

    .header__nav {
        display: flex;
        align-items: center;
    }

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

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 5rem var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #e74c3c;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
        color: #3498db;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        text-align: center;
        padding-top: 1.5rem;
    }

    .copyright {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin-bottom: 1rem;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-legal a {
        font-size: 0.85rem;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-contact p {
            justify-content: center;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.contacts--colored-v5 {
    font-family: var(--font-family);
    padding: 64px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.contacts__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 24px;
}

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

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

.contacts__subtitle {
    margin: 0 0 16px;
    font-size: 0.95rem;
    color: var(--neutral-300);
}

.contacts__rows {
    display: grid;
    gap: 10px;
}

.contacts__row {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 10px;
    align-items: center;
}

.contacts__icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-0);
    font-size: 0.85rem;
}

.contacts__icon--primary {
    background: var(--bg-primary);
}

.contacts__icon--accent {
    background: var(--accent);
}

.contacts__icon--danger {
    background: var(--danger);
}

.contacts__label {
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.contacts__value {
    font-size: 0.95rem;
    color: var(--neutral-0);
}

.contacts__side {
    display: grid;
    align-content: center;
    gap: 10px;
}

.contacts__badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--warning);
    color: var(--warning-contrast);
    font-size: 0.8rem;
}

.contacts__text {
    margin: 0;
    color: var(--neutral-200);
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .contacts__inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

.terminology-light-alt {
        font-family: var(--font-family);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

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

    .terminology-light-alt .terminology-light-alt__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);
        opacity: 0;
    }

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

    .terminology-light-alt h2::before {
        content: attr(data-text);
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
        background: var(--gradient-accent);
        
        
        
        animation: titleGlow 2s ease-in-out infinite alternate;
        filter: blur(8px);
        opacity: 0.6;
    }

    @keyframes titleGlow {
        0% { opacity: 0.3; filter: blur(8px); }
        100% { opacity: 0.7; filter: blur(12px); }
    }

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

    .terminology-light-alt .terminology-light-alt__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(16px, 2vw, 24px);
        perspective: 1000px;
    }

    .terminology-light-alt .terminology-light-alt__item {
        background: var(--card-bg-dark);
        padding: clamp(20px, 3vw, 28px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--card-border-dark);
        box-shadow: var(--shadow-sm);
        opacity: 0;
        position: relative;
        transform-style: preserve-3d;
        transition: all var(--anim-duration) var(--anim-ease);
        cursor: pointer;
    }

    .terminology-light-alt .terminology-light-alt__glow {
        position: absolute;
        inset: 0;
        border-radius: var(--radius-lg);
        background: radial-gradient(circle at 50% 50%,
        rgba(0, 85, 183, 0.3) 0%,
        transparent 70%);
        opacity: 0;
        transition: opacity var(--anim-duration) var(--anim-ease);
        pointer-events: none;
        filter: blur(20px);
        animation: glowPulse 3s ease-in-out infinite;
    }

    @keyframes glowPulse {
        0%, 100% { transform: scale(0.8); opacity: 0; }
        50% { transform: scale(1.2); opacity: 1; }
    }

    .terminology-light-alt .terminology-light-alt__item:hover {
        transform: rotateY(5deg) rotateX(-5deg) translateY(-12px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .terminology-light-alt .terminology-light-alt__item:hover .terminology-light-alt__glow {
        opacity: 1;
    }

    .terminology-light-alt .terminology-light-alt__badge {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1rem;
        box-shadow: 0 2px 8px rgba(0, 85, 183, 0.3);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .terminology-light-alt .terminology-light-alt__item:hover .terminology-light-alt__badge {
        transform: translateZ(20px);
        box-shadow: 0 4px 16px rgba(0, 85, 183, 0.5);
    }

    .terminology-light-alt .terminology-light-alt__term {
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        color: var(--card-fg-dark);
        margin: 0 0 0.75rem;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .terminology-light-alt .terminology-light-alt__item:hover .terminology-light-alt__term {
        transform: translateZ(15px);
        color: var(--bg-primary);
    }

    .terminology-light-alt .terminology-light-alt__term::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--bg-primary);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .terminology-light-alt .terminology-light-alt__item:hover .terminology-light-alt__term::after {
        width: 100%;
    }

    .terminology-light-alt .terminology-light-alt__definition {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .terminology-light-alt .terminology-light-alt__item:hover .terminology-light-alt__definition {
        transform: translateZ(10px);
    }

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

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

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

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

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

    .burger__line {
        display: block;
        height: 2px;
        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);
    }

    .header__nav {
        display: flex;
        align-items: center;
    }

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

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 5rem var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #e74c3c;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
        color: #3498db;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        text-align: center;
        padding-top: 1.5rem;
    }

    .copyright {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin-bottom: 1rem;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-legal a {
        font-size: 0.85rem;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-contact p {
            justify-content: center;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.policy-items--colored-v5 {
    font-family: var(--font-family);
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.policy-items__inner {
    max-width: 720px;
    margin: 0 auto;
}

.policy-items__title {
    margin: 0 0 6px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.policy-items__intro {
    margin: 0 0 12px;
    font-size: 0.95rem;
    color: var(--neutral-200);
}

.policy-items__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.policy-items__item {
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.policy-items__item--important {
    border-color: var(--warning);
}
.policy-items__item--critical {
    border-color: var(--danger);
}

.policy-items__item h3 {
    margin: 0 0 3px;
    font-size: 0.95rem;
}

.policy-items__item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-200);
}

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

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

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

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

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

    .burger__line {
        display: block;
        height: 2px;
        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);
    }

    .header__nav {
        display: flex;
        align-items: center;
    }

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

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 5rem var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #e74c3c;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
        color: #3498db;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        text-align: center;
        padding-top: 1.5rem;
    }

    .copyright {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin-bottom: 1rem;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-legal a {
        font-size: 0.85rem;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-contact p {
            justify-content: center;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.terms-items--colored-v5 {
    font-family: var(--font-family);
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.terms-items__inner {
    max-width: 720px;
    margin: 0 auto;
}

.terms-items__title {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.terms-items__list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 10px;
}

.terms-items__item h3 {
    margin: 0 0 3px;
    font-size: 0.95rem;
}

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

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

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

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

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

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

    .burger__line {
        display: block;
        height: 2px;
        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);
    }

    .header__nav {
        display: flex;
        align-items: center;
    }

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

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 5rem var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #e74c3c;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
        color: #3498db;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        text-align: center;
        padding-top: 1.5rem;
    }

    .copyright {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin-bottom: 1rem;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-legal a {
        font-size: 0.85rem;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-contact p {
            justify-content: center;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.thank--light-v6 {
    font-family: var(--font-family);
    padding: 72px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
    text-align: center;
}

.thank__inner {
    max-width: 480px;
    margin: 0 auto;
}

.thank__inner h1 {
    margin: 0 0 6px;
    font-size: clamp(26px,4.5vw,34px);
}

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

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

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

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

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

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

    .burger__line {
        display: block;
        height: 2px;
        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);
    }

    .header__nav {
        display: flex;
        align-items: center;
    }

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

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .nav__link:hover {
        background-color: var(--bg-alt);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 5rem var(--space-x) var(--space-y);
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }

        .nav__link {
            display: block;
            padding: 1rem;
            border-radius: var(--radius-md);
        }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1.5rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #4a6572;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 0.5rem;
    }

    .footer-tagline {
        font-style: italic;
        color: #bdc3c7;
        font-size: 0.95rem;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #e74c3c;
    }

    .footer-nav,
    .footer-social,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-social li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        padding-left: 5px;
    }

    .footer-contact p {
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-contact a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contact a:hover {
        text-decoration: underline;
        color: #3498db;
    }

    .footer-social {
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6572;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 2rem auto 0;
        text-align: center;
        padding-top: 1.5rem;
    }

    .copyright {
        font-size: 0.9rem;
        color: #bdc3c7;
        margin-bottom: 0.5rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin-bottom: 1rem;
        line-height: 1.4;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-legal {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .footer-legal a {
        font-size: 0.85rem;
        color: #bdc3c7;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

        .footer-section h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .footer-contact p {
            justify-content: center;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-legal {
            flex-direction: column;
            gap: 0.7rem;
        }
    }

.cookies--colored-v5 {
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        border-radius: 1rem;
        font-family: var(--font-family);
        padding: 56px 20px;
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

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

    .cookies__text {
        margin: 0 0 12px;
        color: var(--neutral-300);
        font-size: 0.95rem;
    }

    .cookies__list {
        margin: 0 0 10px;
        padding-left: 1.1rem;
        display: grid;
        gap: 6px;
    }

    .cookies__item {
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .cookies__notice {
        margin: 0;
        font-size: 0.85rem;
        color: var(--warning);
    }

    .cookie-banner__actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .cookie-banner__btn {
        padding: 0.75rem 1.3rem;
        border: 2px solid var(--fg-on-accent);
        border-radius: var(--radius-lg);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all .25s;
        font-weight: 500;
    }

    .cookie-banner__accept {
        background: var(--fg-on-accent);
        color: var(--bg-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__accept:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    }

    .cookie-banner__reject {
        background: transparent;
        color: var(--fg-on-accent);
        border-color: var(--fg-on-accent);
    }

    .cookie-banner__reject:hover {
        background: rgba(255, 255, 255, .1);
    }

    @media (max-width: 767px) {
        .cookie-banner__c {
            flex-wrap: wrap;
        }

        .cookie-banner__icon {
            font-size: 2rem;
        }

        .cookie-banner__actions {
            width: 100%;
        }

        .cookie-banner__btn {
            flex: 1;
        }
    }

.not-found--light-v6 {
    font-family: var(--font-family);
    padding: 72px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.not-found__inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.not-found__code {
    font-size: clamp(56px, 16vw, 96px);
    font-weight: 700;
    color: var(--neutral-800);
    line-height: 1;
    margin-bottom: var(--space-y);
}

.not-found__text {
    margin-top: 10px;
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin-bottom: calc(var(--space-y) * 2);
}

.not-found__actions {
    display: flex;
    gap: var(--gap);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: calc(var(--space-y) * 2);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: background-color var(--anim-duration) var(--anim-ease);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: var(--font-size-base);
}

.btn--primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-fg);
}

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

.btn--ghost {
    background-color: var(--btn-ghost-bg);
    color: var(--btn-ghost-fg);
    border-color: var(--border-on-surface);
}

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

.not-found__search {
    background-color: var(--bg-alt);
    padding: var(--space-y) var(--space-x);
    border-radius: var(--radius-lg);
    margin-bottom: calc(var(--space-y) * 2);
    text-align: left;
}

.not-found__search p {
    margin-top: 0;
    margin-bottom: var(--gap);
    color: var(--fg-on-alt);
    font-weight: 600;
}

.search-form {
    display: flex;
    gap: var(--gap);
}

.search-input {
    flex-grow: 1;
    padding: 12px 16px;
    border: 1px solid var(--input-border);
    border-radius: var(--radius-md);
    background-color: var(--input-bg);
    color: var(--input-fg);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
}

.search-input::placeholder {
    color: var(--input-placeholder);
}

.search-btn {
    padding: 12px 24px;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
}

.search-btn:hover {
    background-color: var(--bg-accent-hover);
}

.not-found__links {
    text-align: left;
}

.not-found__links p {
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: var(--gap);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}

.links-grid a {
    display: block;
    padding: 12px 16px;
    background-color: var(--surface-2);
    color: var(--link);
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-on-surface);
    transition: all var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.links-grid a:hover {
    background-color: var(--surface-1);
    color: var(--link-hover);
    border-color: var(--link);
}