.containerR {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.blue-border {    
	padding: 80px 20px;
    border-radius: 12px;
    border: 3px solid #1a73e8;
	}
	
	
/* Hero Section */
.hero-section {
	background: #f5f7fa;
	padding: 80px 20px;
	text-align: center;
}

.hero-inner {
	max-width: 900px;
	margin: 0 auto;
}

.brand-badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	letter-spacing: 1px;
}

.product-name {
	font-size: 24px;
	font-weight: 700;
	color: #1a73e8;
}

.version-badge {
	background: #1a73e8;
	color: white;
	padding: 4px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
}

.hero-section h1 {
	font-size: 52px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 20px;
	line-height: 1.2;
	letter-spacing: -1.5px;
}

.hero-tagline {
	font-size: 22px;
	color: #475569;
	margin-bottom: 50px;
	font-weight: 500;
	line-height: 1.6;
}

/* Benefits Row */
.benefits-row {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 50px;
	flex-wrap: nowrap;
}

.benefit-chip {
	background: white;
	padding: 13px 28px;
	border-radius: 25px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.benefit-chip:hover {
	border-color: #1a73e8;
	transform: scale(1.05);
	box-shadow: 0 8px 24px rgba(26, 115, 232, 0.2);
}

.benefit-chip .icon {
	font-size: 24px;
}

.benefit-chip .text {
	font-size: 15px;
	font-weight: 700;
	color: #1e293b;
}

/* CTA Buttons */
.cta-group {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.btn-primary {
	background: #1a73e8;
	color: white !important;
	padding: 16px 40px;
	border: 2px solid #1a73e8;
	border-radius: 25px;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn-primary:hover {
	background: #fff !important;
	color: #1a73e8 !important;
	transform: translateY(-2px);
	box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
	text-decoration: none !important;
}

.btn-secondary {
	background: white !important;
	color: #1a73e8 !important;
	padding: 16px 40px;
	border: 2px solid #1a73e8;
	border-radius: 25px;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s 
	ease !important;
	text-decoration: none !important;
	display: inline-block !important;
}

.btn-secondary:hover {
	background: #1a73e8 !important;
	color: white !important;
}

/* Trust Bar */
.trust-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	padding-top: 30px;
	border-top: 1px solid #cbd5e1;
	flex-wrap: wrap;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #495565;
	font-size: 14px;
	font-weight: 600;
}



/* Stats Section */
.stats-section {
	padding: 60px 20px;
	background: #f8f9fa;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.stat-card {
	text-align: center;
	padding: 30px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: transform 0.3s;
}

.stat-card:hover {
	transform: translateY(-5px);
}

.stat-number {
	font-size: 3em;
	font-weight: 700;
	color: #1a73e8;
	margin-bottom: 10px;
}

.stat-label {
	font-size: 1.1em;
	color: #666;
}

/* Section Styles */
.section {
	padding: 80px 20px;
}

.section-white {
	background: white;
}

.section-gray {
	background: #f8f9fa;
}

.section-title {
	text-align: center;
	font-size: 2.6em;
	margin-bottom: 20px;
	color: #3b3c3c;
	font-weight: 700;
}

.section-subtitle {
	text-align: center;
	font-size: 1.2em;
	color: #666;
	margin-bottom: 60px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Benefits Grid */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.benefit-card {
	background: white;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	border-left: 5px solid #1a73e8;
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
	/*height: 100%;*/
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(26,115,232,0.2);
}

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

.benefit-icon {
	width: 60px;
	height: 60px;
	min-width: 60px;
	background: #1a73e8;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.8em;
}



.benefit-card h3 {
	font-size: 1.6em;
	color: #3b3c3c;
	margin: 0;
}

.benefit-card p {
	color: #666;
	line-height: 1.8;
	font-size: 1.05em;
	flex-grow: 1;
}

.benefit-highlight {
	background: #eff6ff;
	padding: 15px;
	border-radius: 8px;
	margin-top: 15px;
	font-weight: 600;
	color: #186cda;
	
}
/* Virtual Machine */
.top-bar {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 35px;
            padding-bottom: 25px;
			justify-content: center;
            /*border-bottom: 3px solid #1a73e8;*/
        }
		
.icon-large {
            font-size: 4em;
            background: linear-gradient(135deg, #1a73e8 0%, #4c8efc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
		
.badge-row {
            display: flex;
            gap: 12px;
            margin-top: 12px;
            flex-wrap: wrap;
			justify-content: center;
        }
        
.badge-pill {
            background: #eff6ff;
            color: #11509C;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
			letter-spacing: 2px;
            border: 1px solid #1a73e8;
        }		


/* Screenshot Section */
.screenshot-section {
	padding: 80px 20px;
	background: white;
}

.screenshot-container {
	max-width: 1000px;
	margin: 50px auto 0;
	border-radius: 12px;
	overflow: hidden;
	/*box-shadow: 0 20px 60px rgba(0,0,0,0.15);*/
}

/* File Types Grid */
    .file-types-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-top: 40px;
    }
    
    .file-type-category {
        background: #f8f9fa;
        padding: 25px 20px;
        border-radius: 8px;
        text-align: center;
        border: 2px solid transparent;
        transition: all 0.3s;
    }
    
    .file-type-category:hover {
        border-color: #1a73e8;
        background: white;
        box-shadow: 0 5px 15px rgba(26,115,232,0.2);
    }
    
    .file-type-icon {
        font-size: 3em;
        margin-bottom: 15px;
    }
    
    .file-type-category h4 {
        font-size: 1.3em;
        color: #1a73e8;
        margin-bottom: 10px;
        font-weight: 700;
    }
      .file-type-category h3 {
        font-size: 1.3em;
        color: #1a73e8;
        margin-bottom: 10px;
        font-weight: 700;
    }  
    .file-type-category p {
        color: #666;
        font-size: 0.9em;
        line-height: 1.4;
    }

/* RAID Grid */
.raid-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
	margin-top: 40px;
	max-width: 1000px;
	margin: 0 auto;
}

.raid-card {
	background: #f8f9fa;
	padding: 30px 20px;
	border-radius: 8px;
	text-align: center;
	border: 2px solid transparent;
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
	/*height: 100%;*/
}

.raid-card:hover {
	border-color: #1a73e8;
	background: white;
	box-shadow: 0 5px 15px rgba(26,115,232,0.2);
	
}

.raid-card h4 {
	font-size: 1.8em;
	color: #1a73e8;
	margin-bottom: 10px;
	font-weight: 700;
}

.raid-card p {
	color: #666;
	font-size: 0.95em;
	flex-grow: 1;
	margin-bottom: 10px;
}

.raid-card .learn-more-link {
	margin-top: auto;
}

.learn-more-link {
	display: inline-block;
	margin-top: 10px;
	color: #1a73e8;
	text-decoration: none;
	font-size: 0.9em;
}

.learn-more-link:hover {
	text-decoration: underline;
}

.learn-more-link::after {
	content: "→";
}

.raid-card:hover {
	border-color: #667eea;
	background: white;
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.raid-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.raid-card-link h4 {
	position: relative;
	display: inline-block;
	transition: color 0.3s;
}

.raid-card-link h4::after {
	content: "→";
	position: absolute;
	right: -25px;
	opacity: 0;
	transition: all 0.3s;
	color: #1a73e8;
}
.raid-card-link:hover h4 {
	color: #1a73e8;
}

.raid-card-link:hover h4::after {
	opacity: 1;
	right: -30px;
}

.raid-title {
	font-size: 1.8em;
	color: #1a73e8;
	margin-bottom: 10px;
	font-weight: 700;
	display: block;
}

.raid-card-link .raid-title {
	position: relative;
	display: inline-block;
	transition: color 0.3s;
}

.raid-card-link .raid-title::after {
	content: "→";
	position: absolute;
	right: -25px;
	opacity: 0;
	transition: all 0.3s;
	color: #1a73e8;
}

.raid-card-link:hover .raid-title {
	color: #1a73e8;
}

.raid-card-link:hover .raid-title::after {
	opacity: 1;
	right: -30px;
}



/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.feature-card {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: transform 0.3s;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.feature-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	background: #1a73e8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5em;
}

.feature-card h3 {
	font-size: 1.4em;
	color: #3b3c3c;
	margin: 0;
}

.feature-card p {
	color: #666;
	line-height: 1.8;
}

/* Resources Grid */
.resources-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.resource-category {
	background: white;
	border-radius: 12px;
	padding: 40px 30px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s;
	border-top: 4px solid #1a73e8;
}

.resource-category:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(26,115,232,0.15);
}

.resource-icon {
	width: 70px;
	height: 70px;
	background: #1a73e8;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	color: white;
	margin-bottom: 25px;
}

.resource-category h3 {
	font-size: 1.6em;
	color: #3b3c3c;
	margin-bottom: 15px;
}

.resource-category p {
	color: #666;
	margin-bottom: 25px;
	line-height: 1.6;
}

.resource-links {
	list-style: none;
	margin-bottom: 20px;
}

.resource-links li {
	margin-bottom: 12px;
}

.resource-links a {
	color: #1a73e8;
	text-decoration: none;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s;
	padding: 8px 0;
	font-size: 15px;
}

.resource-links a:hover {
	color: #0069b2;
	padding-left: 10px;
}

.resource-links a::before {
	content: "→";
	font-weight: 700;
}

.supported-systems {
	padding: 80px 20px;
	background: #f8f9fa;
}

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

.system-category {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.system-category h3 {
	font-size: 1.6em;
	color: #2c3e50;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 3px solid #667eea;
}

.system-list {
	list-style: none;
}

.system-list li {
	padding: 12px 0;
	color: #666;
	border-bottom: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.system-list li::before {
	content: "✓";
	color: #2ecc71;
	font-weight: 700;
	font-size: 1.2em;
}

.system-list .learn-more-link {
	margin-left: auto;
	font-size: 0.85em;
}

.system-link {
	color: #666;
	text-decoration: none;
	position: relative;
	transition: color 0.3s;
	display: inline-block;
}

.system-link::after {
	content: "→";
	position: absolute;
	right: -20px;
	opacity: 0;
	transition: all 0.3s;
	color: #667eea;
	font-weight: 700;
}

.system-link:hover {
	color: #667eea;
}

.system-link:hover::after {
	opacity: 1;
	right: -25px;
}

/* Steps */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.step {
	text-align: center;
}

.step-number {
	width: 80px;
	height: 80px;
	background: #1a73e8;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	font-weight: 700;
	margin: 0 auto 20px;
	box-shadow: 0 5px 20px rgba(26,115,232,0.3);
}

.step h3 {
	font-size: 1.5em;
	margin-bottom: 15px;
	color: #3b3c3c;
}

.step p {
	color: #666;
	line-height: 1.8;
}

/* Comparison Table */
.comparison-table {
	max-width: 1000px;
	margin: 50px auto 0;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.comparison-table table {
	width: 100%;
	border-collapse: collapse;
}

.comparison-table th {
	background: #1a73e8;
	color: white;
	padding: 20px;
	text-align: left;
	font-size: 1.1em;
}

.comparison-table td {
	padding: 20px;
	border-bottom: 1px solid #f0f0f0;
}

.comparison-table tr:hover {
	background: #f8f9fa;
}

.check-mark2 {
	color: #2ecc71;
	font-size: 1.5em;
	font-weight: 700;
}

.cross-mark {
	color: #e74c3c;
	font-size: 1.5em;
}

.table-wrapper {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch; /* плавная прокрутка на iOS */
	margin: 50px 0 0;
}

.comparison-table {
	max-width: 1000px;
	margin: 0 auto;
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
	min-width: 600px; /* минимальная ширина таблицы */
}

/* Подсказка о прокрутке - показываем только на маленьких экранах */
.table-scroll-hint {
	display: none;
	text-align: center;
	color: #666;
	font-size: 0.9em;
	margin-top: 15px;
	font-style: italic;
}

/* Стили для скроллбара (для WebKit браузеров) */
.table-wrapper::-webkit-scrollbar {
	height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb {
	background: #1a73e8;
	border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
	background: #0069b2;
}


@media (max-width: 768px) {
	.comparison-table {
		min-width: 500px; 
	}
	
	.table-scroll-hint {
		display: block;
	}
}

@media (max-width: 480px) {
	.comparison-table {
		min-width: 450px; 
	}
	
	.comparison-table th,
	.comparison-table td {
		padding: 15px 10px;
		font-size: 0.9em; 
	}
	
	.comparison-table th {
		font-size: 0.95em;
	}
}

@media (max-width: 320px) {
	.comparison-table {
		min-width: 400px; 
	}
	
	.comparison-table th,
	.comparison-table td {
		padding: 12px 8px;
		font-size: 0.85em;
	}
	
	.check-mark2,
	.cross-mark {
		font-size: 1.2em; 
	}
}

/* Brands */
.brands-section {
	padding: 60px 20px;
	background: #f8f9fa;
	text-align: center;
	
}

.brands-title {
	font-size: 1.5em;
	color: #666;
	margin-bottom: 40px;
}

.brands-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	align-items: center;
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

.brand-logo {
	padding: 20px;
	border-radius: 8px;
	font-weight: 600;
	color: #1a73e8;
	font-size: 1.2em;
	text-align: center;
	letter-spacing: 1.5px;
	transition: all 0.3s;
	background: white;
	
}

.brand-logo:hover {
	background: #1a73e8;
	color: white;
	transform: scale(1.05);
}

/* Final CTA */
.final-cta {
	background: #1a73e8;
	color: white;
	padding: 100px 20px;
	text-align: center;
	max-width: 1200px;
	margin: 2% auto;
	border-radius: 25px;
	width: 80%;
}

.final-cta-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.final-cta-icon {
	width: 80px;
	height: 80px;
	background: white;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3em;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s;
}

.final-cta-title {
	font-size: 2em;
	font-weight: 700;
	letter-spacing: 1px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.final-cta h2 {
	font-size: 2.8em;
	color: white;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.final-cta p {
	font-size: 1.4em;
	margin-bottom: 40px;
	opacity: 0.95;
}

.final-cta .btn-primary {
	background: white;
	color: #1a73e8  !important;
	border-color: white;
}

.final-cta .btn-primary:hover {
	background: #f0f0f0;
	border-color: #f0f0f0;
}

.final-cta .btn-secondary {
	background: transparent;
	border-color: white;
	color: white;
}

.final-cta .btn-secondary:hover {
	background: white;
	color: #1a73e8;
	text-decoration: none;
}


/* Use Cases Section */
.use-cases {
	padding: 80px 20px;
	background: white;
}

.use-cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.use-case-card {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 35px;
	transition: all 0.3s;
	border-left: 5px solid #1a73e8;
	position: relative;
	overflow: hidden;
}

.use-case-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, rgba(26,115,232,0.1) 0%, rgba(26,115,232,0.05) 100%);
	/*background: linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.1) 100%);*/
	border-radius: 0 0 0 100%;
}

.use-case-card:hover {
	
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(26,115,232,0.2);
	background: #fff;
}

.use-case-number {
	width: 50px;
	height: 50px;
	/*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
	background: linear-gradient(135deg, #1a73e8 0%, #4c8efc 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5em;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
	min-width: 50px;
}

.use-case-card h3 {
	font-size: 1.5em;
	color: #2c3e50;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.use-case-scenario {
	color: #e74c3c;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 0.95em;
	position: relative;
	z-index: 1;
}

.use-case-scenario::before {
	content: "⚠️";
	margin-right: 8px;
}

.use-case-description {
	color: #666;
	line-height: 1.8;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.use-case-solution {
	background: white;
	padding: 15px;
	border-radius: 8px;
	border-left: 3px solid #2ecc71;
	margin-top: 15px;
	position: relative;
	z-index: 1;
}

.use-case-solution strong {
	color: #2ecc71;
	display: block;
	margin-bottom: 8px;
}

.use-case-solution p {
	color: #666;
	font-size: 0.95em;
	line-height: 1.6;
	margin: 0;
}

/*tabordion*/		
.tabordion section{
	height: 165px !important;
}
.tabordion section article{
	top: -20px !important;
}
.tabordion section label {
	margin: 2% 0;
}

/*slider*/
.raid-slider {
	max-width: 1200px;
	margin: 80px auto 0;
	text-align: center;
}

.raid-slider h2 {
	color: #003366;
	margin-bottom: 30px;
}

/* Основной контейнер */
.slider {
	position: relative;
	width: 100%;
	height: 540px;
	overflow: hidden;
	border-radius: 10px;
	padding-bottom: 5%;
	/*background: #f7f8fa;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
}

/* Скрываем radio */
.slider input[type="radio"] {
	display: none;
}

/* Слайды */
.slides {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.8s ease;
}
.slide {
	width: 100%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slide img {
	max-width: 100%;
	max-height: 540px;
	height: auto;
	object-fit: contain;
}

/* Навигационные точки */
.navigation {
	position: absolute;
	bottom: 18px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}
.navigation label {
	width: 14px;
	height: 14px;
	background: #ccc;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s;
}
.navigation label:hover {
	background: #999;
}

/* Активные точки */
#slide1:checked ~ .navigation label[for="slide1"],
#slide2:checked ~ .navigation label[for="slide2"],
#slide3:checked ~ .navigation label[for="slide3"],
#slide4:checked ~ .navigation label[for="slide4"] {
	background: #1a73e8;
	transform: scale(1.2);
}

/* Перемещение слайдов */
#slide1:checked ~ .slides { transform: translateX(0%); }
#slide2:checked ~ .slides { transform: translateX(-100%); }
#slide3:checked ~ .slides { transform: translateX(-200%); }
#slide4:checked ~ .slides { transform: translateX(-300%); }

/* Стрелки */
.arrows {
	position: absolute;
	top: 50%;
	left: 10px;
	right: 10px;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	pointer-events: none; /* чтобы стрелки не перекрывали точки */
}
.arrow {
	font-size: 36px;
	color: #1a73e8;
	background: rgba(255,255,255,0.8);
	border-radius: 50%;
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	cursor: pointer;
	pointer-events: all; /* включает клики */
	transition: all 0.3s ease;
}
.arrow:hover {
	background: #1a73e8;
	color: #fff;
	transform: scale(1.1);
}

/* Отображаем только стрелки для текущего слайда */
#slide1:checked ~ .arrows label[for="slide4"].left,
#slide1:checked ~ .arrows label[for="slide2"].right,
#slide2:checked ~ .arrows label[for="slide1"].left,
#slide2:checked ~ .arrows label[for="slide3"].right,
#slide3:checked ~ .arrows label[for="slide2"].left,
#slide3:checked ~ .arrows label[for="slide4"].right,
#slide4:checked ~ .arrows label[for="slide3"].left,
#slide4:checked ~ .arrows label[for="slide1"].right {
	display: block;
}
.arrows label {
	display: none;
}
.raid-slider-tips {text-align: center; margin-top: 40px;}



.comparison-table th{
	text-align: center;
}
.section{
	padding: 80px 10px;
}
.tabordion section label {
	height: auto !important;
}
.final-cta-header{
	flex-direction: column;
}

@media (max-width: 1024px) {
	.tabordion section {  height: 115px !important;}
}


@media (max-width: 900px) {
	.containerR{
		padding: 5px;
	}
	.hero-section{
		padding: 40px 20px;
	}
	.slider {
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 10px 0 25px;
	}
	.slides {
		width: 100%;
		height: auto;
	}
	.slide img {
		max-height: 449px;
	}
	
	/* Размещаем стрелки и навигацию ПОД изображением */
	.arrows {
		order: 2; /* после slides */
		margin-top: 16px;
	}
	.navigation {
		order: 3;
		margin-top: 10px;
		bottom: 0px;
	}
}




@media (max-width: 768px) {
	.tabordion section {  height: auto !important;}
	

	.hero-section h1 {
		font-size: 36px;
	}
	
	.hero-tagline {
		font-size: 18px;
	}
	
	.section-title {
		font-size: 2em;
	}
	
	.benefits-grid,
	.features-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	
	.benefit-chip {
		flex-direction: column;
		text-align: center;
	}
}




@media (max-width: 645px) {
	.slider{padding: 10px 0 40px;}
	.navigation{ bottom: 15px;	}
	.arrows {margin-top: 0px; top: 95%;}
	.systems-grid, .resources-grid, .use-cases-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	.benefits-row {flex-wrap: wrap;}
	.raid-slider {margin: auto 0;}
	
}

@media (max-width: 445px) {
	.slider{padding: 10px 0 0px;}
}

@media (max-width: 320px) {
	.navigation {bottom: 135px;}
	.slide {align-items: flex-start;}
	.arrows {top: 70%;}
	.raid-slider-tips {text-align: center; margin-top: 0px;}
}