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

  --max-w: 1280px;
  --space-x: 24px;
  --space-y: 20px;
  --gap: 16px;

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --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: #0056A3;
  --brand-contrast: #FFFFFF;
  --accent: #00A3D6;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6B7B95;
  --neutral-800: #2C3E50;
  --neutral-900: #1A2530;

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

  --bg-alt: #F5F7FA;
  --fg-on-alt: #2C3E50;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #1A2530;
  --border-on-surface: #D1D9E6;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2C3E50;
  --border-on-surface-light: #E1E8F0;

  --bg-primary: #0056A3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004080;
  --ring: #00A3D6;

  --bg-accent: #E6F7FF;
  --fg-on-accent: #003366;
  --bg-accent-hover: #0088B3;

  --link: #0056A3;
  --link-hover: #004080;

  --gradient-hero: linear-gradient(135deg, #0056A3 0%, #00A3D6 100%);
  --gradient-accent: linear-gradient(90deg, #00A3D6 0%, #00C9FF 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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

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

.main-nav {
    display: flex;
}

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

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

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

.burger-menu {
    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;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    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-menu {
        display: flex;
    }

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }

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

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

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

    .site-header::after {
        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: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  .copyright {
    font-size: 0.9rem;
    color: #777;
    margin-top: auto;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 2rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

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

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

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

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

.intro-focus-light {

        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(60px, 10vw, 120px) clamp(16px, 3vw, 40px);
        position: relative;
    }

    .intro-focus-light::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: var(--bg-alt);
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
        z-index: 0;
    }

    .intro-focus-light .intro-focus-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .intro-focus-light .intro-focus-light__hero {
        max-width: 900px;

    }

    .intro-focus-light .intro-focus-light__question {
        font-size: clamp(16px, 2vw, 20px);
        color: var(--accent);
        font-weight: 700;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;

        transform: translateY(20px);
    }

    .intro-focus-light .intro-focus-light__headline {
        font-size: clamp(40px, 7vw, 72px);
        font-weight: 900;
        margin: 0 0 1.5rem;
        line-height: 1.05;
        transform: translateY(30px);
    }

    .intro-focus-light .intro-focus-light__lead {
        font-size: clamp(18px, 2.5vw, 24px);
        margin: 0 0 3rem;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        max-width: 700px;

        transform: translateY(30px);
    }

    .intro-focus-light .intro-focus-light__stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--gap);

    }

    .intro-focus-light .intro-focus-light__stat {
        padding: 1.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        text-align: center;
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(20px);
    }

    .intro-focus-light .intro-focus-light__stat:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .intro-focus-light .intro-focus-light__stat-value {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 900;
        color: var(--brand);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .intro-focus-light .intro-focus-light__stat-label {
        font-size: clamp(12px, 1.5vw, 14px);
        color: var(--neutral-600);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.next-arrow {
        padding: clamp(60px, 9vw, 108px) 16px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .next-arrow .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        text-align: center;
    }

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

    .next-arrow p {
        margin: 10px auto 0;
        max-width: 62ch;
    }

    .next-arrow .flow {
        margin-top: 16px;
        display: flex;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-arrow .flow a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid var(--chip-bg);
        border-radius: 999px;
        background: var(--chip-bg);
        padding: 9px 13px;
        display: inline-flex;
        gap: 6px;
        align-items: center;
    }

    .next-arrow .flow .final {
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
        border-color: var(--fg-on-primary);
    }

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

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

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

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

    .faq-rows ol {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

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

    .faq-rows h3 {
        margin: 0 0 8px;
        font-size: 1.05rem;
    }

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

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

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

    .why-choose .why-choose__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

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

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

    .why-choose .why-choose__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

    .why-choose .why-choose__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

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

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

.capabilities-light {

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

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

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

    }

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

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

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

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

        transform: scale(0.95);
    }

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

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

    .capabilities-light .capabilities-light__badge {
        position: absolute;
        top: -8px;
        right: -8px;
        width: 24px;
        height: 24px;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        box-shadow: var(--shadow-sm);
    }

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

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

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

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

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

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

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

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

.main-nav {
    display: flex;
}

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

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

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

.burger-menu {
    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;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    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-menu {
        display: flex;
    }

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }

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

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

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

    .site-header::after {
        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: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  .copyright {
    font-size: 0.9rem;
    color: #777;
    margin-top: auto;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 2rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

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

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

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

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

.product-list {

        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(20px, 3.5vw, 48px) clamp(16px, 4vw, 40px);
    }

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

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 4vw, 40px);
    }

    .product-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .product-list .product-list__toolbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: clamp(24px, 4vw, 40px);
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        flex: 1;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-size: 0.875rem;
    }

    .product-list .product-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .product-list .product-list__view-toggle {
        display: flex;
        gap: 0.5rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        padding: 0.25rem;
        background: var(--bg-page);
    }

    .product-list .product-list__view-btn {
        padding: 0.5rem 0.75rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
        font-size: 1.125rem;
    }

    .product-list .product-list__view-btn.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .product-list .product-list__container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: clamp(16px, 2.5vw, 24px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-list .product-list__container > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
    }

    .product-list .product-list__card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--bg-primary);
    }

    .product-list .product-list__image-container {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        background: var(--bg-alt);
    }

    .product-list .product-list__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__image {
        transform: scale(1.15);
    }

    .product-list .product-list__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__overlay {
        opacity: 1;
    }

    .product-list .product-list__quick-view {
        padding: 0.75rem 1.5rem;
        background: var(--bg-page);
        color: var(--fg-on-page);
        text-decoration: none;
        border-radius: var(--radius-md);
        font-weight: 600;
        transform: translateY(10px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__quick-view {
        transform: translateY(0);
    }

    .product-list .product-list__content {
        padding: clamp(16px, 2vw, 20px);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .product-list .product-list__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(16px, 2vw, 18px);
        color: var(--fg-on-page);
        font-weight: 600;
        flex: 1;
        line-height: 1.4;
    }

    .product-list .product-list__wishlist {
        width: 32px;
        height: 32px;
        border: 1px solid var(--ring);
        border-radius: 50%;
        background: var(--bg-page);
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .product-list .product-list__wishlist:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        transform: scale(1.1);
    }

    .product-list .product-list__price {
        font-size: 1.375rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0;
    }

    .product-list .product-list__footer {
        display: flex;
        gap: 0.5rem;
        margin-top: auto;
    }

    .product-list .product-list__btn {
        flex: 1;
        padding: 0.625rem 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        font-size: 0.875rem;
        text-align: center;
    }

    .product-list .product-list__btn:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

    .product-list .product-list__cart-btn {
        width: 40px;
        height: 40px;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-list .product-list__cart-btn:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transform: scale(1.1);
    }

    @media (max-width: 767px) {
        .product-list .product-list__container {
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(12px, 2vw, 16px);
        }

        .product-list .product-list__image-container {
            height: 160px;
        }
    }

.touch-panorama {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

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

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

    .touch-panorama .lead {
        margin: 10px 0 14px;
    }

    .touch-panorama .lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .touch-panorama article {
        min-width: 250px;
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
        scroll-snap-align: start;
    }

    .touch-panorama article h3 {
        margin: 0 0 8px;
    }

    .touch-panorama article p {
        margin: 0 0 8px;
    }

    .touch-panorama article a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    .touch-panorama .main {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }
    .subscribe-form .main: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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

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

.main-nav {
    display: flex;
}

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

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

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

.burger-menu {
    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;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    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-menu {
        display: flex;
    }

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }

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

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

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

    .site-header::after {
        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: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  .copyright {
    font-size: 0.9rem;
    color: #777;
    margin-top: auto;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 2rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

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

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

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

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__description ul {
        padding-left: 1.5rem;
        margin-top: 0.5rem;
    }

    .product-item .product-item__description li {
        margin-bottom: 0.5rem;
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

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

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

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

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

.main-nav {
    display: flex;
}

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

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

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

.burger-menu {
    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;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    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-menu {
        display: flex;
    }

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }

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

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

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

    .site-header::after {
        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: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  .copyright {
    font-size: 0.9rem;
    color: #777;
    margin-top: auto;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 2rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

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

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

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

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.mission--colored-v5 {
    padding: 64px 20px;
    background: radial-gradient(circle at top left, rgba(16,185,129,0.35), transparent),
                radial-gradient(circle at bottom right, rgba(59,130,246,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

.mission__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.mission__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(209,250,229,0.9);
    margin: 0 0 0.5rem;
}

.mission__title {
    margin: 0 0 8px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.mission__text {
    margin: 0;
    color: var(--neutral-300);
    font-size: 0.95rem;
    line-height: 1.7;
}

.mission__pillars {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.mission__pillar {
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.96);
}

.mission__pillar--impact {
    border-color: var(--accent);
}

.mission__pillar--safety {
    border-color: var(--accent);
}

.mission__pillar--focus {
    border-color: var(--bg-primary);
}

.mission__pillar h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: var(--brand-contrast);
}

.mission__pillar p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

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

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

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

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

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

.main-nav {
    display: flex;
}

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

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

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

.burger-menu {
    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;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    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-menu {
        display: flex;
    }

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }

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

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

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

    .site-header::after {
        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: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  .copyright {
    font-size: 0.9rem;
    color: #777;
    margin-top: auto;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 2rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

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

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

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

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .product-item .product-item__main-image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

    .product-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

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

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

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

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

.main-nav {
    display: flex;
}

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

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

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

.burger-menu {
    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;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    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-menu {
        display: flex;
    }

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }

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

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

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

    .site-header::after {
        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: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  .copyright {
    font-size: 0.9rem;
    color: #777;
    margin-top: auto;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 2rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

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

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

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

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

.checkout--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.checkout__inner {
    max-width: 480px;
    margin: 0 auto;
}

.checkout__title {
    margin: 0 0 6px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.checkout__text {
    margin: 0 0 16px;
    color: var(--neutral-300);
    font-size: 0.95rem;
}

.checkout__summary {
    background: rgba(15,23,42,0.95);
    border-radius: var(--radius-xl);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
    display: grid;
    gap: 8px;
}

.checkout__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.checkout__row--total {
    font-weight: 600;
    border-top: 1px solid rgba(75,85,99,0.9);
    padding-top: 8px;
    margin-top: 4px;
}

.checkout__button {
    margin-top: 8px;
    border: none;
    border-radius: var(--radius-lg);
    padding: 10px 18px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.contact-support--light-v4 {
        padding: 56px 20px;
        background:
                radial-gradient(120% 120% at 0% 0%, rgba(59, 130, 246, 0.15), transparent 55%),
                radial-gradient(120% 120% at 100% 20%, rgba(16, 185, 129, 0.15), transparent 55%),
                #fff;
        color: var(--fg-on-page);

    }

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

    .contact-support__columns {
        display: grid;
        gap: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-support__col {
        padding: 20px 22px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid var(--ring);
        box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
        position: relative;
        overflow: hidden;
    }

    .contact-support__col::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, rgba(59, 130, 246, 0.08), transparent 60%);
        pointer-events: none;
    }

    .contact-support__col h4 {
        margin: 0 0 6px;
        font-size: 1.05rem;

    }

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

    @media (max-width: 767px) {
        .contact-support__columns {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }

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

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

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

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

.main-nav {
    display: flex;
}

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

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

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

.burger-menu {
    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;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    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-menu {
        display: flex;
    }

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }

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

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

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

    .site-header::after {
        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: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  .copyright {
    font-size: 0.9rem;
    color: #777;
    margin-top: auto;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 2rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

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

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

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

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .contact-stack::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 18% 18%, rgba(0, 86, 179, 0.08), transparent 55%);
        pointer-events: none;
    }

    .contact-stack .wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 16px;
        position: relative;
        z-index: 1;
    }

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

    .contact-stack .lead {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .contact-stack .cards {
        display: grid;
        grid-template-columns: minmax(280px, 1fr) minmax(200px, 320px);
        gap: 12px;
    }

    .contact-stack .card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

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

    .contact-stack .rows {
        display: grid;
        gap: 10px;
    }

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

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

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

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

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

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

    .contact-stack .social-card {
        background: var(--surface-2);
    }

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

    @media (max-width: 820px) {
        .contact-stack .cards {
            grid-template-columns: 1fr;
        }
    }

.contact-map {

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

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

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

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

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

    .contact-map .content {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 2rem;
    }

    .contact-map .map-container {
        width: 100%;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

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

    .contact-map .info-card {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.5vw, 28px);
        box-shadow: var(--shadow-lg);
    }

    .contact-map .info-card h3 {
        margin: 0 0 1.5rem;
        font-size: clamp(20px, 3vw, 26px);
        color: var(--fg-on-accent);
    }

    .contact-map .items {
        display: grid;
        gap: 1.5rem;
    }

    .contact-map .item {
        display: grid;
        gap: .5rem;
    }

    .contact-map .item strong {
        display: block;
        font-size: .9rem;
        opacity: .9;
    }

    .contact-map .item span {
        display: block;
        font-size: 1.05rem;
        color: var(--fg-on-accent);
    }

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

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

    .form-steps .wrap {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
    }

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

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

    .form-steps form,
    .form-steps aside {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y);
    }

    .form-steps .step {
        display: grid;
        grid-template-columns: 28px 1fr;
        gap: 8px;
        align-items: start;
        margin-bottom: 8px;
    }

    .form-steps .step span {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: grid;
        place-items: center;
        font-size: .8rem;
    }

    .form-steps label {
        display: grid;
        gap: 6px;
    }

    .form-steps input:not([type="checkbox"]),
    .form-steps textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

    .form-steps .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin: 8px 0;
    }

    input[type="checkbox"] {
        width: auto;
    }

    .form-steps button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
        cursor: pointer;
        font: inherit;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .form-steps button: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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

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

.main-nav {
    display: flex;
}

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

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

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

.burger-menu {
    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;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    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-menu {
        display: flex;
    }

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }

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

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

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

    .site-header::after {
        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: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  .copyright {
    font-size: 0.9rem;
    color: #777;
    margin-top: auto;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 2rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

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

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

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

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

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

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

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

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

    .policy-table .rows {
        display: grid;
        gap: 8px;
    }

    .policy-table .row {
        display: grid;
        grid-template-columns: 56px 1fr auto;
        gap: 10px;
        align-items: start;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px;
    }

    .policy-table .left {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--bg-alt);
        display: grid;
        place-items: center;
        color: var(--neutral-800);
        font-weight: 600;
    }

    .policy-table h3 {
        margin: 0 0 6px;
    }

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

    .policy-table .right {
        color: var(--neutral-600);
        font-size: .9rem;
    }

    @media (max-width: 640px) {
        .policy-table .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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

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

.main-nav {
    display: flex;
}

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

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

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

.burger-menu {
    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;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    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-menu {
        display: flex;
    }

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }

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

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

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

    .site-header::after {
        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: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  .copyright {
    font-size: 0.9rem;
    color: #777;
    margin-top: auto;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 2rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

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

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

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

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

.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);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

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

.main-nav {
    display: flex;
}

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

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

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

.burger-menu {
    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;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    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-menu {
        display: flex;
    }

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }

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

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

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

    .site-header::after {
        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: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  .copyright {
    font-size: 0.9rem;
    color: #777;
    margin-top: auto;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 2rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

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

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

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

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

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

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

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

    .th-core-e p {
        margin: 10px 0 0;
        color: var(--border-on-surface-light);
    }

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

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

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

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

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

.main-nav {
    display: flex;
}

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

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

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

.burger-menu {
    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;
    z-index: 1001;
}

.burger-line {
    display: block;
    height: 2px;
    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-menu {
        display: flex;
    }

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

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

    .nav-list {
        flex-direction: column;
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-lg);
    }

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

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

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

    .site-header::after {
        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: 999;
    }

    .main-nav.active ~ .site-header::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    padding: 3rem 1rem;
    font-family: sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
  }
  .footer-section {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    color: #222;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-top: auto;
  }
  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #444;
  }
  .footer-nav,
  .footer-legal,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li,
  .footer-legal li {
    margin-bottom: 0.7rem;
  }
  .footer-nav a,
  .footer-legal a,
  .footer-contact a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover,
  .footer-legal a:hover,
  .footer-contact a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contact p {
    margin: 0 0 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-social a:hover {
    background-color: #ccc;
  }
  .copyright {
    font-size: 0.9rem;
    color: #777;
    margin-top: auto;
    padding-top: 1rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .footer-section {
      border-bottom: 1px solid #eee;
      padding-bottom: 2rem;
    }
    .footer-section:last-child {
      border-bottom: none;
    }
  }

.cookie-ribbon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        padding: 14px 16px;
    }

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

    .cookie-ribbon h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

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

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

    .cookie-ribbon button {
        border: 1px solid rgba(255, 255, 255, .45);
        background: rgba(255, 255, 255, .12);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-ribbon button[data-state='accept'] {
        background: var(--surface-1);
        border-color: var(--surface-1);
        color: var(--fg-on-page);
    }

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