<!DOCTYPE html>


    
    
        /* ========== БАЗОВЫЕ СТИЛИ ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ========== ЦВЕТА ========== */
        :root {
            --primary: #0a2540;
            --secondary: #00b4d8;
            --accent: #7b2cbf;
            --danger: #ef476f;
            --warning: #ffd166;
            --success: #06d6a0;
            --light: #f8f9fa;
            --dark: #1a1a1a;
            --gray: #6c757d;
        }

        /* ========== ТИПОГРАФИКА ========== */
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--primary);
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .subtitle {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 2rem;
        }

        /* ========== КНОПКИ ========== */
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: #0096b4;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: white;
        }

        /* ШАПКА */
        .header {
            padding: 20px 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .logo span {
            color: var(--secondary);
        }

        .nav a {
            margin-left: 30px;
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav a:hover {
            color: var(--secondary);
        }

        /* ГЛАВНЫЙ ЭКРАН */
        .hero {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0,180,216,0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.2rem;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 2rem;
        }

        .hero-image {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            box-shadow: 0 30px 40px -20px rgba(0,0,0,0.3);
            position: relative;
            overflow: hidden;
        }

        /* СЕКЦИИ */
        .section {
            padding: 80px 0;
        }

        .section-light {
            background: var(--light);
        }

        .section-danger {
            background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
            border-top: 1px solid rgba(239, 71, 111, 0.2);
            border-bottom: 1px solid rgba(239, 71, 111, 0.2);
        }

        /* СЕТКИ */
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        /* КАРТОЧКИ */
        .card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .feature-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .feature-icon {
            font-size: 2rem;
            min-width: 50px;
        }

        /* ФИНАНСОВЫЙ КОНТРОЛЬ */
        .control-showcase {
            background: white;
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            margin-top: 40px;
        }

        .control-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .control-item {
            padding: 30px;
            background: var(--light);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .control-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--secondary);
        }

        .control-item.danger::before {
            background: var(--danger);
        }

        .control-item.warning::before {
            background: var(--warning);
        }

        .control-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .control-tag {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .tag-danger {
            background: rgba(239, 71, 111, 0.1);
            color: var(--danger);
        }

        .tag-warning {
            background: rgba(255, 209, 102, 0.1);
            color: #b3861a;
        }

        .timeline {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            padding: 20px 0;
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
        }

        .timeline-step {
            text-align: center;
            flex: 1;
        }

        .timeline-step .step-number {
            width: 40px;
            height: 40px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: 700;
        }

        .stats-banner {
            background: linear-gradient(135deg, var(--primary), #1a3a5f);
            color: white;
            padding: 40px;
            border-radius: 20px;
            margin-top: 40px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        /* ОТЗЫВ */
        .testimonial {
            background: var(--primary);
            color: white;
            padding: 50px;
            border-radius: 30px;
            margin-top: 40px;
        }

        .testimonial-text {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 30px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        /* ТАРИФЫ */
        .pricing-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.popular::before {
            content: 'Популярный';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--secondary);
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 20px 0;
        }

        .price small {
            font-size: 1rem;
            font-weight: 400;
            color: var(--gray);
        }

        .pricing-features {
            list-style: none;
            margin: 30px 0;
        }

        .pricing-features li {
            margin: 15px 0;
            color: var(--gray);
        }

        .feature-new {
            background: rgba(0, 180, 216, 0.1);
            border-radius: 20px;
            padding: 10px;
            margin: 10px 0;
            font-weight: 500;
            color: var(--secondary);
        }

        /* FAQ */
        .faq-item {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }

        .faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .faq-answer {
            color: var(--gray);
        }

        /* ПОДВАЛ */
        .footer {
            background: var(--primary);
            color: white;
            padding: 60px 0 30px;
        }

        .footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: var(--secondary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }

        /* АДАПТИВ */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            
            .hero .container {
                grid-template-columns: 1fr;
            }
            
            .grid-2, .grid-3, .grid-4 {
                grid-template-columns: 1fr;
            }

            .control-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .timeline {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav {
                display: none;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
    </style>


    <!-- Этот файл содержит все общие стили для всех модулей -->
    <div style="padding: 50px; text-align: center;">
        common-styles.css</h2>
        Подключите этот файл ко всем модулям для единого стиля</p>
    </div>

