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

        body {
            font-family: 'Inter', sans-serif;
            background: #FFF7F0;
            color: #2D2A24;
            line-height: 1.4;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ========== HEADER / NAVBAR ========== */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding: 20px 0;
            border-bottom: 1px solid #FFE2C4;
            margin-bottom: 20px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #C45C2C, #F5A65B);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }
        .logo span {
            font-size: 0.9rem;
            font-weight: 400;
            color: #A67B5A;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }
        .nav-menu a {
            text-decoration: none;
            color: #4A3A2A;
            font-weight: 500;
            transition: color 0.2s;
            font-size: 1rem;
        }
        .nav-menu a:hover {
            color: #E67E34;
        }
        .login-btn {
            background: transparent;
            border: 1.5px solid #E67E34;
            padding: 8px 24px;
            border-radius: 40px;
            color: #E67E34;
            font-weight: 600;
            transition: all 0.2s;
            cursor: pointer;
        }
        .login-btn:hover {
            background: #E67E34;
            color: #fff!important;
            transform: translateY(-2px);
        }
        .mobile-menu-icon {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #C45C2C;
        }

        @media (max-width: 800px) {
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                padding: 20px 0 10px;
            }
            .nav-menu.active {
                display: flex;
            }
            .mobile-menu-icon {
                display: block;
            }
            .navbar {
                position: relative;
            }
            .login-btn {
                margin-left: 0;
                align-self: flex-start;
            }
        }

        section {
            margin: 80px 0;
        }

        h2 {
            font-size: 2.4rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            margin-bottom: 48px;
            text-align: center;
            color: #C45C2C;
            position: relative;
        }
        h2:after {
            content: '';
            display: block;
            width: 70px;
            height: 3px;
            background: #F5B87A;
            margin: 12px auto 0;
            border-radius: 4px;
        }

        .btn {
            display: inline-block;
            background: #E67E34;
            color: white;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            transition: transform 0.2s ease, background 0.2s, box-shadow 0.2s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.03);
        }
        .btn:hover {
            background: #C45C2C;
            transform: translateY(-3px);
            box-shadow: 0 12px 20px rgba(198, 92, 44, 0.25);
        }
        .btn-outline {
            background: transparent;
            border: 1.5px solid #E67E34;
            color: #E67E34;
            box-shadow: none;
        }
        .btn-outline:hover {
            background: #E67E34;
            color: white;
            transform: translateY(-2px);
        }
        
        /* CTA блоки */
        .cta-block {
            background: linear-gradient(135deg, #FCEBD9 0%, #FFE2C4 100%);
            border-radius: 48px;
            padding: 48px 32px;
            text-align: center;
            margin: 60px 0;
            box-shadow: 0 15px 35px -12px rgba(198, 92, 44, 0.2);
            transition: all 0.3s ease;
        }
        .cta-block:hover {
            transform: scale(1.01);
            box-shadow: 0 20px 40px -12px rgba(198, 92, 44, 0.3);
        }
        .cta-block h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #C45C2C;
            margin-bottom: 16px;
        }
        .cta-block p {
            font-size: 1.1rem;
            color: #5A4A3A;
            margin-bottom: 28px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-btn {
            background: #E67E34;
            color: white;
            font-size: 1.2rem;
            padding: 14px 40px;
            border-radius: 60px;
            font-weight: 700;
            box-shadow: 0 8px 20px rgba(230,126,52,0.3);
        }
        .cta-btn:hover {
            background: #C45C2C;
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(198, 92, 44, 0.4);
        }

        /* Hero */
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            margin: 20px 0 60px;
        }
        .hero-text {
            flex: 1.2;
        }
        .hero-text h1 {
            font-weight: 700;
            background: linear-gradient(135deg, #C45C2C, #F5A65B);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        .hero-text p {
            font-size: 1.2rem;
            color: #5A4A3A;
            margin-bottom: 24px;
            line-height: 1.4;
        }
        .hero-text ul {
            margin-bottom: 28px;
            list-style: none;
        }
        .hero-text ul li {
            margin-bottom: 10px;
            font-size: 1rem;
        }
        .hero-badge {
            background: #FCEBD9;
            display: inline-block;
            padding: 8px 18px;
            border-radius: 100px;
            font-weight: 500;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        .hero-player {
            flex: 1;
            background: #fff9f2;
            border-radius: 36px;
            padding: 24px;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
            border: 1px solid #FFE2C4;
        }

        /* плеер */
        .player-card {
            text-align: center;
        }
        .track-list {
            margin: 20px 0;
        }
        .track-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            margin: 10px 0;
            background: #FFF3E6;
            border-radius: 60px;
            transition: all 0.2s;
            cursor: pointer;
        }
        .track-item:hover {
            background: #FFE9D8;
            transform: scale(1.01);
        }
        .track-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .track-icon {
            font-size: 1.6rem;
            color: #E67E34;
        }
        .track-name {
            font-weight: 600;
        }
        .play-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #E67E34;
            cursor: pointer;
            transition: 0.1s;
        }
        .play-btn:hover {
            transform: scale(1.1);
            color: #C45C2C;
        }
        .player-controls {
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        .control-icon {
            font-size: 1.8rem;
            color: #C45C2C;
            cursor: pointer;
            transition: 0.1s;
        }
        .control-icon:hover {
            transform: scale(1.07);
            color: #E67E34;
        }
        .now-playing {
            font-size: 0.8rem;
            margin-top: 12px;
            color: #A67B5A;
        }

        /* функции группы */
        .functions-section {
            background: #FFFBF5;
            border-radius: 48px;
            padding: 20px 0 10px;
        }
        .functions-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .func-group {
            background: white;
            border-radius: 40px;
            padding: 28px 24px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
            border: 1px solid #FCE5CE;
        }
        .func-group h3 {
            font-size: 1.6rem;
            margin-bottom: 28px;
            color: #C45C2C;
            display: flex;
            align-items: center;
            gap: 12px;
            border-left: 4px solid #F5B87A;
            padding-left: 20px;
        }
        .func-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 28px;
        }
        .func-card {
            background: #FFFBF5;
            border-radius: 28px;
            padding: 24px 20px;
            transition: all 0.25s ease;
            text-align: center;
            border: 1px solid #FFE8D4;
        }
        .func-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px -12px rgba(230,126,52,0.2);
            border-color: #F5B87A;
        }
        .func-icon {
            font-size: 2.5rem;
            color: #E67E34;
            margin-bottom: 16px;
        }
        .func-card h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .func-card p {
            color: #6B5A48;
            font-size: 0.9rem;
        }
        .big-stat {
            font-size: 1.8rem;
            font-weight: 800;
            color: #C45C2C;
        }

        /* features grid общий */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        .feature-card {
            background: white;
            border-radius: 32px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.25s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border: 1px solid #FADDB8;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px -12px rgba(230,126,52,0.15);
        }
        .feature-card h3 {
            font-size: 1.5rem;
            margin: 16px 0 10px;
        }

        /* калькулятор */
        .price-calc-wrapper {
            background: #FFF5EA;
            border-radius: 48px;
            padding: 32px;
            box-shadow: 0 12px 24px -16px rgba(0,0,0,0.08);
        }
        .calc-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-between;
        }
        .calculator {
            flex: 1.2;
            background: white;
            border-radius: 32px;
            padding: 28px;
        }
        .tariffs {
            flex: 1;
            background: white;
            border-radius: 32px;
            padding: 28px;
        }
        .calc-field {
            margin: 20px 0;
        }
        .calc-field label {
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }
        input[type="range"] {
            width: 100%;
            accent-color: #E67E34;
        }
        .price-result {
            font-size: 2rem;
            font-weight: 800;
            color: #C45C2C;
            margin: 20px 0;
        }
        .fixed-price-note {
            background: #FFEFE2;
            border-radius: 20px;
            padding: 12px;
            font-size: 0.85rem;
            text-align: center;
            margin-top: 15px;
        }
        .tariff-card {
            background: #FFF7F0;
            border-radius: 24px;
            padding: 18px;
            margin: 20px 0;
            transition: 0.2s;
            border-left: 5px solid #E67E34;
        }
        .tariff-card h4 {
            font-size: 1.4rem;
        }
        .tariff-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #E67E34;
        }

        /* FAQ - с прокруткой на мобильных */
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        .accordion-item {
            background: white;
            border-radius: 24px;
            margin-bottom: 18px;
            overflow: hidden;
            border: 1px solid #FFE2C4;
            transition: all 0.2s ease;
        }
        .accordion-item:hover {
            border-color: #F5B87A;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .accordion-question {
            background: #FFFFFF;
            padding: 22px 28px;
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.2s;
            color: #2D2A24;
        }
        .accordion-question:hover {
            background: #FFF4E8;
        }
        .accordion-question i:first-child {
            margin-right: 12px;
            color: #E67E34;
        }
        .accordion-question i:last-child {
            color: #E67E34;
            transition: transform 0.3s;
            font-size: 1.2rem;
        }
        .accordion-answer {
            max-height: 0;
            padding: 0 28px;
            overflow-y: auto;
            transition: max-height 0.5s cubic-bezier(0.33, 1, 0.68, 1), padding 0.3s;
            color: #5A4A3A;
            line-height: 1.6;
            border-top: 0px solid #FADCB8;
            font-size: 0.95rem;
        }
        .accordion-item.active .accordion-answer {
            max-height: 500px;
            padding: 0 28px 28px 28px;
            border-top: 1px solid #FADCB8;
        }
        .accordion-item.active .accordion-question i:last-child {
            transform: rotate(180deg);
        }
        .accordion-answer p {
            margin-bottom: 8px;
        }
        .accordion-answer strong {
            color: #C45C2C;
        }
        .accordion-answer ul, .accordion-answer ol {
            margin: 8px 0 8px 24px;
        }
        .accordion-answer li {
            margin-bottom: 6px;
        }

        /* Мобильные стили */
        @media (max-width: 800px) {
            .hero { flex-direction: column; }
            h2 { font-size: 2rem; }
            .container { padding: 0 20px; }
            .func-group h3 { font-size: 1.3rem; }
            .cta-block h3 { font-size: 1.5rem; }
            .cta-block p { font-size: 1rem; }
            .accordion-question {
                padding: 18px 20px;
                font-size: 1rem;
            }
            .accordion-answer {
                font-size: 0.9rem;
                max-height: 0;
            }
            .accordion-item.active .accordion-answer {
                max-height: 400px;
                padding: 0 20px 20px 20px;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }
            
            /* Скрываем таблицу сравнения на мобильных устройствах */
            .comparison-table-wrapper {
                display: none;
            }
            .comparison-desktop-only {
                display: none;
            }
            
            .btn {
   			margin-top: 10px
			}
        }
        
        
        
        /* Скрываем таблицу на мобильных */
        @media (max-width: 800px) {
            .comparison-section {
                display: none;
            }
        }
        
        /* Десктопная версия таблицы */
        .comparison-section {
            margin-top: 48px;
            background: white;
            border-radius: 32px;
            padding: 32px;
            border: 1px solid #FFE2C4;
        }

        footer {
            text-align: center;
            padding: 40px 0;
            color: #A27B5A;
            border-top: 1px solid #FFE2C4;
            margin-top: 60px;
        }

        table tr:hover {
            background: #FFFBF5;
            transition: background 0.2s;
        }
        @media (max-width: 700px) {
            .price-result {
                font-size: 1.5rem;
            }
            .tariff-card {
                text-align: center;
            }
        }
        s {
            color: #A67B5A;
            opacity: 0.8;
        }
        .fade-up {
            animation: fadeUp 0.6s ease forwards;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }