/* ========================================
   Saturn - CSS для статического сайта
   ======================================== */

/* === ROOT VARIABLES === */
:root {
    /* Colors */
    --bg: #0B0F14;
    --panel: #141A22;
    --panel-hover: #1B2330;
    --text: #F5F5F7;
    --muted: #86868B;
    --accent: #FF69B4;
    --accent2: #FFB3D9;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: rgba(0, 0, 0, 0.4);
    
    /* Font */
    --font-inter: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-inter);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Film Grain Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' /%3E%3C/svg%3E");
}

/* === UTILITY CLASSES === */
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-custom-narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container-custom,
    .container-custom-narrow {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container-custom,
    .container-custom-narrow {
        padding: 0 3rem;
    }
}

/* Glassmorphism */
.glass {
    background: rgba(20, 26, 34, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
}

.glass-hover {
    transition: all 0.3s var(--ease-out-expo);
}

.glass-hover:hover {
    background: rgba(27, 35, 48, 0.7);
    border-color: rgba(255, 105, 180, 0.3);
    box-shadow: 0 8px 32px rgba(255, 105, 180, 0.1);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-accent {
    color: var(--accent);
}

/* Button Shine Effect */
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}

.btn-shine:hover::before {
    left: 200%;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

@media (min-width: 768px) {
    .section {
        padding: 7rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 9rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--panel-hover);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Focus Styles */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === PRELOADER === */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    opacity: 1;
    transition: opacity 0.8s var(--ease-out-expo);
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 105, 180, 0.05), transparent);
}

.saturn-container {
    position: relative;
    width: 16rem;
    height: 16rem;
}

.saturn-planet {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet-core {
    width: 8rem;
    height: 8rem;
    position: relative;
    z-index: 2;
}

.planet-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 50%);
    z-index: 3;
}

.saturn-ring {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-text {
    position: absolute;
    bottom: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-text h2 {
    font-size: 2rem;
    font-weight: 700;
}

.loading-dots {
    display: flex;
    gap: 0.5rem;
}

.loading-dots .dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent);
}

/* === ANIMATED BACKGROUND === */
.animated-background {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
}

.base-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg), var(--bg), rgba(20, 26, 34, 0.5));
}

.bg-ring {
    position: absolute;
}

.bg-ring-1 {
    top: 25%;
    right: -25%;
    width: 800px;
    height: 800px;
}

.bg-ring-2 {
    top: 66%;
    left: -25%;
    width: 600px;
    height: 600px;
}

.bg-ring-3 {
    top: 2.5rem;
    left: 33%;
    width: 400px;
    height: 400px;
}

.bg-wave {
    position: absolute;
    left: 0;
    right: 0;
}

.bg-wave-bottom {
    bottom: 0;
    height: 33%;
    background: radial-gradient(ellipse at bottom, rgba(255, 105, 180, 0.03) 0%, transparent 70%);
}

.bg-wave-top {
    top: 0;
    height: 33%;
    background: radial-gradient(ellipse at top, rgba(255, 179, 217, 0.02) 0%, transparent 70%);
}

.mesh-gradient {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(at 20% 30%, rgba(255, 105, 180, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(255, 179, 217, 0.05) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(27, 35, 48, 0.8) 0px, transparent 50%);
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: env(safe-area-inset-top, 0);
}

/* Мобильные - без фона */
@media (max-width: 767px) {
    .navbar {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
        box-shadow: none;
    }
}

.navbar.scrolled {
    background: rgba(11, 15, 20, 0.85);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(255, 105, 180, 0.15);
    box-shadow: 
        0 1px 0 0 rgba(255, 105, 180, 0.1) inset,
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Мобильные - без фона даже при скролле */
@media (max-width: 767px) {
    .navbar.scrolled {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
        box-shadow: none;
    }
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent));
    background-size: 200% 100%;
    transform-origin: left;
    width: 100%;
    transform: scaleX(0);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
    position: relative;
    padding: 0;
    line-height: 1;
}

@media (min-width: 768px) {
    .navbar-content {
        height: 5rem;
    }
}

/* Mobile Contact Button - Liquid Glass */
.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: var(--accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
    background: rgba(255, 105, 180, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 105, 180, 0.2);
    box-shadow: 
        0 1px 0 0 rgba(255, 255, 255, 0.1) inset,
        0 4px 12px rgba(255, 105, 180, 0.15);
    line-height: 0;
    vertical-align: middle;
}

.mobile-contact-btn:hover {
    background: rgba(255, 105, 180, 0.15);
    border-color: rgba(255, 105, 180, 0.3);
    box-shadow: 
        0 1px 0 0 rgba(255, 255, 255, 0.15) inset,
        0 6px 20px rgba(255, 105, 180, 0.25);
    transform: scale(1.05);
}

.mobile-contact-btn:active {
    transform: scale(0.95);
}

@media (min-width: 768px) {
    .mobile-contact-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .navbar-content {
        padding: 0 1rem;
    }
    
    .navbar-content > * {
        margin: 0;
        vertical-align: middle;
    }
}

/* Logo - без подложки */
.logo-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 0;
}

@media (min-width: 768px) {
    .logo-btn {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
    }
}

.logo-btn:hover {
    transform: translate(-50%, -50%) scale(1.03);
}

@media (min-width: 768px) {
    .logo-btn:hover {
        transform: scale(1.03);
    }
}

.logo-btn:active {
    transform: translate(-50%, -50%) scale(0.97);
}

@media (min-width: 768px) {
    .logo-btn:active {
        transform: scale(0.97);
    }
}

.logo-glow {
    position: absolute;
    inset: -15px;
    z-index: -1;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.35) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0.7;
    pointer-events: none;
}

@media (max-width: 767px) {
    .logo-glow {
        opacity: 0.85;
        filter: blur(35px);
    }
}

.logo-img {
    height: 5rem;
    width: auto;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 2px 20px rgba(255, 105, 180, 0.6));
    object-fit: contain;
    display: block;
    line-height: 0;
}

@media (min-width: 768px) {
    .logo-img {
        height: 4.5rem;
        filter: drop-shadow(0 0 15px rgba(255, 105, 180, 0.4));
    }
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

/* CTA Button */
.cta-btn {
    display: none;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, var(--accent), var(--accent2));
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn:hover {
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .cta-btn {
        display: block;
    }
}

/* Mobile Menu Button - Liquid Glass */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 1px 0 0 rgba(255, 255, 255, 0.08) inset,
        0 4px 12px rgba(0, 0, 0, 0.2);
    line-height: 0;
    vertical-align: middle;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 1px 0 0 rgba(255, 255, 255, 0.12) inset,
        0 6px 20px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-menu-btn.active {
    background: rgba(255, 105, 180, 0.1);
    border-color: rgba(255, 105, 180, 0.3);
    color: var(--accent);
}

.mobile-menu-btn .icon-close {
    display: none;
}

.mobile-menu-btn.active .icon-menu {
    display: none;
}

.mobile-menu-btn.active .icon-close {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu - Liquid Glass */
.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
    padding-bottom: 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 5%,
        black 10%,
        black 90%,
        rgba(0, 0, 0, 0.3) 95%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 5%,
        black 10%,
        black 90%,
        rgba(0, 0, 0, 0.3) 95%,
        transparent 100%
    );
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 105, 180, 0.3),
        transparent
    );
}

.mobile-menu::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(11, 15, 20, 0.6) 0%,
        transparent 8%,
        transparent 92%,
        rgba(11, 15, 20, 0.6) 100%
    );
    border-radius: 0 0 1rem 1rem;
    z-index: -1;
}

.mobile-menu.active {
    max-height: 600px;
    opacity: 1;
    padding-top: 1.5rem;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 1.125rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    color: var(--text);
    background: rgba(20, 26, 34, 0.5);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-menu-link:hover {
    background: rgba(27, 35, 48, 0.6);
    border-color: rgba(255, 105, 180, 0.25);
    box-shadow: 
        0 1px 0 0 rgba(255, 105, 180, 0.1) inset,
        0 6px 20px rgba(255, 105, 180, 0.15);
    transform: translateX(2px) scale(1.01);
}

.mobile-menu-link:active {
    transform: scale(0.98);
}

.mobile-menu-link.active {
    background: rgba(255, 105, 180, 0.12);
    color: var(--accent);
    border-color: rgba(255, 105, 180, 0.35);
    box-shadow: 
        0 1px 0 0 rgba(255, 105, 180, 0.2) inset,
        0 0 0 1px rgba(255, 105, 180, 0.1),
        0 8px 25px rgba(255, 105, 180, 0.25);
}

.mobile-menu-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 
        0 0 8px rgba(255, 105, 180, 0.8),
        0 0 4px rgba(255, 105, 180, 1);
    display: none;
}

.mobile-menu-link.active .mobile-menu-indicator {
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.mobile-menu-cta {
    margin-top: 0.75rem;
    padding: 1.125rem 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: white;
    font-weight: 700;
    border-radius: 1.125rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 
        0 1px 0 0 rgba(255, 255, 255, 0.2) inset,
        0 8px 25px rgba(255, 105, 180, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mobile-menu-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s;
}

.mobile-menu-cta:hover::before {
    left: 100%;
}

.mobile-menu-cta:hover {
    box-shadow: 
        0 1px 0 0 rgba(255, 255, 255, 0.3) inset,
        0 12px 40px rgba(255, 105, 180, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.mobile-menu-cta:active {
    transform: translateY(0) scale(0.98);
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 8rem;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-blob-1 {
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, #FF69B4 0%, transparent 70%);
    opacity: 0.2;
}

.hero-blob-2 {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, #FFB3D9 0%, transparent 70%);
    opacity: 0.15;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    background: rgba(20, 26, 34, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
}

.hero-badge-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-badge-text-animated {
    background: linear-gradient(
        90deg,
        #FF69B4 0%,
        #FFB3D9 15%,
        #FFFFFF 30%,
        #FFB3D9 45%,
        #FF69B4 60%,
        #FFB3D9 75%,
        #FFFFFF 90%,
        #FF69B4 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% center;
        filter: drop-shadow(0 0 8px rgba(255, 105, 180, 0.3));
    }
    25% {
        background-position: 50% center;
        filter: drop-shadow(0 0 12px rgba(255, 105, 180, 0.5));
    }
    50% {
        background-position: 100% center;
        filter: drop-shadow(0 0 16px rgba(255, 179, 217, 0.6));
    }
    75% {
        background-position: 150% center;
        filter: drop-shadow(0 0 12px rgba(255, 105, 180, 0.5));
    }
}

.hero-badge span {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-text {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.hero-btn-primary {
    background: linear-gradient(to right, var(--accent), var(--accent2));
    color: white;
}

.hero-btn-primary:hover {
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
    transform: scale(1.05);
}

.hero-btn-secondary {
    color: var(--text);
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--muted);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.hero-mock {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 2rem auto 0;
}

@media (min-width: 640px) {
    .hero-mock {
        max-width: 480px;
    }
}

@media (min-width: 768px) {
    .hero-mock {
        max-width: 520px;
    }
}

@media (min-width: 1024px) {
    .hero-mock {
        max-width: 100%;
        margin: 0;
    }
}

.mock-ui {
    border-radius: 1.75rem;
    padding: 2rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 
                0 0 1px rgba(255, 105, 180, 0.1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

@media (min-width: 640px) {
    .mock-ui {
        padding: 2.25rem;
    }
}

@media (min-width: 768px) {
    .mock-ui {
        border-radius: 2rem;
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .mock-ui {
        padding: 3rem;
    }
}

.mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.mock-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--accent), var(--accent2));
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .mock-avatar {
        width: 4rem;
        height: 4rem;
    }
}

.mock-info {
    flex: 1;
    margin-left: 1rem;
}

.mock-line {
    height: 0.875rem;
    width: 7rem;
    background: rgba(134, 134, 139, 0.3);
    border-radius: 0.375rem;
    margin-bottom: 0.625rem;
}

@media (min-width: 768px) {
    .mock-line {
        height: 1rem;
        width: 8rem;
    }
}

.mock-line-small {
    height: 0.625rem;
    width: 5rem;
    background: rgba(134, 134, 139, 0.2);
    border-radius: 0.375rem;
}

@media (min-width: 768px) {
    .mock-line-small {
        height: 0.75rem;
        width: 6rem;
    }
}

.mock-badge {
    padding: 0.625rem 1.25rem;
    background: rgba(255, 105, 180, 0.2);
    border-radius: 9999px;
    font-size: 0.8125rem;
    color: var(--accent);
    font-weight: 600;
}

@media (min-width: 768px) {
    .mock-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

.mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .mock-grid {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
}

.mock-img {
    aspect-ratio: 1;
    border-radius: 1.25rem;
    object-fit: cover;
    background: var(--panel-hover);
    border: 1px solid var(--border);
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .mock-img {
        border-radius: 1.5rem;
    }
}

.mock-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mock-price {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mock-price-badge {
    height: 1.75rem;
    width: 6rem;
    background: rgba(255, 105, 180, 0.4);
    border-radius: 0.375rem;
}

@media (min-width: 768px) {
    .mock-price-badge {
        height: 2rem;
        width: 7rem;
    }
}

.mock-btn {
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--accent), var(--accent2));
    border-radius: 9999px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .mock-btn {
        padding: 1.125rem 2.25rem;
        font-size: 1rem;
    }
}

.floating-badge {
    position: absolute;
    top: -1.25rem;
    right: -1.25rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.5);
}

@media (min-width: 768px) {
    .floating-badge {
        top: -1.5rem;
        right: -1.5rem;
        padding: 0.875rem 1.75rem;
        font-size: 1.125rem;
    }
}

/* === PROBLEMS SECTION === */

.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card {
    padding: 1.5rem;
    border-radius: 1rem;
    height: 100%;
}

.problem-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

.problem-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.problem-text {
    color: var(--muted);
}

.problems-cta {
    margin-top: 3rem;
    text-align: center;
}

.problems-cta .glass {
    display: inline-block;
    padding: 2rem;
    border-radius: 1rem;
    max-width: 42rem;
}

.problems-cta p {
    font-size: 1.125rem;
    font-weight: 500;
}

/* === PRODUCTS SECTION === */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    padding: 2rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
}

.product-highlight {
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 105, 180, 0.2);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-text {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.product-features svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.product-features span {
    font-size: 0.875rem;
}

.products-cta {
    margin-top: 4rem;
    text-align: center;
}

.products-cta p {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--accent), var(--accent2));
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
    transform: scale(1.05);
}

/* === SYSTEM SECTION === */
.system-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.system-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.system-icon {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
}

.system-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.system-step-text {
    color: var(--muted);
    font-size: 1.125rem;
}

.system-cta {
    margin-top: 3rem;
}

.system-cta .glass {
    padding: 2rem;
    border-radius: 1rem;
}

.system-cta p {
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
}

/* === DEMOS SECTION === */
.demos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .demos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .demos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1280px) {
    .demos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.demo-card {
    padding: 0;
    border-radius: 1.5rem;
    text-align: center;
    text-decoration: none;
    display: block;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-4px);
}

.demo-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(20, 26, 34, 0.5);
}

.demo-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.demo-card:hover .demo-preview-img {
    transform: scale(1.05);
}

.demo-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.demo-card:hover .demo-preview-overlay {
    opacity: 1;
}

.demo-external-icon {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2.5;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.demo-card:hover .demo-external-icon {
    transform: scale(1);
}

.demo-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 105, 180, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem;
}

.demo-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 1.5rem 0.75rem;
    color: var(--text);
}

.demo-text {
    color: var(--muted);
    margin: 0 1.5rem 1.5rem;
    padding-bottom: 1.5rem;
}

/* === PRICING SECTION === */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    padding: 2rem;
    border-radius: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-popular {
    border: 2px solid rgba(255, 105, 180, 0.3);
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: white;
    font-weight: 700;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-sale-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF69B4, #FF1493);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(255, 105, 180, 0.6);
        transform: scale(1.02);
    }
}

.pricing-price-wrapper {
    position: relative;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.pricing-price-old {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 105, 180, 0.5);
    opacity: 0.7;
}

.pricing-price-new {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF69B4, #FF1493, #FF69B4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-price 3s ease-in-out infinite;
    line-height: 1.2;
    filter: drop-shadow(0 2px 8px rgba(255, 105, 180, 0.3));
}

@keyframes shimmer-price {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 200% center;
    }
}

.pricing-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    margin-top: 0.25rem;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(255, 20, 147, 0.2));
    border: 1px solid rgba(255, 105, 180, 0.4);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF69B4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pricing-timeline {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pricing-features svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-features span {
    font-size: 0.875rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    color: var(--text);
}

.pricing-btn.glass {
    background: rgba(20, 26, 34, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.pricing-btn.glass:hover {
    background: rgba(255, 105, 180, 0.15);
    border-color: rgba(255, 105, 180, 0.5);
    color: var(--accent);
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
    transform: translateY(-2px);
}

/* Выравнивание кнопок на одной высоте в десктопной версии */
@media (min-width: 768px) {
    .pricing-features {
        flex: 1;
    }

    .pricing-btn {
        margin-top: auto;
    }
}

/* === PROCESS SECTION === */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
}

.process-number {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.1);
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-text {
    color: var(--muted);
    font-size: 0.875rem;
}

/* === ABOUT SECTION === */
.about-section {
    background: transparent;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
}

.team-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.3);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-description {
    color: var(--muted);
    line-height: 1.6;
}

/* Advantages Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    text-align: center;
}

.about-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
}

.about-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-text {
    color: var(--muted);
    font-size: 0.875rem;
}

/* About CTA */
.about-cta {
    margin-top: 4rem;
    text-align: center;
}

.about-cta .glass {
    display: inline-block;
    padding: 2rem;
    border-radius: 1.25rem;
    max-width: 42rem;
}

.about-cta p {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.7;
}

/* About Story */
.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .about-story {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-story-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
}

.about-story-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-story-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-story-text {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* About Team Structure */
.about-team-structure {
    margin-bottom: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.about-team-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.about-team-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .about-team-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-team-item {
    padding: 2rem;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .about-team-item {
        flex-direction: row;
        text-align: left;
    }
}

.about-team-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(255, 179, 217, 0.2));
    border-radius: 1rem;
    border: 1px solid rgba(255, 105, 180, 0.3);
    color: var(--accent);
}

.about-team-icon svg {
    width: 2rem;
    height: 2rem;
}

.about-team-content {
    flex: 1;
}

.about-team-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.about-team-item-text {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* === FAQ SECTION === */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s;
}

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

.faq-icon {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted);
    line-height: 1.7;
}

/* === CONTACT SECTION === */
.contact-wrapper {
    margin-bottom: 3rem;
}

.contact-form {
    padding: 2rem;
    border-radius: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, var(--accent), var(--accent2));
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
    transform: scale(1.02);
}

.form-notice {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--muted);
    text-align: center;
}

.form-notice a {
    color: var(--accent);
    text-decoration: none;
}

.form-notice a:hover {
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .contact-info {
        align-items: center;
    }
    
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 1rem;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s;
}

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

.contact-method svg {
    flex-shrink: 0;
}

/* === FOOTER === */
.footer {
    background: rgba(20, 26, 34, 0.5);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    height: 4.5rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p,
.footer-links ul,
.footer-contacts ul,
.footer-legal ul {
    font-size: 0.875rem;
    color: var(--muted);
}

.footer-brand p {
    line-height: 1.6;
}

.footer h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: var(--muted);
    transition: all 0.3s;
}

.footer-social a:hover {
    color: var(--accent);
}

/* === АДАПТИВНЫЕ СТИЛИ ДЛЯ АКЦИИ === */
@media (max-width: 767px) {
    .pricing-sale-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .pricing-price-new {
        font-size: 2rem;
    }

    .pricing-price-old {
        font-size: 1rem;
    }

    .pricing-discount {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* ========================================
   Document Modal
   ======================================== */
.doc-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s var(--ease-out-expo);
}

.doc-modal.active {
    display: flex;
    opacity: 1;
}

.doc-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.doc-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s var(--ease-out-expo);
}

.doc-modal.active .doc-modal-content {
    transform: scale(1) translateY(0);
}

.doc-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.doc-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(90deg);
}

.doc-modal-header {
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}

.doc-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.doc-modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    color: var(--muted);
    line-height: 1.8;
}

.doc-modal-body::-webkit-scrollbar {
    width: 6px;
}

.doc-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.doc-modal-body::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.doc-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent2);
}

.doc-modal-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.doc-modal-body h3:first-child {
    margin-top: 0;
}

.doc-modal-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.doc-modal-body p {
    margin-bottom: 1rem;
}

.doc-modal-body ul,
.doc-modal-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.doc-modal-body li {
    margin-bottom: 0.5rem;
}

.doc-modal-body strong {
    color: var(--text);
    font-weight: 600;
}

.doc-modal-body a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.doc-modal-body a:hover {
    color: var(--accent2);
}

.footer-legal .doc-link {
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-legal .doc-link:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .doc-modal-content {
        padding: 1.5rem;
        max-height: 95vh;
        border-radius: 20px;
    }

    .doc-modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }

    .doc-modal-title {
        font-size: 1.5rem;
    }

    .doc-modal-header {
        padding-right: 2.5rem;
    }
}
