:root {
                --color-primary: #5A40F5;
                --color-primary-dark: #4338ca;
                --color-accent: #FF8C00;
                --color-accent-light: #FFA733;
                --color-text: #334155;
                --color-text-light: #64748b;
                --color-error: #FF0000;
                --color-bg-light: #f5f7fb;
                --color-bg-lighter: #F8FAFC;
                --color-border: #e6e9f0;
                --color-shadow: rgba(0, 0, 0, 0.08);
                --color-success: #10b981;
                --transition-time: 0.3s;
            }

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

            html {
                scroll-behavior: smooth;
                height: 100%; 
            }

            body {
                font-family: 'Inter', Arial, sans-serif;
                background: var(--color-bg-light);
                color: var(--color-text);
                line-height: 1.7;
                margin: 0;

                display: flex;
                flex-direction: column;
                height: 100%; 
                min-height: 100vh; 
            }

            main {
                flex: 1 0 auto; 
            }
                        
            /* --- Глобальный Контейнер --- */
            .container {
                max-width: 420px;
                margin: 60px auto;
                padding: 30px;
                background: #ffffff;
                border-radius: 16px;
                box-shadow: 0 10px 30px var(--color-shadow);
                border: 1px solid var(--color-border);
            }
            
            body.not-logged-in .container {
                max-width: 100%;
                margin: 0;
                padding: 0;
                box-shadow: none;
                border: none;
                min-height: 100vh;
            }

            body.non-landing-page .container {
                max-width: 420px;
                margin: 60px auto;
                padding: 30px;
                background: #ffffff;
                border-radius: 16px;
                box-shadow: 0 10px 30px var(--color-shadow);
                border: 1px solid var(--color-border);
            }

            h2 {
                color: var(--color-primary);
                text-align: center;
                margin-bottom: 25px;
                font-weight: 700;
                font-size: 26px;
                line-height: 1.2;
            }
            
            h2 i {
                margin-right: 10px;
                color: var(--color-accent);
            }

            h3 {
                color: var(--color-text);
                margin-top: 0;
            }

            /* --- Формы и Инпуты --- */
            form label {
                display: block;
                font-size: 14px;
                color: var(--color-text);
                margin-bottom: 4px;
                font-weight: 600;
            }
            
            input[type="email"], 
            input[type="text"], 
            input[type="password"] {
                width: 100%;
                padding: 12px 15px;
                margin: 0 0 18px 0;
                display: inline-block;
                border: 1px solid var(--color-border);
                box-sizing: border-box;
                border-radius: 8px;
                transition: border-color var(--transition-time), box-shadow var(--transition-time);
                font-size: 16px;
            }

            input:focus {
                border-color: var(--color-primary);
                box-shadow: 0 0 0 3px rgba(90, 64, 245, 0.2);
                outline: none;
            }

            /* --- Кнопки --- */
            button[type="submit"] {
                width: 100%;
                background-color: var(--color-primary);
                color: white;
                padding: 14px 20px;
                margin: 25px 0 15px 0;
                border: none;
                border-radius: 8px;
                cursor: pointer;
                font-size: 18px;
                font-weight: 600;
                transition: background-color var(--transition-time), transform var(--transition-time);
            }

            button[type="submit"]:hover {
                background-color: var(--color-primary-dark);
                transform: translateY(-2px);
            }

            /* --- Кнопка Yandex OAuth --- */
            .yandex-btn {
                display: inline-flex;
                align-items: center;
                background: #FFFFFF;
                border: 1px solid rgba(0, 0, 0, 0.12);
                border-radius: 10px;
                height: 44px; /* Фиксированная высота */
                padding: 0 16px 0 0; /* Отступ только справа */
                text-decoration: none;
                transition: background-color 0.2s, border-color 0.2s;
                overflow: hidden;
                user-select: none;
                width:100%;
            }

            .yandex-btn:hover {
                background-color: #F5F5F5;
                border-color: rgba(0, 0, 0, 0.2);
            }

            .yandex-btn__icon {
                display: block;
                width: 44px;
                height: 44px;
                background-color: #FC3F1D;
                background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.7407 33.9778H29.0889V9.04443H22.7592C16.3929 9.04443 13.0538 12.303 13.0538 17.1176C13.0538 21.2731 15.2187 23.6163 19.0532 26.1609L21.3832 27.6987L18.3927 25.1907L12.4667 33.9778H17.1818L23.5115 24.5317L21.3098 23.0671C18.6496 21.2731 17.3469 19.8818 17.3469 16.8613C17.3469 14.2068 19.2183 12.4128 22.7776 12.4128H24.7223V33.9778H24.7407Z' fill='white'/%3E%3C/svg%3E");
                background-size: cover;
                margin-right: 12px;
                flex-shrink: 0;
            }

            .yandex-btn__text {
                color: #000000;
                font-family: "YS Text", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
                font-size: 16px;
                font-weight: 500;
                line-height: 44px;
                white-space: nowrap;
                flex:1;
                text-align:center;
            }

            /* --- Кнопка Google OAuth --- */
            .btn-google {
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                padding: 12px 20px;
                border: 1px solid var(--color-border);
                border-radius: 8px;
                background-color: white;
                color: var(--color-text);
                font-size: 16px;
                transition: background-color var(--transition-time), border-color var(--transition-time);
                width: 100%;
                box-sizing: border-box;
            }

            .btn-google:hover {
                background-color: #f0f3f8;
                border-color: #d1d9e2;
            }

            .btn-google img {
                width: 20px;
                height: 20px;
                margin-right: 10px;
            }
            
            .divider-text {
                margin: 0 0 10px 0; 
                text-align: center; 
                color: var(--color-text-light); 
                font-size: 14px;
            }
            
            /* --- Сообщения об ошибках --- */
            .error {
                background-color: #ffeaea;
                color: var(--color-error);
                padding: 12px;
                margin-bottom: 20px;
                border-radius: 6px;
                border: 1px solid #FFCDCD;
                text-align: center;
                font-size: 14px;
            }

            p a {
                color: var(--color-primary);
                text-decoration: none;
                transition: color var(--transition-time);
            }

            p a:hover {
                color: var(--color-accent);
            }
            
            .form-wrapper {
                max-width: 400px;
                margin: 60px auto 100px auto;
                padding: 40px;
                background: #ffffff;
                border-radius: 16px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
                border: 1px solid var(--color-border);
            }

            /* --- Header --- */
            .main-header {
                background: rgba(255, 255, 255, 0.95);
                padding: 15px 30px;
                border-bottom: 1px solid var(--color-border);
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
                position: sticky;
                top: 0;
                z-index: 100;
                backdrop-filter: blur(10px);
            }

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

            .logo {
                font-size: 24px;
                font-weight: 900;
                color: var(--color-primary);
                text-decoration: none;
                transition: transform var(--transition-time);
            }

            .logo:hover {
                transform: scale(1.05);
            }

            .logo span {
                color: var(--color-accent);
            }

            /* --- Навигация --- */
            .main-nav ul {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
            }

            .main-nav li {
                margin-left: 30px;
            }

            .main-nav a {
                text-decoration: none;
                color: var(--color-text);
                font-weight: 600;
                font-size: 16px;
                transition: color var(--transition-time);
            }

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

            .main-nav li:last-child a {
                background: var(--color-primary);
                color: white;
                padding: 8px 20px;
                border-radius: 8px;
                font-weight: 600;
                transition: background-color var(--transition-time), box-shadow var(--transition-time);
            }

            .main-nav li:last-child a:hover {
                background: var(--color-primary-dark);
                box-shadow: 0 2px 10px rgba(79, 70, 229, 0.4);
            }

            /* --- Мобильное меню --- */
            .menu-toggle {
                display: none;
                cursor: pointer;
                font-size: 24px;
                color: var(--color-primary);
            }

            /* --- Language Switcher --- */
            .lang-switcher {
                position: relative;
                display: inline-block;
                margin-right: 20px;
                align-self: center;
            }

            .lang-btn {
                background: none;
                border: 1px solid var(--color-border);
                padding: 6px 12px;
                border-radius: 6px;
                cursor: pointer;
                font-size: 14px;
                font-weight: 600;
                color: var(--color-text);
                display: flex;
                align-items: center;
                gap: 5px;
                transition: all var(--transition-time);
            }

            .lang-btn:hover {
                border-color: var(--color-primary);
                color: var(--color-primary);
            }

            .lang-dropdown {
                position: absolute;
                top: 100%;
                right: 0;
                background: white;
                border: 1px solid var(--color-border);
                border-radius: 8px;
                box-shadow: 0 4px 12px var(--color-shadow);
                display: none;
                z-index: 1000;
                min-width: 80px;
                margin-top: 5px;
                overflow: hidden;
            }

            .lang-dropdown a {
                display: block;
                padding: 8px 15px;
                text-decoration: none;
                color: var(--color-text);
                font-size: 14px;
                transition: background var(--transition-time);
            }

            .lang-dropdown a:hover {
                background: var(--color-bg-light);
                color: var(--color-primary);
            }

            .lang-switcher.active .lang-dropdown {
                display: block;
            }

            @media (max-width: 768px) {
                .lang-switcher {
                    margin: 15px 0;
                    order: -1; 
                }
                .lang-dropdown {
                    right: 50%;
                    transform: translateX(50%);
                }
            }

            /* --- Footer --- */
            .main-footer {
                background: #253140; 
                padding: 40px 30px;
                border-top: 1px solid #3c4958; 
                color: #cbd5e1; 
                font-size: 14px;
            }

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

            .footer-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 30px;
                margin-bottom: 40px;
            }

            .footer-section h4 {
                color: white; 
                font-size: 16px;
                font-weight: 700;
                margin-bottom: 15px;
            }

            .footer-section ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .footer-section a {
                color: #cbd5e1; 
                text-decoration: none;
                line-height: 2.2;
                display: block;
                transition: color var(--transition-time);
            }

            .footer-section a:hover {
                color: var(--color-accent);
            }

            .footer-bottom {
                text-align: center;
                padding-top: 20px;
                border-top: 1px solid #3c4958;
            }

            .social-icons {
                display: flex; 
                gap: 15px; 
                margin-top: 10px; 
            }

            .social-icons a {
                display: inline-block; 
                line-height: 1;
                margin: 0;
                padding: 0;
                color: #cbd5e1; 
                font-size: 24px; 
                transition: color var(--transition-time), transform var(--transition-time);
            }

            .social-icons a:hover {
                color: var(--color-accent);
                transform: scale(1.2);
            }

            /* --- CTA Кнопки --- */
            .cta-button {
                display: inline-block;
                background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light)); 
                color: white; 
                padding: 18px 40px;
                border-radius: 50px;
                font-size: 1.2rem;
                font-weight: 700;
                text-decoration: none;
                transition: transform 0.2s, box-shadow 0.2s;
                box-shadow: 0 4px 20px rgba(255, 140, 0, 0.4);
                border: none;
                cursor: pointer;
            }

            .cta-button:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 30px rgba(255, 140, 0, 0.6);
            }

            .cta-button-secondary {
                background: white;
                color: var(--color-primary);
                border: 2px solid var(--color-primary);
                margin-left: 15px;
            }

            .cta-button-secondary:hover {
                background: var(--color-primary);
                color: white;
            }
            
            .robot-highlight {
                display: inline;
                box-decoration-break: clone;
                background-image: linear-gradient(
                    to bottom, 
                    transparent 50%, 
                    rgba(255, 140, 0, 0.3) 50%
                );
                background-repeat: no-repeat;
                background-position: 0 calc(100% + 2px); 
                background-size: 100% 12px; 
                border-radius: 40% 10% 20% 50% / 100%;
                padding-bottom: 2px;
            }

            .robot-highlight-heavy {
                font-weight: 700;
                display: inline;
                box-decoration-break: clone;
                background-image: linear-gradient(
                    to bottom, 
                    transparent 50%, 
                    rgba(255, 140, 0, 0.4) 50%
                );
                background-repeat: no-repeat;
                background-position: 0 calc(100% + 2px); 
                background-size: 100% 24px; 
                border-radius: 40% 10% 20% 50% / 100%;
                padding-bottom: 2px;
            }

            /* --- Hero Section --- */
            .hero-section {
                background: linear-gradient(135deg, #e0e7ff 0%, #f5f7fb 100%);
                padding: 120px 30px 100px;
                text-align: center;
                border-radius: 0 0 40px 40px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                position: relative;
                overflow: hidden;
            }

            .hero-section::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -10%;
                width: 500px;
                height: 500px;
                background: radial-gradient(circle, rgba(90, 64, 245, 0.1) 0%, transparent 70%);
                border-radius: 50%;
                animation: float 6s ease-in-out infinite;
            }

            .hero-section::after {
                content: '';
                position: absolute;
                bottom: -30%;
                left: -10%;
                width: 400px;
                height: 400px;
                background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
                border-radius: 50%;
                animation: float 8s ease-in-out infinite;
            }

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

            .hero-content {
                position: relative;
                z-index: 1;
            }

            .hero-section h1 {
                font-size: 3.5rem;
                color: var(--color-primary);
                margin-bottom: 20px;
                font-weight: 900;
                line-height: 1.1;
                max-width: 900px;
                margin-left: auto;
                margin-right: auto;
                animation: fadeInUp 0.8s ease-out;
            }

            .hero-section h1 i { 
                color: var(--color-primary);
                font-size: 3.5rem;
                vertical-align: middle;
                margin-right: 15px;
            }

            .hero-section p {
                font-size: 1.3rem;
                color: var(--color-text);
                max-width: 700px;
                margin: 0 auto 40px auto;
                line-height: 1.8;
                animation: fadeInUp 0.8s ease-out 0.2s backwards;
            }

            .hero-cta-group {
                display: flex;
                justify-content: center;
                gap: 15px;
                flex-wrap: wrap;
                animation: fadeInUp 0.8s ease-out 0.4s backwards;
            }

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

            /* --- Trust Badges --- */
            .trust-badges {
                display: flex;
                justify-content: center;
                gap: 30px;
                flex-wrap: wrap;
                margin-top: 40px;
                animation: fadeInUp 0.8s ease-out 0.6s backwards;
            }

            .trust-badge {
                display: flex;
                align-items: center;
                gap: 8px;
                color: var(--color-primary);
                font-weight: 600;
                font-size: 15px;
                background: white;
                padding: 10px 20px;
                border-radius: 50px;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            }

            .trust-badge i {
                font-size: 18px;
                color: var(--color-accent);
            }

            /* --- Stats Bar --- */
            .stats-bar {
                background: linear-gradient(90deg, #5A40F5, #7c5ff5, #FF8C00);
                color: white;
                padding: 40px 30px;
                margin: 60px 0;
            }

            .stats-container {
                max-width: 1200px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 40px;
                text-align: center;
            }

            .stat-item {
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.6s, transform 0.6s;
            }

            .stat-item.visible {
                opacity: 1;
                transform: translateY(0);
            }

            .stat-number {
                font-size: 3rem;
                font-weight: 900;
                display: block;
                margin-bottom: 10px;
            }

            .stat-label {
                font-size: 1.1rem;
                opacity: 0.9;
            }

            /* --- Advantages Section --- */
            .advantages-section {
                max-width: 1200px;
                margin: 80px auto;
                padding: 0 30px;
            }
            
            .advantages-section h2 {
                color: var(--color-text);
                margin-bottom: 50px;
                font-size: 36px;
            }

            .advantages-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 30px;
            }

            .advantage-card {
                background: #ffffff;
                padding: 35px;
                border-radius: 16px;
                box-shadow: 0 2px 10px var(--color-shadow);
                transition: transform 0.3s, box-shadow 0.3s;
                opacity: 0;
                transform: translateY(30px);
                border: 2px solid transparent;
            }

            .advantage-card.visible {
                opacity: 1;
                transform: translateY(0);
            }
            
            .advantage-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 12px 30px rgba(90, 64, 245, 0.15);
                border-color: var(--color-primary);
            }

            .advantage-card h3 {
                color: var(--color-primary);
                font-size: 20px;
                margin-bottom: 15px;
                display: flex;
                align-items: center;
                font-weight: 700;
            }
            
            .advantage-card h3 i { 
                font-size: 28px;
                margin-right: 12px;
                line-height: 1;
                background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .advantage-card p {
                line-height: 1.8;
                color: var(--color-text-light);
            }

            /* --- Why Us Block --- */
            .why-us-block {
                max-width: 1100px;
                margin: 100px auto;
                padding: 50px;
                background: linear-gradient(135deg, #5A40F5, #7c5ff5, #FF8C00);
                color: white;
                border-radius: 24px;
                text-align: center;
                box-shadow: 0 20px 50px rgba(90, 64, 245, 0.4);
                position: relative;
                overflow: hidden;
            }

            .why-us-block::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -20%;
                width: 400px;
                height: 400px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
            }
            
            .why-us-block h2 {
                color: white;
                font-size: 36px;
                margin-bottom: 25px;
                position: relative;
                z-index: 1;
            }

            .why-us-block h2 i {
                color: white;
            }
            
            .why-us-block p {
                font-size: 1.2rem;
                line-height: 1.9;
                margin-bottom: 35px;
                position: relative;
                z-index: 1;
            }

            /* --- FAQ Section --- */
            .faq-section {
                max-width: 1000px;
                margin: 100px auto;
                padding: 0 30px;
            }

            .faq-section h2 {
                color: var(--color-primary);
                margin-bottom: 50px;
                font-size: 36px;
            }

            .faq-container {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            .faq-item {
                background: #ffffff;
                border: 1px solid var(--color-border);
                border-radius: 12px;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
                overflow: hidden;
                transition: box-shadow var(--transition-time);
            }

            .faq-item:hover {
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            }

            .faq-question {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 20px 25px;
                cursor: pointer;
                font-weight: 700;
                color: var(--color-text);
                font-size: 17px;
                background: var(--color-bg-light); 
                border-bottom: 1px solid transparent;
                transition: background var(--transition-time);
            }

            .faq-item.active .faq-question {
                background: #e0e7ff; 
                color: var(--color-primary);
                border-bottom: 1px solid var(--color-border);
            }

            .faq-question i {
                color: var(--color-primary);
                transition: transform var(--transition-time);
                font-size: 18px;
            }

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

            .faq-answer {
                padding: 0 25px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease-out, padding 0.4s ease-out;
                color: var(--color-text-light);
            }

            .faq-item.active .faq-answer {
                max-height: 500px; 
                padding: 15px 25px 25px;
            }

            /* --- Modal Overlay --- */
            .modal-overlay {
                display: none;  
                position: fixed; 
                z-index: 1000; 
                left: 0; 
                top: 0; 
                width: 100%; 
                height: 100%; 
                background-color: rgba(0,0,0,0.6); 
                justify-content: center;
                align-items: center;
                opacity: 0;
                transition: opacity var(--transition-time);
            }

            .modal-overlay.active {
                display: flex;
                opacity: 1;
            }

            .form-wrapper.modal-content {
                margin: 0; 
                transform: translateY(-50px);
                transition: transform var(--transition-time);
                max-height: 90vh;
                overflow-y: auto;
            }

            .modal-overlay.active .form-wrapper.modal-content {
                transform: translateY(0);
            }

            .modal-close-btn {
                position: absolute; 
                top: 15px; 
                right: 25px; 
                font-size: 30px; 
                font-weight: bold; 
                color: var(--color-text-light); 
                cursor: pointer;
                transition: color 0.2s;
            }

            .modal-close-btn:hover {
                color: var(--color-error);
            }

            /* --- Sticky CTA --- */
            .sticky-cta {
                position: fixed;
                bottom: 20px;
                right: 20px;
                z-index: 99;
                opacity: 0;
                transform: translateY(100px);
                transition: opacity var(--transition-time), transform var(--transition-time);
            }

            .sticky-cta.visible {
                opacity: 1;
                transform: translateY(0);
            }

            .sticky-cta .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
                box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
            }

            /* --- Demo Chat Preview --- */
            .demo-chat-preview {
                max-width: 600px;
                margin: 60px auto;
                background: white;
                border-radius: 16px;
                padding: 25px;
                box-shadow: 0 10px 30px var(--color-shadow);
            }

            .chat-message {
                display: flex;
                gap: 15px;
                margin-bottom: 20px;
                animation: slideIn 0.5s ease-out;
            }

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

            .chat-message.user {
                flex-direction: row-reverse;
            }

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

            .chat-message.user {
                animation: slideInRight 0.5s ease-out;
            }

            .chat-avatar {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-weight: 700;
                flex-shrink: 0;
            }

            .chat-message.user .chat-avatar {
                background: linear-gradient(135deg, #64748b, #94a3b8);
            }

            .chat-bubble {
                background: var(--color-bg-light);
                padding: 12px 18px;
                border-radius: 16px;
                max-width: 70%;
            }

            .chat-message.robot .chat-bubble {
                background: linear-gradient(135deg, var(--color-primary), #7c5ff5);
                color: white;
                border-bottom-left-radius: 4px;
            }

            .chat-message.user .chat-bubble {
                background: white;
                border: 1px solid var(--color-border);
                border-bottom-right-radius: 4px;
            }

            /* --- Медиа Запросы --- */
            @media (max-width: 900px) {
                .hero-section h1 {
                    font-size: 2.2rem;
                }
                
                .hero-section {
                    padding: 80px 20px 60px;
                }

                .hero-section p {
                    font-size: 1.1rem;
                }

                .hero-cta-group {
                    flex-direction: column;
                    align-items: center;
                }

                .cta-button-secondary {
                    margin-left: 0;
                    margin-top: 10px;
                }

                .advantages-grid {
                    grid-template-columns: 1fr;
                }

                .stats-container {
                    grid-template-columns: 1fr;
                    gap: 30px;
                }

                .sticky-cta {
                    bottom: 10px;
                    right: 10px;
                }

                .sticky-cta .cta-button {
                    padding: 12px 24px;
                    font-size: 0.9rem;
                }

                .trust-badges {
                    gap: 15px;
                }

                .trust-badge {
                    font-size: 13px;
                }
            }

            @media (max-width: 768px) {
                .menu-toggle {
                    display: block; 
                }
                
                .main-nav {
                    position: absolute;
                    top: 61px; 
                    left: 0;
                    right: 0;
                    background: rgba(255, 255, 255, 0.98);
                    backdrop-filter: blur(10px);
                    border-top: 1px solid var(--color-border);
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                    z-index: 10;
                    display: none; 
                    padding: 10px 0;
                }
                
                .main-nav.active {
                    display: block; 
                }

                .main-nav ul {
                    flex-direction: column;
                    text-align: center;
                }

                .main-nav li {
                    margin: 0;
                }
                
                .main-nav a {
                    padding: 12px 20px;
                    display: block;
                    border-bottom: 1px solid var(--color-bg-light);
                }
            }