:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 16.1px;
  --line-height-base: 1.46;

  --max-w: 1040px;
  --space-x: 1.2rem;
  --space-y: 1.03rem;
  --gap: 1rem;

  --radius-xl: 1.02rem;
  --radius-lg: 0.6rem;
  --radius-md: 0.51rem;
  --radius-sm: 0.2rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.1);
  --shadow-md: 0 7px 14px rgba(0,0,0,0.13);
  --shadow-lg: 0 16px 32px rgba(0,0,0,0.15);

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

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

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

  --bg-page: #F9F9F9;
  --fg-on-page: #333333;

  --bg-alt: #FFFFFF;
  --fg-on-alt: #424242;

  --surface-1: #FFFFFF;
  --surface-2: #F8F8F8;
  --fg-on-surface: #2E2E2E;
  --border-on-surface: #E8E8E8;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #424242;
  --border-on-surface-light: #E0E0E0;

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

  --bg-accent: #FFF3E0;
  --fg-on-accent: #E65100;
  --bg-accent-hover: #FFB74D;

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

  --gradient-hero: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
  --gradient-accent: linear-gradient(90deg, #FF9800 0%, #FFB74D 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(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-accent-hover);
    transform: translateY(-2px);
}

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 100;
        justify-content: flex-start;
        align-items: flex-start;
    }

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        padding: var(--space-y) 0;
        display: block;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .footer-left,
    .footer-right {
        flex: 1;
        min-width: 300px;
    }

    .logo {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        color: #3498db;
        font-weight: 700;
    }

    .tagline {
        font-style: italic;
        color: #bdc3c7;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .copyright-disclaimer {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .copyright {
        margin-bottom: 1rem;
        color: #95a5a6;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #95a5a6;
        margin-bottom: 1.5rem;
        padding: 0.8rem;
        background-color: rgba(255, 255, 255, 0.05);
        border-left: 3px solid #e74c3c;
    }

    .legal-links a {
        color: #3498db;
        text-decoration: none;
        margin: 0 0.3rem;
        font-size: 0.85rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #1abc9c;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .contact-info h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #1abc9c;
        text-decoration: none;
    }

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

    .social-links {
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

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

        .footer-left,
        .footer-right {
            width: 100%;
        }

        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

.intro-stack-l12 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-stack-l12__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .intro-stack-l12__hero {
        text-align: center;
    }

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

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

    .intro-stack-l12__hero strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-stack-l12__panels {
        margin-top: 1.15rem;
        display: grid;
        gap: .8rem;
    }

    .intro-stack-l12__panels article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        color: var(--neutral-600);
    }

.values-flare-c9 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .15), transparent 25%), var(--gradient-accent);
        color: var(--gradient-accent);
    }

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

    .values-flare-c9__head {
        margin-bottom: 1.1rem;
    }

    .values-flare-c9__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .values-flare-c9__head span {
        display: block;
        margin-top: .8rem;

    }

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

    .values-flare-c9__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-flare-c9__meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-flare-c9__meta i {
        font-style: normal;
    }

    .values-flare-c9__meta span {
        color: var(--bg-accent);
    }

    .values-flare-c9__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-flare-c9__grid p {
        margin: 0;

    }

    .values-flare-c9__grid small {
        display: block;
        margin-top: .55rem;
    }

.next-grid-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .next-grid-l8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-grid-l8__copy {
        margin-bottom: 1rem;
        text-align: center;
    }

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

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

    .next-grid-l8__copy span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

    .next-grid-l8__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-grid-l8__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .next-grid-l8__grid div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-grid-l8__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .next-grid-l8__grid a {
        color: var(--link);
        text-decoration: none;
    }

    .next-grid-l8__foot {
        margin-top: 1rem;
        text-align: center;
    }

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

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

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

    .touch-bulletin .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .touch-bulletin .header {
        margin-bottom: 14px;
    }

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

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

    .touch-bulletin ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .touch-bulletin li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        align-items: center;
    }

    .touch-bulletin span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .touch-bulletin a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .touch-bulletin .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

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

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

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

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

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

.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-accent-hover);
    transform: translateY(-2px);
}

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 100;
        justify-content: flex-start;
        align-items: flex-start;
    }

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        padding: var(--space-y) 0;
        display: block;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .footer-left,
    .footer-right {
        flex: 1;
        min-width: 300px;
    }

    .logo {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        color: #3498db;
        font-weight: 700;
    }

    .tagline {
        font-style: italic;
        color: #bdc3c7;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .copyright-disclaimer {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .copyright {
        margin-bottom: 1rem;
        color: #95a5a6;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #95a5a6;
        margin-bottom: 1.5rem;
        padding: 0.8rem;
        background-color: rgba(255, 255, 255, 0.05);
        border-left: 3px solid #e74c3c;
    }

    .legal-links a {
        color: #3498db;
        text-decoration: none;
        margin: 0 0.3rem;
        font-size: 0.85rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #1abc9c;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .contact-info h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #1abc9c;
        text-decoration: none;
    }

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

    .social-links {
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

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

        .footer-left,
        .footer-right {
            width: 100%;
        }

        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

.story-scene-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .story-scene-l8__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .story-scene-l8__panel {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-scene-l8__top {
        display: grid;
        grid-template-columns: 14rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .story-scene-l8__top img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

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

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

    .story-scene-l8__copy {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

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

    @media (max-width: 700px) {
        .story-scene-l8__top {
            grid-template-columns: 1fr;
        }
    }

.faq-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .faq-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-layout-a .section-head {
        margin-bottom: 14px;
    }

    .faq-layout-a h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--brand-contrast);
    }

    .faq-layout-a .section-head p {
        margin: 10px 0 0;
        opacity: .92;
        color: var(--brand-contrast);
    }

    .faq-layout-a .list {
        display: grid;
        gap: 10px;
    }

    .faq-layout-a .item {
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .1);
    }

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

    .faq-layout-a .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-a .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .95;
        color: var(--brand-contrast);
    }

    .faq-layout-a .item.open .a {
        max-height: 240px;
    }

.team-panorama {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 48px);
    }

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

    .team-panorama__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 60px);

        transform: translateY(-14px);
    }

    .team-panorama__h span {
        display: inline-flex;
        padding: 0.35rem 1rem;
        border-radius: 999px;
        border: 1px solid rgba(10, 42, 102, 0.2);
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-size: 0.8rem;
    }

    .team-panorama__h h2 {
        margin: 0.75rem 0 0.4rem;
        font-size: clamp(32px, 4.5vw, 56px);
    }

    .team-panorama__h p {
        margin: 0 auto;
        max-width: 680px;
        color: rgba(15, 27, 51, 0.7);
    }

    .team-panorama__rows {
        display: flex;
        flex-direction: column;
        gap: clamp(18px, 3vw, 28px);
    }

    .team-panorama__row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: clamp(18px, 4vw, 32px);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: clamp(18px, 3vw, 32px);
        border: 1px solid rgba(10, 42, 102, 0.08);
        box-shadow: 0 20px 45px rgba(11, 19, 39, 0.08);

        transform: translateY(22px);
    }

    @media (max-width: 720px) {
        .team-panorama__row {
            grid-template-columns: 1fr;
        }
    }

    .team-panorama__portrait {
        position: relative;
        width: 140px;
        height: 140px;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 20px 30px rgba(5, 11, 32, 0.25);
    }

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

    .team-panorama__role {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 0.3rem 0;
        background: rgba(255, 255, 255, 0.75);
        color: var(--bg-primary);
        font-size: 0.65rem;
        font-weight: 700;
        width: 100%;
        text-align: center;
        border-radius: inherit !important;
    }

    .team-panorama__body h3 {
        margin: 0 0 0.35rem;
        font-size: 1.45rem;
    }

    .team-panorama__body p {
        margin: 0 0 0.85rem;
        color: rgba(15, 27, 51, 0.75);
    }

    .team-panorama__quote {
        padding: 0.85rem 1rem;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        border-left: 4px solid var(--bg-accent);
        color: var(--fg-on-primary);
        font-weight: 600;
        margin-bottom: 0.75rem;
    }

    .team-panorama__tag {
        display: inline-flex;
        padding: 0.35rem 0.85rem;
        border-radius: 999px;
        background: rgba(10, 42, 102, 0.08);
        color: rgba(10, 42, 102, 0.9);
        font-weight: 700;
    }

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

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

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

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

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

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

.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-accent-hover);
    transform: translateY(-2px);
}

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 100;
        justify-content: flex-start;
        align-items: flex-start;
    }

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        padding: var(--space-y) 0;
        display: block;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .footer-left,
    .footer-right {
        flex: 1;
        min-width: 300px;
    }

    .logo {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        color: #3498db;
        font-weight: 700;
    }

    .tagline {
        font-style: italic;
        color: #bdc3c7;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .copyright-disclaimer {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .copyright {
        margin-bottom: 1rem;
        color: #95a5a6;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #95a5a6;
        margin-bottom: 1.5rem;
        padding: 0.8rem;
        background-color: rgba(255, 255, 255, 0.05);
        border-left: 3px solid #e74c3c;
    }

    .legal-links a {
        color: #3498db;
        text-decoration: none;
        margin: 0 0.3rem;
        font-size: 0.85rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #1abc9c;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .contact-info h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #1abc9c;
        text-decoration: none;
    }

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

    .social-links {
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

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

        .footer-left,
        .footer-right {
            width: 100%;
        }

        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    color: var(--fg-on-page);
}

.features--alt {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}

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

.features__title {
    text-align: center;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
    color: inherit;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-1);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    border: 1px solid var(--border-on-surface);
}

.features__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.features__icon {
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

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

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

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

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

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

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

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

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

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

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

.hiw-column-l5 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .hiw-column-l5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1.25rem;
    }

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

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

    .hiw-column-l5__copy {
        margin: .85rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-column-l5__side {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .hiw-column-l5__side img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .hiw-column-l5__side strong {
        display: block;
        margin-top: .9rem;
        color: var(--brand);
    }

    .hiw-column-l5__item {
        margin-top: .65rem;
        padding: .75rem .85rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
    }

    @media (max-width: 840px) {
        .hiw-column-l5__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-accent-hover);
    transform: translateY(-2px);
}

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 100;
        justify-content: flex-start;
        align-items: flex-start;
    }

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        padding: var(--space-y) 0;
        display: block;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .footer-left,
    .footer-right {
        flex: 1;
        min-width: 300px;
    }

    .logo {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        color: #3498db;
        font-weight: 700;
    }

    .tagline {
        font-style: italic;
        color: #bdc3c7;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .copyright-disclaimer {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .copyright {
        margin-bottom: 1rem;
        color: #95a5a6;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #95a5a6;
        margin-bottom: 1.5rem;
        padding: 0.8rem;
        background-color: rgba(255, 255, 255, 0.05);
        border-left: 3px solid #e74c3c;
    }

    .legal-links a {
        color: #3498db;
        text-decoration: none;
        margin: 0 0.3rem;
        font-size: 0.85rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #1abc9c;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .contact-info h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #1abc9c;
        text-decoration: none;
    }

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

    .social-links {
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

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

        .footer-left,
        .footer-right {
            width: 100%;
        }

        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

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

.contact-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .contact-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

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

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

.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;
        cursor: pointer;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .form-layout-d button:hover {
        background-color: var(--brand);
        color: var(--brand-contrast);
    }

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

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

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

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

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

.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-accent-hover);
    transform: translateY(-2px);
}

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 100;
        justify-content: flex-start;
        align-items: flex-start;
    }

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        padding: var(--space-y) 0;
        display: block;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .footer-left,
    .footer-right {
        flex: 1;
        min-width: 300px;
    }

    .logo {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        color: #3498db;
        font-weight: 700;
    }

    .tagline {
        font-style: italic;
        color: #bdc3c7;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .copyright-disclaimer {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .copyright {
        margin-bottom: 1rem;
        color: #95a5a6;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #95a5a6;
        margin-bottom: 1.5rem;
        padding: 0.8rem;
        background-color: rgba(255, 255, 255, 0.05);
        border-left: 3px solid #e74c3c;
    }

    .legal-links a {
        color: #3498db;
        text-decoration: none;
        margin: 0 0.3rem;
        font-size: 0.85rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #1abc9c;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .contact-info h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #1abc9c;
        text-decoration: none;
    }

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

    .social-links {
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

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

        .footer-left,
        .footer-right {
            width: 100%;
        }

        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

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

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

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

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

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

    .terms-layout-a article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        margin-bottom: 12px;
    }

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

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

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

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

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

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

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

.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-accent-hover);
    transform: translateY(-2px);
}

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 100;
        justify-content: flex-start;
        align-items: flex-start;
    }

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        padding: var(--space-y) 0;
        display: block;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .footer-left,
    .footer-right {
        flex: 1;
        min-width: 300px;
    }

    .logo {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        color: #3498db;
        font-weight: 700;
    }

    .tagline {
        font-style: italic;
        color: #bdc3c7;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .copyright-disclaimer {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .copyright {
        margin-bottom: 1rem;
        color: #95a5a6;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #95a5a6;
        margin-bottom: 1.5rem;
        padding: 0.8rem;
        background-color: rgba(255, 255, 255, 0.05);
        border-left: 3px solid #e74c3c;
    }

    .legal-links a {
        color: #3498db;
        text-decoration: none;
        margin: 0 0.3rem;
        font-size: 0.85rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #1abc9c;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .contact-info h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #1abc9c;
        text-decoration: none;
    }

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

    .social-links {
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

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

        .footer-left,
        .footer-right {
            width: 100%;
        }

        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

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

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

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

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

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

.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-accent-hover);
    transform: translateY(-2px);
}

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 100;
        justify-content: flex-start;
        align-items: flex-start;
    }

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        padding: var(--space-y) 0;
        display: block;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .footer-left,
    .footer-right {
        flex: 1;
        min-width: 300px;
    }

    .logo {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        color: #3498db;
        font-weight: 700;
    }

    .tagline {
        font-style: italic;
        color: #bdc3c7;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .copyright-disclaimer {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .copyright {
        margin-bottom: 1rem;
        color: #95a5a6;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #95a5a6;
        margin-bottom: 1.5rem;
        padding: 0.8rem;
        background-color: rgba(255, 255, 255, 0.05);
        border-left: 3px solid #e74c3c;
    }

    .legal-links a {
        color: #3498db;
        text-decoration: none;
        margin: 0 0.3rem;
        font-size: 0.85rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #1abc9c;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .contact-info h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #1abc9c;
        text-decoration: none;
    }

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

    .social-links {
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

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

        .footer-left,
        .footer-right {
            width: 100%;
        }

        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

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

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

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

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

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

.nav-link {
    color: var(--fg-on-page);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) / 2) 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link:focus {
    color: var(--link);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
}
.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) / 1.5) var(--space-x);
    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);
    border: none;
    cursor: pointer;
    display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
    background-color: var(--bg-accent-hover);
    transform: translateY(-2px);
}

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

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

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 100;
        justify-content: flex-start;
        align-items: flex-start;
    }

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
        width: 100%;
        margin-top: calc(var(--space-y) * 3);
    }

    .nav-link {
        font-size: calc(var(--font-size-base) * 1.1);
        padding: var(--space-y) 0;
        display: block;
        border-bottom: 1px solid var(--border-on-surface-light);
    }
    .nav-link::after {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header-container {
        position: relative;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        border-top: 4px solid #3498db;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .footer-left,
    .footer-right {
        flex: 1;
        min-width: 300px;
    }

    .logo {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        color: #3498db;
        font-weight: 700;
    }

    .tagline {
        font-style: italic;
        color: #bdc3c7;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .copyright-disclaimer {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .copyright {
        margin-bottom: 1rem;
        color: #95a5a6;
    }

    .disclaimer {
        font-size: 0.85rem;
        color: #95a5a6;
        margin-bottom: 1.5rem;
        padding: 0.8rem;
        background-color: rgba(255, 255, 255, 0.05);
        border-left: 3px solid #e74c3c;
    }

    .legal-links a {
        color: #3498db;
        text-decoration: none;
        margin: 0 0.3rem;
        font-size: 0.85rem;
    }

    .legal-links a:hover {
        text-decoration: underline;
        color: #1abc9c;
    }

    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

    .footer-nav li {
        margin-bottom: 0.8rem;
    }

    .footer-nav a {
        color: #ecf0f1;
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: inline-block;
    }

    .footer-nav a:hover {
        color: #1abc9c;
        padding-left: 5px;
    }

    .contact-info h3 {
        color: #3498db;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .contact-info p {
        margin-bottom: 0.7rem;
        line-height: 1.5;
    }

    .contact-info a {
        color: #1abc9c;
        text-decoration: none;
    }

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

    .social-links {
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #34495e;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
        background-color: #3498db;
        transform: translateY(-3px);
    }

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

        .footer-left,
        .footer-right {
            width: 100%;
        }

        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

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

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

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

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

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

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

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

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