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

  --max-w: 1160px;
  --space-x: 1.08rem;
  --space-y: 1.37rem;
  --gap: 0.97rem;

  --radius-xl: 0.99rem;
  --radius-lg: 0.74rem;
  --radius-md: 0.36rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.13);
  --shadow-md: 0 5px 16px rgba(0,0,0,0.17);
  --shadow-lg: 0 14px 36px rgba(0,0,0,0.21);

  --overlay: rgba(0, 0, 0, 0.45);
  --anim-duration: 170ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 1;

  --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: rgba(0, 86, 179, 0.05);
  --fg-on-surface-light: #0056B3;
  --border-on-surface-light: rgba(0, 86, 179, 0.15);

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

  --bg-accent: #FFF2EC;
  --fg-on-accent: #8B3A1C;
  --bg-accent-hover: #FF8B5C;

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

  --gradient-hero: linear-gradient(135deg, #0056B3 0%, #007BFF 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8B5C 100%);

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

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

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

.header-cta .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-divider {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

    .header-cta {
        display: none;
    }

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

    .header-container {
        flex-wrap: wrap;
    }
    .header-logo {
        order: 1;
    }
    .burger-menu {
        order: 3;
    }
    .header-cta {
        order: 2;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-tagline {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .nav-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-list a:hover {
    color: #007bff;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

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

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    color: #6c757d;
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-links a {
    color: #495057;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 1rem auto;
    color: #6c757d;
  }

  .footer-copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .footer-links {
      justify-content: flex-start;
    }
    .footer-disclaimer,
    .footer-copyright {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (min-width: 992px) {
    .footer-container {
      grid-template-columns: 2fr 1fr 1.5fr;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

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

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

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

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

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

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

.hero--colored-v5 {
        padding: 96px 20px;
        background: var(--gradient-accent);
        color: var(--brand);
        text-align: center;
    }

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

    .hero__eyebrow {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        opacity: 0.9;
        margin: 0 0 0.5rem;
        color: var(--neutral-0);
    }

    .hero__title {
        margin: 0 0 8px;
        font-size: clamp(28px, 5vw, 40px);
        color: var(--neutral-0);
    }

    .hero__subtitle {
        margin: 0 0 20px;
        color: rgba(249, 250, 251, 0.9);
    }

    .hero__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 22px;
        border-radius: 999px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
    }

    .hero__btn {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease),
        background-color var(--anim-duration) var(--anim-ease);
    }

    .hero__btn:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--surface-2);
    }

    .hero__btn--primary {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .hero__btn--ghost {
        background: transparent;
        color: var(--fg-on-primary);
        border: 1px solid rgba(191, 219, 254, 0.9);
    }

.next-cardline {
        padding: clamp(60px, 9vw, 108px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .next-cardline .wrap {
        max-width: 900px;
        margin: 0 auto;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        padding: clamp(18px, 3vw, 28px);
        text-align: center;
    }

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

    .next-cardline p {
        margin: 10px auto 0;
        max-width: 64ch;
        color: var(--neutral-600);
    }

    .next-cardline .list {
        margin-top: 14px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 8px;
    }

    .next-cardline .item {
        text-decoration: none;
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-2);
        padding: 10px;
        display: grid;
        gap: 4px;
    }

    .next-cardline .cta {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

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

.value-list {
        padding: clamp(60px, 8vw, 110px) clamp(16px, 3vw, 40px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .value-list .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .value-list h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 52px);
    }

    .value-list .lead {
        margin: 10px 0 16px;
        color: var(--neutral-600);
    }

    .value-list ol {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
    }

    .value-list li {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

    .value-list .head {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

    .value-list .head strong {
        display: inline-flex;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
    }

    .value-list h3 {
        margin: 0;
    }

    .value-list li p {
        margin: 8px 0 6px;
        color: var(--neutral-600);
    }

    .value-list li span {
        font-size: .85rem;
        color: var(--neutral-600);
    }

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

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: backgroundPulse 4s ease-in-out infinite;
    }

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

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

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

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

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

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

    .why-choose-alt .why-choose-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-light);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        align-items: flex-start;
        position: relative;
        overflow: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

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

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

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

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

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

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);
        animation: numberPulse 2s ease-in-out infinite;
    }

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

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

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

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

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

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

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

.header-cta .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-divider {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

    .header-cta {
        display: none;
    }

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

    .header-container {
        flex-wrap: wrap;
    }
    .header-logo {
        order: 1;
    }
    .burger-menu {
        order: 3;
    }
    .header-cta {
        order: 2;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-tagline {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .nav-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-list a:hover {
    color: #007bff;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

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

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    color: #6c757d;
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-links a {
    color: #495057;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 1rem auto;
    color: #6c757d;
  }

  .footer-copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .footer-links {
      justify-content: flex-start;
    }
    .footer-disclaimer,
    .footer-copyright {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (min-width: 992px) {
    .footer-container {
      grid-template-columns: 2fr 1fr 1.5fr;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

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

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

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

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

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

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

.project-list {

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

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

    .project-list .project-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .project-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .project-list .project-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .project-list .project-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--fg-on-page);
        color: var(--bg-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .project-list .project-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

    .project-list .project-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .project-list .project-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .project-list .project-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .project-list .project-list__card {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .project-list .project-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .project-list .project-list__image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .project-list .project-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .project-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .project-list h3 a {
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .project-list h3 a:hover {
        color: var(--bg-primary);
    }

    .project-list p {
            color: var(--neutral-600);
        margin: 0.5rem 0 1rem;
    }

    .project-list .project-list__tags {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .project-list .project-list__tag {
        padding: 0.25rem 0.75rem;
        border-radius: var(--radius-sm);
        background: var(--fg-on-page);
        color: var(--bg-page);
        font-size: 0.875rem;
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

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

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

.header-cta .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-divider {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

    .header-cta {
        display: none;
    }

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

    .header-container {
        flex-wrap: wrap;
    }
    .header-logo {
        order: 1;
    }
    .burger-menu {
        order: 3;
    }
    .header-cta {
        order: 2;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-tagline {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .nav-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-list a:hover {
    color: #007bff;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

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

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    color: #6c757d;
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-links a {
    color: #495057;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 1rem auto;
    color: #6c757d;
  }

  .footer-copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .footer-links {
      justify-content: flex-start;
    }
    .footer-disclaimer,
    .footer-copyright {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (min-width: 992px) {
    .footer-container {
      grid-template-columns: 2fr 1fr 1.5fr;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

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

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

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

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

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

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

.project-item {

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

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);
        color: rgba(255, 255, 255, 0.9);
    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

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

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
    }

.service-block-section {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--bg-page);
    color: var(--fg-on-page);
}

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

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

.service-block--flip {
    direction: rtl;
}

.service-block--flip > * {
    direction: ltr;
}

.service-block__image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.service-block__content h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-block__content p {
    color: var(--neutral-600);
    margin-bottom: var(--space-y);
}

.service-block__content ul {
    margin-left: 1.5rem;
    color: var(--neutral-600);
}

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

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

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

.header-cta .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-divider {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

    .header-cta {
        display: none;
    }

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

    .header-container {
        flex-wrap: wrap;
    }
    .header-logo {
        order: 1;
    }
    .burger-menu {
        order: 3;
    }
    .header-cta {
        order: 2;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-tagline {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .nav-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-list a:hover {
    color: #007bff;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

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

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    color: #6c757d;
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-links a {
    color: #495057;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 1rem auto;
    color: #6c757d;
  }

  .footer-copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .footer-links {
      justify-content: flex-start;
    }
    .footer-disclaimer,
    .footer-copyright {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (min-width: 992px) {
    .footer-container {
      grid-template-columns: 2fr 1fr 1.5fr;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

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

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

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

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

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

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

.project-item {

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

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);
        color: rgba(255, 255, 255, 0.9);
    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

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

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

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

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

.header-cta .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-divider {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

    .header-cta {
        display: none;
    }

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

    .header-container {
        flex-wrap: wrap;
    }
    .header-logo {
        order: 1;
    }
    .burger-menu {
        order: 3;
    }
    .header-cta {
        order: 2;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-tagline {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .nav-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-list a:hover {
    color: #007bff;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

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

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    color: #6c757d;
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-links a {
    color: #495057;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 1rem auto;
    color: #6c757d;
  }

  .footer-copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .footer-links {
      justify-content: flex-start;
    }
    .footer-disclaimer,
    .footer-copyright {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (min-width: 992px) {
    .footer-container {
      grid-template-columns: 2fr 1fr 1.5fr;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

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

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

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

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

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

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

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

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

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

.project-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
}

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

.project-item__tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.8rem;
}

.project-item__meta {
    margin: 8px 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.project-item__desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-200);
    line-height: 1.7;
}

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

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

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

.header-cta .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-divider {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

    .header-cta {
        display: none;
    }

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

    .header-container {
        flex-wrap: wrap;
    }
    .header-logo {
        order: 1;
    }
    .burger-menu {
        order: 3;
    }
    .header-cta {
        order: 2;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-tagline {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .nav-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-list a:hover {
    color: #007bff;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

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

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    color: #6c757d;
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-links a {
    color: #495057;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 1rem auto;
    color: #6c757d;
  }

  .footer-copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .footer-links {
      justify-content: flex-start;
    }
    .footer-disclaimer,
    .footer-copyright {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (min-width: 992px) {
    .footer-container {
      grid-template-columns: 2fr 1fr 1.5fr;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

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

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

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

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

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

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

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(24px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.identity-cv5 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .identity-cv5__hero {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        min-height: 220px;
    }

    .identity-cv5__hero img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        display: block;
    }

    .identity-cv5__overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--overlay));
    }

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

    .identity-cv5__overlay span {
        opacity: .92;
    }

    .identity-cv5__grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-cv5__grid p {
        margin: 0 0 10px;
    }

    .identity-cv5__grid ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .identity-cv5__grid li {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

    @media (max-width: 800px) {
        .identity-cv5__grid {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

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

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

.header-cta .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-divider {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

    .header-cta {
        display: none;
    }

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

    .header-container {
        flex-wrap: wrap;
    }
    .header-logo {
        order: 1;
    }
    .burger-menu {
        order: 3;
    }
    .header-cta {
        order: 2;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-tagline {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .nav-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-list a:hover {
    color: #007bff;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

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

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    color: #6c757d;
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-links a {
    color: #495057;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 1rem auto;
    color: #6c757d;
  }

  .footer-copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .footer-links {
      justify-content: flex-start;
    }
    .footer-disclaimer,
    .footer-copyright {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (min-width: 992px) {
    .footer-container {
      grid-template-columns: 2fr 1fr 1.5fr;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

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

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

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

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

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

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

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

    .contact-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

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

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

.support-lv4 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .support-lv4__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-lv4__wrap article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-lv4__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

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

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

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

    .form-layout-e .wrap {
        max-width: 820px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-e .dark-card {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .04);
    }

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

    .form-layout-e input:not([type="checkbox"]), .form-layout-e textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .07);
        color: var(--neutral-0);
        padding: 9px;
        font: inherit;
    }

    .form-layout-e .end {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 8px;
    }

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

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

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

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

.header-cta .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-divider {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

    .header-cta {
        display: none;
    }

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

    .header-container {
        flex-wrap: wrap;
    }
    .header-logo {
        order: 1;
    }
    .burger-menu {
        order: 3;
    }
    .header-cta {
        order: 2;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-tagline {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .nav-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-list a:hover {
    color: #007bff;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

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

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    color: #6c757d;
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-links a {
    color: #495057;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 1rem auto;
    color: #6c757d;
  }

  .footer-copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .footer-links {
      justify-content: flex-start;
    }
    .footer-disclaimer,
    .footer-copyright {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (min-width: 992px) {
    .footer-container {
      grid-template-columns: 2fr 1fr 1.5fr;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

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

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

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

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

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

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

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

    .terms-layout-a .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

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

    .terms-layout-a article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        margin-bottom: 12px;
    }

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

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

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

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

.header-cta .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-divider {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

    .header-cta {
        display: none;
    }

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

    .header-container {
        flex-wrap: wrap;
    }
    .header-logo {
        order: 1;
    }
    .burger-menu {
        order: 3;
    }
    .header-cta {
        order: 2;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-tagline {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .nav-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-list a:hover {
    color: #007bff;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

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

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    color: #6c757d;
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-links a {
    color: #495057;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 1rem auto;
    color: #6c757d;
  }

  .footer-copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .footer-links {
      justify-content: flex-start;
    }
    .footer-disclaimer,
    .footer-copyright {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (min-width: 992px) {
    .footer-container {
      grid-template-columns: 2fr 1fr 1.5fr;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

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

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

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

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

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

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

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

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

    .policy-layout-a .section-head {
        margin-bottom: 16px;
    }

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

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

    .policy-layout-a .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .policy-layout-a article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
    }

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

    .policy-layout-a article p {
        margin: 0;
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

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

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

.header-cta .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-divider {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

    .header-cta {
        display: none;
    }

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

    .header-container {
        flex-wrap: wrap;
    }
    .header-logo {
        order: 1;
    }
    .burger-menu {
        order: 3;
    }
    .header-cta {
        order: 2;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-tagline {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .nav-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-list a:hover {
    color: #007bff;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

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

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    color: #6c757d;
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-links a {
    color: #495057;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 1rem auto;
    color: #6c757d;
  }

  .footer-copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .footer-links {
      justify-content: flex-start;
    }
    .footer-disclaimer,
    .footer-copyright {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (min-width: 992px) {
    .footer-container {
      grid-template-columns: 2fr 1fr 1.5fr;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    padding: var(--space-y) var(--space-x);
    position: relative;
}

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

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

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

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

.header-cta .cta-button {
    display: inline-block;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.header-cta .cta-button:hover {
    background-color: var(--bg-primary-hover);
}

.header-divider {
    height: 1px;
    background-color: var(--border-on-surface-light);
    margin-top: var(--space-y);
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    z-index: 1001;
}
.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-page);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
    }

    .header-cta {
        display: none;
    }

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

    .header-container {
        flex-wrap: wrap;
    }
    .header-logo {
        order: 1;
    }
    .burger-menu {
        order: 3;
    }
    .header-cta {
        order: 2;
    }
}

.footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 2.5rem 1rem;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-tagline {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
  }

  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .nav-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-list a:hover {
    color: #007bff;
    text-decoration: underline;
  }

  .footer-contact {
    font-style: normal;
    line-height: 1.7;
  }

  .footer-contact strong {
    color: #2c3e50;
  }

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

  .footer-contact a:hover {
    text-decoration: underline;
  }

  .footer-legal {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    color: #6c757d;
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-links a {
    color: #495057;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 800px;
    margin: 1rem auto;
    color: #6c757d;
  }

  .footer-copyright {
    margin-top: 1rem;
    font-size: 0.85rem;
  }

  @media (min-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
      gap: 2rem 3rem;
    }
    .footer-legal {
      grid-column: 1 / -1;
      text-align: left;
    }
    .footer-links {
      justify-content: flex-start;
    }
    .footer-disclaimer,
    .footer-copyright {
      text-align: left;
      margin-left: 0;
      margin-right: 0;
    }
  }

  @media (min-width: 992px) {
    .footer-container {
      grid-template-columns: 2fr 1fr 1.5fr;
    }
    .footer-legal {
      grid-column: 1 / -1;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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