@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/inter-v20-latin-800.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/inter-v20-latin-900.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/montserrat-v31-latin-800.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/montserrat-v31-latin-900.woff2') format('woff2');
}

:root {
    /* Базовые цвета */
    --leo-surface: #050508;
    --leo-text-main: #ffffff;
    --leo-black: #000;
    --leo-accent-cyan: #1ae6ff;
    --leo-accent-purple: #ae00ff;
    --leo-purple-hover: #c233ff;
    --leo-purple-active: #9d00e6;
    --leo-error: #ff3366;

    /* RGB-каналы для прозрачностей */
    --rgb-text: 255, 255, 255;
    --rgb-cyan: 26, 230, 255;
    --rgb-purple: 174, 0, 255;
    --rgb-black: 0, 0, 0;

    /* Фоны блоков */
    --rgb-bg-base: 5, 5, 8;
    --rgb-bg-dark: 20, 20, 25;
    --rgb-bg-panel: 10, 10, 15;
    --rgb-bg-outro: 1, 34, 41;

    --leo-glass-bg: rgba(var(--rgb-bg-dark), 0.25);
    --leo-glass-border: 1px solid rgba(var(--rgb-text), 0.1);

    --leo-font-main: 'Inter', sans-serif;
    --leo-font-accent: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

.leo-body {
    background-color: var(--leo-surface);
    color: var(--leo-text-main);
    font-family: var(--leo-font-main);
    overflow-x: hidden;
    position: relative;
}

.leo-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("../images/bg-down.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -10;
    will-change: transform;
    pointer-events: none;
}

.leo-glass-effect {
    background: var(--leo-glass-bg);
    border: var(--leo-glass-border);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.leo-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--rgb-cyan), 0.05);
    border: 1px solid var(--leo-accent-cyan);
    border-radius: 12px;
    color: var(--leo-accent-cyan);
}

.leo-bg-wrapper-centered {
    position: relative;
    width: 100%;
    min-height: 100svh;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: max(40px, 12vh);
    overflow: hidden;
}

.leo-bg-wrapper-centered::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(var(--rgb-black), 0.05) 0%, rgba(var(--rgb-black), 0.4) 100%);
    z-index: 0;
    pointer-events: none;
}

.leo-bg-wrapper-centered::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    background: linear-gradient(to bottom, rgba(var(--rgb-bg-base), 0) 0%, rgba(var(--rgb-bg-base), 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.leo-hero-img {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.leo-img-minecraft {
    right: 0;
    bottom: 80px;
    width: 35%;
    height: auto;
}

.leo-img-gta {
    left: 0;
    bottom: 0;
    width: 45%;
    height: auto;
}

.leo-header {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.leo-bg-down {
    background-color: rgba(var(--rgb-bg-base), 0.65);
    position: relative;
    z-index: 2;
}

.leo-socials-minimal {
    position: absolute;
    top: 40px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.leo-hero-centered {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    margin-top: 8vh;
}

.leo-mega-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(40px, 8.5vh, 95px);
    line-height: 1.05;
    letter-spacing: -3px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: max(15px, 2.5vh);
}

.leo-glass-panel {
    display: flex;
    flex-direction: column;
    gap: max(5px, 1vh);
    background: rgba(var(--rgb-bg-panel), 0.55);
    border: 1px solid rgba(var(--rgb-text), 0.15);
    box-shadow: 0 20px 50px rgba(var(--rgb-black), 0.5);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: max(15px, 2vh) 40px;
    border-radius: 8px;
    font-size: clamp(19px, 1.5vh, 22px);
    line-height: 1.6;
    color: rgba(var(--rgb-text), 0.9);
    margin-bottom: max(14px, 3vh);
    max-width: 650px;
    letter-spacing: 1px;
}

.leo-hero-features {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 16px;
    margin-bottom: max(15px, 3vh);
    justify-content: center;
    list-style: none;
    padding: 0;
}

.leo-feature-tag {
    background: rgba(var(--rgb-bg-dark), 0.9);
    border: 1px solid rgba(var(--rgb-text), 0.2);
    box-shadow: 0 10px 30px rgba(var(--rgb-black), 0.4);
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--leo-font-accent);
    font-size: 13px;
    font-weight: 700;
    color: var(--leo-text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: default;
}

.leo-emoji {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.leo-feature-tag:hover .leo-emoji {
    transform: scale(1.3) rotate(-10deg);
}

.leo-emoji-large {
    font-size: 28px;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.leo-actions-centered {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
    margin-bottom: max(10px, 2vh);
}

.leo-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: var(--leo-font-accent);
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    text-decoration: none;
    width: max-content;
}

.leo-btn .leo-emoji {
    font-size: 16px;
}

.leo-btn-cyan {
    background: var(--leo-accent-cyan);
    color: var(--leo-black);
    border: none;
    box-shadow: 0 0 20px rgba(var(--rgb-cyan), 0.4);
}

.leo-btn-cyan:active {
    transform: translateY(1px);
    box-shadow: 0 0 10px rgba(var(--rgb-cyan), 0.5);
    transition: all 0.1s ease;
}

.leo-btn-cyan:hover {
    box-shadow: 0 0 35px rgba(var(--rgb-cyan), 0.7);
    transform: translateY(-2px);
}

.leo-btn-purple {
    background: var(--leo-accent-purple);
    color: var(--leo-text-main);
    border: none;
    padding: 18px 42px;
    box-shadow: 0 0 30px rgba(var(--rgb-purple), 0.4);
    transition: all 0.3s ease;
}

.leo-btn-purple:hover {
    transform: translateY(-3px);
    background: var(--leo-purple-hover);
    box-shadow: 0 0 45px rgba(var(--rgb-purple), 0.7);
}

.leo-btn-purple:active {
    transform: translateY(1px);
    box-shadow: 0 0 15px rgba(var(--rgb-purple), 0.5);
    background: var(--leo-purple-active);
    transition: all 0.1s ease;
}

.leo-btn-dark {
    background: rgba(var(--rgb-bg-dark), 0.85);
    color: var(--leo-text-main);
    border: var(--leo-glass-border);
}

.leo-btn-dark:hover {
    background: rgba(var(--rgb-text), 0.1);
    border-color: rgba(var(--rgb-text), 0.3);
}

.leo-btn-dark:active {
    transform: translateY(1px);
    background: rgba(var(--rgb-text), 0.05);
    border-color: rgba(var(--rgb-text), 0.1);
    transition: all 0.1s ease;
}

.leo-mascot-container {
    position: absolute;
    bottom: calc(100% - 20px);
    right: 50px;
    height: min(200px, 17vh);
    pointer-events: none;
    z-index: 10;
}

.leo-mascot-flying {
    height: 100%;
    width: auto;
    object-fit: contain;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.leo-bottom-bar {
    position: absolute;
    bottom: 30px;
    width: 100%;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    pointer-events: none;
}

.leo-brand-logo {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--leo-text-main);
}

.leo-brand-logo img {
    height: 30px;
    width: auto;
}

.social-label {
    font-size: 14px;
    color: var(--leo-text-main);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-right: 15px;
}

.leo-soc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    min-width: 50px;
    padding: 0 16px;
    background: rgba(var(--rgb-bg-dark), 0.95);
    border: 1px solid var(--leo-accent-cyan);
    border-radius: 12px;
    color: var(--leo-accent-cyan);
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.leo-soc-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    box-shadow: 0 0 45px rgba(var(--rgb-cyan), 0.8);
    z-index: -1;
    opacity: 0.3;
    transition: opacity 0.4s ease;
    animation: glow-pulse 2.5s infinite alternate ease-in-out;
    will-change: opacity;
}

.leo-soc-icon:hover {
    background: var(--leo-accent-cyan);
    color: var(--leo-black);
    transform: translateY(-2px);
}

.leo-soc-icon:hover::before {
    opacity: 1;
    animation: none;
}

.leo-soc-icon:active {
    transform: translateY(1px);
    box-shadow: none;
    transition: all 0.1s ease;
}

.leo-soc-icon:active::before {
    opacity: 0.1;
    transition: opacity 0.1s ease;
}

@keyframes glow-pulse {
    0% {
        opacity: 0.15;
    }
    100% {
        opacity: 0.5;
    }
}

.leo-about-intro {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(var(--rgb-text), 0.85);
    max-width: 800px;
    margin: 0 auto 60px;
}

.leo-about-intro strong {
    color: var(--leo-text-main);
    font-weight: 800;
}

.leo-about-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

.leo-step-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.leo-step-row:nth-child(even) .leo-step-content {
    order: 2;
}
.leo-step-row:nth-child(even) .leo-step-visual {
    order: 1;
}

.leo-step-content {
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.leo-step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--leo-accent-cyan), transparent);
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.leo-step-row:nth-child(even) .leo-step-content::before {
    background: linear-gradient(90deg, transparent, var(--leo-accent-purple), transparent);
}

.leo-step-row:hover .leo-step-content {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(var(--rgb-black), 0.5);
}

.leo-step-row:hover .leo-step-content::before {
    opacity: 1;
}

.leo-step-visual {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(var(--rgb-black), 0.4);
    border: 1px solid rgba(var(--rgb-text), 0.1);
    aspect-ratio: 4 / 3;
    background: rgba(var(--rgb-bg-dark), 0.5);
}

.leo-step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.leo-step-row:hover .leo-step-visual img {
    transform: scale(1.05);
}

.leo-step-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 30px rgba(var(--rgb-black), 0.5);
    pointer-events: none;
}

.leo-cycle-number {
    font-family: var(--leo-font-accent);
    font-size: 55px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(var(--rgb-text), 0.5);
    line-height: 1;
    margin-bottom: -15px;
}

.leo-cycle-title {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--leo-text-main);
    line-height: 1.3;
}

.leo-cycle-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leo-cycle-list li {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(var(--rgb-text), 0.7);
    position: relative;
    padding-left: 20px;
}

.leo-cycle-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--leo-accent-cyan);
    font-weight: 900;
}

.leo-step-row:nth-child(even) .leo-cycle-list li::before {
    color: var(--leo-accent-purple);
}

.leo-about-outro {
    text-align: center;
    background: rgba(var(--rgb-bg-outro), 0.57);
    border: 1px solid rgba(var(--rgb-cyan), 0.15);
    border-radius: 12px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: inset 0 0 30px rgba(var(--rgb-cyan), 0.02);
}

.leo-about-outro p {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.6;
    color: rgba(var(--rgb-text), 0.9);
    margin-bottom: 15px;
}

.leo-about-outro p:last-child {
    margin-bottom: 0;
}

.leo-about-outro p span {
    display: block;
}

.leo-about-actions {
    margin-top: 40px;
}

.leo-btn.leo-is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.leo-highlight-outro {
    color: var(--leo-accent-cyan);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 10px;
}

.leo-section {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.leo-section .leo-container {
    position: relative;
    z-index: 100;
}

.leo-container {
    width: 100%;
    max-width: 1100px;
}

.leo-section-title {
    font-family: var(--leo-font-accent);
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

.leo-services-grid {
    display: grid;
    gap: max(40px, 5vh);
}

.leo-service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(var(--rgb-black), 0.4);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.leo-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--rgb-text), 0.3);
}

.leo-service-card:hover .leo-service-icon {
    background: var(--leo-accent-cyan);
    color: var(--leo-black);
    box-shadow: 0 0 25px var(--leo-accent-cyan);
}

.leo-service-card:nth-child(2):hover .leo-service-icon {
    background: var(--leo-accent-purple);
    color: var(--leo-text-main);
    box-shadow: 0 0 25px var(--leo-accent-purple);
}

.leo-service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.leo-service-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.leo-service-icon {
    min-width: 48px;
    height: 48px;
    transition: all 0.4s ease;
}

.leo-service-card:nth-child(2) .leo-service-icon {
    border-color: var(--leo-accent-purple);
    color: var(--leo-accent-purple);
    background: rgba(var(--rgb-purple), 0.05);
}

.leo-service-card:nth-child(even) .leo-service-content {
    order: 2;
}

.leo-service-card:nth-child(even) .leo-service-visual {
    order: 1;
}

.leo-service-title {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leo-service-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(var(--rgb-text), 0.8);
}

.leo-service-visual {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: rgba(var(--rgb-bg-dark), 0.5);
    box-shadow: inset 0 0 20px rgba(var(--rgb-black), 0.5);
}

.leo-custom-slider {
    width: 100%;
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
    background: rgba(var(--rgb-bg-dark), 0.5);
    box-shadow: inset 0 0 20px rgba(var(--rgb-black), 0.5);
}

.leo-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.leo-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(var(--rgb-bg-panel), 0.7);
    border: 1px solid rgba(var(--rgb-text), 0.1);
    color: var(--leo-accent-cyan);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.leo-slider-btn:hover {
    background: var(--leo-accent-cyan);
    color: var(--leo-black);
    box-shadow: 0 0 15px rgba(var(--rgb-cyan), 0.4);
}

.leo-slider-btn:active {
    box-shadow: none;
    transition: all 0.1s;
}

.leo-slider-prev {
    left: 15px;
}

.leo-slider-next {
    right: 15px;
}

.leo-slide {
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: center;
    position: relative;
}

.leo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leo-slider-track {
    transition: none;
}

.leo-contacts-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(var(--rgb-black), 0.4);
}

.leo-contact-subtitle {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--leo-text-main);
    letter-spacing: 1px;
}

.leo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.leo-input {
    width: 100%;
    background: rgba(var(--rgb-bg-panel), 0.6);
    border: 1px solid rgba(var(--rgb-text), 0.1);
    border-radius: 8px;
    padding: 16px 20px;
    color: var(--leo-text-main);
    font-family: var(--leo-font-main);
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.leo-input::placeholder {
    color: rgba(var(--rgb-text), 0.4);
}

.leo-input:focus {
    border-color: var(--leo-accent-cyan);
    box-shadow: 0 0 15px rgba(var(--rgb-cyan), 0.2);
    background: rgba(var(--rgb-bg-dark), 0.8);
}

.leo-textarea {
    resize: vertical;
    min-height: 120px;
}

.leo-submit-btn {
    margin-top: 10px;
    align-self: flex-start;
    justify-content: center;
}

.leo-contact-info-wrapper {
    display: flex;
    flex-direction: column;
}

.leo-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.leo-contact-icon {
    width: 50px;
    height: 50px;
    box-shadow: inset 0 0 10px rgba(var(--rgb-cyan), 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.leo-contact-icon:hover {
    background: var(--leo-accent-cyan);
    color: var(--leo-black);
    box-shadow: 0 0 20px rgba(var(--rgb-cyan), 0.6);
    transform: translateY(-2px);
}

.leo-contact-icon:active {
    transform: translateY(1px);
    box-shadow: 0 0 10px rgba(var(--rgb-cyan), 0.4);
    transition: all 0.1s ease;
}

.leo-contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.leo-contact-text span {
    font-size: 13px;
    color: rgba(var(--rgb-text), 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leo-contact-text a {
    color: var(--leo-text-main);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.leo-contact-text a:hover {
    color: var(--leo-accent-cyan);
}

.leo-policy-group {
    margin-top: -5px;
}

.leo-policy-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.leo-policy-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: rgba(var(--rgb-bg-panel), 0.6);
    border: 1px solid rgba(var(--rgb-text), 0.2);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.leo-policy-checkbox:hover {
    border-color: rgba(var(--rgb-text), 0.4);
}

.leo-policy-checkbox:checked {
    background-color: var(--leo-accent-cyan);
    border-color: var(--leo-accent-cyan);
    box-shadow: 0 0 10px rgba(var(--rgb-cyan), 0.3);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.leo-policy-text {
    font-size: 13px;
    color: rgba(var(--rgb-text), 0.5);
    line-height: 1.4;
}

.leo-policy-text a {
    color: var(--leo-accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.leo-policy-text a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(var(--rgb-cyan), 0.4);
}

.leo-socials-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leo-socials-title {
    font-size: 13px;
    color: rgba(var(--rgb-text), 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leo-contacts-socials-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.leo-contacts-grid {
    position: relative;
}

.leo-dragon-container {
    position: absolute;
    right: 40px;
    top: 75%;
    transform: translateY(-50%);
    width: 320px;
    pointer-events: none;
    z-index: 10;
    filter: drop-shadow(0 0 20px rgba(var(--rgb-purple), 0.4)) drop-shadow(0 0 5px var(--leo-accent-cyan));
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.leo-dragon-asset {
    width: 100%;
    height: auto;
    animation: dragon-lazy-float 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes dragon-lazy-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

.leo-footer {
    width: 100%;
    padding: 25px 20px;
    background-color: var(--leo-surface);
    border-top: 1px solid rgba(var(--rgb-text), 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.leo-footer-text {
    font-size: 13px;
    color: rgba(var(--rgb-text), 0.4);
    letter-spacing: 0.5px;
    text-align: center;
}

.leo-input.leo-error {
    border-color: var(--leo-error) !important;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.2) !important;
}

.leo-policy-label.leo-error .leo-policy-checkbox {
    border-color: var(--leo-error) !important;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.2) !important;
}

.leo-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(var(--rgb-bg-panel), 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(var(--rgb-text), 0.1);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    contain: layout paint;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    box-shadow: 0 -10px 30px rgba(var(--rgb-black), 0.5);
    pointer-events: none;
    opacity: 0;
}

.leo-cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.leo-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    width: 100%;
    gap: 30px;
}

.leo-cookie-text {
    font-size: 13px;
    color: rgba(var(--rgb-text), 0.6);
    line-height: 1.5;
    margin: 0;
}

.leo-cookie-text a {
    color: var(--leo-accent-cyan);
    text-decoration: none;
    transition: color 0.3s;
}

.leo-cookie-text a:hover {
    text-decoration: underline;
}

.leo-cookie-btn {
    padding: 10px 24px;
    font-size: 13px;
}

.leo-inner-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: clamp(28px, 5vh, 48px);
    line-height: 1.2;
    letter-spacing: 0.5px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    color: var(--leo-text-main);
}

.leo-page-wrapper {
    padding: 60px 20px 100px;
    position: relative;
    min-height: 100vh;
}

.leo-page-intro {
    margin-bottom: 60px;
    text-align: center;
}

.leo-title-glow {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--leo-accent-cyan), var(--leo-accent-purple), transparent);
    margin: 10px auto 0;
    box-shadow: 0 0 15px var(--leo-accent-cyan);
}

.leo-glass-deep {
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid rgba(var(--rgb-cyan), 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    max-width: 960px;
    margin: 0 auto;
    padding: 60px;
}

.leo-wysiwyg {
    color: rgba(var(--rgb-text), 0.9);
    font-size: 18px;
    line-height: 1.8;
}

.leo-wysiwyg h1, .leo-wysiwyg h2, .leo-wysiwyg h3 {
    color: var(--leo-text-main);
    font-family: var(--leo-font-accent);
    margin: 1.5em 0 0.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leo-wysiwyg h2 {
    font-size: 28px;
    border-left: 4px solid var(--leo-accent-cyan);
    padding-left: 20px;
}

.leo-wysiwyg p {
    margin-bottom: 25px;
}

.leo-wysiwyg ul, .leo-wysiwyg ol {
    margin: 20px 0 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leo-wysiwyg li::marker {
    color: var(--leo-accent-cyan);
    font-weight: bold;
}

.leo-wysiwyg a {
    color: var(--leo-accent-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(var(--rgb-cyan), 0.2);
}

.leo-wysiwyg a:hover {
    color: var(--leo-accent-purple);
    border-bottom-color: var(--leo-accent-purple);
    text-shadow: 0 0 10px rgba(var(--rgb-purple), 0.4);
}


@media (max-width: 1024px) {
    .leo-mega-title {
        font-size: clamp(40px, 7vw, 75px);
        letter-spacing: -2px;
    }

    .leo-hero-features {
        display: grid;
        grid-template-columns: repeat(2, max-content);
        gap: 12px;
    }
}

@media (max-width: 992px) {
    .leo-body::before {
        background-image: url("../images/bg-down-mobile.webp");
    }

    .leo-step-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .leo-step-row:nth-child(even) .leo-step-content,
    .leo-step-row .leo-step-content {
        order: 2;
    }

    .leo-step-row:nth-child(even) .leo-step-visual,
    .leo-step-row .leo-step-visual {
        order: 1;
    }

    .leo-step-visual {
        width: 75%;
        margin: 0 auto;
        aspect-ratio: 16 / 9;
    }

    .leo-service-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 25px;
    }

    .leo-service-card:nth-child(even) .leo-service-content {
        order: 1;
    }

    .leo-service-card:nth-child(even) .leo-service-visual {
        order: 2;
    }

    .leo-service-visual {
        aspect-ratio: 21 / 9;
    }

    .leo-contacts-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px 30px;
    }

    .leo-dragon-container {
        top: 85%;
    }
}

@media (max-width: 768px) {
    .leo-bg-wrapper-centered {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .leo-img-minecraft {
        top: 0;
        right: 0;
        width: 55%;
    }

    .leo-img-gta {
        bottom: 0;
        left: 0;
        width: 75%;
    }

    .leo-header {
        top: 20px;
        padding: 0 20px;
        justify-content: center;
    }

    .leo-socials-minimal {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        justify-content: center;
        margin-top: 40px;
        padding: 0 20px;
    }

    .social-label, .leo-bottom-bar {
        display: none;
    }

    .leo-mega-title {
        font-size: clamp(45px, 8vw, 65px);
        letter-spacing: -2px;
        margin-bottom: 20px;
    }

    .leo-glass-panel {
        padding: 15px 25px;
        font-size: 15px;
        line-height: 1.45;
        text-align: center;
        margin-bottom: 25px;
    }

    .leo-highlight-text {
        font-size: 16px;
    }

    .leo-actions-centered {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        width: auto;
    }

    .leo-btn {
        width: auto;
    }

    .leo-slider-btn:hover {
        background: rgba(var(--rgb-bg-panel), 0.7);
        color: var(--leo-accent-cyan);
        box-shadow: none;
        transform: translateY(-50%);
    }

    .leo-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .leo-cookie-banner .leo-btn {
        width: 100%;
        justify-content: center;
    }

    .leo-glass-deep {
        padding: 35px 20px;
        border-radius: 0;
        background: rgba(10, 10, 15, 0.95);
    }

    .leo-page-wrapper {
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .leo-img-minecraft {
        width: 75%;
    }

    .leo-img-gta {
        width: 100%;
    }

    .leo-header {
        padding: 0 15px;
    }

    .leo-mega-title {
        font-size: clamp(38px, 12vw, 52px);
        line-height: 0.95;
        letter-spacing: -2px;
        margin-bottom: 10px;
    }

    .leo-glass-panel {
        padding: 12px 15px;
        font-size: 13px;
        line-height: 1.35;
        margin-bottom: 20px;
        gap: 5px;
    }

    .leo-highlight-text {
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .leo-hero-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .leo-feature-tag {
        padding: 8px 14px;
        font-size: 11px;
        width: auto;
    }

    .leo-actions-centered {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: max(15px, 2.5vh);
    }

    .leo-btn {
        width: fit-content;
        max-width: 100%;
        justify-content: center;
        text-align: center;
        padding: 12px 24px;
        font-size: 13px;
    }

    .leo-socials-minimal {
        margin-top: auto;
        padding: 20px 15px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 8px;
        background: transparent;
        border: none;
        box-shadow: none;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .leo-soc-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(var(--rgb-bg-panel), 0.65);
        border: 1px solid var(--leo-accent-cyan);
        border-radius: 12px;
        font-size: 11px;
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        transition: 0.3s;
    }

    .leo-soc-icon::before {
        display: none;
    }

    .leo-soc-icon:hover {
        color: var(--leo-text-main);
        border-color: var(--leo-accent-cyan);
        background: rgba(var(--rgb-cyan), 0.1);
        box-shadow: 0 5px 15px rgba(var(--rgb-cyan), 0.2);
        transform: translateY(-3px);
    }

    .leo-step-content {
        padding: 25px 20px;
    }

    .leo-step-visual {
        aspect-ratio: 16 / 10;
        width: 100%;
    }

    .leo-about-outro {
        padding: 25px 15px;
    }

    .leo-section {
        padding: 60px 15px;
    }

    .leo-service-card {
        padding: 25px 20px;
    }

    .leo-service-visual {
        aspect-ratio: 16 / 9;
    }

    .leo-service-header {
        align-items: flex-start;
    }

    .leo-service-title {
        line-height: 1.2;
    }

    .leo-service-desc {
        font-size: 14px;
    }

    .leo-contacts-grid {
        padding: 30px 20px;
        gap: 40px;
    }

    .leo-contact-subtitle {
        font-size: 20px;
    }

    .leo-submit-btn {
        width: 100%;
    }

    .leo-contact-text a {
        font-size: 16px;
    }

    .leo-dragon-container {
        display: none;
    }
}

@media (max-width: 350px) {
    .leo-socials-minimal {
        justify-content: center;
        gap: 10px;
    }
}