        :root {
            --bg-primary: #F7F8FA;
            --bg-secondary: rgba(255, 255, 255, 0.9);
            --text-primary: #3c4052;
            --text-secondary: rgba(74, 79, 101, 0.85);
            --text-tertiary: rgba(74, 79, 101, 0.45);
            --border-light: rgba(0, 0, 0, 0.06);
            --border-medium: rgba(0, 0, 0, 0.12);
            --accent-primary: #7EB6E3;
            --accent-secondary: #65A9DD;
            --gradient-primary: linear-gradient(135deg, #7EB6E3 0%, #65A9DD 100%);
            --gradient-subtle: linear-gradient(180deg, rgba(126, 182, 227, 0.05) 0%, rgba(126, 182, 227, 0) 100%);
            --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --ease-premium: cubic-bezier(0.33, 1, 0.68, 1);
            --success-color: #4CAF50;
            --danger-color: #FF5252;
            --warning-color: #FFC107;
        }

        body.night-mode {
            --bg-primary: #0e1116;
            --bg-secondary: rgba(26, 26, 31, 0.95);
            --text-primary: rgba(255, 255, 255, 0.95);
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-tertiary: rgba(255, 255, 255, 0.45);
            --border-light: rgba(255, 255, 255, 0.1);
            --border-medium: rgba(255, 255, 255, 0.15);
            --gradient-subtle: linear-gradient(180deg, rgba(126, 182, 227, 0.08) 0%, rgba(126, 182, 227, 0) 100%);
            --gradient-hero: linear-gradient(135deg, rgba(126, 182, 227, 0.15) 0%, rgba(101, 169, 221, 0.1) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            -webkit-font-smoothing: antialiased;
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            transition: background 0.4s ease, color 0.3s ease;
        }

        /* Заголовок страницы */
        .page-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: var(--bg-primary);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 60px;
            border-bottom: 1px solid var(--border-light);
            transition: background 0.3s ease;
        }

        .header-logo {
            width: 80px;
            height: 40px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .header-logo:hover {
            opacity: 1;
        }

        .header-logo svg {
            width: 100%;
            height: 100%;
        }

        /* Переключатель темы */
        .theme-toggle {
            width: 72px;
            height: 36px;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px) saturate(150%);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            border-radius: 36px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 
                0 4px 16px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .theme-toggle:hover {
            transform: translateY(-1px);
            box-shadow: 
                0 6px 20px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
        }

        .theme-toggle.night-mode {
            background: linear-gradient(135deg, rgba(20, 20, 35, 0.4) 0%, rgba(40, 40, 70, 0.3) 100%);
            border-color: rgba(100, 120, 255, 0.15);
            box-shadow: 
                0 4px 16px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(100, 120, 255, 0.05);
        }

        .toggle-slider {
            position: absolute;
            top: 50%;
            left: 4px;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform: translateY(-50%);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .theme-toggle.night-mode .toggle-slider {
            transform: translateX(36px) translateY(-50%);
            background: linear-gradient(135deg, #2a2a3e 0%, #1e1e2e 100%);
        }

        .sun-icon, .moon-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
        }

        .sun-icon {
            width: 18px;
            height: 18px;
            opacity: 1;
        }

        .theme-toggle.night-mode .sun-icon {
            opacity: 0;
            transform: translate(-50%, -50%) rotate(180deg) scale(0.5);
        }

        .moon-icon {
            width: 14px;
            height: 14px;
            opacity: 0;
            transform: translate(-50%, -50%) rotate(-180deg) scale(0.5);
        }

        .theme-toggle.night-mode .moon-icon {
            opacity: 1;
            transform: translate(-50%, -50%) rotate(0deg) scale(1);
        }

        .sun-icon svg, .moon-icon svg {
            width: 100%;
            height: 100%;
        }

        .sun-icon svg circle {
            fill: #FFC107;
        }

        .sun-icon svg line {
            stroke: #FFC107;
            stroke-width: 2;
            stroke-linecap: round;
        }

        .moon-icon svg {
            fill: #b8b8d0;
        }

        /* Основной контейнер */
        .page-container {
            padding-top: 60px;
            min-height: 100vh;
            background: var(--bg-primary);
        }

        /* Hero секция с поддержкой темной темы */
        .hero-section {
            position: relative;
            height: 500px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-hero);
        }

        body.night-mode .hero-section {
            border-bottom: 1px solid rgba(126, 182, 227, 0.2);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            opacity: 0.1;
        }

        body.night-mode .hero-bg {
            opacity: 0.05;
        }

        .hero-bg::before,
        .hero-bg::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
        }

        body.night-mode .hero-bg::before,
        body.night-mode .hero-bg::after {
            background: radial-gradient(circle, rgba(126, 182, 227, 0.3) 0%, transparent 70%);
        }

        .hero-bg::before {
            width: 600px;
            height: 600px;
            top: -300px;
            right: -100px;
            animation: float 20s ease-in-out infinite;
        }

        .hero-bg::after {
            width: 400px;
            height: 400px;
            bottom: -200px;
            left: -100px;
            animation: float 20s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(-30px, -30px) scale(1.1); }
            66% { transform: translate(30px, -20px) scale(0.9); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            padding: 0 40px;
        }

        .hero-badge {
            display: inline-block;
            padding: 12px 28px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            border-radius: 30px;
            margin-bottom: 32px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: fadeInDown 0.8s ease forwards;
        }

        body.night-mode .hero-badge {
            background: rgba(126, 182, 227, 0.15);
            border-color: rgba(126, 182, 227, 0.3);
            color: var(--text-primary);
        }

        .hero-title {
            font-size: clamp(48px, 7vw, 80px);
            font-weight: 200;
            letter-spacing: -0.03em;
            line-height: 1.1;
            color: white;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }

        body.night-mode .hero-title {
            color: var(--text-primary);
        }

        .hero-subtitle {
            font-size: clamp(18px, 2.5vw, 24px);
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            animation: fadeInUp 0.8s ease 0.4s forwards;
            opacity: 0;
        }

        body.night-mode .hero-subtitle {
            color: var(--text-secondary);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Секция акций */
        .promotions-section {
            padding: 100px 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Карточка акции */
        .promotion-card {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            margin-bottom: 60px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.5s var(--ease-premium);
            position: relative;
        }

        .promotion-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        body.night-mode .promotion-card {
            background: var(--bg-secondary);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        /* Верхняя часть карточки с изображением */
        .promotion-header {
            position: relative;
            height: 320px;
            background: var(--gradient-primary);
            overflow: hidden;
        }

        .promotion-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
            z-index: 1;
        }

        .promotion-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .promotion-card:hover .promotion-image {
            transform: scale(1.08);
        }

        /* Статус акции */
        .promotion-status {
            position: absolute;
            top: 32px;
            left: 32px;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .status-badge {
            padding: 10px 20px;
            background: var(--danger-color);
            color: white;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border-radius: 24px;
            box-shadow: 0 4px 12px rgba(255, 82, 82, 0.3);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .status-live {
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* Информация об акции в шапке */
        .promotion-header-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            z-index: 2;
            color: white;
        }

        .promotion-title {
            font-size: 32px;
            font-weight: 300;
            line-height: 1.3;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .promotion-period {
            font-size: 15px;
            opacity: 0.9;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .period-icon {
            width: 16px;
            height: 16px;
        }

        /* Контент карточки */
        .promotion-content {
            padding: 48px;
        }

        .promotion-description {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        /* Детали акции */
        .promotion-details {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 40px;
        }

        .detail-item {
            text-align: center;
            padding: 24px;
            background: var(--bg-primary);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .detail-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .detail-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            padding: 12px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .detail-icon svg {
            width: 24px;
            height: 24px;
            stroke: white;
            stroke-width: 2;
            fill: none;
        }

        .detail-value {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .detail-label {
            font-size: 13px;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Действия */
        .promotion-actions {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .btn-primary {
            flex: 1;
            padding: 18px 32px;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border: none;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-primary:hover::before {
            width: 400px;
            height: 400px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(126, 182, 227, 0.3);
        }

        .btn-secondary {
            padding: 18px 32px;
            background: transparent;
            color: var(--accent-primary);
            text-decoration: none;
            border: 2px solid var(--accent-primary);
            border-radius: 14px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-secondary:hover {
            background: var(--accent-primary);
            color: white;
            transform: translateY(-2px);
        }

        .offer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .offer-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .offer-title {
            font-size: 40px;
            font-weight: 200;
            color: var(--text-primary);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .offer-subtitle {
            font-size: 17px;
            line-height: 1.6;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .offer-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 60px;
        }

		.feature-card {
			background: var(--bg-secondary);
			border: 1px solid var(--border-light);
			border-radius: 20px;
			padding: 40px 32px;
			text-align: center;
			transition: all 0.4s var(--ease-premium);
			position: relative;
			overflow: hidden; /* Важно для обрезки полосы */
		}

		.feature-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			height: 3px;
			background: var(--gradient-primary);
			transform: scaleX(0);
			transition: transform 0.4s ease;
			border-radius: 20px 20px 0 0; /* Закругление только сверху */
		}

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(126, 182, 227, 0.15);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 24px;
            background: var(--gradient-subtle);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: var(--gradient-primary);
            transform: scale(1.1) rotate(5deg);
        }

        .feature-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--accent-primary);
            transition: stroke 0.3s ease;
        }

        .feature-card:hover .feature-icon svg {
            stroke: white;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .feature-text {
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        .offer-action {
            text-align: center;
        }

        .btn-offer {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            padding: 20px 40px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.3px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-offer::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-offer:hover::before {
            width: 500px;
            height: 500px;
        }

        .btn-offer:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 32px rgba(126, 182, 227, 0.3);
        }

        .btn-offer svg {
            transition: transform 0.3s ease;
        }

        .btn-offer:hover svg {
            transform: translateX(4px);
        }

        /* Кнопка обратного звонка */
        .call-me-btn {
            position: fixed;
			bottom: 120px;
			right: 24px;
			width: 64px;
			height: 64px;
            padding: 0;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            color: #fff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.4s var(--ease-premium);
            box-shadow: 
                0 10px 30px rgba(101, 169, 221, 0.3),
                0 20px 60px rgba(101, 169, 221, 0.15);
            z-index: 100;
            animation: breathe 4s ease-in-out infinite;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes breathe {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .call-me-btn::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-primary), transparent, var(--accent-secondary));
            opacity: 0;
            animation: rotateGlow 3s linear infinite;
            z-index: -1;
        }

        @keyframes rotateGlow {
            0% { transform: rotate(0deg); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: rotate(360deg); opacity: 0; }
        }

        .call-me-btn svg {
            width: 28px;
            height: 28px;
            fill: none;
            stroke: #fff;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: all 0.3s ease;
        }

        .call-me-btn:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 
                0 15px 40px rgba(101, 169, 221, 0.4),
                0 25px 70px rgba(101, 169, 221, 0.2);
        }

        /* Модальное окно */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s var(--ease-premium);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-container {
            width: 90%;
            max-width: 400px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
            border-radius: 18px;
            padding: 32px 28px 28px;
            position: relative;
            transform: scale(0.9) translateY(30px);
            transition: all 0.4s var(--ease-premium);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.2),
                0 10px 30px rgba(0, 0, 0, 0.1);
        }

        body.night-mode .modal-container {
            background: linear-gradient(135deg, rgba(20, 20, 30, 0.98), rgba(30, 30, 40, 0.95));
        }

        .modal-overlay.active .modal-container {
            transform: scale(1) translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: transparent;
            border: 1px solid rgba(0, 0, 0, 0.15);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s var(--ease-premium);
        }

        .modal-close:hover {
            background: rgba(0, 0, 0, 0.08);
            transform: rotate(90deg);
        }

        .modal-close svg {
            width: 14px;
            height: 14px;
            stroke: #1a1a1a;
            stroke-width: 1.5;
        }

        body.night-mode .modal-close {
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.night-mode .modal-close:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        body.night-mode .modal-close svg {
            stroke: #fff;
        }

        .modal-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .modal-title {
            font-size: 26px;
            font-weight: 400;
            color: #0d0d0d;
            margin-bottom: 4px;
            letter-spacing: -0.5px;
        }

        body.night-mode .modal-title {
            color: #ffffff;
            font-weight: 300;
        }

        .modal-subtitle {
            font-size: 12px;
            color: #2a2a2a;
            letter-spacing: 0.2px;
            font-weight: 400;
        }

        body.night-mode .modal-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
        }

        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .form-group {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 400;
            color: #1a1a1a;
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.12);
            border-radius: 8px;
            transition: all 0.3s var(--ease-premium);
            outline: none;
        }

        body.night-mode .form-input {
            background: rgba(255, 255, 255, 0.03);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.08);
            font-weight: 300;
        }

        .form-input:focus {
            background: #fff;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(101, 169, 221, 0.1);
        }

        body.night-mode .form-input:focus {
            background: rgba(255, 255, 255, 0.05);
        }

        .form-input::placeholder {
            color: #6a6a6a;
            font-weight: 300;
        }

        body.night-mode .form-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .form-label {
            position: absolute;
            top: -8px;
            left: 12px;
            padding: 0 4px;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.2px;
            color: var(--accent-primary);
            background: linear-gradient(to bottom, transparent 50%, white 50%);
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s var(--ease-premium);
            pointer-events: none;
        }

        body.night-mode .form-label {
            background: linear-gradient(to bottom, transparent 50%, rgba(20, 20, 30, 0.98) 50%);
        }

        .form-input:focus + .form-label,
        .form-input:not(:placeholder-shown) + .form-label {
            opacity: 1;
            transform: translateY(0);
        }

        .form-agreements {
            margin: 12px 0 6px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .agreement-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .agreement-checkbox {
            width: 16px;
            height: 16px;
            min-width: 16px;
            cursor: pointer;
            position: relative;
            appearance: none;
            background: rgba(0, 0, 0, 0.03);
            border: 2px solid rgba(0, 0, 0, 0.2);
            border-radius: 3px;
            transition: all 0.3s var(--ease-premium);
        }

        body.night-mode .agreement-checkbox {
            background: rgba(255, 255, 255, 0.02);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .agreement-checkbox:hover {
            border-color: var(--accent-primary);
        }

        .agreement-checkbox:checked {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-color: var(--accent-primary);
        }

        .agreement-checkbox:checked::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 3px;
            height: 6px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: translate(-50%, -60%) rotate(45deg);
        }

        .agreement-checkbox:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(101, 169, 221, 0.1);
        }

        .agreement-label {
            font-size: 10px;
            line-height: 1.3;
            color: #2a2a2a;
            font-weight: 400;
            cursor: pointer;
            user-select: none;
        }

        body.night-mode .agreement-label {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 300;
        }

        .agreement-link {
            color: var(--accent-primary);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
            display: inline;
            font-weight: 500;
        }

        .agreement-link:hover {
            color: var(--accent-secondary);
            border-bottom-color: var(--accent-secondary);
        }

        .agreement-checkbox.error {
            border-color: #e74c3c;
            animation: shake 0.5s ease;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .recaptcha-container {
            margin: 12px 0;
            display: flex;
            justify-content: center;
            transform: scale(0.85);
            transform-origin: center;
        }

        .form-submit {
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            color: #fff;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.6px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s var(--ease-premium);
            margin-top: 2px;
            position: relative;
            overflow: hidden;
        }

        .form-submit::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .form-submit:hover::before {
            width: 400px;
            height: 400px;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(101, 169, 221, 0.3);
        }

        .form-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .form-message {
            margin-top: 10px;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 400;
            text-align: center;
            display: none;
        }

        .form-message.success {
            background: rgba(76, 175, 80, 0.1);
            color: #2e7d32;
            border: 1px solid rgba(76, 175, 80, 0.2);
            display: block;
        }

        .form-message.error {
            background: rgba(244, 67, 54, 0.1);
            color: #c62828;
            border: 1px solid rgba(244, 67, 54, 0.2);
            display: block;
        }

        /* Мобильные стили */
        .site-header {
            display: none;
        }

		@media (max-width: 768px) {
			.site-header {
				display: flex;
				align-items: center;
				justify-content: space-between;
				position: fixed;
				top: 0;
				left: 0;
				right: 0;
				height: 60px;
				padding: 0 20px;
				background: var(--bg-primary);
				border-bottom: 1px solid var(--border-light);
				z-index: 1000;
			}

			body:not(.night-mode) .site-header {
				background: #E8EBF0;
			}

			.mobile-logo {
				width: 48px;
				height: 24px;
				opacity: 0.9;
			}
			
			.mobile-logo svg {
				width: 100%;
				height: 100%;
			}

			.burger {
				margin-left: auto;
			}

			.page-header {
				display: none;
			}

			.main-navigation {
				display: none;
			}

			.page-container {
				padding-top: 60px;
			}

			.hero-section {
				height: 400px;
			}

			.promotions-section {
				padding: 60px 20px;
			}

			.promotion-header {
				height: 280px; /* Увеличено с 240px */
			}

			/* Исправление бэйджа "Акция" */
			.promotion-status {
				top: 16px;
				left: 16px;
				gap: 8px;
			}

			.status-badge {
				padding: 6px 14px;
				font-size: 10px;
				letter-spacing: 0.06em;
			}

			.status-live {
				width: 6px;
				height: 6px;
			}

			.promotion-header-info {
				padding: 24px 20px;
			}

			.promotion-title {
				font-size: 24px;
				margin-bottom: 8px;
			}

			.promotion-period {
				font-size: 13px;
			}

			.period-icon {
				width: 14px;
				height: 14px;
			}

			.promotion-content {
				padding: 32px 24px;
			}

			.promotion-details {
				grid-template-columns: 1fr;
				gap: 16px;
			}

			.promotion-actions {
				flex-direction: column;
			}

			.btn-primary,
			.btn-secondary {
				width: 100%;
			}

			.special-offer-section {
				padding: 60px 20px;
			}
			
			.offer-title {
				font-size: 32px;
			}
			
			.offer-features {
				grid-template-columns: 1fr;
				gap: 20px;
			}
			
			.feature-card {
				padding: 32px 24px;
			}
			
			.btn-offer {
				width: 100%;
				justify-content: center;
			}

            .call-me-btn {
                right: 20px;
                bottom: 90px;
				width: 56px;
				height: 56px;
            }

			.theme-toggle-mobile {
				position: fixed;
				top: 16px;
				right: 80px;
				z-index: 1001;
				width: 55px;
				height: 28px;
			}

			.theme-toggle-mobile .toggle-slider {
				width: 22px;
				height: 22px;
				left: 3px;
			}

			.theme-toggle-mobile.night-mode .toggle-slider {
				transform: translateX(25px) translateY(-50%);
			}
		}
				
		/* Секция акций */
		.promotions-section {
			padding: 40px 25px 10px;
			max-width: 1200px;
			margin: 0 auto;
		}

		/* Специальное предложение - отдельная секция */
		.special-offer-section {
			padding: 50px 25px;
			background: var(--gradient-subtle);
		}

		.mobile-header-logo {
			width: 52px;
			height: 26px;
			opacity: 0.85;
			transition: opacity 0.3s ease;
		}

		.mobile-header-logo:hover {
			opacity: 1;
		}

		.site-header__brand {
			padding-top: 5px;
		}