:root {
  --font-family: "Lato", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  --max-w: 1280px;
  --space-x: 1.5rem;
  --space-y: 1rem;
  --gap: 1rem;

  --radius-xl: 1.5rem;
  --radius-lg: 1rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.375rem;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

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

  --brand: #1a5f7a;
  --brand-contrast: #ffffff;
  --accent: #2e8b57;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  --bg-page: #ffffff;
  --fg-on-page: #212529;

  --bg-alt: #f8f9fa;
  --fg-on-alt: #495057;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #dee2e6;

  --surface-light: #ffffff;
  --fg-on-surface-light: #495057;
  --border-on-surface-light: #e9ecef;

  --bg-primary: #1a5f7a;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #2a7f9a;
  --ring: #1a5f7a;

  --bg-accent: #e8f5e9;
  --fg-on-accent: #1b5e20;
  --bg-accent-hover: #43a047;

  --link: #1a5f7a;
  --link-hover: #2a7f9a;

  --gradient-hero: linear-gradient(135deg, #1a5f7a 0%, #2e8b57 100%);
  --gradient-accent: linear-gradient(90deg, #e8f5e9 0%, #f1f8e9 100%);

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

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

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        overflow-y: auto;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        box-sizing: border-box;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        margin: 0 0 1rem 0;
        color: #f1c40f;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #f1c40f;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #34495e;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
    }

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

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

    .footer-social {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

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

    .footer-social a:hover {
        background-color: #f1c40f;
        color: #2c3e50;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

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

        .footer-section h3 {
            border-bottom: none;
        }
    }

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

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

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

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

.hero--colored-v5 {
        padding: 96px 20px;
        background: var(--gradient-hero);
        color: var(--brand-contrast);
        text-align: center;
    }

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

    .hero__eyebrow {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        opacity: 0.9;
        margin: 0 0 0.5rem;
        color: var(--neutral-100);
    }

    .hero__title {
        margin: 0 0 8px;
        font-size: clamp(28px, 5vw, 40px);
        color: var(--neutral-0);
    }

    .hero__subtitle {
        margin: 0 0 20px;
        color: var(--neutral-100);
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .hero__actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 22px;
        border-radius: 999px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
    }

    .hero__btn {
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease),
        box-shadow var(--anim-duration) var(--anim-ease),
        background-color var(--anim-duration) var(--anim-ease);
    }

    .hero__btn:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--surface-2);
    }

    .hero__btn--primary {
        background: var(--neutral-0);
        color: var(--brand);
    }

    .hero__btn--ghost {
        background: transparent;
        color: var(--neutral-0);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

.value-list {
        padding: clamp(60px, 8vw, 110px) clamp(16px, 3vw, 40px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .value-list .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .value-list h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 52px);
    }

    .value-list .lead {
        margin: 10px 0 16px;
        color: var(--neutral-600);
    }

    .value-list ol {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
    }

    .value-list li {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

    .value-list .head {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

    .value-list .head strong {
        display: inline-flex;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
    }

    .value-list h3 {
        margin: 0;
    }

    .value-list li p {
        margin: 8px 0 6px;
        color: var(--neutral-600);
    }

    .value-list li span {
        font-size: .85rem;
        color: var(--neutral-600);
    }

.next-stages {
        padding: clamp(60px, 9vw, 108px) clamp(16px, 3vw, 36px);
        background: linear-gradient(150deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

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

    .next-stages .intro {
        max-width: 66ch;
        margin: 0 auto 14px;
        text-align: center;
    }

    .next-stages .intro p {
        margin: 8px 0 0;
        opacity: .9;
    }

    .next-stages h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.4vw, 46px);
    }

    .next-stages .stages {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .next-stages article {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: stageIn 420ms ease both;
    }

    .next-stages article:nth-child(2) {
        animation-delay: 80ms;
    }

    .next-stages article:nth-child(3) {
        animation-delay: 160ms;
    }

    .next-stages article:nth-child(4) {
        animation-delay: 240ms;
    }

    .next-stages .icon {
        margin: 0 0 6px;
        opacity: .92;
    }

    .next-stages h3 {
        margin: 0 0 8px;
        font-size: 1rem;
    }

    .next-stages a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    @keyframes stageIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.why-choose {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.index-recommendations {
        background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-recommendations__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-recommendations__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations__card {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(58, 46, 61, 0.12);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
    }

    .index-recommendations__card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.65;
        pointer-events: none;
    }

    .index-recommendations__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

    .index-recommendations__icon {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        flex: 0 0 auto;
    }

    .index-recommendations__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-accent);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .index-recommendations__card h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -0.01em;
    }

    .index-recommendations__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

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

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        overflow-y: auto;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        box-sizing: border-box;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        margin: 0 0 1rem 0;
        color: #f1c40f;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #f1c40f;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #34495e;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
    }

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

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

    .footer-social {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

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

    .footer-social a:hover {
        background-color: #f1c40f;
        color: #2c3e50;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

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

        .footer-section h3 {
            border-bottom: none;
        }
    }

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

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

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

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

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

.service-block-section--alt {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}

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

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

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

.service-block__content h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-block__content p {
    color: var(--neutral-600);
    margin-bottom: var(--space-y);
}

.service-block__content ul {
    margin-left: 1.5rem;
    color: var(--neutral-600);
}

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

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

    .faq-board .head {
        margin-bottom: 14px;
    }

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

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

    .faq-board .board {
        display: grid;
        gap: 8px;
    }

    .faq-board details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
    }

    .faq-board summary {
        cursor: pointer;
        font-weight: 600;
    }

    .faq-board details p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.our-story {

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

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

    .our-story .our-story__header {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .our-story .our-story__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-page);
    }

    .our-story .our-story__content {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: clamp(24px, 4vw, 48px);
        align-items: center;
    }

    .our-story .our-story__image {
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

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

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        overflow-y: auto;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        box-sizing: border-box;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        margin: 0 0 1rem 0;
        color: #f1c40f;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #f1c40f;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #34495e;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
    }

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

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

    .footer-social {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

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

    .footer-social a:hover {
        background-color: #f1c40f;
        color: #2c3e50;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

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

        .footer-section h3 {
            border-bottom: none;
        }
    }

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

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

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

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

.service-block-section {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--bg-page);
    color: var(--fg-on-page);
}

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

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

.service-block--flip {
    direction: rtl;
}

.service-block--flip > * {
    direction: ltr;
}

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

.service-block__content h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-block__content p {
    color: var(--neutral-600);
    margin-bottom: var(--space-y);
}

.service-block__content ul {
    margin-left: 1.5rem;
    color: var(--neutral-600);
}

.plans-l2 {

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

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

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

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

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

    .plans-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .plans-l2__control {
        padding: 16px;
        border-bottom: 1px solid var(--border-on-surface);
        background: var(--bg-alt);
    }

    .plans-l2__label {
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .plans-l2__hint {
        margin-top: 8px;
        color: var(--neutral-600);
    }

    .plans-l2__range {
        width: 100%;
        margin-top: 12px;
        accent-color: var(--accent);
    }

    .plans-l2__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
        padding: 16px;
    }

    .plans-l2__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
        overflow: hidden;
    }

    .plans-l2__card::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 240px at 20% 20%, rgba(255, 107, 53, 0.18), transparent 60%);

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

    .plans-l2__card.is-rec {
        transform: translateY(-4px);
        border-color: rgba(255, 107, 53, 0.40);
        box-shadow: var(--shadow-lg);
    }

    .plans-l2__card.is-rec::before {
        opacity: 1;
    }

    .plans-l2__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
    }

    .plans-l2__name {
        font-weight: 900;
        letter-spacing: -.01em;
        color: var(--fg-on-page);
    }

    .plans-l2__price {
        font-weight: 900;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.4vw, 28px);
        letter-spacing: -.02em;
    }

    .plans-l2__desc {
        margin-top: 10px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .plans-l2__bullets {
        margin-top: 12px;
        display: grid;
        gap: 8px;
        color: var(--neutral-600);
    }

    .plans-l2__btn {
        margin-top: 14px;
        width: 100%;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.08);
        background: var(--accent);
        color: var(--accent-contrast);
        font-weight: 900;
        cursor: pointer;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
    }

    .plans-l2__btn:hover {
        background: var(--accent-hover);
        transform: translateY(-1px);
    }

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

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

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        overflow-y: auto;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        box-sizing: border-box;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        margin: 0 0 1rem 0;
        color: #f1c40f;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #f1c40f;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #34495e;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
    }

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

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

    .footer-social {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

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

    .footer-social a:hover {
        background-color: #f1c40f;
        color: #2c3e50;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

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

        .footer-section h3 {
            border-bottom: none;
        }
    }

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

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

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

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

.contact-map {

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

    .contact-map .c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .contact-map .header-section {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .contact-map .header-section h2 {
        margin: 0 0 .5rem;
        font-size: clamp(24px, 4vw, 40px);
        color: var(--fg-on-page);
    }

    .contact-map .header-section p {
        margin: 0;
        color: var(--neutral-600);
    }

    .contact-map .map-section {
        margin-bottom: 2.5rem;
    }

    .contact-map .map-wrapper {
        width: 100%;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 3px solid var(--bg-accent);
    }

    .contact-map .map-wrapper iframe {
        display: block;
        width: 100%;
        height: 480px;
        border: 0;
    }

    .contact-map .contacts-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .contact-map .contact-card {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-lg);
        padding: clamp(14px, 2vw, 20px);
        text-align: center;
        box-shadow: var(--shadow-md);
        transition: transform .2s;
    }

    .contact-map .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .contact-map .contact-card .icon {
        font-size: 2rem;
        margin-bottom: .75rem;
    }

    .contact-map .contact-card h4 {
        margin: 0 0 .5rem;
        font-size: .95rem;
        opacity: .9;
    }

    .contact-map .contact-card p {
        margin: 0;
        font-size: .9rem;
        color: var(--fg-on-accent);
    }

    @media (max-width: 1023px) {
        .contact-map .contacts-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 767px) {
        .contact-map .contacts-grid {
            grid-template-columns: 1fr;
        }
    }

.clarifications-l1 {

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

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

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

    .clarifications-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-page);
    }

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

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

    .clarifications-l1__note {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        overflow: hidden;
        animation: l1Float 6s var(--anim-ease) infinite;
    }

    .clarifications-l1__note:nth-child(2n) {
        animation-duration: 7.2s
    }

    .clarifications-l1__note:nth-child(3n) {
        animation-duration: 8.2s
    }

    @keyframes l1Float {
        0%, 100% {
            transform: translateY(0px)
        }
        50% {
            transform: translateY(-6px)
        }
    }

    .clarifications-l1__note::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 120px at 20% 10%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(220px 140px at 85% 30%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
    }

    .clarifications-l1__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .clarifications-l1__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 0.9rem;
    }

    .clarifications-l1__spark {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0);
        animation: l1Pulse 2.4s ease-in-out infinite;
    }

    @keyframes l1Pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0)
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.12)
        }
    }

    .clarifications-l1__q {
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
        letter-spacing: -.01em;
    }

    .clarifications-l1__a {
        margin: 0;
        position: relative;
        z-index: 1;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .clarifications-l1__note:hover {
        transform: translateY(-10px) rotate(-0.2deg);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

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

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l1__note, .clarifications-l1__spark {
            animation: none;
        }
    }

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

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

    .form-glass header {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .form-glass header p {
        margin: 10px auto 0;
        max-width: 600px;
        opacity: .9;
    }

    .form-glass .grid {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 48px;
        margin-top: 40px;
    }

    .form-glass .card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--radius-lg);
        padding: 32px;
        backdrop-filter: blur(10px);
    }

    .form-glass label {
        display: grid;
        gap: 6px;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .form-glass input:not([type="checkbox"]),
    .form-glass textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        padding: 14px 16px;
        font: inherit;
        transition: border-color var(--anim-duration) var(--anim-ease);
    }

    .form-glass input:focus,
    .form-glass textarea:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.2);
    }

    .form-glass input::placeholder,
    .form-glass textarea::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .form-glass .agree {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-top: 24px;
        margin-bottom: 28px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .form-glass .agree input[type="checkbox"] {
        margin-top: 4px;
        flex-shrink: 0;
    }

    .form-glass button {
        border: 0;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 16px 32px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        width: 100%;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .form-glass button:hover {
        background: var(--bg-accent-hover);
    }

    .form-glass .info {
        padding-top: 16px;
    }

    .form-glass .info p {
        margin: 0 0 28px;
        opacity: .9;
        line-height: 1.6;
    }

    .form-glass .info strong {
        display: block;
        margin-bottom: 6px;
        color: var(--fg-on-primary);
        opacity: 1;
    }

    .form-glass .info a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        transition: border-color var(--anim-duration) var(--anim-ease);
    }

    .form-glass .info a:hover {
        border-bottom-color: var(--accent);
    }

    @media (max-width: 860px) {
        .form-glass .grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

.contact-float {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--bg-page);
        color: var(--fg-on-page);
        position: relative;
        overflow: hidden;
    }

    .contact-float::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 15% 20%, rgba(255, 107, 53, 0.12), transparent 55%),
            radial-gradient(circle at 80% 70%, rgba(0, 86, 179, 0.08), transparent 60%);
        pointer-events: none;
    }

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

    .contact-float header {
        margin-bottom: 14px;
    }

    .contact-float h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
        letter-spacing: -0.02em;
    }

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

    .contact-float .row {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 14px;
    }

    .contact-float .sheet {
        border: 1px solid var(--border-on-surface);
        border-radius: 16px;
        background: var(--surface-1);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-float h3 {
        margin: 0 0 10px;
    }

    .contact-float .items {
        display: grid;
        gap: 10px;
    }

    .contact-float .item {
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .contact-float .label {
        display: block;
        font-size: 12px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--neutral-600);
        margin-bottom: 6px;
    }

    .contact-float .value {
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .contact-float .social-title {
        margin: 0 0 10px;
        font-weight: 600;
    }

    .contact-float .social-links {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .contact-float .social a,
    .contact-float .social-links a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: 1px solid var(--border-on-surface);
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-page);
        background: var(--surface-2);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-float .social-links a:hover {
        transform: translateY(-2px);
    }

    .contact-float .sheet.social {
        background: var(--bg-accent);
        border-color: var(--border-on-surface-light);
    }

    @media (max-width: 860px) {
        .contact-float .row {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

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

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        overflow-y: auto;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        box-sizing: border-box;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        margin: 0 0 1rem 0;
        color: #f1c40f;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #f1c40f;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #34495e;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
    }

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

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

    .footer-social {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

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

    .footer-social a:hover {
        background-color: #f1c40f;
        color: #2c3e50;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

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

        .footer-section h3 {
            border-bottom: none;
        }
    }

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

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

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

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

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

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

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

    .policy-columns header p {
        margin: 10px 0 16px;
        color: rgba(6, 95, 70, .85);
    }

    .policy-columns .cols {
        column-count: 2;
        column-gap: 12px;
    }

    .policy-columns article {
        break-inside: avoid;
        margin: 0 0 12px;
        padding: 12px;
        border: 1px solid rgba(6, 95, 70, .18);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .6);
    }

    .policy-columns h3 {
        margin: 0;
    }

    .policy-columns .meta {
        margin: 6px 0;
        color: rgba(6, 95, 70, .8);
        font-size: .9rem;
    }

    .policy-columns .text {
        margin: 0;
        color: rgba(6, 95, 70, .9);
    }

    @media (max-width: 760px) {
        .policy-columns .cols {
            column-count: 1;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

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

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        overflow-y: auto;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        box-sizing: border-box;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        margin: 0 0 1rem 0;
        color: #f1c40f;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #f1c40f;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #34495e;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
    }

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

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

    .footer-social {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

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

    .footer-social a:hover {
        background-color: #f1c40f;
        color: #2c3e50;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

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

        .footer-section h3 {
            border-bottom: none;
        }
    }

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

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

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

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

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

    .terms-panels .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .terms-panels header {
        margin-bottom: 16px;
    }

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

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

    .terms-panels .panel {
        margin-bottom: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .9);
        padding: 14px;
    }

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

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

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        overflow-y: auto;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        box-sizing: border-box;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        margin: 0 0 1rem 0;
        color: #f1c40f;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #f1c40f;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #34495e;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
    }

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

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

    .footer-social {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

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

    .footer-social a:hover {
        background-color: #f1c40f;
        color: #2c3e50;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

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

        .footer-section h3 {
            border-bottom: none;
        }
    }

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

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

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

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

.th-core-d {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .th-core-d .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border: 1px dashed var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        padding: clamp(18px, 3vw, 30px);
    }

    .th-core-d h1 {
        margin: 0;
        font-size: clamp(30px, 5vw, 50px);
        color: var(--brand);
    }

    .th-core-d p {
        margin: 10px 0 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .th-core-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: bold;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .th-core-d a:hover {
        background: var(--bg-primary-hover);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.header-logo {
    font-weight: 700;
    font-size: calc(var(--font-size-base) * 1.5);
    color: var(--brand);
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
}

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

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

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
    border-radius: var(--radius-sm);
}

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

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

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

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 99;
        overflow-y: auto;
    }

    .site-nav.is-active {
        transform: translateX(0);
    }

    .site-nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: -1;
    }

    .site-nav.is-active::before {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 var(--space-x);
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        width: 100%;
        box-sizing: border-box;
    }

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

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

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

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 3rem 1rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 2rem;
        font-weight: 700;
        margin: 0 0 1rem 0;
        color: #f1c40f;
        letter-spacing: 1px;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #f1c40f;
        margin-top: 0;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #34495e;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #f1c40f;
        padding-left: 5px;
    }

    .footer-contact p {
        margin: 0 0 0.8rem 0;
    }

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

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

    .footer-social {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

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

    .footer-social a:hover {
        background-color: #f1c40f;
        color: #2c3e50;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        text-align: center;
        font-size: 0.9rem;
        color: #95a5a6;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }

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

        .footer-section h3 {
            border-bottom: none;
        }
    }

.cookie-strip {
        position: fixed;
        inset: auto 0 0 0;
        z-index: 1100;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-top: 1px solid rgba(255, 255, 255, .25);
    }

    .cookie-strip .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 12px 16px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        align-items: center;
    }

    .cookie-strip .title,
    .cookie-strip .text {
        margin: 0;
    }

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

    .cookie-strip .actions a {
        color: var(--fg-on-primary);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
    }

    .cookie-strip .actions a[data-value='accept'] {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--accent-contrast);
    }

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

.nf-core-e {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .nf-core-e .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .nf-core-e h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
        letter-spacing: .01em;
    }

    .nf-core-e p {
        margin: 10px 0 0;
        opacity: .94;
    }

    .nf-core-e a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
        text-decoration: none;
        font-weight: 600;
    }