        :root {
            --emerald: #1c1c1c;
            --emerald-light: #2b2b2b;
            --ruby: #b8903c;
            --ruby-dark: #8a6a1f;
            --gold: #d4af37;
            --white: #ffffff;
            --scroll-progress: 0%;
            --telegram: #0088cc;
            --button-gradient: linear-gradient(135deg, #8a6a1f, #b8903c);
            --vk-color: #4c75a3;

            /* Переменные темы — тёмная по умолчанию (чёрно-золотая) */
            --bg-page: linear-gradient(135deg, #1a1a1a, #050505);
            --bg-section-alt: linear-gradient(135deg, #141414, #030303);
            --bg-section-mid: linear-gradient(135deg, #1f1f1f, #0a0a0a);
            --bg-card: rgba(255, 255, 255, 0.06);
            --bg-card-hover: rgba(212, 175, 55, 0.15);
            --border-card: rgba(212, 175, 55, 0.18);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.85);
            --text-muted: rgba(255, 255, 255, 0.6);
            --section-title-color: #ffffff;
            --stat-bg: rgba(255, 255, 255, 0.06);
            --stat-border: rgba(212, 175, 55, 0.18);
        }

        body.light-theme {
            --gold: #a8802e;
            --bg-page: #f7f1e3;
            --bg-section-alt: #f7f1e3;
            --bg-section-mid: #efe4c8;
            --bg-card: #ffffff;
            --bg-card-hover: #fbf2dc;
            --border-card: #e3d3a0;
            --text-primary: #201a10;
            --text-secondary: #423520;
            --text-muted: #7a6a4a;
            --section-title-color: #201a10;
            --stat-bg: #ffffff;
            --stat-border: #e3d3a0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        
        body {
            background: var(--bg-page);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            height: 5px;
            width: var(--scroll-progress);
            background: var(--ruby);
            z-index: 10000;
            transition: width 0.1s linear;
        }
        
        header {
            background: rgba(0, 0, 0, 0.7);
            position: fixed;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(10px);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 10px 5%;
            background: rgba(10, 10, 10, 0.95);
        }
        
        .logo {
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        
        .logo:hover {
            transform: translateY(-3px);
        }
        
        .logo-title {
            font-size: 1.05rem;
            font-weight: 700;
            margin-left: 10px;
            line-height: 1.2;
            max-width: 280px;
        }
        
        .logo-img {
            height: 48px;
            width: auto;
            display: block;
            transition: transform 0.4s ease;
        }

        .logo-img-light {
            display: none;
        }

        body.light-theme .logo-img-dark {
            display: none;
        }

        body.light-theme .logo-img-light {
            display: block;
        }

        .logo:hover .logo-img {
            transform: scale(1.07) rotate(-2deg);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin: 0 15px;
        }
        
        nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 6px 10px;
            border-radius: 30px;
            transition: all 0.4s ease;
            position: relative;
        }
        
        nav a:hover {
            color: var(--gold);
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--ruby);
            transition: width 0.3s ease;
            border-radius: 10px;
        }
        
        nav a:hover::after {
            width: 70%;
        }
        
        section {
            min-height: 100vh;
            padding: 100px 10% 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 30px;
            position: relative;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: inline-block;
            color: var(--section-title-color);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--ruby);
            border-radius: 10px;
        }
        
        .btn {
            background: var(--button-gradient);
            color: white;
            padding: 24.5px 49px;
            border: none;
            border-radius: 50px;
            font-size: 22.4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 5px 15px rgba(90, 56, 12, 0.4);
            margin-top: 30px;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transform: translateY(0);
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            transform: translateY(-7px) scale(1.05);
            box-shadow: 0 12px 30px rgba(90, 56, 12, 0.6);
        }
        
        .btn:active {
            transform: translateY(0) scale(0.98);
            box-shadow: 0 3px 10px rgba(90, 56, 12, 0.4);
        }
        
        .hero {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('hero-bg.jpg') no-repeat center center/cover;
            opacity: 0.15;
            mix-blend-mode: screen;
            z-index: 1;
        }
        
        .hero-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            z-index: 2;
            padding: 40px 20px;
        }
        
        .hero-content {
            text-align: center;
            margin: 0 auto;
            position: relative;
        }
        
        .hero-content h3 {
            font-size: 55px;
            font-weight: 400;
            margin-bottom: 10px;
            color: var(--white);
        }
        
        .hero-content h1 {
            font-size: clamp(3rem, 10vw, 8rem);
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 40px;
            color: var(--gold);
            letter-spacing: -2px;
            font-variant: small-caps;
            line-height: 1.1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .features{
             font-size: 28px;
             line-height: 32px;
             color: var(--gold);
             margin-bottom: 30px;
             font-weight: normal;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            width: 100%;
            margin-top: 50px;
            align-items: stretch;
        }
        
        .service-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 40px 30px;
            backdrop-filter: blur(10px);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid var(--border-card);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: perspective(1000px) rotateX(0) rotateY(0);
            transform-style: preserve-3d;
            opacity: 0;
            transform: translateY(20px);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
            background: var(--bg-card-hover);
        }
        
        .service-icon {
            font-size: 3.5rem;
            color: #ffe3bd;
            margin-bottom: 25px;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-icon {
            transform: rotate(10deg) scale(1.1);
        }
        
        .service-content {
            flex-grow: 1;
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--gold);
            line-height: 1.3;
        }
        
        .service-card p {
            margin-bottom: 25px;
        }
        
        .price-btn-container {
            margin-top: auto;
            padding-top: 15px;
            text-align: center;
        }
        
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            overflow: auto;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }
        
        .modal-content {
            background: linear-gradient(135deg, #101010, var(--emerald));
            margin: auto;
            padding: 40px;
            border-radius: 20px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            border: 3px solid var(--gold);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        
        .modal.active .modal-content {
            transform: scale(1);
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            color: var(--gold);
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.8;
            z-index: 10;
        }
        
        .close-modal:hover {
            color: var(--ruby);
            opacity: 1;
        }
        
        .modal-header {
            position: relative;
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
        }
        
        .modal-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }
        
        .modal-header h2 {
            font-size: 2.2rem;
            color: var(--gold);
            margin-bottom: 10px;
        }
        
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .price-card {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            padding: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.4s ease, border-color 0.4s ease;
        }
        
        .price-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
            z-index: 0;
        }
        
        .price-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 215, 0, 0.4);
        }
        
        .price-card h3 {
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 10px;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .price-amount {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--gold);
            text-align: center;
            margin: 20px 0;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .price-features {
            text-align: left;
            padding-left: 0;
            position: relative;
            z-index: 1;
            list-style: none;
        }
        
        .price-features li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 30px;
            line-height: 1.5;
        }
        
        .price-features li::before {
            content: '✓';
            color: var(--gold);
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .modal-disclaimer {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            margin-top: 20px;
            border: 1px dashed var(--gold);
            text-align: center;
        }
        
        .modal-disclaimer p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
        .lawyers-section {
            display: flex;
            flex-direction: column;
            gap: 80px;
            width: 100%;
            max-width: 1200px;
            margin-top: 50px;
        }
        
        .lawyer-block {
            display: flex;
            gap: 50px;
            align-items: center;
        }
        
        .lawyer-block.reverse {
            flex-direction: row-reverse;
        }
        
        .lawyer-info {
            flex: 1;
            text-align: left;
        }
        
        .lawyer-info h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--gold);
        }
        
        .lawyer-info p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.7;
        }
        
        .lawyer-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        
        .lawyer-image:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
        
        .lawyer-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .contact-container {
            display: flex;
            gap: 50px;
            max-width: 1200px;
            width: 100%;
            margin-top: 50px;
        }
        
        .contact-info {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--gold);
            text-align: center;
        }
        
        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 25px;
            width: 100%;
            text-align: center;
        }
        
        .contact-icon {
            font-size: 1.8rem;
            color: #ff6e71;
            margin-bottom: 10px;
        }
        
        .map-container {
            width: 100%;
            height: 500px;
            position: relative;
        }
        
        .map-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            z-index: 100;
            max-width: 300px;
            backdrop-filter: blur(5px);
            border: 1px solid var(--gold);
        }
        
        .map-overlay h3 {
            color: var(--gold);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .map-overlay p {
            margin: 5px 0;
            font-size: 0.95rem;
        }
        
        footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 40px 10%;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo {
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .footer-logo-img {
            height: 80px;
            width: auto;
            display: block;
        }

        .footer-logo::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--ruby);
            border-radius: 10px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
        }
        
        .footer-links a {
            color: var(--white);
            font-size: 1.2rem;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--ruby);
            border-radius: 10px;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .footer-links a:hover::after {
            transform: scaleX(1);
        }
        
        .footer-links a:hover {
            color: var(--ruby);
        }
        
        .footer-cities {
            margin-top: 20px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-cities a {
            color: var(--gold);
            text-decoration: none;
        }

        .footer-cities a:hover {
            text-decoration: underline;
        }

        .copyright {
            margin-top: 30px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes balance {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(5deg); }
75% { transform: rotate(-5deg); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            transition: all 0.4s ease;
            padding: 80px 20px 20px;
            backdrop-filter: blur(10px);
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu ul {
            list-style: none;
        }
        
        .mobile-menu li {
            margin-bottom: 20px;
            text-align: center;
        }
        
        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .mobile-menu a:hover {
            color: var(--gold);
        }
        
        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.8rem;
            color: var(--ruby);
            cursor: pointer;
            opacity: 0.8;
            z-index: 10;
        }
        
        .close-menu:hover {
            opacity: 1;
        }
        
        #scrollTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--ruby);
            color: white;
            border: none;
            cursor: pointer;
            display: none;
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        #scrollTopBtn:hover {
            transform: translateY(-5px) scale(1.1);
            background: var(--ruby-dark);
        }
        
        #telegram-widget {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--telegram);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            z-index: 1000;
            text-decoration: none;
            animation: float 3s ease-in-out infinite;
        }
        
        #telegram-widget:hover {
            transform: scale(1.1) rotate(10deg);
        }
        
        #email-widget {
            position: fixed;
            bottom: 170px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #d44638;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            z-index: 1000;
            text-decoration: none;
            animation: float 3s ease-in-out infinite 0.5s;
        }
        
        #email-widget:hover {
            transform: scale(1.1) rotate(10deg);
        }

        #vk-widget {
            position: fixed;
            bottom: 240px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--vk-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            z-index: 1000;
            text-decoration: none;
            animation: float 3s ease-in-out infinite 1s;
        }

        #vk-widget:hover {
            transform: scale(1.1) rotate(10deg);
        }
        
        .btn-pulse {
            animation: pulse 2s infinite;
        }
        
        .price-btn {
            background: linear-gradient(135deg, #8a6a1f, #b8903c);
            color: var(--white);
            padding: 10px 25px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            height: 45px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .price-btn:hover {
            background: none;
            border: 1px solid #8a6a1f;
            transform: translateY(-3px);
        }
        
        .process-section {
            background: var(--bg-section-alt);
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            max-width: 1000px;
            margin: 60px auto 0;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            padding: 0 15px;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--button-gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .step h3 {
            color: var(--gold);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .step p {
            font-size: 1rem;
            line-height: 1.5;
        }
        
        .stats-section {
            background: var(--bg-section-mid);
            padding: 80px 10%;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px;
            background: var(--stat-bg);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid var(--stat-border);
            transition: transform 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--gold);
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--white);
        }
        
        .stat-prefix {
            font-size: 1.5rem;
            color: var(--gold);
            margin-right: 5px;
        }

        .tools-teaser-section {
            padding: 50px 10%;
            display: flex;
            justify-content: center;
            min-height: 0;
        }

        .tools-teaser-card {
            width: 100%;
            max-width: 900px;
            display: flex;
            align-items: center;
            gap: 24px;
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: 20px;
            padding: 30px 40px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .tools-teaser-icon {
            font-size: 2.2rem;
            color: var(--gold);
            flex-shrink: 0;
        }

        .tools-teaser-text { flex: 1; }

        .tools-teaser-text h3 {
            font-size: 1.15rem;
            color: var(--gold);
            margin-bottom: 6px;
        }

        .tools-teaser-text p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .tools-teaser-card .btn {
            margin-top: 0;
            flex-shrink: 0;
            padding: 14px 28px;
            font-size: 1rem;
        }

        @media (max-width: 700px) {
            .tools-teaser-card {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }
        }

        .trust-section {
            background: var(--bg-section-alt);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
            width: 100%;
            max-width: 1100px;
        }

        .trust-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 40px 30px;
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-card);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }

        .trust-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: var(--bg-card-hover);
        }

        .trust-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .trust-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--gold);
        }

        .trust-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .knowledge-section {
            background: var(--bg-section-alt);
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
            width: 100%;
            max-width: 1200px;
        }
        
        .article-card {
            background: var(--bg-card);
            border-radius: 15px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-card);
            transition: all 0.3s ease;
            text-align: center;
            cursor: default;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .article-content {
            padding: 25px;
        }
        
        .article-card h3 {
            color: var(--gold);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .article-card p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .read-more {
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .read-more:hover {
            gap: 10px;
        }
        
        .page-nav {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }
        
        .nav-dot.active {
            background: var(--gold);
            transform: scale(1.3);
        }
        
        .consultation-modal-content {
            text-align: center;
            padding: 30px;
        }
        
        .consultation-buttons {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin: 30px 0;
        }
        
        .consultation-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            padding: 18px 25px;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .consultation-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .consultation-btn.telegram {
            background: var(--telegram);
        }
        
        .consultation-btn.email {
            background: #d44638;
        }
        
        .consultation-btn i {
            font-size: 1.8rem;
        }
        
        /* Стили для форматирования статей */
        .article-content h4 {
            color: var(--gold);
            margin: 20px 0 10px;
            font-size: 1.3rem;
        }
        
        .article-content ul {
            margin: 15px 0;
            padding-left: 20px;
        }
        
        .article-content li {
            margin-bottom: 8px;
            line-height: 1.5;
        }
        
        .article-content strong {
            color: var(--gold);
        }
        
        .article-content .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            margin: 25px 0;
        }
        
        .article-content .highlight {
            background: rgba(253, 216, 167, 0.1);
            border-left: 4px solid var(--gold);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .article-content .conclusion {
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid var(--gold);
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            text-align: center;
        }
        
        .article-content .conclusion h4 {
            margin-top: 0;
        }
        
        /* НОВЫЕ СТИЛИ ДЛЯ СЕКЦИИ ОТЗЫВОВ */
        .reviews-section {
            background: var(--bg-section-alt);
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
            width: 100%;
            max-width: 1200px;
        }
        
        .review-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-card);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .review-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .review-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 5rem;
            color: rgba(253, 216, 167, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: var(--bg-card-hover);
        }
        
        .review-text {
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .review-author {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            position: relative;
            z-index: 2;
        }
        
        .author-name {
            font-weight: 600;
            color: var(--gold);
            font-size: 1.1rem;
        }
        
        .review-source {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(0, 0, 0, 0.3);
            padding: 5px 10px;
            border-radius: 15px;
        }
        
        .vk-cta {
            grid-column: 1 / -1;
            text-align: center;
            background: rgba(76, 117, 163, 0.2);
            border: 2px dashed var(--vk-color);
            border-radius: 20px;
            padding: 40px;
            margin-top: 20px;
        }
        
        .vk-cta p {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--gold);
        }
        
        .btn-vk {
            background: var(--vk-color);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
        }

        .yandex-reviews-block {
            width: 100%;
            max-width: 900px;
            margin: 50px auto 0;
        }

        .yandex-reviews-label {
            font-size: 1.1rem;
            color: var(--gold);
            margin-bottom: 20px;
            text-align: center;
        }

        .yandex-reviews-widget {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        }

        .btn-vk:hover {
            background: #3a5a7a;
            transform: translateY(-5px);
        }
        
        /* СТИЛИ ДЛЯ СЕКЦИИ КЕЙСОВ */
        .cases-section {
            background: var(--bg-section-alt);
        }
        
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 50px;
            width: 100%;
            max-width: 1200px;
            align-items: stretch;
        }
        
        .case-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-card);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            /* Фиксированная структура через flex */
            display: flex;
            flex-direction: column;
        }
        
        .case-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .case-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: rgba(212, 175, 55, 0.3);
        }
        
        .case-card h3 {
            color: var(--gold);
            font-size: 1.3rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
            line-height: 1.4;
            /* Фиксированная высота для заголовка — 3 строки */
            min-height: 3.9em;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .case-result {
            display: inline-block;
            background: rgba(253, 216, 167, 0.2);
            color: var(--gold);
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            border: 1px solid rgba(253, 216, 167, 0.3);
            position: relative;
            z-index: 2;
            font-size: 0.9rem;
            /* Фиксированная высота */
            min-height: 36px;
            display: flex;
            align-items: center;
            align-self: flex-start;
        }
        
        .case-result.positive {
            background: rgba(76, 175, 80, 0.2);
            color: #a5d6a7;
            border-color: rgba(76, 175, 80, 0.3);
        }
        
        .case-description {
            line-height: 1.7;
            position: relative;
            z-index: 2;
            /* Ограничиваем высоту описания — 5 строк */
            display: -webkit-box;
            -webkit-line-clamp: 5;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
            font-size: 0.95rem;
        }
        
        .case-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
            /* Всегда прижата к низу */
            flex-shrink: 0;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--gold);
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Адаптация для мобильных устройств */
        @media (max-width: 1200px) {
            .section-title { font-size: 2.5rem; }
            .hero-content h1 { font-size: 3.5rem; }
            .process-steps { flex-direction: column; gap: 40px; }
            .process-steps::before { display: none; }
        }
        
        @media (max-width: 992px) {
            nav ul { display: none; }
            .mobile-menu-btn { display: block; }
            .logo { flex-shrink: 1; min-width: 0; }
            .logo-title { min-width: 0; }
            .hero-content h1 { font-size: 3rem; }
            .section-title { font-size: 2.2rem; }
            .services-grid { grid-template-columns: 1fr; }
            .lawyer-block { flex-direction: column; text-align: center; gap: 30px; }
            .lawyer-info { text-align: center; }
            .lawyer-info p { text-align: center; }
            .lawyer-image { max-width: 500px; margin: 0 auto; }
            #telegram-widget { bottom: 100px; right: 20px; }
            #email-widget { bottom: 170px; right: 20px; }
            #vk-widget { bottom: 240px; right: 20px; }
            .hero-features { flex-direction: column; gap: 20px; }
            .page-nav { display: none; }
            .article-content { padding: 20px; }
            .article-content h4 { font-size: 1.2rem; }
            .article-content ul { padding-left: 15px; }
            .reviews-grid, .cases-grid { grid-template-columns: 1fr; }
            .review-author { flex-direction: column; align-items: flex-start; }
            .review-source { align-self: flex-end; }
            .contact-container { flex-direction: column; gap: 30px; }
        }
        
        @media (max-width: 768px) {
            section { padding: 100px 5% 50px; }
            .hero-content h1 { font-size: 2.5rem; }
            .section-title { font-size: 2rem; }
            .btn { padding: 12px 30px; font-size: 1rem; }
            .contact-info { padding: 25px; }
            .map-container { height: 400px; }
            .map-overlay { max-width: 250px; padding: 12px 20px; bottom: 15px; left: 15px; }
            .map-overlay h3 { font-size: 1.1rem; }
            #telegram-widget, #email-widget, #vk-widget { width: 50px; height: 50px; font-size: 1.5rem; }
            #telegram-widget { bottom: 100px; }
            #email-widget { bottom: 160px; }
            #vk-widget { bottom: 220px; }
            .modal-content { padding: 30px 20px; }
            .price-cards { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .articles-grid { grid-template-columns: 1fr; }
            .features { font-size: 24px; line-height: 28px; }
            .article-content .highlight { padding: 12px 15px; }
            .article-content .conclusion { padding: 15px; }
            .reviews-section, .cases-section { padding: 100px 5% 50px; }
            .review-card, .case-card { padding: 25px; }
            .case-stats { flex-direction: column; gap: 15px; }
            .vk-cta { padding: 30px 20px; }
        }
        
        @media (max-width: 576px) {
            header { padding: 12px 5%; }
            .logo-title { font-size: 1.3rem; }
            .hero { padding: 100px 5% 50px; }
            .hero-content h1 { font-size: 2.2rem; }
            .hero-content h3 { font-size: 1.5rem; }
            .section-title { font-size: 1.7rem; }
            .lawyer-info h2 { font-size: 2rem; }
            .btn { padding: 10px 25px; font-size: 1rem; }
            .footer-links { flex-wrap: wrap; gap: 15px; }
            .map-container { height: 350px; }
            .map-overlay { max-width: 200px; padding: 10px 15px; bottom: 10px; left: 10px; }
            .map-overlay h3 { font-size: 1rem; }
            .map-overlay p { font-size: 0.85rem; }
            #scrollTopBtn { width: 40px; height: 40px; bottom: 20px; right: 20px; }
            #telegram-widget { bottom: 100px; right: 15px; }
            #email-widget { bottom: 160px; right: 15px; }
            #vk-widget { bottom: 220px; right: 15px; }
            .stat-number { font-size: 2.5rem; }
            .step-number { width: 60px; height: 60px; font-size: 1.5rem; }
            .features { font-size: 20px; line-height: 24px; }
            .consultation-btn { padding: 15px 20px; font-size: 1.1rem; }
            .consultation-btn i { font-size: 1.5rem; }
            .article-content { padding: 15px; }
            .article-content h4 { font-size: 1.1rem; }
            .reviews-grid, .cases-grid { grid-template-columns: 1fr; }
            .review-text { font-size: 1rem; }
            .case-card h3 { font-size: 1.3rem; }
        }
        
        @media (max-width: 480px) {
            .btn { max-width: calc(100% - 70px); white-space: normal; }
            .section-title { font-size: 1.5rem; }
            .service-card, .price-card { padding: 30px 20px; }
            .service-icon { font-size: 2.8rem; }
            .service-card h3, .price-card h3 { font-size: 1.5rem; }
            .modal-header h2 { font-size: 1.8rem; }
            .price-amount { font-size: 1.8rem; }
            .contact-container { flex-direction: column; gap: 30px; }
            .logo-title { font-size: 1.1rem; }
            .lawyer-info h2 { font-size: 1.8rem; }
            .price-btn { padding: 8px 20px; font-size: 0.95rem; }
            .hero-content h1 { font-size: 2rem; }
            .stats-grid { grid-template-columns: 1fr; }
            .features { font-size: 18px; line-height: 22px; }
            .article-content { padding: 16px; }
            .articles-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
            .contact-form { padding: 25px; }
        }

        /* ── Skip-link ── */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--ruby);
            color: white;
            padding: 8px 16px;
            z-index: 10001;
            font-weight: 600;
            transition: top 0.2s;
            text-decoration: none;
        }
        .skip-link:focus { top: 0; }

        /* ── Форма обратной связи ── */
        .contact-form {
            flex: 1;
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: var(--gold);
            text-align: center;
        }
        .form-group { margin-bottom: 18px; }
        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.85);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s, background 0.3s;
            outline: none;
            -webkit-appearance: none;
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--gold);
            background: rgba(255,255,255,0.18);
        }
        .form-group input.error,
        .form-group textarea.error { border-color: #ff6e71; }
        .form-group select option { background: #101010; color: white; }
        .form-group textarea { resize: vertical; min-height: 110px; }
        .form-submit-btn {
            width: 100%;
            background: var(--button-gradient);
            color: white;
            padding: 14px;
            border: none;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
        }
        .form-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(90,56,12,0.5); }
        .form-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
        .form-status {
            margin-top: 14px;
            padding: 12px 16px;
            border-radius: 10px;
            text-align: center;
            font-size: 0.95rem;
            display: none;
        }
        .form-status.success  { background: rgba(76,175,80,0.25);  border: 1px solid rgba(76,175,80,0.4);  color: #a5d6a7; display: block; }
        .form-status.error-msg{ background: rgba(255,110,113,0.2); border: 1px solid rgba(255,110,113,0.35); color: #ff9a9b; display: block; }
        /* ── FAQ аккордеон ── */
        .faq-section { background: var(--bg-section-alt); }
        .faq-list {
            width: 100%;
            max-width: 900px;
            margin-top: 50px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .faq-item {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .faq-item.open {
            border-color: rgba(253,216,167,0.4);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: var(--white);
            font-family: inherit;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: left;
            padding: 22px 28px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            transition: color 0.3s ease;
        }
        .faq-item.open .faq-question { color: var(--gold); }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(253,216,167,0.15);
            border: 1px solid rgba(253,216,167,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.4s ease, background 0.3s ease;
            font-size: 0.9rem;
            color: var(--gold);
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            background: rgba(253,216,167,0.25);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 28px;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 28px 22px;
        }
        .faq-answer p {
            line-height: 1.75;
            color: rgba(255,255,255,0.85);
            font-size: 1rem;
        }
        .faq-answer a { color: var(--gold); text-decoration: underline; }
        .faq-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 20px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .faq-tag.civil    { background: rgba(100,180,255,0.2); color: #90caf9; }
        .faq-tag.family   { background: rgba(255,150,150,0.2); color: #ef9a9a; }
        .faq-tag.military { background: rgba(150,200,120,0.2); color: #a5d6a7; }
        .faq-tag.general  { background: rgba(253,216,167,0.2); color: var(--gold); }
        @media (max-width: 768px) {
            .faq-question { font-size: 1rem; padding: 18px 20px; }
            .faq-answer { padding: 0 20px; }
            .faq-item.open .faq-answer { padding: 0 20px 18px; }
        }

        /* ══════════════════════════════════════════
           СВЕТЛАЯ ТЕМА — единая палитра (чёрно-золотой бренд)
           Фон: #f7f1e3  Текст: #201a10
           Акцент/золото: #a8802e
        ══════════════════════════════════════════ */
        

        /* Шапка */
        body.light-theme header {
            background: rgba(255,255,255,0.97);
            box-shadow: 0 2px 16px rgba(0,0,0,0.1);
        }
        body.light-theme header.scrolled { background: rgba(255,255,255,0.99); }
        body.light-theme .logo-title { color: #201a10; }
        body.light-theme nav a { color: #423520; }
        body.light-theme nav a:hover { color: #a8802e; }
        body.light-theme #theme-toggle {
            background: rgba(160, 120, 40, 0.08);
            border-color: rgba(160, 120, 40, 0.2);
            color: #423520;
        }
        body.light-theme #theme-toggle:hover { background: rgba(160, 120, 40, 0.14); }

        /* Заголовки и подписи секций */
        body.light-theme .section-title { color: #201a10; text-shadow: none; }
        body.light-theme .section-title::after { background: #a8802e; }
        body.light-theme section > p { color: #5a4d38; }

        /* Герой */
        body.light-theme .hero-content h3 { color: #423520; }
        body.light-theme .hero-content h1 { color: #a8802e; }
        body.light-theme .features { color: #423520; }

        /* Все карточки — единый стиль (фон берут из var(--bg-card) в базовых правилах) */
        body.light-theme .contact-info,
        body.light-theme .contact-form,
        body.light-theme .faq-item { background: var(--bg-card); }

        body.light-theme .service-card:hover,
        body.light-theme .review-card:hover,
        body.light-theme .case-card:hover { background: var(--bg-card-hover); }

        /* Доверие */
        body.light-theme .trust-icon { color: #a8802e; }
        body.light-theme .trust-card h3 { color: #a8802e; }
        body.light-theme .trust-card p { color: #5a4d38; }

        /* Услуги */
        body.light-theme .service-card h3 { color: #a8802e; }
        body.light-theme .service-card p { color: #5a4d38; }
        body.light-theme .service-icon { color: #a8802e; }
        body.light-theme .price-btn {
            background: linear-gradient(135deg, #a8802e, #c9a24a);
            color: #fff;
        }
        body.light-theme .price-btn:hover {
            border: 1px solid #a8802e;
            color: #a8802e;
            background: none;
        }

        /* Процесс — единый светлый фон */
        
        body.light-theme .step { color: #201a10; }
        body.light-theme .step-number {
            background: linear-gradient(135deg, #a8802e, #c9a24a);
            color: #fff;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }
        body.light-theme .step h3 { color: #a8802e; }
        body.light-theme .step p { color: #423520; }
        body.light-theme .process-steps::before { background: rgba(212, 175, 55, 0.2); }

        /* Статистика — оставляем тёмной для контраста */
        body.light-theme .stats-section .section-title { color: #201a10; }
        body.light-theme .stats-section > p { color: #5a4d38; }
        body.light-theme .stat-number { color: #a8802e; }
        body.light-theme .stat-prefix { color: #a8802e; }
        body.light-theme .stats-section .stat-label { color: #5a4d38; }

        /* Юристы */
        body.light-theme .lawyer-info h2 { color: #a8802e; }
        body.light-theme .lawyer-info p { color: #423520; }

        /* Статьи */
        
        
        
        body.light-theme .article-card h3 { color: #a8802e; }
        body.light-theme .article-card p { color: #5a4d38; }
        body.light-theme .read-more { color: #a8802e; }

        /* Отзывы и кейсы */
        body.light-theme .reviews-section,
        body.light-theme .cases-section { color: #201a10; }
        body.light-theme .reviews-section .section-title,
        body.light-theme .cases-section .section-title,
        body.light-theme .faq-section .section-title,
        body.light-theme .process-section .section-title { color: #201a10; }
        body.light-theme .reviews-section > p,
        body.light-theme .cases-section > p,
        body.light-theme .faq-section > p,
        body.light-theme .process-section > p { color: #5a4d38; }
        body.light-theme .author-name { color: #a8802e; }
        body.light-theme .review-source {
            background: rgba(212, 175, 55, 0.1);
            color: #a8802e;
        }
        body.light-theme .stars { color: #c8860a; }
        body.light-theme .review-text { color: #423520; }
        body.light-theme .case-card h3 { color: #a8802e; }
        body.light-theme .case-description { color: #5a4d38; }
        body.light-theme .stat-value { color: #a8802e; }
        body.light-theme .stat-label { color: #5a4d38; }
        body.light-theme .case-stats { border-top-color: #e3d3a0; }
        body.light-theme .case-result { background: rgba(253,216,167,0.2); color: #a8802e; border-color: rgba(138,92,26,0.3); }
        body.light-theme .case-result.positive { background: rgba(212, 175, 55, 0.1); color: #a8802e; border-color: rgba(212, 175, 55, 0.3); }

        /* FAQ */
        
        
        
        body.light-theme .faq-item:hover { border-color: #a8802e; box-shadow: 0 4px 16px rgba(160, 120, 40, 0.12); }
        body.light-theme .faq-item.open { border-color: #a8802e; }
        body.light-theme .faq-question { color: #201a10; }
        body.light-theme .faq-question span { color: #201a10; }
        body.light-theme .faq-item.open .faq-question span,
        body.light-theme .faq-question:hover span { color: #a8802e; }
        body.light-theme .faq-icon { color: #a8802e; }
        body.light-theme .faq-answer p { color: #5a4d38; border-left-color: #a8802e; }

        /* Контакты */
        body.light-theme .contact-info h3,
        body.light-theme .contact-form h3 { color: #a8802e; }
        body.light-theme .contact-info h4 { color: #423520; }
        body.light-theme .contact-info p,
        body.light-theme .contact-info a { color: #5a4d38; }
        body.light-theme .contact-icon { color: #a8802e; }
        body.light-theme .form-group label { color: #423520; }
        body.light-theme .form-group input,
        body.light-theme .form-group textarea,
        body.light-theme .form-group select {
            background: #fdf8ec;
            border-color: #e3d3a0;
            color: #201a10;
        }
        body.light-theme .form-group input::placeholder,
        body.light-theme .form-group textarea::placeholder { color: #a89878; }
        body.light-theme .form-group input:focus,
        body.light-theme .form-group textarea:focus,
        body.light-theme .form-group select:focus {
            border-color: #a8802e;
            background: #fbf2dc;
        }
        body.light-theme .form-group select option { background: #fff; color: #201a10; }
        body.light-theme .form-group input.error,
        body.light-theme .form-group textarea.error { border-color: #e05a5a; }
        body.light-theme .consent-text { color: #423520 !important; }
        body.light-theme #consent-box { background: rgba(160, 120, 40, 0.08) !important; border-color: rgba(160, 120, 40, 0.3) !important; }

        /* Карта */
        body.light-theme .map-overlay {
            background: rgba(255,255,255,0.97);
            color: #201a10;
            border-color: #e3d3a0;
        }
        body.light-theme .map-overlay h3 { color: #a8802e; }
        body.light-theme .map-overlay p { color: #5a4d38; }

        /* Модалки */
        body.light-theme .modal-content {
            background: #fdf8ec;
            color: #201a10;
        }
        body.light-theme .modal-header h2 { color: #a8802e; }
        body.light-theme .modal-header p { color: #5a4d38; }
        body.light-theme .modal-header::after { background: linear-gradient(90deg, transparent, #a8802e, transparent); }
        body.light-theme .price-card {
            background: #ffffff;
            border-color: rgba(212, 175, 55, 0.2);
            color: #201a10;
        }
        body.light-theme .price-card h3,
        body.light-theme .price-amount { color: #a8802e; }
        body.light-theme .price-features li { color: #423520; }
        body.light-theme .price-features li::before { color: #a8802e; }
        body.light-theme .modal-disclaimer {
            background: rgba(212, 175, 55, 0.05);
            border-color: #e3d3a0;
            color: #5a4d38;
        }
        body.light-theme .close-modal { color: #a8802e; }
        body.light-theme .close-modal:hover { color: #a8802e; }

        /* Консультация модалка */
        body.light-theme .consultation-btn.telegram { background: linear-gradient(135deg, #0077b5, #0088cc); }
        body.light-theme .consultation-btn.email { background: linear-gradient(135deg, #b53a2a, #d44638); }

        /* Статья модалка */
        body.light-theme .article-content { color: #423520; }
        body.light-theme .article-content h4 { color: #a8802e; }
        body.light-theme .article-content .highlight {
            background: rgba(212, 175, 55, 0.06);
            border-left-color: #a8802e;
            color: #201a10;
        }
        body.light-theme .article-content .conclusion {
            background: rgba(212, 175, 55, 0.05);
            border-color: #e3d3a0;
            color: #423520;
        }
        body.light-theme .article-content .divider { background: #e3d3a0; }

        /* ВК блок */
        body.light-theme .vk-cta {
            background: rgba(76,117,163,0.08);
            border-color: rgba(76,117,163,0.2);
            color: #201a10;
        }

        /* Боковые точки */
        body.light-theme .nav-dot { background: rgba(160, 120, 40, 0.2); }
        body.light-theme .nav-dot.active { background: #a8802e; }

        /* Мобильное меню */
        body.light-theme .mobile-menu {
            background: rgba(255,255,255,0.98);
        }
        body.light-theme .mobile-menu a { color: #201a10; border-bottom-color: #e3d3a0; }
        body.light-theme .mobile-menu a:hover { color: #a8802e; }
        body.light-theme .close-menu { color: #a8802e; }

        /* Прогресс-бар */
        body.light-theme body::before { background: #a8802e; }

        /* Футер */
        body.light-theme footer { background: #201a10; }
        body.light-theme .footer-logo { color: #fdd8a7; }
        body.light-theme footer h3 { color: #fff; }
        body.light-theme footer > .footer-content > p { color: rgba(255,255,255,0.75); }
        body.light-theme .footer-links a { color: rgba(255,255,255,0.8); }
        body.light-theme .footer-links a:hover { color: #fdd8a7; }
        body.light-theme .copyright { color: rgba(255,255,255,0.5); }

        /* ── Кнопка переключения темы ── */
        #theme-toggle {
            background: rgba(255,255,255,0.15);
            border: 1.5px solid rgba(255,255,255,0.25);
            border-radius: 50px;
            padding: 6px 12px;
            color: white;
            cursor: pointer;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }
        #theme-toggle:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-1px);
        }
        body.light-theme #theme-toggle {
            background: rgba(160, 120, 40, 0.1);
            border-color: rgba(160, 120, 40, 0.25);
            color: #201a10;
        }

