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

  --max-w: 1140px;
  --space-x: 1.09rem;
  --space-y: 0.96rem;
  --gap: 0.71rem;

  --radius-xl: 1.02rem;
  --radius-lg: 0.67rem;
  --radius-md: 0.41rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 2px 3px rgba(0,0,0,0.11);
  --shadow-md: 0 7px 12px rgba(0,0,0,0.14);
  --shadow-lg: 0 14px 28px rgba(0,0,0,0.18);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 240ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #2E7D32;
  --brand-contrast: #FFFFFF;
  --accent: #FF9800;
  --accent-contrast: #212121;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #E0E0E0;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

  --bg-page: #FAFAFA;
  --fg-on-page: #212121;

  --bg-alt: #F1F8E9;
  --fg-on-alt: #33691E;

  --surface-1: #FFFFFF;
  --surface-2: #F5F5F5;
  --fg-on-surface: #212121;
  --border-on-surface: #E0E0E0;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #424242;
  --border-on-surface-light: rgba(224, 224, 224, 0.7);

  --bg-primary: #2E7D32;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #388E3C;
  --ring: rgba(46, 125, 50, 0.4);

  --bg-accent: #FFF3E0;
  --fg-on-accent: #5D4037;
  --bg-accent-hover: #FFB74D;

  --link: #1B5E20;
  --link-hover: #2E7D32;

  --gradient-hero: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 50%, #81C784 100%);
  --gradient-accent: linear-gradient(90deg, #FF9800, #FFB74D);

  --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: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface-1);
  border-radius: var(--radius-xl);
  padding: var(--space-y) calc(var(--space-x) * 1.5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-on-surface-light);
}
.header-logo .logo-link {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
  color: var(--accent);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.nav-button {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  text-decoration: none;
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  margin-left: calc(var(--gap) * 1.5);
}
.nav-button:hover {
  background-color: var(--bg-primary-hover);
}
.burger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 3px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-button {
    display: flex;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 3) var(--space-x);
    gap: var(--gap);
    box-shadow: var(--shadow-lg);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header-nav.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) * 0.5);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .nav-button {
    margin-left: 0;
    margin-top: var(--gap);
    width: 100%;
    text-align: center;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        flex-basis: 50%;
    }

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

    .footer-tagline {
        color: #666;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

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

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

    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }

    .legal-links {
        color: #888;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #666;
        text-decoration: none;
    }

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

    .contact-section address {
        font-style: normal;
        color: #444;
        margin-bottom: 1.5rem;
    }

    .contact-section address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #333;
    }

    .contact-section a {
        color: #2c5530;
        text-decoration: none;
    }

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

    .social-links {
        color: #888;
        font-size: 0.9rem;
    }

    .social-links a {
        color: #666;
        text-decoration: none;
    }

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e0e0e0;
        text-align: center;
        color: #777;
        font-size: 0.85rem;
    }

    .footer-bottom a {
        color: #2c5530;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.wp-lang-switcher-v7 {
        position: fixed;
        left: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
        font-family: inherit;
    }

    .wp-lang-switcher-v7__trigger {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
        padding: 10px 14px;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        box-shadow: var(--shadow-md);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v7__trigger:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-lg);
    }

    .wp-lang-switcher-v7__icon {
        font-size: 15px;
        line-height: 1;
    }

    .wp-lang-switcher-v7__current {
        font-weight: 700;
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .wp-lang-switcher-v7__panel {
        margin-top: 10px;
        display: grid;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
        transition: opacity var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v7__panel.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .wp-lang-switcher-v7__panel button,
    .wp-lang-switcher-v7__panel a {
        min-width: 48px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        padding: 8px 10px;
        text-decoration: none;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-align: center;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v7__panel button:hover,
    .wp-lang-switcher-v7__panel a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.intro-cardinal-c13 {
        padding: clamp(3.8rem, 8vw, 6.9rem) var(--space-x);
        background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .16), transparent 30%), var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .intro-cardinal-c13__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
        align-items: center;
    }

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

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

    .intro-cardinal-c13__copy strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-cardinal-c13__copy span {
        display: block;
        margin-top: .9rem;

        max-width: 38rem;
    }

    .intro-cardinal-c13__cards {
        display: grid;
        gap: .75rem;
    }

    .intro-cardinal-c13__cards div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    @media (max-width: 860px) {
        .intro-cardinal-c13__wrap {
            grid-template-columns: 1fr;
        }
    }

.next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .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(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
        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/235621/pexels-photo-235621.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: black;
        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)
    }

.education-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.visual-ledger-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .visual-ledger-l2__head {
        margin-bottom: 1rem;
        text-align: center;
    }

    .visual-ledger-l2__head p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

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

    .visual-ledger-l2__deck figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .visual-ledger-l2__deck figcaption {
        padding: 1rem;
    }

    .visual-ledger-l2__deck strong {
        color: var(--brand);
    }

    .visual-ledger-l2__deck h3 {
        margin: .5rem 0 .35rem;
    }

    .visual-ledger-l2__deck p {
        margin: 0;
        color: var(--neutral-600);
    }

.nfsocial-v11 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

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

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

    .nfsocial-v11__text h2 {
        margin-bottom: var(--space-y);
    }

    .nfsocial-v11__text p {
        margin-bottom: var(--space-y);
        opacity: .92;
    }

    .nfsocial-v11__text a {
        display: inline-block;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @media (max-width: 840px) {
        .nfsocial-v11__grid {
            grid-template-columns: 1fr;
        }
    }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface-1);
  border-radius: var(--radius-xl);
  padding: var(--space-y) calc(var(--space-x) * 1.5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-on-surface-light);
}
.header-logo .logo-link {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
  color: var(--accent);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.nav-button {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  text-decoration: none;
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  margin-left: calc(var(--gap) * 1.5);
}
.nav-button:hover {
  background-color: var(--bg-primary-hover);
}
.burger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 3px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-button {
    display: flex;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 3) var(--space-x);
    gap: var(--gap);
    box-shadow: var(--shadow-lg);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header-nav.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) * 0.5);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .nav-button {
    margin-left: 0;
    margin-top: var(--gap);
    width: 100%;
    text-align: center;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        flex-basis: 50%;
    }

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

    .footer-tagline {
        color: #666;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

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

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

    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }

    .legal-links {
        color: #888;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #666;
        text-decoration: none;
    }

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

    .contact-section address {
        font-style: normal;
        color: #444;
        margin-bottom: 1.5rem;
    }

    .contact-section address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #333;
    }

    .contact-section a {
        color: #2c5530;
        text-decoration: none;
    }

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

    .social-links {
        color: #888;
        font-size: 0.9rem;
    }

    .social-links a {
        color: #666;
        text-decoration: none;
    }

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e0e0e0;
        text-align: center;
        color: #777;
        font-size: 0.85rem;
    }

    .footer-bottom a {
        color: #2c5530;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

    .identity-nv9__head {
        margin-bottom: 16px;
    }

    .identity-nv9__head span {
        display: inline-flex;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.2);
    }

    .identity-nv9__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-nv9__head p {
        margin: 0;
        max-width: 70ch;
        opacity: .92;
    }

    .identity-nv9__list {
        display: grid;
        gap: 10px;
    }

    .identity-nv9__list article {
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 12px;
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .identity-nv9__list b {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: rgba(15, 23, 42, 0.45);
        color: var(--neutral-0);
        align-self: start;
    }

    .identity-nv9__list h3 {
        margin: 0;
    }

    .identity-nv9__list em {
        display: block;
        margin-top: 4px;
        font-style: normal;
        opacity: .95;
    }

    .identity-nv9__list p {
        margin: 7px 0 0;
        opacity: .9;
    }

    @media (max-width: 640px) {
        .identity-nv9__list article {
            grid-template-columns: 1fr;
        }
    }

.gallery--light-v6 {
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--fg-on-page);
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
    transition: transform var(--anim-duration) var(--anim-ease);
    cursor: pointer;
}

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

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

.about-mission {

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

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

    .about-mission .about-mission__row {
        display: grid;
        gap: 24px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .about-mission figure img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .about-mission p {
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__row {
            grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
        }
    }

.faq-fresh-v2 {
        padding: calc(var(--space-y) * 2.5) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

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

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

    .faq-fresh-v2 .grid {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .faq-fresh-v2 article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .faq-fresh-v2 h3 {
        margin: 0 0 .5rem;
        font-size: 1.05rem;
    }

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface-1);
  border-radius: var(--radius-xl);
  padding: var(--space-y) calc(var(--space-x) * 1.5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-on-surface-light);
}
.header-logo .logo-link {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
  color: var(--accent);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.nav-button {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  text-decoration: none;
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  margin-left: calc(var(--gap) * 1.5);
}
.nav-button:hover {
  background-color: var(--bg-primary-hover);
}
.burger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 3px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-button {
    display: flex;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 3) var(--space-x);
    gap: var(--gap);
    box-shadow: var(--shadow-lg);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header-nav.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) * 0.5);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .nav-button {
    margin-left: 0;
    margin-top: var(--gap);
    width: 100%;
    text-align: center;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        flex-basis: 50%;
    }

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

    .footer-tagline {
        color: #666;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

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

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

    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }

    .legal-links {
        color: #888;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #666;
        text-decoration: none;
    }

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

    .contact-section address {
        font-style: normal;
        color: #444;
        margin-bottom: 1.5rem;
    }

    .contact-section address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #333;
    }

    .contact-section a {
        color: #2c5530;
        text-decoration: none;
    }

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

    .social-links {
        color: #888;
        font-size: 0.9rem;
    }

    .social-links a {
        color: #666;
        text-decoration: none;
    }

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e0e0e0;
        text-align: center;
        color: #777;
        font-size: 0.85rem;
    }

    .footer-bottom a {
        color: #2c5530;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.capabilities-light {

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

    .capabilities-light .capabilities-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .capabilities-light .capabilities-light__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

    }

    .capabilities-light h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

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

    .capabilities-light .capabilities-light__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .capabilities-light .capabilities-light__card {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        transition: all var(--anim-duration) var(--anim-ease);

        transform: scale(0.95);
    }

    .capabilities-light .capabilities-light__card:hover {
        border-color: var(--brand);
        box-shadow: var(--shadow-md);
        transform: scale(1);
    }

    .capabilities-light .capabilities-light__visual {
        flex-shrink: 0;
        position: relative;
    }

    .capabilities-light .capabilities-light__number {
        width: 64px;
        height: 64px;
        background: var(--bg-accent);
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
    }

    .capabilities-light .capabilities-light__content {
        flex: 1;
    }

    .capabilities-light .capabilities-light__card h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        font-weight: 700;
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .capabilities-light .capabilities-light__card p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.hiw-ribbon-c1 {
        padding: clamp(3.5rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .hiw-ribbon-c1__head {
        margin-bottom: 1.25rem;
    }

    .hiw-ribbon-c1__head p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-ribbon-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .hiw-ribbon-c1__track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: var(--gap);
    }

    .hiw-ribbon-c1__track article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--fg-on-primary);
        color:  var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-md);
        position: relative;
    }

    .hiw-ribbon-c1__track article::after {
        content: '';
        position: absolute;
        inset: auto 1rem 0.7rem 1rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent);
    }

    .hiw-ribbon-c1__track span {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hiw-ribbon-c1__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ribbon-c1__track p {
        margin: 0;
    }

.plans-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .plans-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .plans-lv4__head {
        text-align: center;
        margin-bottom: 14px;
    }

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

    .plans-lv4__head p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .plans-lv4__stack {
        display: grid;
        gap: 10px;
    }

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

    .plans-lv4__line {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 8px;
    }

    .plans-lv4__line h3 {
        margin: 0;
    }

    .plans-lv4__line p {
        margin: 0;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv4__chips {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-lv4__chips span {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 5px 9px;
        font-size: .88rem;
    }

    .plans-lv4__stack button {
        margin-top: 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 11px;
    }

.index-feedback-accordion {
        background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75), transparent 60%),
        var(--gradient-hero);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-feedback-accordion__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-accordion__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-accordion__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-feedback-accordion__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-accordion__row {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(248, 225, 231, 0.95);
        background: rgba(58, 46, 61, 0.92);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

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

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

    .index-feedback-accordion__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-accordion__name {
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-accordion__meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-accordion__right {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .index-feedback-accordion__stars {
        color: var(--brand);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .index-feedback-accordion__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--bg-page);
    }

    .index-feedback-accordion__a {
        display: none;
        padding: 0 16px 14px;
        color: rgba(255, 255, 255, 0.85);
        overflow: hidden;
    }

    .index-feedback-accordion__quote {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-accordion__badge {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
    }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface-1);
  border-radius: var(--radius-xl);
  padding: var(--space-y) calc(var(--space-x) * 1.5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-on-surface-light);
}
.header-logo .logo-link {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
  color: var(--accent);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.nav-button {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  text-decoration: none;
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  margin-left: calc(var(--gap) * 1.5);
}
.nav-button:hover {
  background-color: var(--bg-primary-hover);
}
.burger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 3px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-button {
    display: flex;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 3) var(--space-x);
    gap: var(--gap);
    box-shadow: var(--shadow-lg);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header-nav.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) * 0.5);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .nav-button {
    margin-left: 0;
    margin-top: var(--gap);
    width: 100%;
    text-align: center;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        flex-basis: 50%;
    }

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

    .footer-tagline {
        color: #666;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

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

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

    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }

    .legal-links {
        color: #888;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #666;
        text-decoration: none;
    }

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

    .contact-section address {
        font-style: normal;
        color: #444;
        margin-bottom: 1.5rem;
    }

    .contact-section address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #333;
    }

    .contact-section a {
        color: #2c5530;
        text-decoration: none;
    }

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

    .social-links {
        color: #888;
        font-size: 0.9rem;
    }

    .social-links a {
        color: #666;
        text-decoration: none;
    }

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e0e0e0;
        text-align: center;
        color: #777;
        font-size: 0.85rem;
    }

    .footer-bottom a {
        color: #2c5530;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

    .nfform-v7__form {
        max-width: 760px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v7 p {
        margin: 0 0 2px;
        opacity: .92;
    }

    .nfform-v7 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v7 input:not([type='checkbox']),
    .nfform-v7 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v7__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v7 button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

.touch-gridline {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .touch-gridline .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .touch-gridline .lead {
        margin: 10px 0 14px;
        color: var(--neutral-600);
    }

    .touch-gridline .list {
        display: grid;
        gap: 8px;
    }

    .touch-gridline .row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .touch-gridline .title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .touch-gridline .text {
        margin: 0;
        color: var(--neutral-600);
    }

    .touch-gridline .row a {
        color: var(--link);
        text-decoration: none;
        white-space: nowrap;
    }
    .touch-gridline .row a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .touch-gridline .cta {
        display: inline-block;
        margin-top: 24px;
        text-decoration: none;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
    }
    .touch-gridline .cta:hover {
        background: var(--bg-primary-hover);
    }

    .subscribe-form button:hover {
        background: var(--bg-primary-hover);
    }
    .subscribe-form input:focus {
        outline: 2px solid var(--ring);
        outline-offset: 1px;
    }

.nfcontacts-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

    .nfcontacts-v9__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

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

    .nfcontacts-v9__subtitle {
        margin: 0;
        opacity: .92;
    }

    .nfcontacts-v9__list {
        display: grid;
        gap: 10px;
    }

    .nfcontacts-v9__list article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .28);
        background: rgba(255, 255, 255, .1);
    }

    .nfcontacts-v9__label {
        margin: 0;
        opacity: .86;
    }

    .nfcontacts-v9__value {
        margin: 4px 0 0;
        font-weight: 700;
    }

    .nfcontacts-v9__list a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        white-space: nowrap;
    }

    @media (max-width: 700px) {
        .nfcontacts-v9__list article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface-1);
  border-radius: var(--radius-xl);
  padding: var(--space-y) calc(var(--space-x) * 1.5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-on-surface-light);
}
.header-logo .logo-link {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
  color: var(--accent);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.nav-button {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  text-decoration: none;
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  margin-left: calc(var(--gap) * 1.5);
}
.nav-button:hover {
  background-color: var(--bg-primary-hover);
}
.burger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 3px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-button {
    display: flex;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 3) var(--space-x);
    gap: var(--gap);
    box-shadow: var(--shadow-lg);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header-nav.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) * 0.5);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .nav-button {
    margin-left: 0;
    margin-top: var(--gap);
    width: 100%;
    text-align: center;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        flex-basis: 50%;
    }

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

    .footer-tagline {
        color: #666;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

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

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

    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }

    .legal-links {
        color: #888;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #666;
        text-decoration: none;
    }

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

    .contact-section address {
        font-style: normal;
        color: #444;
        margin-bottom: 1.5rem;
    }

    .contact-section address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #333;
    }

    .contact-section a {
        color: #2c5530;
        text-decoration: none;
    }

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

    .social-links {
        color: #888;
        font-size: 0.9rem;
    }

    .social-links a {
        color: #666;
        text-decoration: none;
    }

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e0e0e0;
        text-align: center;
        color: #777;
        font-size: 0.85rem;
    }

    .footer-bottom a {
        color: #2c5530;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface-1);
  border-radius: var(--radius-xl);
  padding: var(--space-y) calc(var(--space-x) * 1.5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-on-surface-light);
}
.header-logo .logo-link {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
  color: var(--accent);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.nav-button {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  text-decoration: none;
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  margin-left: calc(var(--gap) * 1.5);
}
.nav-button:hover {
  background-color: var(--bg-primary-hover);
}
.burger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 3px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-button {
    display: flex;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 3) var(--space-x);
    gap: var(--gap);
    box-shadow: var(--shadow-lg);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header-nav.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) * 0.5);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .nav-button {
    margin-left: 0;
    margin-top: var(--gap);
    width: 100%;
    text-align: center;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        flex-basis: 50%;
    }

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

    .footer-tagline {
        color: #666;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

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

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

    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }

    .legal-links {
        color: #888;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #666;
        text-decoration: none;
    }

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

    .contact-section address {
        font-style: normal;
        color: #444;
        margin-bottom: 1.5rem;
    }

    .contact-section address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #333;
    }

    .contact-section a {
        color: #2c5530;
        text-decoration: none;
    }

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

    .social-links {
        color: #888;
        font-size: 0.9rem;
    }

    .social-links a {
        color: #666;
        text-decoration: none;
    }

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e0e0e0;
        text-align: center;
        color: #777;
        font-size: 0.85rem;
    }

    .footer-bottom a {
        color: #2c5530;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface-1);
  border-radius: var(--radius-xl);
  padding: var(--space-y) calc(var(--space-x) * 1.5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-on-surface-light);
}
.header-logo .logo-link {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
  color: var(--accent);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.nav-button {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  text-decoration: none;
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  margin-left: calc(var(--gap) * 1.5);
}
.nav-button:hover {
  background-color: var(--bg-primary-hover);
}
.burger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 3px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-button {
    display: flex;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 3) var(--space-x);
    gap: var(--gap);
    box-shadow: var(--shadow-lg);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header-nav.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) * 0.5);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .nav-button {
    margin-left: 0;
    margin-top: var(--gap);
    width: 100%;
    text-align: center;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        flex-basis: 50%;
    }

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

    .footer-tagline {
        color: #666;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

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

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

    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }

    .legal-links {
        color: #888;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #666;
        text-decoration: none;
    }

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

    .contact-section address {
        font-style: normal;
        color: #444;
        margin-bottom: 1.5rem;
    }

    .contact-section address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #333;
    }

    .contact-section a {
        color: #2c5530;
        text-decoration: none;
    }

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

    .social-links {
        color: #888;
        font-size: 0.9rem;
    }

    .social-links a {
        color: #666;
        text-decoration: none;
    }

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e0e0e0;
        text-align: center;
        color: #777;
        font-size: 0.85rem;
    }

    .footer-bottom a {
        color: #2c5530;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-y) var(--space-x);
  background-color: var(--overlay);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface-1);
  border-radius: var(--radius-xl);
  padding: var(--space-y) calc(var(--space-x) * 1.5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-on-surface-light);
}
.header-logo .logo-link {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  transition: color var(--anim-duration) var(--anim-ease);
}
.header-logo .logo-link:hover {
  color: var(--accent);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: calc(var(--gap) * 1.5);
}
.nav-link {
  text-decoration: none;
  color: var(--fg-on-surface);
  font-weight: 500;
  padding: calc(var(--space-y) / 2) calc(var(--space-x) / 2);
  border-radius: var(--radius-sm);
  transition: all var(--anim-duration) var(--anim-ease);
}
.nav-link:hover {
  color: var(--link-hover);
  background-color: var(--btn-ghost-bg-hover);
}
.nav-button {
  background-color: var(--bg-primary);
  color: var(--fg-on-primary);
  text-decoration: none;
  padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: background-color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
  margin-left: calc(var(--gap) * 1.5);
}
.nav-button:hover {
  background-color: var(--bg-primary-hover);
}
.burger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.burger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neutral-800);
  border-radius: 3px;
  transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}
@media (max-width: 767px) {
  .burger-button {
    display: flex;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--surface-1);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--space-y) * 3) var(--space-x);
    gap: var(--gap);
    box-shadow: var(--shadow-lg);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 999;
    overflow-y: auto;
  }
  .header-nav.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: calc(var(--gap) * 0.5);
  }
  .nav-link {
    display: block;
    padding: var(--space-y) var(--space-x);
    width: 100%;
  }
  .nav-button {
    margin-left: 0;
    margin-top: var(--gap);
    width: 100%;
    text-align: center;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger-button[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        border-top: 1px solid #eaeaea;
        padding: 2.5rem 1rem 1rem;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
    }

    .brand-section {
        flex-basis: 50%;
    }

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

    .footer-tagline {
        color: #666;
        margin-bottom: 1.5rem;
        font-style: italic;
    }

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

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

    .footer-nav a:hover {
        color: #2c5530;
        text-decoration: underline;
    }

    .legal-links {
        color: #888;
        font-size: 0.9rem;
    }

    .legal-links a {
        color: #666;
        text-decoration: none;
    }

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

    .contact-section address {
        font-style: normal;
        color: #444;
        margin-bottom: 1.5rem;
    }

    .contact-section address strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #333;
    }

    .contact-section a {
        color: #2c5530;
        text-decoration: none;
    }

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

    .social-links {
        color: #888;
        font-size: 0.9rem;
    }

    .social-links a {
        color: #666;
        text-decoration: none;
    }

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

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #e0e0e0;
        text-align: center;
        color: #777;
        font-size: 0.85rem;
    }

    .footer-bottom a {
        color: #2c5530;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-nav ul {
            gap: 1rem;
        }

        .footer-bottom {
            text-align: left;
        }
    }

.cookie-cv13 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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