:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 17.1px;
  --line-height-base: 1.61;

  --max-w: 1560px;
  --space-x: 2.09rem;
  --space-y: 1.5rem;
  --gap: 1.48rem;

  --radius-xl: 1.28rem;
  --radius-lg: 0.91rem;
  --radius-md: 0.49rem;
  --radius-sm: 0.31rem;

  --shadow-sm: 0 2px 7px rgba(0,0,0,0.11);
  --shadow-md: 0 8px 26px rgba(0,0,0,0.14);
  --shadow-lg: 0 26px 30px rgba(0,0,0,0.17);

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

  --brand: #0052CC;
  --brand-contrast: #FFFFFF;
  --accent: #00C853;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

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

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #DEE2E6;

  --surface-light: rgba(0, 82, 204, 0.04);
  --fg-on-surface-light: #0052CC;
  --border-on-surface-light: rgba(0, 82, 204, 0.15);

  --bg-primary: #0052CC;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0041A3;
  --ring: rgba(0, 82, 204, 0.4);

  --bg-accent: rgba(0, 200, 83, 0.1);
  --fg-on-accent: #006B3C;
  --bg-accent-hover: #00E676;

  --link: #0052CC;
  --link-hover: #0041A3;

  --gradient-hero: linear-gradient(135deg, #0052CC 0%, #0066FF 100%);
  --gradient-accent: linear-gradient(90deg, #00C853 0%, #00E676 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(--surface-1);
  border-bottom: 1px solid var(--border-on-surface-light);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--link-hover);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.btn-search,
.btn-burger {
  background: var(--btn-ghost-bg);
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-md);
  color: var(--fg-on-surface);
  cursor: pointer;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-burger:hover {
  background: var(--btn-ghost-bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-search:focus-visible,
.btn-burger:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-burger {
  display: none;
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }
  .header__nav.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
  .btn-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .brand {
        font-size: 2rem;
        font-weight: 700;
        color: #1a73e8;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #1a73e8;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0d47a1;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        text-decoration: none;
        color: #6c757d;
    }
    .legal-links a:hover {
        color: #1a73e8;
        text-decoration: underline;
    }
    .contact-info {
        color: #495057;
    }
    .contact-info p {
        margin: 0.4rem 0;
    }
    .contact-info a {
        color: #1a73e8;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

.intro-focus-alt {

        background: var(--fg-on-primary);
        color: var(--bg-primary);
        padding: clamp(60px, 10vw, 120px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: var(--accent);
        border-radius: 50%;
        opacity: 0.1;
        filter: blur(80px);
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.1;
        }
        50% {
            transform: scale(1.2);
            opacity: 0.15;
        }
    }

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

    .intro-focus-alt .intro-focus-alt__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(32px, 5vw, 64px);
        align-items: center;
    }

    @media (min-width: 768px) {
        .intro-focus-alt .intro-focus-alt__grid {
            grid-template-columns: 1.2fr 1fr;
        }
    }

    .intro-focus-alt .intro-focus-alt__visual {
        order: 2;
    }

    .intro-focus-alt .intro-focus-alt__title {
        font-size: clamp(32px, 6vw, 56px);
        font-weight: 800;
        margin: 0 0 1.5rem;
        line-height: 1.1;
        position: relative;
    }

    .intro-focus-alt .intro-focus-alt__title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--accent);
        border-radius: var(--radius-sm);
        animation: expandLine 1s ease-out 0.8s forwards;
        transform: scaleX(0);
        transform-origin: left;
    }

    @keyframes expandLine {
        to {
            transform: scaleX(1);
        }
    }

    .intro-focus-alt .intro-focus-alt__description {
        font-size: clamp(16px, 2vw, 20px);
        margin: 2rem 0 0;
        opacity: 0.9;
        line-height: var(--line-height-base);
    }

    .intro-focus-alt .intro-focus-alt__card {
        background: var(--brand-contrast);
        padding: clamp(32px, 4vw, 48px);
        border-radius: var(--radius-xl);
        text-align: center;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt .intro-focus-alt__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        to {
            left: 100%;
        }
    }

    .intro-focus-alt .intro-focus-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: clamp(48px, 6vw, 64px);
        margin-bottom: 1rem;
    }

    .intro-focus-alt .intro-focus-alt__fact {
        font-size: clamp(40px, 6vw, 56px);
        font-weight: 900;
        color: var(--brand);
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .intro-focus-alt .intro-focus-alt__caption {
        font-size: clamp(14px, 1.5vw, 18px);
        color: var(--neutral-600);
        font-weight: 600;
    }

.next-fan-c5 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .next-fan-c5__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-fan-c5__banner p {
        margin: 0;
    }

    .next-fan-c5__banner h2 {
        margin: .5rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-fan-c5__fan {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-fan-c5__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: var(--accent);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--accent-contrast);
        text-decoration: none;
    }

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
    }

    .next-fan-c5__tail {
        margin-top: 1rem;

    }

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

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

    .faq-fresh-v1 .shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .faq-fresh-v1 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    }

    .faq-fresh-v1 .items {
        display: grid;
        gap: .8rem;
    }

    .faq-fresh-v1 details {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        padding: .85rem 1rem;
        background: var(--surface-1);
    }

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

    .faq-fresh-v1 p {
        margin: .7rem 0 0;
        color: var(--fg-on-surface-light);
    }

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

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

.profile__card {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 16px;
    align-items: center;
    border-radius: var(--radius-xl);
    padding: 18px 20px;
    background: rgba(15,23,42,0.98);
    border: 1px solid rgba(148,163,184,0.75);
}

.profile__avatar {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--bg-primary);
}

.profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.profile__role {
    margin: 0 0 6px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.profile__bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

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

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

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

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--link-hover);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.btn-search,
.btn-burger {
  background: var(--btn-ghost-bg);
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-md);
  color: var(--fg-on-surface);
  cursor: pointer;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-burger:hover {
  background: var(--btn-ghost-bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-search:focus-visible,
.btn-burger:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-burger {
  display: none;
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }
  .header__nav.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
  .btn-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .brand {
        font-size: 2rem;
        font-weight: 700;
        color: #1a73e8;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #1a73e8;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0d47a1;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        text-decoration: none;
        color: #6c757d;
    }
    .legal-links a:hover {
        color: #1a73e8;
        text-decoration: underline;
    }
    .contact-info {
        color: #495057;
    }
    .contact-info p {
        margin: 0.4rem 0;
    }
    .contact-info a {
        color: #1a73e8;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

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

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

.profile__card {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 16px;
    align-items: center;
    border-radius: var(--radius-xl);
    padding: 18px 20px;
    background: rgba(15,23,42,0.98);
    border: 1px solid rgba(148,163,184,0.75);
}

.profile__avatar {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--bg-primary);
}

.profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.profile__role {
    margin: 0 0 6px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.profile__bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.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(--surface-1);
  border-bottom: 1px solid var(--border-on-surface-light);
  padding: var(--space-y) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--link-hover);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.btn-search,
.btn-burger {
  background: var(--btn-ghost-bg);
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-md);
  color: var(--fg-on-surface);
  cursor: pointer;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-burger:hover {
  background: var(--btn-ghost-bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-search:focus-visible,
.btn-burger:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-burger {
  display: none;
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }
  .header__nav.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
  .btn-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .brand {
        font-size: 2rem;
        font-weight: 700;
        color: #1a73e8;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #1a73e8;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0d47a1;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        text-decoration: none;
        color: #6c757d;
    }
    .legal-links a:hover {
        color: #1a73e8;
        text-decoration: underline;
    }
    .contact-info {
        color: #495057;
    }
    .contact-info p {
        margin: 0.4rem 0;
    }
    .contact-info a {
        color: #1a73e8;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

.settings {

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

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

    .settings .settings__tabs {
        display: flex;
        gap: 0.5rem;
        margin-bottom: var(--space-y);
        border-bottom: 1px solid var(--ring);
    }

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

    .settings .settings__tab {
        padding: 0.875rem 1.5rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        font-weight: 600;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__tab:hover {
        color: var(--bg-primary);
    }

    .settings .settings__tab.active {
        color: var(--bg-primary);
        border-color: var(--bg-primary);
    }

    .settings .settings__form {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .settings .settings__group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .settings .settings__group label {
        font-weight: 600;
        color: var(--fg-on-page);
    }

    .settings .settings__group input[type="text"],
    .settings .settings__group input[type="email"],
    .settings .settings__group input[type="file"] {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

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

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

    .settings .settings__group input[type="checkbox"] {
        margin-right: 0.5rem;
    }

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

    .settings .settings__submit:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--link-hover);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.btn-search,
.btn-burger {
  background: var(--btn-ghost-bg);
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-md);
  color: var(--fg-on-surface);
  cursor: pointer;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-burger:hover {
  background: var(--btn-ghost-bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-search:focus-visible,
.btn-burger:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-burger {
  display: none;
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }
  .header__nav.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
  .btn-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .brand {
        font-size: 2rem;
        font-weight: 700;
        color: #1a73e8;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #1a73e8;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0d47a1;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        text-decoration: none;
        color: #6c757d;
    }
    .legal-links a:hover {
        color: #1a73e8;
        text-decoration: underline;
    }
    .contact-info {
        color: #495057;
    }
    .contact-info p {
        margin: 0.4rem 0;
    }
    .contact-info a {
        color: #1a73e8;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

.messages {

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

    .messages .messages__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);

    }

    @media (max-width: 767px) {
        .messages .messages__c {
            grid-template-columns: 1fr;
            height: auto;
        }

        .messages .messages__chat-form {
            flex-direction: column;
        }
    }

    @media (min-width: 1024px) {
        .messages .messages__c {
            grid-template-columns: 300px 1fr;
        }
    }

    .messages .messages__list {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1rem;
        overflow-y: auto;
    }

    .messages h2 {
        margin: 0 0 1rem;
        color: var(--fg-on-page);
        font-size: 1.25rem;
    }

    .messages .messages__items {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .messages .messages__item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .messages .messages__item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .messages .messages__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--fg-on-page);
        flex-shrink: 0;
    }

    .messages .messages__info {
        flex: 1;
        min-width: 0;
    }

    .messages h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
        font-size: 1rem;
    }

    .messages .messages__info p {
        margin: 0 0 0.25rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .messages .messages__time {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .messages .messages__chat {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
    }

    .messages .messages__chat-header {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages h3 {
        margin: 0;
        color: var(--fg-on-page);
    }

    .messages .messages__chat-messages {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .messages .messages__message {
        background: var(--bg-page);
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        max-width: 70%;
    }

    .messages .messages__message-text {
        color: var(--fg-on-page);
        margin-bottom: 0.25rem;
    }

    .messages .messages__message-time {
        font-size: 0.75rem;
        color: var(--neutral-600);
    }

    .messages .messages__chat-form {
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages .messages__chat-form input {
        flex: 1;
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-page);
        outline: none;
    }

    .messages .messages__chat-form input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .messages .messages__chat-form button {
        padding: 0.875rem 1.5rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
    }

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

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

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

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--link-hover);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.btn-search,
.btn-burger {
  background: var(--btn-ghost-bg);
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-md);
  color: var(--fg-on-surface);
  cursor: pointer;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-burger:hover {
  background: var(--btn-ghost-bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-search:focus-visible,
.btn-burger:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-burger {
  display: none;
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }
  .header__nav.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
  .btn-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .brand {
        font-size: 2rem;
        font-weight: 700;
        color: #1a73e8;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #1a73e8;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0d47a1;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        text-decoration: none;
        color: #6c757d;
    }
    .legal-links a:hover {
        color: #1a73e8;
        text-decoration: underline;
    }
    .contact-info {
        color: #495057;
    }
    .contact-info p {
        margin: 0.4rem 0;
    }
    .contact-info a {
        color: #1a73e8;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

    .cookie-lv6__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);
        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);
        border-color: var(--bg-primary);
    }

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

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

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

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--link-hover);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.btn-search,
.btn-burger {
  background: var(--btn-ghost-bg);
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-md);
  color: var(--fg-on-surface);
  cursor: pointer;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-burger:hover {
  background: var(--btn-ghost-bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-search:focus-visible,
.btn-burger:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-burger {
  display: none;
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }
  .header__nav.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
  .btn-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .brand {
        font-size: 2rem;
        font-weight: 700;
        color: #1a73e8;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #1a73e8;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0d47a1;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        text-decoration: none;
        color: #6c757d;
    }
    .legal-links a:hover {
        color: #1a73e8;
        text-decoration: underline;
    }
    .contact-info {
        color: #495057;
    }
    .contact-info p {
        margin: 0.4rem 0;
    }
    .contact-info a {
        color: #1a73e8;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

.form-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .form-layout-d .wrap {
        max-width: 760px;
        margin: 0 auto;
    }

    .form-layout-d .section-head {
        margin-bottom: 18px;
    }

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

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

    .form-layout-d .line-form {
        border-top: 2px solid var(--brand);
        padding-top: 12px;
    }

    .form-layout-d label {
        display: grid;
        gap: 8px;
        margin-bottom: 12px;
        font-weight: 600;
        color: var(--brand);
    }

    .form-layout-d input, .form-layout-d textarea {
        border: 0;
        border-bottom: 1px solid var(--neutral-300);
        padding: 8px 2px;
        font: inherit;
        background: transparent;
    }

    .form-layout-d input:focus, .form-layout-d textarea:focus {
        outline: none;
        border-color: var(--ring);
    }

    .form-layout-d button {
        border: 1px solid var(--brand);
        color: var(--brand);
        background: transparent;
        border-radius: 999px;
        padding: 9px 16px;
    }

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

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

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

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

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

    .contact-layout-f .section-head p {
        margin: 10px auto 0;
        max-width: 74ch;
        color: var(--neutral-600);
    }

    .contact-layout-f .capsule {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .contact-layout-f .capsule article {
        border-radius: 12px;
        border: 1px solid var(--border-on-surface-light);
        padding: 14px 16px;
        background: var(--surface-1);
    }

    .contact-layout-f .capsule h3 {
        margin: 0;
        font-size: .96rem;
        color: var(--brand);
    }

    .contact-layout-f .capsule p {
        margin: 5px 0 0;
    }

    .contact-layout-f .social-strip {
        margin-top: 18px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .contact-layout-f .social-strip a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: 7px 11px;
        border-radius: var(--radius-sm);
    }

    .social-follow {
        text-align: center;
    }

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

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

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

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--link-hover);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.btn-search,
.btn-burger {
  background: var(--btn-ghost-bg);
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-md);
  color: var(--fg-on-surface);
  cursor: pointer;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-burger:hover {
  background: var(--btn-ghost-bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-search:focus-visible,
.btn-burger:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-burger {
  display: none;
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }
  .header__nav.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
  .btn-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .brand {
        font-size: 2rem;
        font-weight: 700;
        color: #1a73e8;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #1a73e8;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0d47a1;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        text-decoration: none;
        color: #6c757d;
    }
    .legal-links a:hover {
        color: #1a73e8;
        text-decoration: underline;
    }
    .contact-info {
        color: #495057;
    }
    .contact-info p {
        margin: 0.4rem 0;
    }
    .contact-info a {
        color: #1a73e8;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

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

    .terms-layout-c .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

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

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

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

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--link-hover);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.btn-search,
.btn-burger {
  background: var(--btn-ghost-bg);
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-md);
  color: var(--fg-on-surface);
  cursor: pointer;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-burger:hover {
  background: var(--btn-ghost-bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-search:focus-visible,
.btn-burger:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-burger {
  display: none;
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }
  .header__nav.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
  .btn-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .brand {
        font-size: 2rem;
        font-weight: 700;
        color: #1a73e8;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #1a73e8;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0d47a1;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        text-decoration: none;
        color: #6c757d;
    }
    .legal-links a:hover {
        color: #1a73e8;
        text-decoration: underline;
    }
    .contact-info {
        color: #495057;
    }
    .contact-info p {
        margin: 0.4rem 0;
    }
    .contact-info a {
        color: #1a73e8;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

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

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

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

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

    .terms-layout-b .section-head p {
        margin: 10px auto 0;
        color: var(--neutral-600);
        max-width: 74ch;
    }

    .terms-layout-b .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .terms-layout-b article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--bg-alt);
    }

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

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

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

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

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

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

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--link-hover);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.btn-search,
.btn-burger {
  background: var(--btn-ghost-bg);
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-md);
  color: var(--fg-on-surface);
  cursor: pointer;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-burger:hover {
  background: var(--btn-ghost-bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-search:focus-visible,
.btn-burger:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-burger {
  display: none;
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }
  .header__nav.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
  .btn-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .brand {
        font-size: 2rem;
        font-weight: 700;
        color: #1a73e8;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #1a73e8;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0d47a1;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        text-decoration: none;
        color: #6c757d;
    }
    .legal-links a:hover {
        color: #1a73e8;
        text-decoration: underline;
    }
    .contact-info {
        color: #495057;
    }
    .contact-info p {
        margin: 0.4rem 0;
    }
    .contact-info a {
        color: #1a73e8;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

.thank-mode-f {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .thank-mode-f .shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        border: 1px solid var(--border-on-surface-light);
    }

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

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

    .thank-mode-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

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

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

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav__link {
  color: var(--fg-on-surface);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--link-hover);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--anim-duration) var(--anim-ease);
}
.nav__link:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.btn-search,
.btn-burger {
  background: var(--btn-ghost-bg);
  border: 1px solid var(--border-on-surface-light);
  border-radius: var(--radius-md);
  color: var(--fg-on-surface);
  cursor: pointer;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--anim-duration) var(--anim-ease);
}
.btn-search:hover,
.btn-burger:hover {
  background: var(--btn-ghost-bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-search:focus-visible,
.btn-burger:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn-burger {
  display: none;
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(2) {
  opacity: 0;
}
.btn-burger[aria-expanded="true"] .burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--surface-1);
    border-top: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 99;
  }
  .header__nav.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
  .btn-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        justify-content: space-between;
    }
    .footer-left {
        flex: 1;
        min-width: 250px;
    }
    .footer-right {
        flex: 2;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .brand {
        font-size: 2rem;
        font-weight: 700;
        color: #1a73e8;
        margin-bottom: 1rem;
    }
    .copyright {
        color: #6c757d;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #1a73e8;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .footer-nav a:hover {
        color: #0d47a1;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .legal-links a {
        text-decoration: none;
        color: #6c757d;
    }
    .legal-links a:hover {
        color: #1a73e8;
        text-decoration: underline;
    }
    .contact-info {
        color: #495057;
    }
    .contact-info p {
        margin: 0.4rem 0;
    }
    .contact-info a {
        color: #1a73e8;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        color: #6c757d;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e9ecef;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.75rem;
        }
    }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

    .cookie-lv6__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
    }

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

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

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

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

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

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

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