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

        :root {
            --teal-primary: #0d9488;
            --teal-dark: #0f766e;
            --teal-light: #14b8a6;
            --orange-accent: #f59e0b;
            --orange-light: #fbbf24;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-600: #4b5563;
            --gray-800: #1f2937;
            --gray-900: #111827;
        }

        body {
            font-family: 'Manrope', sans-serif;
            color: var(--gray-800);
            background: var(--white);
            overflow-x: clip;
            line-height: 1.6;
        }

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

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(16px);
            z-index: 100;
            border-bottom: 1px solid rgba(13, 148, 136, 0.1);
            transition: all 0.4s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 20px rgba(13, 148, 136, 0.08);
        }

        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 18px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 22px;
            color: var(--teal-primary);
            text-decoration: none;
            letter-spacing: -0.4px;
            transition: opacity 0.3s ease;
        }

        .logo:hover {
            opacity: 0.85;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 18px rgba(13, 148, 136, 0.25);
            flex-shrink: 0;
        }

        .logo-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        nav {
            display: none;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 36px;
        }

        nav a {
            color: var(--gray-800);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--teal-primary);
        }

        .mobile-menu {
            display: block;
        }

        .mobile-menu summary {
            list-style: none;
            cursor: pointer;
            padding: 8px;
            color: var(--teal-primary);
            font-weight: 600;
            font-size: 15px;
        }

        .mobile-menu summary::-webkit-details-marker {
            display: none;
        }

        .mobile-menu[open] summary {
            margin-bottom: 12px;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 16px;
            background: var(--gray-50);
            border-radius: 12px;
            position: absolute;
            top: 72px;
            right: 24px;
            min-width: 200px;
            box-shadow: 0 8px 24px rgba(13, 148, 136, 0.15);
        }

        .mobile-menu a {
            color: var(--gray-800);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--teal-primary);
        }

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

        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1556656793-08538906a9f8?w=1600&q=85') center/cover;
            opacity: 0.15;
            animation: kenBurns 25s ease-in-out infinite alternate;
        }

        @keyframes kenBurns {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.08);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            padding: 120px 24px 80px;
            text-align: center;
            animation: heroFadeIn 1.2s ease-out;
        }

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

        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(32px, 6vw, 64px);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.15;
            letter-spacing: -1.2px;
        }

        .hero-lead {
            font-size: clamp(16px, 2.5vw, 20px);
            color: rgba(255, 255, 255, 0.92);
            max-width: 680px;
            margin: 0 auto 40px;
            line-height: 1.65;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--orange-accent);
            color: var(--white);
            padding: 18px 42px;
            border-radius: 14px;
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
            box-shadow: 0 8px 28px rgba(245, 158, 11, 0.4);
            transition: all 0.3s ease;
            min-height: 48px;
        }

        .hero-cta:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 12px 36px rgba(245, 158, 11, 0.5);
        }

        section {
            padding: 80px 24px;
        }

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

        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 700;
            color: var(--gray-900);
            text-align: center;
            margin-bottom: 60px;
            letter-spacing: -0.8px;
        }

        .benefits {
            background: var(--gray-50);
        }

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

        .benefit-card {
            background: var(--white);
            padding: 40px 32px;
            border-radius: 18px;
            box-shadow: 0 4px 20px rgba(13, 148, 136, 0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(13, 148, 136, 0.08);
        }

        .benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(13, 148, 136, 0.15);
        }

        .benefit-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-light) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            box-shadow: 0 6px 20px rgba(13, 148, 136, 0.25);
        }

        .benefit-icon svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        .benefit-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .benefit-card p {
            color: var(--gray-600);
            font-size: 15px;
            line-height: 1.7;
        }

        .process {
            background: var(--white);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            position: relative;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--orange-accent) 0%, var(--orange-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-family: 'Outfit', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            box-shadow: 0 6px 24px rgba(245, 158, 11, 0.3);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 6px 24px rgba(245, 158, 11, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 8px 32px rgba(245, 158, 11, 0.45);
            }
        }

        .step h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .step p {
            color: var(--gray-600);
            font-size: 15px;
            line-height: 1.7;
        }

        .visual-section {
            background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
            position: relative;
            overflow: hidden;
        }

        .visual-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?w=1600&q=85') center/cover;
            opacity: 0.12;
        }

        .visual-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        .visual-text {
            color: var(--white);
        }

        .visual-text h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: -0.8px;
        }

        .visual-text p {
            font-size: 17px;
            line-height: 1.75;
            opacity: 0.94;
            margin-bottom: 16px;
        }

        .visual-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .visual-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        @media (min-width: 968px) {
            .visual-content {
                grid-template-columns: 1fr 1fr;
                gap: 80px;
            }
        }

        .reviews {
            background: var(--gray-50);
        }

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

        .review-card {
            background: var(--white);
            padding: 36px 32px;
            border-radius: 18px;
            box-shadow: 0 4px 20px rgba(13, 148, 136, 0.08);
            border-left: 4px solid var(--orange-accent);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .review-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-primary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            color: var(--white);
            flex-shrink: 0;
        }

        .review-info h4 {
            font-weight: 700;
            font-size: 17px;
            color: var(--gray-900);
            margin-bottom: 4px;
        }

        .review-info p {
            font-size: 14px;
            color: var(--gray-600);
        }

        .review-text {
            color: var(--gray-700);
            font-size: 15px;
            line-height: 1.7;
            font-style: italic;
        }

        .faq {
            background: var(--white);
        }

        .faq-list {
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background: var(--gray-50);
            border-radius: 14px;
            padding: 28px 32px;
            border: 1px solid rgba(13, 148, 136, 0.08);
        }

        .faq-item h3 {
            font-weight: 700;
            font-size: 18px;
            color: var(--gray-900);
            margin-bottom: 12px;
        }

        .faq-item p {
            color: var(--gray-600);
            font-size: 15px;
            line-height: 1.7;
        }

        .lead-form {
            background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .lead-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.pexels.com/photos/1092671/pexels-photo-1092671.jpeg?w=1600&q=85') center/cover;
            opacity: 0.08;
        }

        .form-container {
            position: relative;
            z-index: 2;
            max-width: 640px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.98);
            padding: 48px 40px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .form-container h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 700;
            color: var(--gray-900);
            text-align: center;
            margin-bottom: 32px;
            letter-spacing: -0.6px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 15px;
            color: var(--gray-800);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 16px 18px;
            border: 2px solid var(--gray-100);
            border-radius: 12px;
            font-family: 'Manrope', sans-serif;
            font-size: 15px;
            color: var(--gray-900);
            background: var(--white);
            transition: all 0.3s ease;
            min-height: 48px;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--teal-primary);
            box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 28px;
        }

        .checkbox-group input[type="checkbox"] {
            margin-top: 4px;
            width: 20px;
            height: 20px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .checkbox-group label {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        .checkbox-group a {
            color: var(--teal-primary);
            text-decoration: none;
            font-weight: 600;
        }

        .checkbox-group a:hover {
            text-decoration: underline;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--orange-accent);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-family: 'Manrope', sans-serif;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 24px rgba(245, 158, 11, 0.3);
            min-height: 48px;
        }

        .submit-btn:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
        }

        footer {
            background: var(--gray-900);
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 24px 40px;
        }

        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer-about h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
        }

        .footer-about p {
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .footer-contacts h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
        }

        .contact-item {
            margin-bottom: 12px;
            font-size: 15px;
            line-height: 1.6;
        }

        .contact-item a {
            color: var(--teal-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--orange-light);
        }

        .footer-legal {
            margin-top: 40px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }

        @media (min-width: 768px) {
            .footer-content {
                grid-template-columns: 1.5fr 1fr;
                gap: 60px;
            }
        }

        @media (min-width: 360px) {
            .header-inner {
                padding: 16px 20px;
            }
            .hero-content {
                padding: 100px 20px 60px;
            }
            section {
                padding: 60px 20px;
            }
        }
.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;}

