:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 16.1px;
  --line-height-base: 1.5;

  --max-w: 1160px;
  --space-x: 1.21rem;
  --space-y: 0.99rem;
  --gap: 0.96rem;

  --radius-xl: 0.97rem;
  --radius-lg: 0.74rem;
  --radius-md: 0.45rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 18px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 36px rgba(0,0,0,0.19);

  --overlay: rgba(255,255,255,0.85);
  --anim-duration: 280ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

  --brand: #D4AF37;
  --brand-contrast: #FFFFFF;
  --accent: #C19B2A;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F8F8;
  --neutral-300: #E5E5E5;
  --neutral-600: #8A8A8A;
  --neutral-800: #3A3A3A;
  --neutral-900: #1A1A1A;

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

  --bg-alt: #FAFAFA;
  --fg-on-alt: #3A3A3A;

  --surface-1: #FFFFFF;
  --surface-2: #F8F8F8;
  --fg-on-surface: #1A1A1A;
  --border-on-surface: #E5E5E5;

  --surface-light: rgba(255,255,255,0.95);
  --fg-on-surface-light: #3A3A3A;
  --border-on-surface-light: rgba(229,229,229,0.7);

  --bg-primary: #D4AF37;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #C19B2A;
  --ring: rgba(212, 175, 55, 0.4);

  --bg-accent: #F9F5E8;
  --fg-on-accent: #5A4A1F;
  --bg-accent-hover: #B08E24;

  --link: #C19B2A;
  --link-hover: #A8871E;

  --gradient-hero: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(249,245,232,0.85) 100%);
  --gradient-accent: linear-gradient(90deg, #D4AF37 0%, #E8C966 100%);

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

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

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

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

    .logo-link:hover {
        color: var(--accent);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

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

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

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

        .header-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 80px;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .header-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0;
        }

        .nav-item {
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .header-cta {
            display: none;
        }

        .header-container {
            flex-wrap: wrap;
        }
    }

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

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-tagline {
        color: #7f8c8d;
        font-size: 0.9rem;
        margin: 0;
    }

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

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

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

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

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

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

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #666;
        line-height: 1.6;
    }

    .footer-links {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.25rem;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 800px;
        margin: 0.75rem auto;
        color: #888;
    }

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

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 2.5rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

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

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

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

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

.intro-metrics-l4 {
        padding: clamp(3.6rem, 8vw, 6.6rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .intro-metrics-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .intro-metrics-l4__copy {
        text-align: center;
        max-width: 44rem;
        margin: 0 auto;
    }

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

    .intro-metrics-l4__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.04;
    }

    .intro-metrics-l4__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__stats {
        margin-top: 1.3rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
        gap: var(--gap);
    }

    .intro-metrics-l4__stats article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        text-align: center;
    }

    .intro-metrics-l4__stats strong {
        display: block;
        font-size: 1.6rem;
        color: var(--brand);
    }

    .intro-metrics-l4__stats span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__footer {
        margin-top: 1rem;
        text-align: center;
        color: var(--neutral-800);
    }

.values-spine-c1 {
        padding: clamp(3.5rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-page);
    }

    .values-spine-c1__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-spine-c1__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

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

    .values-spine-c1__head h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--neutral-900);
    }

    .values-spine-c1__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

    .values-spine-c1__list {
        display: grid;
        gap: .8rem;
    }

    .values-spine-c1__list article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
    }

    .values-spine-c1__list strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: bold;
    }

    .values-spine-c1__list h3 {
        margin: 0;
        color: var(--neutral-900);
    }

    .values-spine-c1__list p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    .values-spine-c1__list small {
        display: block;
        margin-top: .55rem;
        color: var(--brand);
        font-weight: 500;
    }

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

    .touch-column .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .touch-column .head {
        margin-bottom: 14px;
    }

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

    .touch-column .head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .touch-column .cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .touch-column .left,
    .touch-column .right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

    .touch-column .list-title {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .touch-column article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .touch-column article:last-child {
        border-bottom: 0;
    }

    .touch-column h3 {
        margin: 0 0 6px;
    }

    .touch-column article p {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

    .touch-column article a {
        color: var(--link);
        text-decoration: none;
    }

    .touch-column .right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .touch-column .right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 860px) {
        .touch-column .cols {
            grid-template-columns: 1fr;
        }
    }

.why-choose-alt {

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

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);

        animation: backgroundPulse 4s ease-in-out infinite;
    }

    @keyframes backgroundPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }

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

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

    }

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

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

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

    .why-choose-alt .why-choose-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-light);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

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

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

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

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

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

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);

        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% {

            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

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

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

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

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

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

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

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

    .logo-link:hover {
        color: var(--accent);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

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

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

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

        .header-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 80px;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .header-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0;
        }

        .nav-item {
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .header-cta {
            display: none;
        }

        .header-container {
            flex-wrap: wrap;
        }
    }

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

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-tagline {
        color: #7f8c8d;
        font-size: 0.9rem;
        margin: 0;
    }

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

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

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

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

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

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

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #666;
        line-height: 1.6;
    }

    .footer-links {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.25rem;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 800px;
        margin: 0.75rem auto;
        color: #888;
    }

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

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 2.5rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

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

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

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

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

.story-edge-c5 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .story-edge-c5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .story-edge-c5__image {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .story-edge-c5__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

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

    .story-edge-c5__content p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .story-edge-c5__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-edge-c5__content span {
        display: block;
        margin-top: .8rem;
    }

    .story-edge-c5__content p {

    }

    .story-edge-c5__content a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

.identity-lv6 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .identity-lv6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-lv6__img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .identity-lv6__body h3 {
        margin: 0 0 10px;
        color: var(--brand);
        font-size: 1rem;
    }

    .identity-lv6__body p {
        margin: 0 0 10px;
        color: var(--neutral-600);
    }

    .identity-lv6__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

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

.team-orbit {
        background: radial-gradient(circle at 10% 10%, rgba(255, 139, 92, 0.18), transparent 40%), var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 110px) clamp(18px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .team-orbit::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 85% 10%, rgba(73, 146, 255, 0.4), transparent 50%);
        opacity: 0.4;
        pointer-events: none;
    }

    .team-orbit__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .team-orbit__h {
        text-align: center;
        margin-bottom: clamp(48px, 6vw, 80px);
    }

    .team-orbit__eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: rgba(255, 255, 255, 0.6);
        margin: 0 0 0.75rem;
    }

    .team-orbit h2 {
        margin: 0 0 1rem;
        font-size: clamp(34px, 5vw, 58px);
    }

    .team-orbit__lead {
        margin: 0 auto;
        max-width: 720px;
        color: rgba(255, 255, 255, 0.75);
    }

    .team-orbit__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .team-orbit__card {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        background: rgba(3, 7, 21, 0.65);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 32px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 25px 40px rgba(1, 4, 16, 0.6);
        backdrop-filter: blur(18px);
        transform: translateY(30px);
    }

    .team-orbit__avatar {
        width: 80px;
        height: 80px;
        border-radius: 24px;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

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

    .team-orbit__meta h3 {
        margin: 0;
        font-size: 1.4rem;
    }

    .team-orbit__meta span {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.95rem;
    }

    .team-orbit__content p {
        margin: 0.75rem 0 1rem;
    }

    .team-orbit__focus {
        display: inline-flex;
        padding: 0.35rem 0.75rem;
        border-radius: 999px;
        background: rgba(255, 139, 92, 0.2);
        color: var(--bg-accent);
        font-weight: 600;
    }

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

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

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

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

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

    .faq-layout-f .table {
        display: grid;
        gap: 10px;
    }

    .faq-layout-f .line {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
        padding: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .faq-layout-f .q {
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-f .a {
        color: var(--neutral-600);
    }

    @media (max-width: 780px) {
        .faq-layout-f .line {
            grid-template-columns: 1fr;
        }
    }

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

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

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

    .logo-link:hover {
        color: var(--accent);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

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

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

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

        .header-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 80px;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .header-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0;
        }

        .nav-item {
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .header-cta {
            display: none;
        }

        .header-container {
            flex-wrap: wrap;
        }
    }

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

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-tagline {
        color: #7f8c8d;
        font-size: 0.9rem;
        margin: 0;
    }

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

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

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

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

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

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

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #666;
        line-height: 1.6;
    }

    .footer-links {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.25rem;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 800px;
        margin: 0.75rem auto;
        color: #888;
    }

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

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 2.5rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

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

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

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

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

.hiw-zigzag-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .hiw-zigzag-c3__head {
        max-width: 42rem;
        margin: 0 auto 1.25rem;
        text-align: center;
    }

    .hiw-zigzag-c3__head h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-zigzag-c3__head p {
        margin: .55rem 0 0;

    }

    .hiw-zigzag-c3__grid {
        display: grid;
        gap: var(--gap);
    }

    .hiw-zigzag-c3__grid article {
        width: min(28rem, 100%);
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
    }

    .hiw-zigzag-c3__grid article:nth-child(odd) {
        margin-right: auto;
    }

    .hiw-zigzag-c3__grid article:nth-child(even) {
        margin-left: auto;
    }

    .hiw-zigzag-c3__num {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .hiw-zigzag-c3__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .hiw-zigzag-c3__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .9);
    }

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(24px);
    }

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

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

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

    .index-feedback-list__name {
        font-weight: 800;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-list__meta {
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-list__rating {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

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

    .index-feedback-list__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--fg-on-page);
    }

    .index-feedback-list__a {
        display: none;
        padding: 0 16px 14px;
        color: var(--neutral-800);
        overflow: hidden;
    }

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

    .index-feedback-list__chip {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
    }

    @media (max-width: 560px) {
        .index-feedback-list__q {
            align-items: flex-start;
        }

        .index-feedback-list__rating {
            margin-top: 2px;
        }

        .index-feedback-list__meta {
            display: none;
        }
    }

.statistics {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--gradient-hero);
    color: var(--gradient-accent);
}

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

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap);
    text-align: center;
}

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
}

.statistics__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--brand);
}

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--neutral-800);
}

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

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

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

    .logo-link:hover {
        color: var(--accent);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

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

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

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

        .header-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 80px;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .header-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0;
        }

        .nav-item {
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .header-cta {
            display: none;
        }

        .header-container {
            flex-wrap: wrap;
        }
    }

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

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-tagline {
        color: #7f8c8d;
        font-size: 0.9rem;
        margin: 0;
    }

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

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

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

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

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

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

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #666;
        line-height: 1.6;
    }

    .footer-links {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.25rem;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 800px;
        margin: 0.75rem auto;
        color: #888;
    }

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

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 2.5rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .support-cv3__head p {
        margin: 8px 0 0;
        opacity: .92;
        color: var(--neutral-800);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.map-note-c3 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .map-note-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 1rem;
    }

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

    .map-note-c3__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-note-c3__notes {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

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

    .map-note-c3__notes span {
        display: block;
        margin-top: .3rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-note-c3__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__embed iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    @media (max-width: 840px) {
        .map-note-c3__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

    .logo-link:hover {
        color: var(--accent);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

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

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

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

        .header-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 80px;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .header-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0;
        }

        .nav-item {
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .header-cta {
            display: none;
        }

        .header-container {
            flex-wrap: wrap;
        }
    }

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

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-tagline {
        color: #7f8c8d;
        font-size: 0.9rem;
        margin: 0;
    }

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

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

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

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

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

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

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #666;
        line-height: 1.6;
    }

    .footer-links {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.25rem;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 800px;
        margin: 0.75rem auto;
        color: #888;
    }

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

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 2.5rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .logo-link:hover {
        color: var(--accent);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

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

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

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

        .header-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 80px;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .header-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0;
        }

        .nav-item {
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .header-cta {
            display: none;
        }

        .header-container {
            flex-wrap: wrap;
        }
    }

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

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-tagline {
        color: #7f8c8d;
        font-size: 0.9rem;
        margin: 0;
    }

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

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

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

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

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

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

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #666;
        line-height: 1.6;
    }

    .footer-links {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.25rem;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 800px;
        margin: 0.75rem auto;
        color: #888;
    }

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

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 2.5rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

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

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

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

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

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

    .policy-layout-b .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

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

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

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

    .logo-link:hover {
        color: var(--accent);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

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

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

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

        .header-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 80px;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .header-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0;
        }

        .nav-item {
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .header-cta {
            display: none;
        }

        .header-container {
            flex-wrap: wrap;
        }
    }

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

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-tagline {
        color: #7f8c8d;
        font-size: 0.9rem;
        margin: 0;
    }

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

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

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

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

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

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

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #666;
        line-height: 1.6;
    }

    .footer-links {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.25rem;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 800px;
        margin: 0.75rem auto;
        color: #888;
    }

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

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 2.5rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

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

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

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

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

.thank-mode-a {
        padding: clamp(56px, 10vw, 110px) 18px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

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

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

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

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

    .logo-link:hover {
        color: var(--accent);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

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

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

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
    }

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

    .cta-button:hover {
        background-color: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

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

        .header-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            flex-direction: column;
            justify-content: flex-start;
            padding-top: 80px;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .header-nav.active {
            right: 0;
        }

        .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0;
        }

        .nav-item {
            width: 100%;
        }

        .nav-link {
            display: block;
            padding: var(--space-y) var(--space-x);
            border-radius: 0;
            border-bottom: 1px solid var(--border-on-surface-light);
        }

        .header-cta {
            display: none;
        }

        .header-container {
            flex-wrap: wrap;
        }
    }

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

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

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-tagline {
        color: #7f8c8d;
        font-size: 0.9rem;
        margin: 0;
    }

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

    .footer-nav a {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

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

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

    .footer-contact a {
        color: #3498db;
        text-decoration: none;
    }

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

    .footer-legal {
        border-top: 1px solid #ddd;
        padding-top: 1.5rem;
        color: #666;
        line-height: 1.6;
    }

    .footer-links {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: #666;
        text-decoration: none;
        margin: 0 0.25rem;
    }

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

    .footer-disclaimer {
        font-size: 0.85rem;
        max-width: 800px;
        margin: 0.75rem auto;
        color: #888;
    }

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

    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: repeat(3, 1fr);
            text-align: left;
            gap: 2.5rem;
        }
        .footer-brand,
        .footer-nav,
        .footer-contact {
            align-self: start;
        }
        .footer-nav ul {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.75rem;
        }
        .footer-legal {
            grid-column: 1 / -1;
            text-align: center;
        }
    }

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

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

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

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

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

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

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }