:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --indigo-50: #eef2ff;
    --indigo-600: #4f46e5;
    --gray-900: #111827;
    --gray-600: #4b5563;
    --white: #ffffff;
}

/* Общие стили */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--gray-900);
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 50%, var(--indigo-50) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.container.narrow { 
    max-width: 800px; 
}

/* Language Switcher */
.lang-switcher {
    position: fixed; 
    top: 1rem; 
    right: 1.5rem; 
    z-index: 1000;
}

.lang-switcher button {
    display: flex; 
    align-items: center; 
    gap: 8px;
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(4px);
    border: 1px solid var(--blue-100); 
    padding: 10px 18px;
    border-radius: 50px; 
    cursor: pointer; 
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    transition: 0.3s;
}

.lang-switcher button:hover {
    transform: scale(1.05);
    background: var(--white);
}

/* Hero Section */
.hero { 
    padding: 120px 0 80px; 
    position: relative; 
    text-align: center; 
}

.main-logo { 
    width: 100%; 
    max-width: 200px; 
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); 
}

.animate-float { 
    animation: float 3s ease-in-out infinite; 
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-h1 { 
    font-size: 3.5rem; 
    font-weight: 800; 
    line-height: 1.1; 
    margin: 2rem 0; 
}

.hero-h1 span { 
    display: block; 
    color: var(--blue-600); 
    margin-top: 0.5rem; 
}

.hero-p { 
    font-size: 1.25rem; 
    color: var(--gray-600); 
    max-width: 700px; 
    margin: 0 auto 3rem; 
}

/* Buttons */
.app-buttons { 
    display: flex; 
    gap: 1.5rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.btn {
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 14px 28px;
    border-radius: 16px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: 0.3s;
}

.btn-black { background: #000; color: white; }
.btn-blue { background: var(--blue-600); color: white; }
.btn-white { background: white; color: var(--blue-600); }

.btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); 
}

.btn i { font-size: 1.8rem; }

/* Features */
.features { padding: 100px 0; background: white; }
.section-title { 
    font-size: 2.5rem; 
    font-weight: 700; 
    text-align: center; 
    margin-bottom: 4rem; 
}

.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2.5rem; 
}

.feature-card {
    padding: 3rem; 
    border-radius: 2rem; 
    border: 1px solid var(--blue-100);
    background: linear-gradient(to bottom right, var(--blue-50), var(--indigo-50));
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon-box {
    width: 60px; height: 60px; 
    background: var(--blue-600); 
    color: white;
    border-radius: 1.25rem; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-weight: 800; 
    font-size: 1.5rem; 
    margin-bottom: 1.5rem;
}

/* Pricing */
.pricing { padding: 100px 0; }
.pricing-grid { 
    display: flex; 
    gap: 2rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}

.price-card {
    background: white; 
    padding: 3rem 2rem; 
    border-radius: 2.5rem; 
    border: 2px solid #e5e7eb;
    max-width: 400px; 
    width: 100%; 
    text-align: center; 
    position: relative;
    transition: 0.3s;
}

.price-card.featured {
    background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
    color: white; 
    border: none;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}

.price-value { 
    font-size: 3.0rem; /* Уменьшено по запросу */
    font-weight: 800; 
    margin: 1.5rem 0 0.5rem; 
    white-space: nowrap; 
}

.currency { font-size: 1.5rem; margin-left: 5px; }

.old-price { 
    font-size: 1.2rem; 
    text-decoration: line-through; 
    opacity: 0.6; 
    margin-left: 8px; 
}

.badge {
    position: absolute; 
    top: 1.5rem; 
    right: 1.5rem; 
    background: #facc15;
    color: #000; 
    padding: 6px 14px; 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 0.8rem;
}

/* Gallery Slider (Slick) */
.gallery { padding: 100px 0; background: white; }
.gallery-slider { margin: 0 -15px; }

.slide-item { 
    padding: 20px 15px; 
    outline: none; 
}

.slide-item img {
    width: 100%;
    max-width: 280px;
    height: 500px;
    object-fit: cover;
    border-radius: 2.5rem;
    border: 8px solid var(--gray-900);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin: 0 auto;
    cursor: zoom-in;
    display: block;
}

/* Навигация слайдера */
.slick-prev:before, .slick-next:before {
    color: var(--blue-600) !important;
    font-size: 30px !important;
}

/* FAQ */
.faq { padding: 100px 0; }
.faq-item { 
    background: white; 
    border-radius: 1.5rem; 
    margin-bottom: 1.25rem; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    overflow: hidden; 
}

.faq-question {
    width: 100%; 
    padding: 1.5rem 2.5rem; 
    border: none; 
    background: none;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    cursor: pointer; 
    font-size: 1.15rem; 
    font-weight: 600; 
    text-align: left;
    transition: 0.2s;
}

.faq-question:hover { background: var(--blue-50); }

.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: 0.3s ease-out; 
    padding: 0 2.5rem; 
    color: var(--gray-600);
}

.faq-item.active .faq-answer { 
    max-height: 300px; 
    padding-bottom: 2rem; 
}

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

/* Footer */
.footer { 
    background: var(--gray-900); 
    color: white; 
    padding: 80px 0 40px; 
}

.footer-top { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 3rem; 
    flex-wrap: wrap; 
    gap: 2rem; 
}

.footer-nav a { 
    color: #9ca3af; 
    text-decoration: none; 
    margin-right: 1.5rem; 
    font-size: 0.95rem; 
    transition: 0.2s;
}

.footer-nav a:hover { color: var(--blue-100); }

.footer-bottom { 
    border-top: 1px solid #374151; 
    padding-top: 2rem; 
    text-align: center; 
    color: #6b7280; 
    font-size: 0.9rem; 
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-h1 { font-size: 2.8rem; }
    .price-value { font-size: 2.5rem; }
    .slide-item img { height: 420px; max-width: 240px; }
    .footer-top { flex-direction: column; text-align: center; }
    .footer-nav a { margin: 0 0.75rem; }
}

@media (max-width: 480px) {
    .hero-h1 { font-size: 2.2rem; }
    .app-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}