:root {
  --font-family: "Rubik", sans-serif;
  --font-size-base: 15.8px;
  --line-height-base: 1.47;

  --max-w: 1260px;
  --space-x: 1.01rem;
  --space-y: 1.5rem;
  --gap: 2.33rem;

  --radius-xl: 1.19rem;
  --radius-lg: 1rem;
  --radius-md: 0.66rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 1px 7px rgba(0,0,0,0.13);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.17);
  --shadow-lg: 0 24px 46px rgba(0,0,0,0.21);

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

  --brand: #8B4513;
  --brand-contrast: #FFFFFF;
  --accent: #D4A76A;
  --accent-contrast: #3E2723;

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

  --bg-page: #FFFDF9;
  --fg-on-page: #2C1810;

  --bg-alt: #F9F5F0;
  --fg-on-alt: #3E2723;

  --surface-1: #FFFFFF;
  --surface-2: #F8F4EF;
  --fg-on-surface: #2C1810;
  --border-on-surface: #E8DFD1;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #5D4037;
  --border-on-surface-light: #D7CCC8;

  --bg-primary: #8B4513;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #A0522D;
  --ring: rgba(139, 69, 19, 0.4);

  --bg-accent: #F8F1E5;
  --fg-on-accent: #5D4037;
  --bg-accent-hover: #E6C28C;

  --link: #8B4513;
  --link-hover: #A0522D;

  --gradient-hero: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(94, 40, 11, 0.85) 100%);
  --gradient-accent: linear-gradient(90deg, #F8F1E5 0%, #F5EBDF 100%);

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: relative;
    }

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

    .header__logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        gap: 4px;
        border-radius: var(--radius-sm);
    }

    .burger__line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
    }

    .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,
    .nav__link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            z-index: 1000;
        }

        .header__nav.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            display: block;
            width: 100%;
            text-align: center;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }
    }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .contact-info address p {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: 1.5;
    color: #555;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-info li {
    margin-bottom: 0.5rem;
    color: #555;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom-links a {
    color: #666;
    text-decoration: none;
  }
  .footer-bottom-links a:hover {
    text-decoration: underline;
    color: #222;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom-links {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

.wp-lang-switcher {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;
        font-family: var(--font-family, inherit);
    }

    .wp-lang-switcher__btn {
        background: var(--neutral-800, rgba(0, 0, 0, .75));
        color: var(--neutral-0, #fff);
        padding: calc(8px + var(--random-number, 1) * 2px) calc(12px + var(--random-number, 1) * 2px);
        border-radius: calc(var(--radius-lg, 14px) - var(--random-number, 1) * 2px);
        cursor: pointer;
        display: flex;
        gap: var(--gap, 10px);
        align-items: center;
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        border: 1px solid var(--border-on-surface, transparent);
    }

    .wp-lang-switcher__btn:hover {
        background: var(--neutral-900, rgba(0, 0, 0, .85));
        box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.12));
    }

    .wp-lang-switcher__label {
        font-size: var(--font-size-base, 16px);
    }

    .wp-lang-switcher__chev {
        font-size: 12px;
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher__list.open ~ .wp-lang-switcher__btn .wp-lang-switcher__chev,
    .wp-lang-switcher__btn:has(~ .wp-lang-switcher__list.open) .wp-lang-switcher__chev {
        transform: rotate(180deg);
    }

    .wp-lang-switcher__list {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 8px);
        background: var(--surface-1, #fff);
        border-radius: calc(var(--radius-lg, 14px) + var(--random-number, 1) * 2px);
        overflow: hidden;
        box-shadow: var(--shadow-lg, 0 10px 30px rgba(0, 0, 0, .2));
        min-width: calc(210px + var(--random-number, 1) * 10px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
    }

    .wp-lang-switcher__list.open {
        display: block;
    }

    .wp-lang-switcher__list button,
    .wp-lang-switcher__list a {
        width: 100%;
        text-align: left;
        padding: calc(8px + var(--random-number, 1) * 2px) calc(10px + var(--random-number, 1) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;
        font-family: var(--font-family, inherit);
        font-size: var(--font-size-base, 16px);
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        text-decoration: none;
        display: block;
    }

    .wp-lang-switcher__list button:hover,
    .wp-lang-switcher__list a:hover {
        background: var(--bg-alt, #f3f4f6);
    }

.intro-rail {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-rail .wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 12px 1fr;
        gap: 16px;
        align-items: start;
    }

    .intro-rail .rail {
        background: var(--bg-primary);
        border-radius: 999px;
        min-height: 180px;
    }

    .intro-rail .badge {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .intro-rail h1 {
        margin: 0 0 10px;
        font-size: clamp(32px, 5.2vw, 54px);
    }

    .intro-rail .subtitle,
    .intro-rail .lead {
        margin: 0 0 10px;
        color: var(--neutral-600);
    }

    .intro-rail .actions {
        margin-top: 12px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .intro-rail .actions a {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

.value-points-wave {

        background:
            radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.25), transparent 55%),
            var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(20px, 4vw, 56px);
        position: relative;
        overflow: hidden;
    }

    .value-points-wave::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 60%, rgba(0, 0, 0, 0.15), transparent 50%);
        pointer-events: none;
    }

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

    .value-points-wave__h {
        text-align: center;
        margin-bottom: clamp(44px, 6vw, 80px);

        transform: translateY(-20px);
    }

    .value-points-wave__h h2 {
        margin: 0 0 0.75rem;
        font-size: clamp(34px, 5vw, 58px);
        font-weight: 800;
    }

    .value-points-wave__h p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
    }

    .value-points-wave__timeline {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 32px);
        position: relative;
    }

    .value-points-wave__timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
    }

    .value-points-wave__item {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: clamp(20px, 3vw, 28px);
        background: rgba(0, 0, 0, 0.35);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);

        transform: translateY(40px);
    }

    @media (min-width: 768px) {
        .value-points-wave__item {
            width: 48%;
        }

        .value-points-wave__item:nth-child(odd) {
            align-self: flex-start;
        }

        .value-points-wave__item:nth-child(even) {
            align-self: flex-end;
        }
    }

    .value-points-wave__badge {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        letter-spacing: 0.1em;
        font-size: 18px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .value-points-wave__content h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(20px, 2.5vw, 26px);
        color: var(--neutral-0);
    }

    .value-points-wave__content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.8);
    }

    .value-points-wave__content span {
        display: inline-flex;
        margin-top: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.65);
    }

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--light.why-choose--v2 {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

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

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 70ch;
    }

    .why-choose__cards {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    /* dinámico glow via CSS variables */
    .why-choose__card::after {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(220px 220px at var(--gx, 50%) var(--gy, 50%),
        rgba(0, 85, 183, 0.20), transparent 60%);

        transition: opacity 180ms var(--anim-ease);
        pointer-events: none;
    }

    .why-choose__card.is-hover {
        box-shadow: var(--shadow-lg);
        border-color: rgba(0, 85, 183, 0.28);
    }

    .why-choose__card.is-hover::after {
        opacity: 1;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__card {
            transition: none;
            transform: none;
        }

        .why-choose__card::after {
            display: none;
        }
    }

.two-column-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

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

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: start;
}

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: relative;
    }

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

    .header__logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        gap: 4px;
        border-radius: var(--radius-sm);
    }

    .burger__line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
    }

    .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,
    .nav__link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            z-index: 1000;
        }

        .header__nav.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            display: block;
            width: 100%;
            text-align: center;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }
    }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .contact-info address p {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: 1.5;
    color: #555;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-info li {
    margin-bottom: 0.5rem;
    color: #555;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom-links a {
    color: #666;
    text-decoration: none;
  }
  .footer-bottom-links a:hover {
    text-decoration: underline;
    color: #222;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom-links {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

.our-story {

        color: var(--fg-on-page);
        background: var(--surface-light);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .our-story .our-story__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .our-story .our-story__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(32px, 5vw, 56px);
        align-items: center;
    }

    .our-story .our-story__image {
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .our-story .our-story__image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .our-story .our-story__text h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-surface-light);
    }

    .our-story .our-story__text p {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0 0 1.5rem;
    }

    @media (max-width: 768px) {
        .our-story .our-story__content {
            grid-template-columns: 1fr;
        }
    }

.identity-cv1 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-cv1__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-cv1__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

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

    .identity-cv1__head span {
        display: block;
        max-width: 74ch;
        margin: 0 auto;
        opacity: .92;
    }

    .identity-cv1__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }

    .identity-cv1__grid article {
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .identity-cv1__icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .identity-cv1__grid h3 {
        margin: 0;
    }

    .identity-cv1__grid p {
        margin: 7px 0;
        opacity: .92;
    }

    .identity-cv1__grid small {
        opacity: .9;
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: relative;
    }

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

    .header__logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        gap: 4px;
        border-radius: var(--radius-sm);
    }

    .burger__line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
    }

    .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,
    .nav__link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            z-index: 1000;
        }

        .header__nav.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            display: block;
            width: 100%;
            text-align: center;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }
    }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .contact-info address p {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: 1.5;
    color: #555;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-info li {
    margin-bottom: 0.5rem;
    color: #555;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom-links a {
    color: #666;
    text-decoration: none;
  }
  .footer-bottom-links a:hover {
    text-decoration: underline;
    color: #222;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom-links {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
}

.hiw-l1 {

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

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

    .hiw-l1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .hiw-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .hiw-l1__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .hiw-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
        position: relative;
    }

    .hiw-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
    }

    /* коннектор к следующему карточке (пульсирует постоянно) */
    .hiw-l1__card:not(:nth-child(3n))::after {
        content: '';
        position: absolute;
        right: -16px;
        top: 50%;
        width: 15px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(0, 86, 179, 0.25), rgba(0, 86, 179, 0.75), rgba(0, 86, 179, 0.25));
        transform: translateY(-50%);
        animation: hiwL1Link 1.9s ease-in-out infinite;
    }

    @keyframes hiwL1Link {
        0%, 100% {
            opacity: .45;
            filter: blur(0px)
        }
        50% {
            opacity: 1;
            filter: blur(0.3px)
        }
    }

    .hiw-l1__head {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .hiw-l1__n {
        width: 40px;
        height: 40px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .hiw-l1__t {
        font-weight: 900;
        letter-spacing: -.01em;
    }

    .hiw-l1__d {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .hiw-l1__card:hover {
        transform: translateY(-3px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 980px) {
        .hiw-l1__card {
            grid-column: span 6;
        }

        .hiw-l1__card:not(:nth-child(2n))::after {
            display: none;
        }
    }

    @media (max-width: 640px) {
        .hiw-l1__card {
            grid-column: span 12;
        }

        .hiw-l1__card::after {
            display: none;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .hiw-l1__card::after {
            animation: none;
        }
    }

.plans-cv1 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

    .plans-cv1__head {
        margin-bottom: 16px;
    }

    .plans-cv1__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv1__head p {
        margin: 8px 0 0;
        opacity: .9;
        max-width: 72ch;
    }

    .plans-cv1__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv1__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.36);
        color: var(--fg-on-page);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

    .plans-cv1__line h3 {
        margin: 0;
    }

    .plans-cv1__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .plans-cv1__price {
        margin: 10px 0 6px;
        font-size: 1.45rem;
        font-weight: 800;
        color: var(--brand);
    }

    .plans-cv1__desc {
        margin: 0;
        color: var(--neutral-600);
    }

    .plans-cv1__card ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

    .plans-cv1__card button {
        width: 100%;
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: relative;
    }

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

    .header__logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        gap: 4px;
        border-radius: var(--radius-sm);
    }

    .burger__line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
    }

    .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,
    .nav__link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            z-index: 1000;
        }

        .header__nav.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            display: block;
            width: 100%;
            text-align: center;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }
    }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .contact-info address p {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: 1.5;
    color: #555;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-info li {
    margin-bottom: 0.5rem;
    color: #555;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom-links a {
    color: #666;
    text-decoration: none;
  }
  .footer-bottom-links a:hover {
    text-decoration: underline;
    color: #222;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom-links {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-layout-d .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .contact-layout-d .box {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 18px;
        background: rgba(255, 255, 255, .05);
    }

    .contact-layout-d ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .contact-layout-d li {
        display: grid;
        gap: 4px;
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .06);
    }

    .contact-layout-d .social {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-d .social a {
        text-decoration: none;
        color: var(--neutral-0);
        border: 1px solid rgba(255, 255, 255, .28);
        padding: 6px 10px;
        border-radius: 999px;
    }

.connect--light-v6 {
        padding: 40px 20px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
    }

    .connect__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

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

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

    .connect__chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .connect__chip {
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .connect__chip {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    @media (max-width: 768px) {
        .connect__inner {
            grid-template-columns: minmax(0, 1fr);
        }

        .connect__chips {
            justify-content: flex-start;
        }
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: relative;
    }

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

    .header__logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        gap: 4px;
        border-radius: var(--radius-sm);
    }

    .burger__line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
    }

    .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,
    .nav__link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            z-index: 1000;
        }

        .header__nav.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            display: block;
            width: 100%;
            text-align: center;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }
    }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .contact-info address p {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: 1.5;
    color: #555;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-info li {
    margin-bottom: 0.5rem;
    color: #555;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom-links a {
    color: #666;
    text-decoration: none;
  }
  .footer-bottom-links a:hover {
    text-decoration: underline;
    color: #222;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom-links {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: relative;
    }

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

    .header__logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        gap: 4px;
        border-radius: var(--radius-sm);
    }

    .burger__line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
    }

    .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,
    .nav__link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            z-index: 1000;
        }

        .header__nav.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            display: block;
            width: 100%;
            text-align: center;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }
    }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .contact-info address p {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: 1.5;
    color: #555;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-info li {
    margin-bottom: 0.5rem;
    color: #555;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom-links a {
    color: #666;
    text-decoration: none;
  }
  .footer-bottom-links a:hover {
    text-decoration: underline;
    color: #222;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom-links {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: relative;
    }

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

    .header__logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        gap: 4px;
        border-radius: var(--radius-sm);
    }

    .burger__line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
    }

    .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,
    .nav__link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            z-index: 1000;
        }

        .header__nav.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            display: block;
            width: 100%;
            text-align: center;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }
    }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .contact-info address p {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: 1.5;
    color: #555;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-info li {
    margin-bottom: 0.5rem;
    color: #555;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom-links a {
    color: #666;
    text-decoration: none;
  }
  .footer-bottom-links a:hover {
    text-decoration: underline;
    color: #222;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom-links {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .thank-mode-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--accent);
        color: var(--accent-contrast);
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: relative;
    }

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

    .header__logo-wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 2);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        letter-spacing: -0.5px;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        gap: 4px;
        border-radius: var(--radius-sm);
    }

    .burger__line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fg-on-surface);
        border-radius: 1px;
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    .header__nav {
        width: 100%;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        gap: var(--gap);
    }

    .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,
    .nav__link:focus {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
    }

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

        .header__nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            padding: var(--space-y) var(--space-x);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            z-index: 1000;
        }

        .header__nav.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav__list {
            flex-direction: column;
            align-items: center;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            display: block;
            width: 100%;
            text-align: center;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }
    }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
  }
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #222;
  }
  .contact-info address p {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: 1.5;
    color: #555;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-info li {
    margin-bottom: 0.5rem;
    color: #555;
  }
  .contact-info a {
    color: #0066cc;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
  }
  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom-links a {
    color: #666;
    text-decoration: none;
  }
  .footer-bottom-links a:hover {
    text-decoration: underline;
    color: #222;
  }
  .copyright-disclaimer {
    margin: 0;
    line-height: 1.5;
    max-width: 800px;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom-links {
      flex-direction: column;
      gap: 0.75rem;
    }
  }

.cookie-cv1 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv1__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv1__text p {
        margin: 0;
        opacity: .95;
    }

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

    .cookie-cv1__actions button {
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.2);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv1__actions button[data-choice='accept'] {
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    @media (max-width: 760px) {
        .cookie-cv1__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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