:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 1.8;

  --max-w: 1180px;
  --space-x: 1.71rem;
  --space-y: 1.5rem;
  --gap: 0.77rem;

  --radius-xl: 1.32rem;
  --radius-lg: 1rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.37rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 3px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 24px rgba(0,0,0,0.1);

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

  --brand: #1a1a2e;
  --brand-contrast: #ffffff;
  --accent: #d4af37;
  --accent-contrast: #1a1a2e;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #d0d0d0;
  --neutral-600: #6b6b6b;
  --neutral-800: #2d2d2d;
  --neutral-900: #1a1a1a;

  --bg-page: #fafafa;
  --fg-on-page: #1a1a1a;

  --bg-alt: #e8e8e8;
  --fg-on-alt: #1a1a1a;

  --surface-1: #ffffff;
  --surface-2: #f0f0f0;
  --fg-on-surface: #1a1a1a;
  --border-on-surface: #c0c0c0;

  --surface-light: #f9f9f9;
  --fg-on-surface-light: #1a1a1a;
  --border-on-surface-light: #d4d4d4;

  --bg-primary: #b22222;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #8b1a1a;
  --ring: #d4af37;

  --bg-accent: #d4af37;
  --fg-on-accent: #1a1a2e;
  --bg-accent-hover: #b8962e;

  --link: #b22222;
  --link-hover: #8b1a1a;

  --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  --gradient-accent: linear-gradient(135deg, #d4af37 0%, #b8962e 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 {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    padding: 0 var(--space-x);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    border-radius: var(--radius-sm);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: center;
    }
    .logo {
      padding: 0;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-top {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-menu li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-menu li a:hover {
  color: #f39c12;
}
.footer-middle {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #f39c12;
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.footer-bottom {
  flex-direction: column;
  text-align: center;
  margin-bottom: 0;
}
.footer-legal p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #bdc3c7;
  max-width: 800px;
  margin: 0.5rem auto 0;
}
.footer-legal a {
  color: #f39c12;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-menu {
    justify-content: center;
    margin-top: 1rem;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

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

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

    .nfintro-v9__hero {flex: 1 1 24rem;}
    .nfintro-v9__side {flex: 1 1 18rem;}

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

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

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

    .nfintro-v9__buttons {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

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

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

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

    .nfintro-v9__stats article {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .nfintro-v9__stats strong,
    .nfintro-v9__stats span {display: block;}

    .nfintro-v9__stats span {margin-top: .25rem; color: rgba(255, 255, 255, .82);}

    @media (max-width: 780px) {
        .nfintro-v9__stats {
            grid-template-columns: 1fr;
        }
    }

.values-papers-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .values-papers-l6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-papers-l6__head {
        margin-bottom: 1.1rem;
    }

    .values-papers-l6__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

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

    .values-papers-l6__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-papers-l6__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px dashed var(--border-on-surface-light);
    }

    .values-papers-l6__grid div {
        font-size: 1.25rem;
    }

    .values-papers-l6__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-papers-l6__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

    .values-papers-l6__grid small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.visual-film-c1 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .visual-film-c1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-film-c1__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .visual-film-c1__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .visual-film-c1__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-film-c1__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);

    }

    .visual-film-c1__media {
        position: relative;
    }

    .visual-film-c1__media img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
    }

    .visual-film-c1__media span {
        position: absolute;
        top: .8rem;
        left: .8rem;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: rgba(0, 0, 0, .28);
    }

    .visual-film-c1__grid figcaption {
        padding: 1rem;
    }

    .visual-film-c1__grid h3 {
        margin: .5rem 0 .35rem;
    }

.next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

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

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

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

    .next-strip-l2__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-strip-l2__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        text-decoration: none;
        color: var(--neutral-900);
        box-shadow: var(--shadow-sm);
    }

    .next-strip-l2__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .next-strip-l2 {
        overflow: hidden;
    }

    .next-strip-l2__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/162553/pexels-photo-162553.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: var(--neutral-900);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    padding: 0 var(--space-x);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    border-radius: var(--radius-sm);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: center;
    }
    .logo {
      padding: 0;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-top {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-menu li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-menu li a:hover {
  color: #f39c12;
}
.footer-middle {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #f39c12;
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.footer-bottom {
  flex-direction: column;
  text-align: center;
  margin-bottom: 0;
}
.footer-legal p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #bdc3c7;
  max-width: 800px;
  margin: 0.5rem auto 0;
}
.footer-legal a {
  color: #f39c12;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-menu {
    justify-content: center;
    margin-top: 1rem;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

.post-list--light-v6 {

    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.post-list__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.post-list__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.post-list__row {
    display: grid;
    grid-template-columns: minmax(0,1.8fr) auto;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.post-list__row:first-child {
    border-top: none;
}

.post-list__row-title {
    font-size: 0.9rem;
    color: var(--fg-on-page);
}

.post-list__row-meta {
    font-size: 0.85rem;
    color: var(--neutral-600);
}

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    padding: 0 var(--space-x);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    border-radius: var(--radius-sm);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: center;
    }
    .logo {
      padding: 0;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-top {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-menu li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-menu li a:hover {
  color: #f39c12;
}
.footer-middle {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #f39c12;
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.footer-bottom {
  flex-direction: column;
  text-align: center;
  margin-bottom: 0;
}
.footer-legal p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #bdc3c7;
  max-width: 800px;
  margin: 0.5rem auto 0;
}
.footer-legal a {
  color: #f39c12;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-menu {
    justify-content: center;
    margin-top: 1rem;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

.post-item--light-v6 {

    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.post-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
}

.post-item__meta {
    margin: 0 0 8px;
    font-size: 0.85rem;
    color: var(--neutral-600);
}

.post-item__lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    padding: 0 var(--space-x);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    border-radius: var(--radius-sm);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: center;
    }
    .logo {
      padding: 0;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-top {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-menu li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-menu li a:hover {
  color: #f39c12;
}
.footer-middle {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #f39c12;
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.footer-bottom {
  flex-direction: column;
  text-align: center;
  margin-bottom: 0;
}
.footer-legal p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #bdc3c7;
  max-width: 800px;
  margin: 0.5rem auto 0;
}
.footer-legal a {
  color: #f39c12;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-menu {
    justify-content: center;
    margin-top: 1rem;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

.post-item {

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

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

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;

        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;

    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.author--light-v6 {

    padding: 32px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.author__inner {
    max-width: 520px;
    margin: 0 auto;
}

.author__name {
    margin: 0 0 4px;
    font-size: 1.05rem;
}

.author__role {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

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

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    padding: 0 var(--space-x);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    border-radius: var(--radius-sm);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: center;
    }
    .logo {
      padding: 0;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-top {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-menu li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-menu li a:hover {
  color: #f39c12;
}
.footer-middle {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #f39c12;
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.footer-bottom {
  flex-direction: column;
  text-align: center;
  margin-bottom: 0;
}
.footer-legal p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #bdc3c7;
  max-width: 800px;
  margin: 0.5rem auto 0;
}
.footer-legal a {
  color: #f39c12;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-menu {
    justify-content: center;
    margin-top: 1rem;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

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

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

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

    .post-item__category {
        margin: 0 0 6px;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: var(--bg-accent);
    }

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

    .post-item__meta {
        margin: 0;
        font-size: 0.85rem;
        color: var(--neutral-300);
    }

    .post-item__lead {
        margin: 12px 0;
        font-size: 0.95rem;
        color: var(--neutral-100);
    }

    .post-item__body {
        font-size: 0.92rem;
        color: var(--neutral-200);
        line-height: 1.7;
    }

.plans-ux8{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--neutral-100);color:var(--neutral-900)}.plans-ux8__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux8__head p{margin:8px 0 12px;color:var(--neutral-600)}.plans-ux8__stack{display:grid;gap:10px}.plans-ux8__stack article{border:1px solid var(--neutral-300);border-radius:var(--radius-md);background:var(--neutral-0);padding:12px}.plans-ux8__line{display:flex;justify-content:space-between;gap:8px}.plans-ux8__line span{font-size:.84rem;color:var(--brand)}.plans-ux8__stack p{margin:7px 0;color:var(--neutral-800)}.plans-ux8__chips{display:flex;flex-wrap:wrap;gap:6px}.plans-ux8__chips i{font-style:normal;border:1px solid var(--neutral-300);border-radius:999px;padding:4px 8px;background:var(--neutral-100)}.plans-ux8 button{margin-top:8px;border:1px solid var(--neutral-300);border-radius:var(--radius-sm);padding:8px 10px;background:var(--neutral-100);color:var(--neutral-900)}

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    padding: 0 var(--space-x);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    border-radius: var(--radius-sm);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: center;
    }
    .logo {
      padding: 0;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-top {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-menu li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-menu li a:hover {
  color: #f39c12;
}
.footer-middle {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #f39c12;
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.footer-bottom {
  flex-direction: column;
  text-align: center;
  margin-bottom: 0;
}
.footer-legal p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #bdc3c7;
  max-width: 800px;
  margin: 0.5rem auto 0;
}
.footer-legal a {
  color: #f39c12;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-menu {
    justify-content: center;
    margin-top: 1rem;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

.article-list--light-v6 {

    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.article-list__title {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
}

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

.article-list__row {
    background: var(--bg-page);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    border: 1px solid var(--border-on-surface-light);
}

.article-list__row h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.article-list__row p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.faq-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

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

    .faq-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .faq-fresh-v5 .stack {
        display: grid;
        gap: .75rem;
    }

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

    .faq-fresh-v5 h3 {
        margin: 0 0 .5rem;
        font-size: 1rem;
    }

    .faq-fresh-v5 p {
        margin: 0;
        opacity: .88;
    }

.rec-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.rec-lx10 .rec-wrap{max-width:var(--max-w);margin:0 auto;display:grid;gap:.72rem}
.rec-lx10 .rec-banner{padding:.95rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.rec-lx10 h2{margin:0;font-size:clamp(1.74rem,3vw,2.43rem)}
.rec-lx10 .rec-banner p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.rec-lx10 .rec-scroller{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(260px,1fr);overflow:auto;gap:.6rem;padding-bottom:.3rem}
.rec-lx10 .rec-scroller article{padding:.9rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-md);background:var(--surface-1)}
.rec-lx10 h3{margin:0 0 .25rem;font-size:1rem}
.rec-lx10 article p{margin:0 0 .52rem;color:var(--fg-on-surface-light)}
.rec-lx10 a{text-decoration:none;color:var(--link);font-weight:700}

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    padding: 0 var(--space-x);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    border-radius: var(--radius-sm);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: center;
    }
    .logo {
      padding: 0;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-top {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-menu li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-menu li a:hover {
  color: #f39c12;
}
.footer-middle {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #f39c12;
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.footer-bottom {
  flex-direction: column;
  text-align: center;
  margin-bottom: 0;
}
.footer-legal p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #bdc3c7;
  max-width: 800px;
  margin: 0.5rem auto 0;
}
.footer-legal a {
  color: #f39c12;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-menu {
    justify-content: center;
    margin-top: 1rem;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

.map-poster-c7 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .map-poster-c7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .map-poster-c7__copy {
        flex: 1 1 18rem;
    }

    .map-poster-c7__embed {
        flex: 1 1 24rem;
    }

    .map-poster-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .map-poster-c7__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .map-poster-c7__details {
        margin-top: 1rem;
        display: grid;
        gap: .75rem;
    }

    .map-poster-c7__details div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-poster-c7__details span {
        display: block;
        margin-top: .35rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-poster-c7__embed iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

.frm-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.frm-lx10 .frm-bounds{max-width:var(--max-w);margin:0 auto;display:grid;gap:.8rem}
.frm-lx10 .frm-copy{display:flex;justify-content:space-between;gap:1rem;align-items:end}
.frm-lx10 h2{margin:0;font-size:clamp(1.75rem,3.1vw,2.45rem)}
.frm-lx10 .frm-copy p{margin:0;color:var(--fg-on-surface-light);max-width:55ch}
.frm-lx10 .frm-frame{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.6rem;padding:.9rem;border-radius:var(--radius-xl);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.frm-lx10 label{grid-column:span 2;display:grid;gap:.22rem;padding:.65rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);background:var(--surface-1)}
.frm-lx10 label span{font-size:.8rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx10 input,.frm-lx10 textarea{width:100%;padding:.64rem .72rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-sm);font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx10 .frm-wide{grid-column:1/-1}
.frm-lx10 textarea{min-height:130px;resize:vertical}
.frm-lx10 button{grid-column:1/-1;justify-self:start;padding:.82rem 1.15rem;border-radius:var(--radius-md);border:0;background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
@keyframes frmPulse{0%,100%{box-shadow:0 0 0 0 color-mix(in srgb,var(--ring) 0%, transparent)}50%{box-shadow:0 0 0 6px color-mix(in srgb,var(--ring) 18%, transparent)}}
.frm-lx10 button:focus-visible{animation:frmPulse .8s ease-out 1}
@media (max-width:900px){.frm-lx10 .frm-copy{display:grid}.frm-lx10 .frm-frame{grid-template-columns:1fr}.frm-lx10 label{grid-column:1/-1}}

.contacts-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .contacts-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u1 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u1 article,.contacts-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u1 p{margin:0} .contacts-u1 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u1 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .contacts-u1 .panel{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .contacts-u1 .grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.55rem} @media (max-width:860px){.contacts-u1 .split,.contacts-u1 .media,.contacts-u1 .grid,.contacts-u1 .cards,.contacts-u1 .bento,.contacts-u1 .foot{grid-template-columns:1fr}}

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    padding: 0 var(--space-x);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    border-radius: var(--radius-sm);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: center;
    }
    .logo {
      padding: 0;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-top {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-menu li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-menu li a:hover {
  color: #f39c12;
}
.footer-middle {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #f39c12;
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.footer-bottom {
  flex-direction: column;
  text-align: center;
  margin-bottom: 0;
}
.footer-legal p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #bdc3c7;
  max-width: 800px;
  margin: 0.5rem auto 0;
}
.footer-legal a {
  color: #f39c12;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-menu {
    justify-content: center;
    margin-top: 1rem;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

.policyitems-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .policyitems-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u9 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u9 article,.policyitems-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u9 p{margin:0} .policyitems-u9 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u9 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:policyitems-u9Pulse 2.8s ease-in-out infinite} @keyframes policyitems-u9Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} .policyitems-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .policyitems-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.policyitems-u9 .split,.policyitems-u9 .media,.policyitems-u9 .grid,.policyitems-u9 .cards,.policyitems-u9 .bento,.policyitems-u9 .foot{grid-template-columns:1fr}}

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    padding: 0 var(--space-x);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    border-radius: var(--radius-sm);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: center;
    }
    .logo {
      padding: 0;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-top {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-menu li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-menu li a:hover {
  color: #f39c12;
}
.footer-middle {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #f39c12;
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.footer-bottom {
  flex-direction: column;
  text-align: center;
  margin-bottom: 0;
}
.footer-legal p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #bdc3c7;
  max-width: 800px;
  margin: 0.5rem auto 0;
}
.footer-legal a {
  color: #f39c12;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-menu {
    justify-content: center;
    margin-top: 1rem;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

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

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

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

    .policy-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--surface-1);
    }

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    padding: 0 var(--space-x);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    border-radius: var(--radius-sm);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: center;
    }
    .logo {
      padding: 0;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-top {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-menu li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-menu li a:hover {
  color: #f39c12;
}
.footer-middle {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #f39c12;
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.footer-bottom {
  flex-direction: column;
  text-align: center;
  margin-bottom: 0;
}
.footer-legal p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #bdc3c7;
  max-width: 800px;
  margin: 0.5rem auto 0;
}
.footer-legal a {
  color: #f39c12;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-menu {
    justify-content: center;
    margin-top: 1rem;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

.thx-lx2{padding:calc(var(--space-y)*2.8) var(--space-x)}
.thx-lx2 .thx-shell{max-width:880px;margin:0 auto;display:grid;gap:.65rem;text-align:center}
.thx-lx2 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.75rem)}
.thx-lx2 .thx-sub{margin:0;color:var(--fg-on-surface-light)}
.thx-lx2 .thx-next,.thx-lx2 .thx-contact{padding:.9rem;border-radius:var(--radius-lg);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.thx-lx2 h3{margin:0 0 .22rem;font-size:1rem}
.thx-lx2 p{margin:0;color:var(--fg-on-surface-light)}

header {
    position: relative;
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    padding: 0 var(--space-x);
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: var(--space-y) calc(var(--space-x) * 0.5);
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    border-radius: var(--radius-sm);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-nav .nav-link {
    width: 100%;
    text-align: center;
    padding: calc(var(--space-y) * 0.75) var(--space-x);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: center;
    }
    .logo {
      padding: 0;
    }
  }

footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-top {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-nav {
  flex: 2 1 300px;
}
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}
.footer-menu li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-menu li a:hover {
  color: #f39c12;
}
.footer-middle {
  border-bottom: 1px solid #7f8c8d;
  padding-bottom: 1.5rem;
}
.footer-contact {
  width: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact-list li {
  font-size: 0.95rem;
}
.contact-list a {
  color: #f39c12;
  text-decoration: none;
}
.contact-list a:hover {
  text-decoration: underline;
}
.footer-bottom {
  flex-direction: column;
  text-align: center;
  margin-bottom: 0;
}
.footer-legal p {
  margin: 0.3rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #bdc3c7;
  max-width: 800px;
  margin: 0.5rem auto 0;
}
.footer-legal a {
  color: #f39c12;
  text-decoration: none;
}
.footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-menu {
    justify-content: center;
    margin-top: 1rem;
  }
  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

.cookie-lv2 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

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

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

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

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

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

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

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

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

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