:root {
  --font-family: "Lato", sans-serif;
  --font-size-base: 16.9px;
  --line-height-base: 1.37;

  --max-w: 1040px;
  --space-x: 1.06rem;
  --space-y: 1.5rem;
  --gap: 2.05rem;

  --radius-xl: 1.14rem;
  --radius-lg: 0.99rem;
  --radius-md: 0.68rem;
  --radius-sm: 0.36rem;

  --shadow-sm: 0 3px 6px rgba(0,0,0,0.22);
  --shadow-md: 0 12px 20px rgba(0,0,0,0.29);
  --shadow-lg: 0 22px 42px rgba(0,0,0,0.35);

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

  --brand: #1A3C6E;
  --brand-contrast: #FFFFFF;
  --accent: #E67E22;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F2F4F7;
  --neutral-300: #B0B8C4;
  --neutral-600: #5A6577;
  --neutral-800: #2C3A4F;
  --neutral-900: #1A2533;

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

  --bg-alt: #F2F4F7;
  --fg-on-alt: #2C3A4F;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FB;
  --fg-on-surface: #1A2533;
  --border-on-surface: #D1D6E0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2C3A4F;
  --border-on-surface-light: #E0E4EB;

  --bg-primary: #1A3C6E;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #142E55;
  --ring: #1A3C6E;

  --bg-accent: #E67E22;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D35400;

  --link: #1A3C6E;
  --link-hover: #E67E22;

  --gradient-hero: linear-gradient(135deg, #1A3C6E 0%, #2C5A8C 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #D35400 100%);

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

header {
    background-color: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
  }
  .nav-list a {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  @media (max-width: 767px) {
    .header-nav {
      justify-content: flex-end;
    }
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: 1rem;
      border-radius: var(--radius-md);
      z-index: 100;
    }
    .nav-list.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.intro-mosaic-c15 {
        padding: clamp(3.9rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .intro-mosaic-c15__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .intro-mosaic-c15__hero {
        flex: 1 1 24rem;
    }

    .intro-mosaic-c15__aside {
        flex: 1 1 18rem;
    }

    .intro-mosaic-c15__hero p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-mosaic-c15__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1.01;
    }

    .intro-mosaic-c15__hero span {
        display: block;
        margin-top: .9rem;
        color: rgba(255, 255, 255, .88);
        max-width: 40rem;
    }

    .intro-mosaic-c15__buttons {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-mosaic-c15__btn {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__btn--primary {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

    .intro-mosaic-c15__aside img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__stats {
        margin-top: .85rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }

    .intro-mosaic-c15__stats div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__stats strong, .intro-mosaic-c15__stats span {
        display: block;
    }

    .intro-mosaic-c15__stats span {
        margin-top: .25rem;
        color: rgba(255, 255, 255, .82);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .next-ux23 {
        padding: clamp(3.1rem, 7vw, 5.6rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-ux23__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

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

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

    .next-ux23__line {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        gap: .7rem;
    }

    .next-ux23__line a {
        display: flex;
        gap: .6rem;
        align-items: center;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        text-decoration: none;
        color: var(--neutral-900);
    }

    .next-ux23__line i {
        font-style: normal;
    }

    .next-ux23__copy {
        margin: 1rem 0 0;
        color: var(--neutral-600);
    }

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

.faq-fresh-v4 {
        padding: calc(var(--space-y) * 2.7) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .faq-fresh-v4 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap);
    }

    .faq-fresh-v4 .cover {
        padding: 1.1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        align-self: start;
    }

    .faq-fresh-v4 .cover h2 {
        margin: 0 0 .5rem;
    }

    .faq-fresh-v4 .cover p {
        margin: 0;
        opacity: .9;
    }

    .faq-fresh-v4 .rows {
        display: grid;
        gap: .75rem;
    }

    .faq-fresh-v4 details {
        padding: .85rem 1rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .faq-fresh-v4 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .faq-fresh-v4 details p {
        margin: .65rem 0 0;
        opacity: .9;
    }

    @media (max-width: 860px) {
        .faq-fresh-v4 .shell {
            grid-template-columns:1fr;
        }
    }

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

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

.features__title {
    text-align: left;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-2);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: left;
    border: 1px solid var(--border-on-surface);
}

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

.features__icon {
    font-size: 2.2rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__icon--chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

header {
    background-color: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
  }
  .nav-list a {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  @media (max-width: 767px) {
    .header-nav {
      justify-content: flex-end;
    }
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: 1rem;
      border-radius: var(--radius-md);
      z-index: 100;
    }
    .nav-list.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.profile {

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

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

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

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

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

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

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

    /* Si randomNumber es impar (1) - primer hijo mantiene order: 0 (por defecto) */
    .profile .profile__header > *:first-child {
        order: 0;
    }

    @media (max-width: 767px) {
        .profile .profile__header {
            flex-direction: column;
            text-align: center;
        }
    }

    .profile .profile__avatar-wrapper {
        position: relative;
        flex-shrink: 0;
    }

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

    .profile .profile__avatar-overlay {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        border: 3px solid var(--bg-page);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__avatar-overlay input {
        display: none;
    }

    .profile .profile__avatar-overlay:hover {
        transform: scale(1.1);
        box-shadow: var(--shadow-lg);
    }

    .profile .profile__avatar-icon {
        font-size: 1.125rem;
    }

    .profile .profile__header-info {
        flex: 1;
    }

    .profile .profile__header-info h2 {
        margin: 0 0 0.5rem;
        font-size: clamp(24px, 3.5vw, 28px);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__role {
        margin: 0;
        color: var(--neutral-600);
        font-size: 1rem;
    }

    .profile .profile__form {
        display: flex;
        flex-direction: column;
        gap: clamp(32px, 4vw, 40px);
    }

    /* Si randomNumber es impar (1) - primer hijo mantiene order: 0 */
    .profile .profile__form > *:first-child {
        order: 0;
    }

    .profile .profile__form-section {
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .profile .profile__form-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

    .profile .profile__form-section h3 {
        margin: 0 0 clamp(20px, 3vw, 24px);
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

    /* Si randomNumber es impar (1) - primer hijo mantiene order: 0 */
    .profile .profile__form-grid > *:first-child {
        order: 0;
    }

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

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

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

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

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

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

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

    .profile .profile__checkboxes {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* Si randomNumber es impar (1) - primer hijo mantiene order: 0 */
    .profile .profile__checkboxes > *:first-child {
        order: 0;
    }

    .profile .profile__checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        font-weight: 500;
        color: var(--fg-on-page);
    }

    .profile .profile__checkbox-label input {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .profile .profile__actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(24px, 4vw, 32px);
        padding-top: clamp(24px, 4vw, 32px);
        border-top: 1px solid var(--border-on-surface-light);
    }

    /* Si randomNumber es impar (1) - primer hijo mantiene order: 0 */
    .profile .profile__actions > *:first-child {
        order: 0;
    }

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

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

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

    .profile .profile__cancel:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        background: rgba(37, 99, 235, 0.1);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
  }
  .nav-list a {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  @media (max-width: 767px) {
    .header-nav {
      justify-content: flex-end;
    }
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: 1rem;
      border-radius: var(--radius-md);
      z-index: 100;
    }
    .nav-list.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.settings {

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

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

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

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

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

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

    /* Si randomNumber es impar (1) - primer hijo mantiene order: 0 */
    .settings .settings__layout > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

    /* Si randomNumber es impar (1) - primer hijo mantiene order: 0 */
    .settings .settings__nav > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

    .settings .settings__panel {
        display: none;
    }

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

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

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

    /* Si randomNumber es impar (1) - primer hijo mantiene order: 0 */
    .settings .settings__avatar-section > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

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

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

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

    /* Si randomNumber es impar (1) - primer hijo mantiene order: 0 */
    .settings .settings__form-grid > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

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

    }

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

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

    /* Si randomNumber es impar (1) - primer hijo mantiene order: 0 */
    .settings .settings__form-actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.clar-ux11{padding:clamp(20px,3vw,44px);background:var(--neutral-0);color:var(--neutral-900)}.clar-ux11__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux11__head p{margin:8px 0 12px;color:var(--neutral-600)}.clar-ux11 table{width:100%;border-collapse:separate;border-spacing:0 8px}.clar-ux11 td{vertical-align:top;background:var(--neutral-100);border:1px solid var(--neutral-300);padding:12px}.clar-ux11 td:first-child{width:140px;font-weight:700;color:var(--brand);border-radius:var(--radius-md) 0 0 var(--radius-md)}.clar-ux11 td:last-child{border-radius:0 var(--radius-md) var(--radius-md) 0}.clar-ux11 strong{display:block;margin:0 0 6px}.clar-ux11 p{margin:0;color:var(--neutral-800)}@media(max-width:700px){.clar-ux11 td:first-child{width:90px}}

header {
    background-color: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
  }
  .nav-list a {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  @media (max-width: 767px) {
    .header-nav {
      justify-content: flex-end;
    }
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: 1rem;
      border-radius: var(--radius-md);
      z-index: 100;
    }
    .nav-list.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.activity {

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

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

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

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

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

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

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

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

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

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

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

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

.recommendations-board {
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--accent-contrast);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

    .recommendations-board__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.72);
    }

    .recommendations-board__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--neutral-0);
    }

    .recommendations-board__mosaic {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .recommendations-board__tile {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
        padding: 18px 18px 16px;

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(12px);
    }

    .recommendations-board__tile:nth-child(1),
    .recommendations-board__tile:nth-child(2) {
        grid-column: span 6;
    }

    .recommendations-board__tile::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(248, 225, 231, 0.25), transparent 60%);
        opacity: 0.9;
        pointer-events: none;
    }

    .recommendations-board__tile h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--neutral-0);
    }

    .recommendations-board__why {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        color: rgba(255, 255, 255, 0.72);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .recommendations-board__desc {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: rgba(255, 255, 255, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .recommendations-board__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--gradient-accent);
        color: var(--brand-contrast);
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .recommendations-board__cta::after {
        content: '->';
    }

    .recommendations-board__cta:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 960px) {
        .recommendations-board__tile {
            grid-column: span 6;
        }
    }

    @media (max-width: 620px) {
        .recommendations-board__tile {
            grid-column: span 12;
        }
    }

header {
    background-color: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
  }
  .nav-list a {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  @media (max-width: 767px) {
    .header-nav {
      justify-content: flex-end;
    }
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: 1rem;
      border-radius: var(--radius-md);
      z-index: 100;
    }
    .nav-list.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.security {

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

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

    .security .security__h {
        margin-bottom: var(--space-y);
    }

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

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

    .security h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
    }

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .security .security__logout {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

header {
    background-color: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
  }
  .nav-list a {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  @media (max-width: 767px) {
    .header-nav {
      justify-content: flex-end;
    }
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: 1rem;
      border-radius: var(--radius-md);
      z-index: 100;
    }
    .nav-list.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

    .form-fresh-v1 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 1.4);
    }

    .form-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    .form-fresh-v1 .intro p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v1 .form {
        display: grid;
        gap: .75rem;
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

    .form-fresh-v1 label {
        display: grid;
        gap: .3rem;
    }

    .form-fresh-v1 span {
        font-size: .85rem;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v1 input {
        padding: .68rem .8rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v1 button {
        padding: .75rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

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

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

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

header {
    background-color: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
  }
  .nav-list a {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  @media (max-width: 767px) {
    .header-nav {
      justify-content: flex-end;
    }
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: 1rem;
      border-radius: var(--radius-md);
      z-index: 100;
    }
    .nav-list.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
  }
  .nav-list a {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  @media (max-width: 767px) {
    .header-nav {
      justify-content: flex-end;
    }
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: 1rem;
      border-radius: var(--radius-md);
      z-index: 100;
    }
    .nav-list.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

header {
    background-color: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
  }
  .nav-list a {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  @media (max-width: 767px) {
    .header-nav {
      justify-content: flex-end;
    }
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: 1rem;
      border-radius: var(--radius-md);
      z-index: 100;
    }
    .nav-list.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

.nfthank-v11 {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nfthank-v11__box {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .2);
        background: rgba(255, 255, 255, .08);
    }

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

    .nfthank-v11 p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .nfthank-v11 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--neutral-0);
        color: var(--neutral-900);
    }

header {
    background-color: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--accent-contrast);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }
  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
  }
  .nav-list a {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }
  @media (max-width: 767px) {
    .header-nav {
      justify-content: flex-end;
    }
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: 1rem;
      border-radius: var(--radius-md);
      z-index: 100;
    }
    .nav-list.open {
      display: flex;
    }
    .burger {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .footer-logo a:hover {
    color: #ffc107;
  }
  .footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0a500;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    display: block;
  }
  .footer-contact a {
    color: #ccc;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
  }
  .footer-legal a:hover {
    color: #f0a500;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex-basis: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-copyright {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contact address {
      align-items: center;
    }
    .footer-legal {
      align-items: center;
    }
  }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

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

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

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

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

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

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

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

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

    .nf404-v10 a {
        display: inline-block;
        margin-top: 18px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }