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

        html, body {
            width: 100%;
            overflow-x: clip;
        }

        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
        }

        body {
            background-color: #eef5fb;
            color: #123047;
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            font-size: 16px;
        }

        /* Header */
        header {
            background: white;
            padding: 1.2rem 1.5rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Sora', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #2f6fed;
            letter-spacing: -0.3px;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #2f6fed;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        nav {
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: #123047;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #2f6fed;
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                background: white;
                padding: 1rem;
                gap: 0.5rem;
                border-bottom: 1px solid #e0e8f0;
            }

            details[open] nav {
                display: flex;
            }

            nav a {
                padding: 0.75rem;
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #eef5fb 0%, #f5fafd 100%);
            padding: 5rem 1.5rem 3rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(47, 111, 237, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

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

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-family: 'Sora', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.15;
            color: #123047;
            margin-bottom: 1.2rem;
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-text > p {
            font-size: 1.1rem;
            color: #355978;
            margin-bottom: 1.5rem;
            animation: slideInLeft 0.8s ease-out 0.1s both;
        }

        .hero-benefits {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            animation: slideInLeft 0.8s ease-out 0.2s both;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateX(5px);
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: #2f6fed;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            flex-shrink: 0;
        }

        .benefit-item span {
            font-weight: 500;
            color: #123047;
        }

        .hero-image {
            position: relative;
            animation: slideInRight 0.8s ease-out 0.3s both;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(47, 111, 237, 0.15);
        }

        .cta-button {
            display: inline-block;
            background: #2f6fed;
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            min-height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .cta-button:hover {
            background: #2558d4;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(47, 111, 237, 0.3);
        }

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0;
            }

            h1 {
                font-size: 2rem;
            }

            .hero-text > p {
                font-size: 1rem;
            }
        }

        /* Features Section */
        .features {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 1.5rem;
        }

        .section-title {
            font-family: 'Sora', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #123047;
            text-align: center;
            margin-bottom: 3rem;
        }

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

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid #2f6fed;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(47, 111, 237, 0.15);
        }

        .feature-card h3 {
            color: #123047;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }

        .feature-card p {
            color: #355978;
            line-height: 1.7;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, #d4e8f7 0%, #e8f2f9 100%);
            padding: 4rem 1.5rem;
            margin: 2rem 0;
        }

        .testimonials-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .testimonial {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .testimonial-text {
            color: #355978;
            margin-bottom: 1.2rem;
            font-style: italic;
            line-height: 1.8;
        }

        .testimonial-author {
            font-weight: 600;
            color: #123047;
        }

        .testimonial-city {
            color: #2f6fed;
            font-size: 0.9rem;
        }

        /* FAQ */
        .faq {
            max-width: 1000px;
            margin: 0 auto;
            padding: 4rem 1.5rem;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .faq-question {
            background: white;
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border: none;
            width: 100%;
            text-align: left;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            color: #123047;
            font-size: 1rem;
        }

        .faq-question:hover {
            background: #f5fafd;
            color: #2f6fed;
        }

        .faq-icon {
            display: inline-block;
            transition: transform 0.3s ease;
            margin-left: 1rem;
            color: #2f6fed;
            font-weight: 700;
        }

        .faq-item[open] .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: #355978;
            background: #f9fbfd;
            line-height: 1.8;
        }

        /* Form Section */
        .form-section {
            background: linear-gradient(135deg, #2f6fed 0%, #245dc9 100%);
            padding: 3rem 1.5rem;
            margin: 2rem 0;
            border-radius: 12px;
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-section h2 {
            color: white;
            text-align: center;
            margin-bottom: 2rem;
            font-family: 'Sora', sans-serif;
            font-size: 1.8rem;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        input[type="text"],
        input[type="tel"] {
            padding: 0.9rem 1.2rem;
            border: none;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            background: white;
            color: #123047;
            min-height: 48px;
            transition: all 0.3s ease;
        }

        input[type="text"]:focus,
        input[type="tel"]:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
            background: #f9fbfd;
        }

        input::placeholder {
            color: #8fa5b8;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            margin: 0.5rem 0;
        }

        input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: #2f6fed;
            flex-shrink: 0;
        }

        .checkbox-label {
            color: white;
            font-size: 0.9rem;
            line-height: 1.4;
            cursor: pointer;
        }

        .checkbox-label a {
            color: white;
            text-decoration: underline;
        }

        form button {
            min-height: 48px;
            background: white;
            color: #2f6fed;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            margin-top: 0.5rem;
        }

        form button:hover {
            background: #f5fafd;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        input[type="hidden"] {
            display: none;
        }

        /* Footer */
        footer {
            background: #123047;
            color: #c5d5e3;
            padding: 3rem 1.5rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
            text-align: left;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .footer-section p {
            font-size: 0.85rem;
            line-height: 1.7;
        }

        .footer-requisites {
            border-top: 1px solid rgba(197, 213, 227, 0.2);
            padding-top: 2rem;
            font-size: 0.8rem;
            color: #8fa5b8;
            line-height: 1.8;
        }

        @media (max-width: 600px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .feature-card {
            animation: fadeIn 0.6s ease-out;
        }

        .feature-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .feature-card:nth-child(3) {
            animation-delay: 0.2s;
        }

:root{--pb-bg:#eef5fb;--pb-text:#123047;--pb-accent:#2f6fed;--pb-accent-2:#2f6fed;}html,body{background-color:var(--pb-bg)!important;color:var(--pb-text)!important;}body a:not([class]){color:var(--pb-accent);}button,input[type=submit],.btn,[class*="cta"],[class*="Cta"],.submit-btn,.hero-cta{background:var(--pb-accent)!important;color:#ffffff!important;border-color:var(--pb-accent)!important;}
.legal{max-width:42rem;margin:2rem auto;padding:0 16px;line-height:1.55;}
.legal-links{text-align:center;margin:24px 0;font-size:.85rem;}
.site-legal{max-width:52rem;margin:2rem auto 1rem;padding:16px;font-size:.82rem;line-height:1.5;opacity:.9;}

