@font-face {
    font-family: 'Material Icons';
    src: url('/assets-vortex/fonts-nexus/material-icons.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: block;
}

.material-symbol--vintage {
    font-family: 'Material Icons';
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'liga';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Interface Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: hsl(210, 25%, 98%);
    color: hsl(220, 20%, 20%);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, textarea, select {
    font: inherit;
    border: none;
    background: none;
}

button {
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@font-face {
    font-family: 'Grotesque Modern';
    src: url('/assets-vortex/fonts-nexus/grotesque-modern.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Interface Sans';
    src: url('/assets-vortex/fonts-nexus/interface-sans.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Interface Sans';
    src: url('/assets-vortex/fonts-nexus/interface-sans.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.text--system-fallback {
    font-family: 'Interface Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.layout__container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.layout__container--narrow {
    max-width: 920px;
}

@media (max-width: 768px) {
    .no-mobile-anim * {
        animation: none !important;
        transition: none !important;
    }

    .layout__container {
        padding: 0 2px;
    }
}

.notice__age {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10001;
    max-width: 420px;
    background: hsl(0, 0%, 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(33, 150, 243, 0.1);
    border-left: 6px solid hsl(215, 85%, 50%);
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    overflow: hidden;
}
.notice__age.notice__age--visible {
    transform: translateX(0);
}
.notice__age-content {
    padding: 28px;
}
.notice__age-icon {
    font-size: 1.8rem;
    color: hsl(215, 85%, 50%);
    display: block;
    margin-bottom: 15px;
}
.notice__age-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: hsl(220, 20%, 20%);
}
.notice__age-text {
    font-size: 0.95rem;
    color: hsl(220, 15%, 40%);
    margin-bottom: 24px;
    line-height: 1.7;
}
.notice__age-link {
    color: hsl(215, 85%, 50%);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.notice__age-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.notice__age-button {
    flex: 1;
    min-width: 140px;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.notice__age-button-icon {
    font-size: 1rem;
}
.notice__age-button--confirm {
    background: hsl(215, 85%, 50%);
    color: white;
}
.notice__age-button--confirm .notice__age-button-icon {
    color: white;
}
.notice__age-button--confirm:hover {
    background: hsl(215, 85%, 45%);
    transform: translateY(-2px);
}
.notice__age-button--decline {
    background: hsl(0, 0%, 95%);
    color: hsl(220, 20%, 20%);
    border: 1px solid hsl(0, 0%, 85%);
}
.notice__age-button--decline:hover {
    background: hsl(0, 0%, 90%);
    border-color: hsl(0, 0%, 75%);
}
@media (max-width: 768px) {
    .notice__age {
        top: auto;
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
        transform: translateY(150%);
    }
    .notice__age.notice__age--visible {
        transform: translateY(0);
    }
    .notice__age-content {
        padding: 22px;
    }
    .notice__age-buttons {
        flex-direction: column;
    }
    .notice__age-button {
        min-width: auto;
    }
}

.consent__cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: linear-gradient(135deg, hsl(220, 25%, 15%) 0%, hsl(220, 20%, 20%) 100%);
    color: white;
    border-top: 4px solid hsl(145, 70%, 40%);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.consent__cookies.consent__cookies--visible {
    transform: translateY(0);
}
.consent__cookies-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.consent__cookies-close:hover {
    background: rgba(255, 255, 255, 0.25);
}
.consent__cookies-close-icon {
    font-size: 1.1rem;
    color: white;
}
.consent__cookies-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 25px 70px 25px 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
.consent__cookies-text {
    flex: 1;
    min-width: 300px;
}
.consent__cookies-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: white;
}
.consent__cookies-desc {
    font-size: 0.95rem;
    color: hsl(0, 0%, 85%);
    line-height: 1.6;
}
.consent__cookies-link {
    color: hsl(145, 70%, 60%);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.consent__cookies-button {
    flex-shrink: 0;
    padding: 16px 32px;
    background: hsl(145, 70%, 40%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(72, 187, 120, 0.3);
}
.consent__cookies-button:hover {
    background: hsl(145, 70%, 35%);
    transform: translateY(-3px);
    box-shadow: 0 9px 20px rgba(72, 187, 120, 0.4);
}
.consent__cookies-button-icon {
    font-size: 1.1rem;
    color: white;
}
@media (max-width: 768px) {
    .consent__cookies-content {
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .consent__cookies-text {
        min-width: auto;
    }
    .consent__cookies-button {
        align-self: stretch;
        justify-content: center;
        padding: 16px;
    }
    .consent__cookies-close {
        top: 12px;
        right: 12px;
    }
}

.nav__scroll {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.nav__scroll.nav__scroll--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav__scroll-progress {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: hsl(0, 0%, 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid hsl(210, 25%, 95%);
}
.nav__scroll-progress-fill {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: conic-gradient(hsl(215, 85%, 50%) 0%, hsl(210, 25%, 95%) 0%);
    z-index: 0;
}
.nav__scroll-progress-text {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: hsl(220, 20%, 20%);
    z-index: 1;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav__scroll-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: hsl(0, 0%, 100%);
    padding: 18px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.nav__scroll-button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: hsl(210, 25%, 98%);
    color: hsl(215, 85%, 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.nav__scroll-button:hover {
    background: hsl(215, 85%, 50%);
    color: white;
    transform: scale(1.1);
    border-color: hsl(215, 85%, 45%);
}
.nav__scroll-button-icon {
    font-size: 1.3rem;
}
.nav__scroll-button--up .nav__scroll-button-icon {
    color: inherit;
}
.nav__scroll-button--down .nav__scroll-button-icon {
    color: inherit;
}
@media (max-width: 768px) {
    .nav__scroll {
        right: 15px;
        bottom: 15px;
        gap: 15px;
    }
    .nav__scroll-progress {
        width: 60px;
        height: 60px;
        border-width: 5px;
    }
    .nav__scroll-progress-text {
        width: 44px;
        height: 44px;
        font-size: 0.8rem;
    }
    .nav__scroll-buttons {
        padding: 15px;
        border-radius: 22px;
    }
    .nav__scroll-button {
        width: 46px;
        height: 46px;
    }
    .nav__scroll-button-icon {
        font-size: 1.1rem;
    }
}

.site__header {
    background: hsl(0, 0%, 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site__header-top {
    background: hsl(220, 25%, 15%);
    color: white;
    padding: 10px 0;
}
.site__header-top-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.site__header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}
.site__header-logo-mark {
    font-size: 2rem;
    color: hsl(215, 85%, 60%);
}
.site__header-logo-highlight {
    color: hsl(145, 70%, 50%);
}
.site__header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}
.site__header-age,
.site__header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}
.site__header-age-icon {
    color: hsl(145, 70%, 50%);
    font-size: 1.1rem;
}
.site__header-contact-icon {
    font-size: 1.1rem;
}
.site__header-contact:hover {
    color: hsl(215, 85%, 60%);
}
.site__header-main {
    padding: 18px 0;
}
.site__header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.site__header-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    padding: 0;
}
.site__header-nav-toggle-line {
    height: 3px;
    width: 100%;
    background: hsl(220, 20%, 20%);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.site__header-nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}
.site__header-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}
.site__header-nav-item {
    position: relative;
}
.site__header-nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: hsl(220, 20%, 30%);
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}
.site__header-nav-link:hover {
    color: hsl(215, 85%, 50%);
}
.site__header-nav-link--active {
    color: hsl(215, 85%, 50%);
}
.site__header-nav-link--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: hsl(215, 85%, 50%);
    border-radius: 2px;
}
.site__header-nav-link--dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
}
.site__header-nav-dropdown-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}
.site__header-nav-item--dropdown:hover .site__header-nav-dropdown-icon {
    transform: rotate(180deg);
}
.site__header-nav-dropdown {
    position: absolute;
    top: 100%;
    left: -15px;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.site__header-nav-item--dropdown:hover .site__header-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.site__header-nav-dropdown-link {
    display: block;
    padding: 10px 25px;
    color: hsl(220, 20%, 30%);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.site__header-nav-dropdown-link:hover {
    background: hsl(210, 25%, 97%);
    color: hsl(215, 85%, 50%);
    padding-left: 30px;
}
.site__header-nav-extra {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}
.site__header-nav-extra-link {
    font-size: 0.9rem;
    color: hsl(220, 15%, 45%);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}
.site__header-nav-extra-link:hover {
    color: hsl(215, 85%, 50%);
}
.site__header-nav-extra-icon {
    font-size: 0.9rem;
}
.site__header-cta {
    background: linear-gradient(135deg, hsl(215, 85%, 50%), hsl(215, 85%, 45%));
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}
.site__header-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(33, 150, 243, 0.4);
}
.site__header-cta-icon {
    font-size: 1.1rem;
    color: white;
}
@media (max-width: 1024px) {
    .site__header-nav-list {
        gap: 20px;
    }
    .site__header-nav-menu {
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .site__header-nav-toggle {
        display: flex;
        order: 1;
    }
    .site__header-nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s ease;
        gap: 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    .site__header-nav-menu.site__header-nav-menu--open {
        opacity: 1;
        visibility: visible;
        transform: translateY(-100%);
    }
    .site__header-nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 25px;
    }
    .site__header-nav-item {
        width: 100%;
        border-bottom: 1px solid hsl(210, 25%, 95%);
    }
    .site__header-nav-link {
        padding: 18px 0;
        display: block;
        width: 100%;
    }
    .site__header-nav-link--dropdown {
        justify-content: space-between;
    }
    .site__header-nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: hsl(210, 25%, 98%);
        border-radius: 8px;
        margin: 10px 0;
    }
    .site__header-nav-item--dropdown:hover .site__header-nav-dropdown,
    .site__header-nav-item--dropdown:focus-within .site__header-nav-dropdown {
        max-height: 300px;
    }
    .site__header-nav-dropdown-link {
        padding: 14px 20px;
    }
    .site__header-nav-extra {
        margin-left: 0;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 15px;
        padding-top: 20px;
        border-top: 1px solid hsl(210, 25%, 95%);
    }
    .site__header-cta {
        order: 2;
        margin-left: auto;
        padding: 12px 22px;
        font-size: 0.95rem;
    }
    .site__header-actions {
        gap: 15px;
    }
    .site__header-contact-text {
        display: none;
    }
}
@media (max-width: 480px) {
    .site__header-logo-text {
        font-size: 1.5rem;
    }
    .site__header-cta {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    .site__header-cta-icon {
        font-size: 1rem;
    }
}

.welcome__hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: white;
    overflow: hidden;
}
.welcome__hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(-45deg, hsl(220, 25%, 15%), hsl(215, 85%, 20%), hsl(220, 30%, 12%), hsl(215, 80%, 15%));
    background-size: cover;
    animation: welcome__hero-gradient 18s ease infinite;
}
@keyframes welcome__hero-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.welcome__hero-background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets-vortex/images-pixel/visual-grid.webp') center / cover;
    opacity: 0.33;
    animation: welcome__hero-grid 60s linear infinite;
}
@keyframes welcome__hero-grid {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-5%, -5%) rotate(0.5deg); }
}
.welcome__hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
}
.welcome__hero-content {
    max-width: 780px;
    position: relative;
    z-index: 1;
}
.welcome__hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 22px;
    margin-bottom: 35px;
    font-weight: 600;
    font-size: 0.95rem;
}
.welcome__hero-badge-icon {
    color: hsl(145, 70%, 50%);
    font-size: 1.1rem;
}
.welcome__hero-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
}
.welcome__hero-geo {
    color: hsl(145, 70%, 50%);
    position: relative;
    display: inline-block;
}
.welcome__hero-geo::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: hsla(145, 70%, 50%, 0.25);
    z-index: -1;
    border-radius: 2px;
}
.welcome__hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: hsl(0, 0%, 90%);
    margin-bottom: 45px;
    max-width: 680px;
}
.welcome__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}
.welcome__hero-button {
    padding: 20px 38px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.welcome__hero-button--primary {
    background: linear-gradient(135deg, hsl(215, 85%, 50%), hsl(215, 85%, 45%));
    color: white;
}
.welcome__hero-button--primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(33, 150, 243, 0.4);
}
.welcome__hero-button--secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
}
.welcome__hero-button--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}
.welcome__hero-button-icon {
    font-size: 1.2rem;
    color: white;
}
.welcome__hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.welcome__hero-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 250px;
}
.welcome__hero-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.6rem;
    color: hsl(145, 70%, 50%);
}
.welcome__hero-feature-text {
    display: flex;
    flex-direction: column;
}
.welcome__hero-feature-text strong {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: white;
}
.welcome__hero-feature-text span {
    font-size: 0.95rem;
    color: hsl(0, 0%, 80%);
}
@media (max-width: 1024px) {
    .welcome__hero-title {
        font-size: 3rem;
    }
    .welcome__hero-subtitle {
        font-size: 1.2rem;
    }
}
@media (max-width: 768px) {
    .welcome__hero {
        min-height: auto;
        padding: 60px 0;
        text-align: center;
    }
    .welcome__hero-content {
        max-width: none;
    }
    .welcome__hero-title {
        font-size: 2.5rem;
    }
    .welcome__hero-subtitle {
        font-size: 1.1rem;
    }
    .welcome__hero-actions {
        justify-content: center;
    }
    .welcome__hero-button {
        padding: 18px 30px;
        font-size: 1rem;
    }
    .welcome__hero-features {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .welcome__hero-feature {
        min-width: auto;
        width: 100%;
        max-width: 350px;
        justify-content: center;
        text-align: left;
    }
    .welcome__hero-background::before {
        background-size: 70% auto;
        animation: welcome__hero-grid 120s linear infinite;
    }
}
@media (max-width: 480px) {
    .welcome__hero-title {
        font-size: 2.2rem;
    }
    .welcome__hero-subtitle {
        font-size: 1rem;
    }
    .welcome__hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .welcome__hero-button {
        justify-content: center;
    }
    .welcome__hero-badge {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

.section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}
.section__header-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 2.8rem;
    color: hsl(220, 20%, 20%);
    margin-bottom: 18px;
    line-height: 1.2;
}
.section__header-subtitle {
    font-size: 1.15rem;
    color: hsl(220, 15%, 45%);
    line-height: 1.6;
}
.platforms__top {
    padding: 100px 0;
    background: hsl(210, 25%, 98%);
}
.platforms__top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 100%), 1fr));
    gap: 30px;
}
.platforms__top-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    display: flex;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid hsl(210, 25%, 93%);
}
.platforms__top-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.platforms__top-card-side {
    width: 120px;
    background: linear-gradient(135deg, hsl(215, 85%, 50%), hsl(215, 85%, 45%));
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.platforms__top-card-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
}
.platforms__top-card-badge--secondary {
    background: rgba(255, 255, 255, 0.2);
}
.platforms__top-card-badge--tertiary {
    background: rgba(255, 255, 255, 0.2);
}
.platforms__top-card-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.platforms__top-card-rating-icon {
    font-size: 1.8rem;
    color: white;
}
.platforms__top-card-rating-value {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}
.platforms__top-card-main {
    padding: 35px;
    flex: 1;
}
.platforms__top-card-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.8rem;
    color: hsl(220, 20%, 20%);
    margin-bottom: 25px;
}
.platforms__top-card-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
}
.platforms__top-card-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}
.platforms__top-card-feature-icon {
    font-size: 1rem;
    color: hsl(145, 70%, 40%);
    width: 24px;
    text-align: center;
}
.platforms__top-card-feature-text {
    font-size: 1rem;
    color: hsl(220, 15%, 40%);
}
.platforms__top-card-feature-text strong {
    color: hsl(220, 20%, 20%);
    font-weight: 600;
}
.platforms__top-card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: hsl(215, 85%, 50%);
    color: white;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.25);
}
.platforms__top-card-button:hover {
    background: hsl(215, 85%, 45%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(33, 150, 243, 0.35);
}
.platforms__top-card-button-icon {
    font-size: 1.1rem;
    color: white;
}
@media (max-width: 1200px) {
    .platforms__top-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    }
}
@media (max-width: 768px) {
    .platforms__top {
        padding: 70px 0;
    }
    .section__header-title {
        font-size: 2.3rem;
    }
    .section__header-subtitle {
        font-size: 1.05rem;
    }
    .platforms__top-card {
        flex-direction: column;
    }
    .platforms__top-card-side {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 30px;
    }
    .platforms__top-card-badge {
        margin-bottom: 0;
        width: auto;
    }
    .platforms__top-card-rating {
        flex-direction: row;
        gap: 10px;
    }
    .platforms__top-card-title {
        font-size: 1.6rem;
    }
}
@media (max-width: 480px) {
    .platforms__top-card-side {
        flex-direction: column;
        gap: 15px;
        padding: 25px 20px;
    }
    .platforms__top-card-badge {
        width: 100%;
    }
    .platforms__top-card-main {
        padding: 25px;
    }
}

.explainer__betting {
    padding: 100px 0;
    background: white;
}
.explainer__betting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.explainer__betting-visual {
    background: linear-gradient(135deg, hsl(215, 85%, 96%), hsl(210, 25%, 98%));
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid hsl(210, 25%, 93%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.explainer__betting-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, hsl(215, 85%, 95%) 0%, transparent 70%);
    opacity: 0.6;
    z-index: 0;
}
.explainer__betting-visual-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}
.explainer__betting-visual-icon {
    font-size: 5rem;
    color: hsl(215, 85%, 50%);
}
.explainer__betting-visual-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.explainer__betting-visual-text strong {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.8rem;
    color: hsl(220, 20%, 20%);
}
.explainer__betting-visual-text span {
    font-size: 1rem;
    color: hsl(220, 15%, 45%);
}
.explainer__betting-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.explainer__betting-point {
    border-left: 4px solid hsl(145, 70%, 40%);
    padding-left: 25px;
}
.explainer__betting-point-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.5rem;
    color: hsl(220, 20%, 20%);
    margin-bottom: 12px;
}
.explainer__betting-point-desc {
    font-size: 1.05rem;
    color: hsl(220, 15%, 40%);
    line-height: 1.7;
}
.explainer__betting-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: hsl(215, 85%, 50%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
    transition: color 0.3s ease;
}
.explainer__betting-link:hover {
    color: hsl(215, 85%, 40%);
}
.explainer__betting-link-icon {
    font-size: 1.1rem;
}
@media (max-width: 1024px) {
    .explainer__betting-content {
        gap: 50px;
    }
    .explainer__betting-visual {
        padding: 40px;
    }
    .explainer__betting-visual-icon {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .explainer__betting {
        padding: 70px 0;
    }
    .explainer__betting-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .explainer__betting-visual {
        padding: 40px 30px;
    }
    .explainer__betting-point-title {
        font-size: 1.4rem;
    }
    .explainer__betting-point-desc {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .explainer__betting-visual-icon {
        font-size: 3.5rem;
    }
    .explainer__betting-visual-text strong {
        font-size: 1.5rem;
    }
}

.games__featured {
    padding: 100px 0;
    background: hsl(210, 25%, 98%);
}
.games__featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(460px, 100%), 1fr));
    gap: 30px;
}
.games__featured-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid hsl(210, 25%, 93%);
    position: relative;
    overflow: hidden;
}
.games__featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, hsl(215, 85%, 50%), hsl(145, 70%, 40%));
    border-radius: 24px 24px 0 0;
}
.games__featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.games__featured-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}
.games__featured-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, hsl(215, 85%, 95%) 0%, hsl(215, 85%, 92%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.8rem;
    color: hsl(215, 85%, 50%);
}
.games__featured-card-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.6rem;
    color: hsl(220, 20%, 20%);
}
.games__featured-card-desc {
    font-size: 1rem;
    color: hsl(220, 15%, 40%);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}
.games__featured-card-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.games__featured-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: hsl(220, 15%, 35%);
}
.games__featured-card-item-icon {
    font-size: 1rem;
    color: hsl(145, 70%, 40%);
    flex-shrink: 0;
}
@media (max-width: 1200px) {
    .games__featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    }
}
@media (max-width: 1024px) {
    .games__featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .games__featured {
        padding: 70px 0;
    }
    .games__featured-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .games__featured-card {
        padding: 30px;
    }
}
@media (max-width: 480px) {
    .games__featured-card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .games__featured-card-icon {
        width: 70px;
        height: 70px;
    }
    .games__featured-card-icon {
        font-size: 2rem;
    }
}

.guide__selection {
    padding: 100px 0;
    background: white;
}
.guide__selection-steps {
    max-width: 900px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
}
.guide__selection-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 4px;
    background: linear-gradient(to bottom, hsl(215, 85%, 90%), hsl(145, 70%, 85%));
    border-radius: 2px;
    z-index: 0;
}
.guide__selection-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 35px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.guide__selection-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(215, 85%, 50%), hsl(215, 85%, 45%));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.25);
    flex-shrink: 0;
}
.guide__selection-step-content {
    background: hsl(210, 25%, 98%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid hsl(210, 25%, 93%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.guide__selection-step-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.5rem;
    color: hsl(220, 20%, 20%);
    margin-bottom: 12px;
}
.guide__selection-step-desc {
    font-size: 1.05rem;
    color: hsl(220, 15%, 40%);
    line-height: 1.7;
}
.guide__selection-note {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, hsl(145, 70%, 96%), hsl(145, 70%, 92%));
    border-radius: 20px;
    padding: 30px;
    border-left: 6px solid hsl(145, 70%, 40%);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.guide__selection-note-icon {
    font-size: 1.8rem;
    color: hsl(145, 70%, 40%);
    flex-shrink: 0;
    margin-top: 5px;
}
.guide__selection-note-text {
    font-size: 1.1rem;
    color: hsl(220, 20%, 20%);
    line-height: 1.6;
    font-weight: 600;
}
@media (max-width: 768px) {
    .guide__selection {
        padding: 70px 0;
    }
    .guide__selection-steps::before {
        left: 30px;
    }
    .guide__selection-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .guide__selection-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        justify-self: center;
        margin-bottom: 10px;
    }
    .guide__selection-step-content {
        padding: 25px;
    }
    .guide__selection-step-title {
        font-size: 1.4rem;
    }
    .guide__selection-step-desc {
        font-size: 1rem;
    }
    .guide__selection-note {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    .guide__selection-note-icon {
        margin-top: 0;
    }
}
@media (max-width: 480px) {
    .guide__selection-steps::before {
        left: 20px;
    }
    .guide__selection-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .guide__selection-step-content {
        padding: 20px;
    }
}

.process__registration {
    padding: 100px 0;
    background: hsl(210, 25%, 98%);
}
.process__registration-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}
.process__registration-step {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid hsl(210, 25%, 93%);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}
.process__registration-step:hover {
    transform: translateY(-10px);
}
.process__registration-step-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.process__registration-step-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, hsl(215, 85%, 95%), hsl(215, 85%, 92%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: hsl(215, 85%, 50%);
}
.process__registration-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, hsl(145, 70%, 40%), hsl(145, 70%, 35%));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
}
.process__registration-step-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.5rem;
    color: hsl(220, 20%, 20%);
    margin-bottom: 18px;
}
.process__registration-step-desc {
    font-size: 1.05rem;
    color: hsl(220, 15%, 40%);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}
.process__registration-step-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.process__registration-step-list li {
    position: relative;
    padding-left: 30px;
    font-size: 0.95rem;
    color: hsl(220, 15%, 35%);
}
.process__registration-step-list li::before {
    content: "check_circle";
    font-family: 'Material Icons';
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(145, 70%, 40%);
    font-size: 1rem;
}
.process__registration-tip {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, hsl(215, 85%, 50%), hsl(215, 85%, 45%));
    border-radius: 24px;
    padding: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.25);
}
.process__registration-tip-content {
    flex: 1;
    min-width: 300px;
}
.process__registration-tip-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.process__registration-tip-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}
@media (max-width: 1024px) {
    .process__registration-step {
        min-width: 280px;
    }
}
@media (max-width: 768px) {
    .process__registration {
        padding: 70px 0;
    }
    .process__registration-steps {
        flex-direction: column;
        align-items: center;
    }
    .process__registration-step {
        max-width: 100%;
        width: 100%;
    }
    .process__registration-tip {
        flex-direction: column;
        text-align: center;
        padding: 35px;
    }
    .process__registration-tip-content {
        min-width: auto;
    }
}
@media (max-width: 480px) {
    .process__registration-step {
        padding: 30px;
    }
    .process__registration-step-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .process__registration-step-number {
        align-self: flex-end;
    }
    .process__registration-tip {
        padding: 30px 25px;
    }
}

.betting__types {
    padding: 100px 0;
    background: white;
}
.betting__types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.betting__types-card {
    width: 100%;
    background: hsl(210, 25%, 98%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid hsl(210, 25%, 93%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s ease;
}
.betting__types-card:hover {
    transform: translateY(-10px);
}
.betting__types-card-header {
    min-height: 142px;
    padding: 30px;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
}
.betting__types-card-header--blue {
    background: linear-gradient(135deg, hsl(215, 85%, 50%), hsl(215, 85%, 45%));
}
.betting__types-card-header--green {
    background: linear-gradient(135deg, hsl(145, 70%, 40%), hsl(145, 70%, 35%));
}
.betting__types-card-header--purple {
    background: linear-gradient(135deg, hsl(270, 70%, 50%), hsl(270, 70%, 45%));
}
.betting__types-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.8rem;
}
.betting__types-card-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.6rem;
}
.betting__types-card-content {
    padding: 30px;
}
.betting__types-card-desc {
    font-size: 1.05rem;
    color: hsl(220, 15%, 40%);
    line-height: 1.6;
    margin-bottom: 25px;
}
.betting__types-card-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.betting__types-card-list li {
    position: relative;
    padding-left: 30px;
    font-size: 0.95rem;
    color: hsl(220, 15%, 35%);
    line-height: 1.5;
}
.betting__types-card-list li::before {
    content: "chevron_right";
    font-family: 'Material Icons';
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 2px;
    color: hsl(215, 85%, 50%);
    font-size: 0.9rem;
}
.betting__types-card-list li strong {
    color: hsl(220, 20%, 20%);
    font-weight: 600;
}
.betting__types-card-example {
    background: rgba(33, 150, 243, 0.05);
    border-radius: 12px;
    padding: 18px;
    border-left: 4px solid hsl(215, 85%, 50%);
}
.betting__types-card-example-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: hsl(215, 85%, 50%);
    margin-bottom: 5px;
}
.betting__types-card-example-text {
    font-size: 0.95rem;
    color: hsl(220, 15%, 35%);
    font-style: italic;
}
.betting__types-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 25px;
    background: hsl(210, 25%, 96%);
    border-radius: 18px;
    border: 1px solid hsl(210, 25%, 90%);
}
.betting__types-note-text {
    font-size: 1.05rem;
    color: hsl(220, 15%, 40%);
    line-height: 1.6;
}
@media (max-width: 1200px) {
    .betting__types-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    }
}
@media (max-width: 768px) {
    .betting__types {
        padding: 70px 0;
    }
    .betting__types-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 50px;
    }
    .betting__types-card-header {
        padding: 25px;
    }
    .betting__types-card-content {
        padding: 25px;
    }
}
@media (max-width: 480px) {
    .betting__types-card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .betting__types-card-icon {
        width: 70px;
        height: 70px;
    }
    .betting__types-card-icon {
        font-size: 2rem;
    }
}

.explanation__online {
    padding: 100px 0;
    background: hsl(210, 25%, 98%);
}
.explanation__online-visual {
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    min-height: 600px;
}
.explanation__online-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 8px solid hsl(215, 85%, 95%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 30px;
}
.explanation__online-center-icon {
    font-size: 3.5rem;
    color: hsl(215, 85%, 50%);
    margin-bottom: 15px;
}
.explanation__online-center-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.4rem;
    color: hsl(220, 20%, 20%);
}
.explanation__online-step {
    position: absolute;
    width: 260px;
}
.explanation__online-step--1 {
    top: 10%;
    left: 10%;
}
.explanation__online-step--2 {
    top: 10%;
    right: 10%;
}
.explanation__online-step--3 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}
.explanation__online-step--3:hover {
    z-index: 55;
}
.explanation__online-step--4 {
    bottom: 10%;
    right: 10%;
}
.explanation__online-step--5 {
    bottom: 10%;
    left: 10%;
}
.explanation__online-step-content {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid hsl(210, 25%, 93%);
    position: relative;
    z-index: 1;
}
.explanation__online-step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, hsl(215, 85%, 50%), hsl(215, 85%, 45%));
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.explanation__online-step-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.3rem;
    color: hsl(220, 20%, 20%);
    margin-bottom: 10px;
}
.explanation__online-step-desc {
    font-size: 0.95rem;
    color: hsl(220, 15%, 40%);
    line-height: 1.5;
}
.explanation__online-step-line {
    position: absolute;
    background: linear-gradient(90deg, hsl(215, 85%, 85%), hsl(215, 85%, 70%));
    z-index: 0;
}
.explanation__online-step--1 .explanation__online-step-line {
    width: 140px;
    height: 4px;
    bottom: -20px;
    right: -140px;
    transform: rotate(25deg);
    border-radius: 2px;
}
.explanation__online-step--2 .explanation__online-step-line {
    width: 140px;
    height: 4px;
    bottom: -20px;
    left: -140px;
    transform: rotate(-25deg);
    border-radius: 2px;
}
.explanation__online-step--3 .explanation__online-step-line {
    width: 160px;
    height: 4px;
    left: -160px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
}
.explanation__online-step--4 .explanation__online-step-line {
    width: 140px;
    height: 4px;
    top: -20px;
    left: -140px;
    transform: rotate(25deg);
    border-radius: 2px;
}
.explanation__online-step--5 .explanation__online-step-line {
    width: 140px;
    height: 4px;
    top: -20px;
    right: -140px;
    transform: rotate(-25deg);
    border-radius: 2px;
}
.explanation__online-key {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.explanation__online-key-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.explanation__online-key-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}
.explanation__online-key-dot--blue {
    background: linear-gradient(135deg, hsl(215, 85%, 50%), hsl(215, 85%, 45%));
}
.explanation__online-key-dot--green {
    background: linear-gradient(135deg, hsl(145, 70%, 40%), hsl(145, 70%, 35%));
}
.explanation__online-key-text {
    font-size: 1.05rem;
    color: hsl(220, 15%, 40%);
}
@media (max-width: 1100px) {
    .explanation__online-visual {
        min-height: 500px;
    }
    .explanation__online-step {
        width: 220px;
    }
    .explanation__online-step--1 {
        left: 5%;
    }
    .explanation__online-step--2 {
        right: 5%;
    }
    .explanation__online-step--3 {
        right: 2%;
    }
    .explanation__online-step--4 {
        right: 5%;
    }
    .explanation__online-step--5 {
        left: 5%;
    }
}
@media (max-width: 900px) {
    .explanation__online-visual {
        position: static;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .explanation__online-center {
        position: static;
        transform: none;
        margin-bottom: 20px;
    }
    .explanation__online-step {
        position: static;
        width: 100%;
        max-width: 400px;
    }
    .explanation__online-step-line {
        display: none;
    }
    .explanation__online-step-content {
        text-align: center;
    }
    .explanation__online-key {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .explanation__online {
        padding: 70px 0;
    }
    .explanation__online-center {
        width: 180px;
        height: 180px;
        padding: 25px;
    }
    .explanation__online-center-icon {
        font-size: 2.8rem;
    }
    .explanation__online-center-title {
        font-size: 1.2rem;
    }
    .explanation__online-step-content {
        padding: 22px;
    }
    .explanation__online-step--3 {
        transform: translateY(0);
    }
}

.tips__advice {
    padding: 100px 0;
    background: white;
}
.tips__advice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.tips__advice-card {
    background: hsl(210, 25%, 98%);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid hsl(210, 25%, 93%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.tips__advice-card:hover {
    transform: translateY(-10px);
}
.tips__advice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, hsl(215, 85%, 50%), hsl(145, 70%, 40%));
}
.tips__advice-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, hsl(215, 85%, 95%), hsl(215, 85%, 92%));
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: hsl(215, 85%, 50%);
}
.tips__advice-card-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.5rem;
    color: hsl(220, 20%, 20%);
    margin-bottom: 18px;
}
.tips__advice-card-text {
    font-size: 1.05rem;
    color: hsl(220, 15%, 40%);
    line-height: 1.6;
    margin-bottom: 25px;
}
.tips__advice-card-tag {
    display: inline-block;
    background: rgba(33, 150, 243, 0.1);
    color: hsl(215, 85%, 50%);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(33, 150, 243, 0.2);
}
.tips__advice-warning {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, hsl(0, 75%, 97%), hsl(0, 75%, 95%));
    border-radius: 20px;
    padding: 30px;
    border-left: 6px solid hsl(0, 75%, 55%);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.tips__advice-warning-icon {
    font-size: 1.8rem;
    color: hsl(0, 75%, 55%);
    flex-shrink: 0;
    margin-top: 5px;
}
.tips__advice-warning-text {
    font-size: 1.1rem;
    color: hsl(220, 20%, 20%);
    line-height: 1.6;
    font-weight: 600;
}
.tips__advice-warning-text a {
    color: hsl(0, 75%, 55%);
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (max-width: 1200px) {
    .tips__advice-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    }
}
@media (max-width: 768px) {
    .tips__advice {
        padding: 70px 0;
    }
    .tips__advice-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }
    .tips__advice-card {
        padding: 30px;
    }
    .tips__advice-warning {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    .tips__advice-warning-icon {
        margin-top: 0;
    }
}
@media (max-width: 480px) {
    .tips__advice-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    .tips__advice-card-icon {
        font-size: 1.8rem;
    }
    .tips__advice-card-title {
        font-size: 1.4rem;
    }
    .tips__advice-card-text {
        font-size: 1rem;
    }
}

.faq__section {
    padding: 100px 0;
    background: hsl(210, 25%, 98%);
}
.faq__section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.faq__section-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq__section-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid hsl(210, 25%, 93%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.faq__section-question {
    width: 100%;
    padding: 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: none;
    color: hsl(220, 20%, 20%);
    font-weight: 600;
    font-size: 1.15rem;
    transition: background 0.3s ease;
}
.faq__section-question:hover {
    background: hsl(210, 25%, 97%);
}
.faq__section-question[aria-expanded="true"] {
    background: hsl(210, 25%, 97%);
    border-bottom: 1px solid hsl(210, 25%, 93%);
}
.faq__section-question-text {
    flex: 1;
}
.faq__section-question-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.4s ease;
}
.faq__section-question-icon::before,
.faq__section-question-icon::after {
    content: '';
    position: absolute;
    background: hsl(215, 85%, 50%);
    border-radius: 2px;
    transition: all 0.4s ease;
}
.faq__section-question-icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    transform: translateY(-50%);
}
.faq__section-question-icon::after {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
}
.faq__section-question[aria-expanded="true"] .faq__section-question-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}
.faq__section-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}
.faq__section-question[aria-expanded="true"] + .faq__section-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}
.faq__section-answer p {
    font-size: 1.05rem;
    color: hsl(220, 15%, 40%);
    line-height: 1.6;
}
.faq__section-answer a {
    color: hsl(215, 85%, 50%);
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (max-width: 1024px) {
    .faq__section-grid {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .faq__section {
        padding: 70px 0;
    }
    .faq__section-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    .faq__section-question {
        padding: 22px;
        font-size: 1.1rem;
    }
    .faq__section-answer p {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .faq__section-question {
        padding: 20px;
        font-size: 1.05rem;
    }
    .faq__section-question[aria-expanded="true"] + .faq__section-answer {
        padding: 0 20px 20px;
    }
}

.site__footer {
    background: hsl(220, 25%, 15%);
    color: white;
}
.site__footer-warning {
    background: linear-gradient(135deg, hsl(0, 75%, 20%), hsl(0, 75%, 15%));
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site__footer-warning-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.site__footer-warning-icon {
    font-size: 1.8rem;
    color: hsl(0, 75%, 55%);
    flex-shrink: 0;
    margin-top: 5px;
}
.site__footer-warning-text {
    font-size: 1rem;
    line-height: 1.6;
    color: hsl(0, 0%, 90%);
}
.site__footer-warning-text strong {
    color: white;
}
.site__footer-warning-link {
    color: hsl(0, 75%, 65%);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.site__footer-main {
    padding: 70px 0;
}
.site__footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}
.site__footer-column--wide {
    max-width: 400px;
}
.site__footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}
.site__footer-logo-mark {
    font-size: 2.2rem;
    color: hsl(215, 85%, 60%);
}
.site__footer-logo-highlight {
    color: hsl(145, 70%, 50%);
}
.site__footer-description {
    font-size: 1.05rem;
    color: hsl(0, 0%, 80%);
    line-height: 1.6;
    margin-bottom: 30px;
}
.site__footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: hsl(215, 85%, 60%);
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}
.site__footer-contact-link:hover {
    color: hsl(215, 85%, 70%);
}
.site__footer-contact-icon {
    font-size: 1.2rem;
}
.site__footer-title {
    font-family: 'Grotesque Modern', system-ui, sans-serif;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.site__footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, hsl(215, 85%, 50%), hsl(145, 70%, 40%));
    border-radius: 2px;
}
.site__footer-links {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.site__footer-links a {
    color: hsl(0, 0%, 80%);
    font-size: 1rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.site__footer-links a:hover {
    color: white;
    padding-left: 8px;
}
.site__footer-partners {
    padding: 30px 0 20px;
    background: hsl(220, 25%, 18%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site__footer-partners-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px 40px;
}

.site__footer-partner-link {
    display: inline-flex;
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-width: 250px;
}

.site__footer-partner-link:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.site__footer-partner-image {
    width: 100%;
    max-width: 250px;
    height: 66px;
    display: block;
    border-radius: 8px;
}

.site__footer-partner-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 0 18px;
    height: 66px;
    min-width: 85px;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .site__footer-partners-content {
        gap: 25px;
    }
    
    .site__footer-partner-link {
        max-width: 160px;
    }
    
    .site__footer-partner-image {
        max-width: 160px;
    }
    
    .site__footer-partner-age {
        height: 60px;
        min-width: 80px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .site__footer-partners-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .site__footer-partner-link {
        max-width: 185px;
    }
    
    .site__footer-partner-image {
        max-width: 185px;
    }
}
.site__footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site__footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.site__footer-copyright {
    font-size: 0.95rem;
    color: hsl(0, 0%, 70%);
}
.site__footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}
.site__footer-legal-icon {
    font-size: 1.2rem;
    color: hsl(145, 70%, 50%);
}
.site__footer-legal-text {
    font-size: 0.95rem;
    color: hsl(0, 0%, 80%);
}
@media (max-width: 1024px) {
    .site__footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .site__footer-column--wide {
        grid-column: span 2;
        max-width: none;
    }
}
@media (max-width: 768px) {
    .site__footer-main {
        padding: 50px 0;
    }
    .site__footer-warning-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .site__footer-warning-icon {
        margin-top: 0;
    }
    .site__footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .site__footer-column--wide {
        grid-column: span 1;
    }
    .site__footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
}
@media (max-width: 480px) {
    .site__footer-logo {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .site__footer-title {
        font-size: 1.2rem;
    }
    .site__footer-description {
        font-size: 1rem;
    }
}