/* RESET и ОБЩИЕ СТИЛИ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

/* КНОПКИ */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #3498db;
    color: white;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
}

.btn-primary:hover {
    background-color: #2980b9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background-color: #2ecc71;
    color: white;
    box-shadow: 0 4px 6px rgba(46, 204, 113, 0.2);
}

.btn-secondary:hover {
    background-color: #27ae60;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(46, 204, 113, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background-color: #3498db;
    color: white;
}

/* ШАПКА САЙТА */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: #34495e;
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contacts {
    display: flex;
    align-items: center;
}

.header-contacts a {
    color: white;
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.header-contacts a i {
    margin-right: 5px;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-actions a {
    color: white;
    margin-left: 15px;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

/* НАВИГАЦИОННОЕ МЕНЮ - МОБИЛЬНАЯ ВЕРСИЯ */
/* Мобильная кнопка меню */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c3e50;
    background: transparent;
    border: none;
    padding: 10px;
    transition: color 0.3s;
    z-index: 1001;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    color: #3498db;
}

/* Основная навигация */
.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li {
    position: relative;
    margin-left: 25px;
}

.main-nav > ul > li:first-child {
    margin-left: 0;
}

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    position: relative;
}

/* Эффект подчеркивания только для ссылок первого уровня */
.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.main-nav > ul > li > a:hover::after {
    width: 100%;
}

/* Подменю и выпадающие меню */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    width: 480px;
    min-width: 250px;
    max-width: 95vw;
    box-sizing: border-box;
}

.dropdown-menu > li {
    flex: 0 0 50%;
    box-sizing: border-box;
    padding: 0;
    position: relative;
}

.dropdown-menu > li > a {
    padding: 10px 20px;
    color: #333;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
    display: block;
    border-bottom: 1px solid transparent;
    text-overflow: ellipsis;
    overflow: hidden;
}

.dropdown-menu > li > a:hover {
    background-color: #f5f5f5;
    color: #3498db;
}

/* Показываем меню при наведении */
.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Треугольник указатель */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    transform: rotate(45deg);
    z-index: 2;
}

/* Подменю второго уровня - вертикальное */
.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 101;
    min-width: 220px;
    width: 250px;
    display: flex;
    flex-direction: column;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu li {
    position: relative;
    width: 100%;
}

.submenu a {
    padding: 10px 20px;
    color: #333;
    transition: background-color 0.2s;
    white-space: nowrap;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #f0f0f0;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu a:hover {
    background-color: #f5f5f5;
    color: #3498db;
}

/* Индикаторы для пунктов с подменю */
.has-dropdown > a::after {
    content: '\25BC';
    font-size: 9px;
    margin-left: 6px;
    opacity: 0.7;
}

.has-submenu > a::after {
    content: '\25B6';
    font-size: 9px;
    float: right;
    margin-top: 3px;
    opacity: 0.7;
}

/* ===== Мобильная версия ===== */
@media (max-width: 991px) {
    body.menu-open {
        overflow: hidden;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
    }
    .mobile-menu-toggle.active {
        top: 0 !important;
        right: 15px !important;
        position: absolute !important;
        z-index: 1100;
    }

    /* overlay - затемнение */
    .main-nav {
        position: fixed;
        top: 0; left: 0; width: 100vw; height: 100vh;
        background: rgba(0,0,0,0.5); /* overlay! */
        z-index: 1000;
        display: none;
    }
    .main-nav.active {
        display: block;
    }
    /* само БЕЛОЕ меню */
    .main-nav > ul {
        position: absolute;
        top: 0; right: 0;
        width: 80vw;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        margin: 0;
        padding: 50px 0 0;
        overflow-y: auto;
        display: block;
        box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    }
    /* Пункты первого уровня */
    .main-nav > ul > li {
        width: 100%;
        border-bottom: 1px solid #eee;
        margin: 0;
    }
    .main-nav > ul > li > a {
        padding: 15px 20px;
        display: block;
        color: #222;
    }

    /* Выпадающие меню на мобилке --- раскрытие */
    .dropdown-menu,
    .submenu {
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;
        box-shadow: none !important;
        border: none !important;
        background: #f5f5f5 !important;
        display: none;
        padding: 0;
        margin: 0;
    }
    .has-dropdown.open > .dropdown-menu,
    .has-submenu.open > .submenu {
        display: block;
    }
    .has-dropdown:hover > .dropdown-menu,
    .has-submenu:hover > .submenu {
        display: none;
    }

    /* Индикаторы стрелочки + - */
    .has-dropdown > a::after,
    .has-submenu > a::after {
        content: '+';
        float: right;
        font-size: 20px;
    }
    .has-dropdown.open > a::after,
    .has-submenu.open > a::after {
        content: '-';
    }

    /* Элементы подменю */
    .dropdown-menu > li,
    .submenu > li {
        width: 100%;
    }
    .dropdown-menu > li > a,
    .submenu > li > a {
        padding: 12px 20px 12px 30px;
        display: block;
        border-bottom: 1px solid #eee;
        background: none;
        color: #222;
    }
    .submenu > li > a {
        padding-left: 40px;
    }
    .dropdown-menu > li:last-child > a,
    .submenu > li:last-child > a {
        border-bottom: none;
    }
}
/* Для планшетов и самых узких мобил (до 768px и ниже) */
@media (max-width: 768px) {
    .main-nav {
        /* повторяем эту строчку! */
        background: rgba(0,0,0,0.5) !important;
    }
    .main-nav > ul {
        width: 80vw;
        max-width: 100vw;
        /* если нужно, top и height оставьте как выше, иначе top: 0; height: 100vh; */
    }
}

/* Для совсем узких экранов меню занимает 100% ширины */
@media (max-width: 480px) {
    .main-nav > ul {
        width: 100vw;
        max-width: 100vw;
    }
}

		.hero-section {
			position: relative;
			background-image: url('../img/hero.png');
			background-size: cover;
			background-repeat: no-repeat;
			background-position: center;
			min-height: 520px;
			color: #fff;
			padding: 80px 0;
			display: flex;
			align-items: center;
		}

		.hero-section::before {
			content: "";
			position: absolute;
			inset: 0;
			background: linear-gradient(135deg, rgba(52, 152, 219, 0.65), rgba(26, 188, 156, 0.65));
			/* Можно уменьшить alpha, если хотите сделать фон светлее */
			z-index: 1;
		}

		.hero-container {
			position: relative;
			z-index: 2;
			display: flex;
			flex-direction: column;
			align-items: flex-start;
		}

		.hero-content {
			max-width: 700px;
		}

		.hero-title {
			font-size: 2.8rem;
			margin-bottom: 20px;
			line-height: 1.2;
			color: #fff;
		}

		.hero-description {
			font-size: 1.2rem;
			margin-bottom: 30px;
			opacity: 0.95;
			color: #fff;
		}

		.hero-actions {
			display: flex;
			gap: 15px;
		}

		@media (max-width: 992px) {
			.hero-section {
				padding: 60px 0;
				min-height: 380px;
			}

			.hero-title {
				font-size: 2rem;
			}

			.hero-container {
				align-items: center;
				text-align: center;
			}
		}

		@media (max-width: 768px) {
			.hero-section {
				padding: 30px 0;
				min-height: 250px;
			}

			.hero-title {
				font-size: 1.5rem;
			}

			.hero-description {
				font-size: 1rem;
			}
		}
		/* Очень маленькие экраны */
@media (max-width: 400px) {
  .hero-title, .hero-description {
    font-size: 1rem;
  }
  .hero-section {
    min-height: 110px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

		/* Блок конструктора сайтов */
		.site-builder-section {
			padding: 80px 0;
			background-color: white;
		}

		.section-title {
			text-align: center;
			margin-bottom: 50px;
		}

		.section-title h2 {
			font-size: 2.2rem;
			margin-bottom: 15px;
		}

		.section-title p {
			font-size: 1.1rem;
			color: #7f8c8d;
			max-width: 700px;
			margin: 0 auto;
		}

		.builder-overview {
			display: flex;
			align-items: center;
			gap: 50px;
			margin-bottom: 60px;
		}

		.builder-content {
			flex: 1;
		}

		.builder-content h3 {
			font-size: 1.8rem;
			margin-bottom: 20px;
			color: #2c3e50;
		}

		.builder-content p {
			margin-bottom: 20px;
			color: #555;
		}

		.builder-features {
			margin-bottom: 25px;
		}

		.feature-list {
			list-style: none;
		}

		.feature-list li {
			display: flex;
			align-items: center;
			margin-bottom: 12px;
		}

		.feature-list li i {
			color: #2ecc71;
			margin-right: 10px;
			font-size: 1.2rem;
		}

		.builder-image {
			flex: 1;
			position: relative;
		}

		.builder-image img {
			border-radius: 8px;
			box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
		}

		/* Блок с видео по работе с конструктором */
		.video-section {
			padding: 80px 0;
			background-color: #f8f9fa;
		}

		.section-title {
			text-align: center;
			margin-bottom: 50px;
		}

		.section-title h2 {
			font-size: 2.2rem;
			margin-bottom: 15px;
		}

		.section-title p {
			font-size: 1.1rem;
			color: #7f8c8d;
			max-width: 700px;
			margin: 0 auto;
		}

		/* Новый адаптивный блок для видео */
		.video-container {
			max-width: 800px;
			margin: 0 auto;
			background: white;
			border-radius: 8px;
			overflow: hidden;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		}

		.responsive-video {
			position: relative;
			padding-bottom: 56.25%;
			/* 16:9 Aspect Ratio */
			height: 0;
			overflow: hidden;
			background: #000;
		}

		.responsive-video video {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			border: 0;
			background: #000;
			border-radius: 8px;
			display: block;
		}

		.video-features {
			display: flex;
			padding: 30px;
			flex-wrap: wrap;
			background: #fff;
		}

		.video-feature-item {
			flex: 1 1 33.333%;
			min-width: 250px;
			padding: 15px;
			display: flex;
			align-items: flex-start;
		}

		.video-feature-icon {
			width: 50px;
			height: 50px;
			background-color: rgba(52, 152, 219, 0.1);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			color: #3498db;
			font-size: 1.2rem;
			margin-right: 15px;
			flex-shrink: 0;
		}

		.video-feature-content h4 {
			font-size: 1.1rem;
			margin-bottom: 8px;
		}

		.video-feature-content p {
			font-size: 0.9rem;
			color: #7f8c8d;
		}

		.video-cta {
			text-align: center;
			padding: 20px 0 30px;
		}

		/* Адаптивность */
		@media (max-width: 992px) {
			.video-section {
				padding: 60px 0;
			}

			.video-container {
				max-width: 100%;
			}

			.video-features {
				flex-direction: column;
				padding: 20px;
			}

			.video-feature-item {
				min-width: unset;
				width: 100%;
				margin-bottom: 15px;
			}
		}

		@media (max-width: 768px) {
			.video-section {
				padding: 30px 0;
			}

			.section-title h2 {
				font-size: 1.4rem;
			}

			.video-container {
				border-radius: 6px;
			}

			.responsive-video video {
				border-radius: 6px;
			}
		}

		/* Блок шаблонов конструктора */
		.examples-section {
			padding: 80px 0;
			background-color: #fff;
		}

		.examples-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
			gap: 30px;
			margin-bottom: 40px;
		}

		.example-card {
			border-radius: 8px;
			overflow: hidden;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.10);
			background-color: #fff;
			display: flex;
			flex-direction: column;
		}

		.example-image {
			position: relative;
			height: 200px;
			overflow: hidden;
		}

		.example-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}

		.example-card:hover .example-image img {
			transform: scale(1.04);
		}

		.example-overlay {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.4);
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 12px;
			opacity: 0;
			transition: opacity 0.3s;
			flex-direction: column;
		}

		.example-card:hover .example-overlay {
			opacity: 1;
		}

		.enlarge-btn {
			background: #fff;
			color: #3498db;
			border: none;
			padding: 9px 20px;
			border-radius: 4px;
			font-weight: 600;
			cursor: pointer;
			transition: background .2s, color .2s;
			box-shadow: 0 2px 6px rgba(52, 152, 219, .1);
		}

		.enlarge-btn:hover {
			background: #3498db;
			color: #fff;
		}

		.example-details {
			padding: 20px;
			flex-grow: 1;
			display: flex;
			flex-direction: column;
		}

		.example-title {
			font-size: 1.2rem;
			margin-bottom: 8px;
		}

		.example-category {
			font-size: 0.85rem;
			color: #7f8c8d;
			margin-bottom: 10px;
		}

		.example-description {
			font-size: 1rem;
			color: #555;
			margin-bottom: 0;
			flex-grow: 1;
		}

		.view-all-examples {
			text-align: center;
		}

		.image-modal {
			display: none;
			position: fixed;
			z-index: 9999;
			left: 0;
			top: 0;
			width: 100vw;
			height: 100vh;
			background: rgba(0, 0, 0, 0.85);
			justify-content: center;
			align-items: center;
		}

		.image-modal.active {
			display: flex;
		}

		.modal-content {
			max-width: 90vw;
			max-height: 90vh;
			border-radius: 12px;
			box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
		}

		.close-modal {
			position: absolute;
			top: 32px;
			right: 50px;
			color: #fff;
			font-size: 2.5rem;
			font-weight: 700;
			cursor: pointer;
			z-index: 99999;
			text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
		}

		@media (max-width: 768px) {
			.examples-grid {
				grid-template-columns: 1fr;
			}

			.close-modal {
				top: 8px;
				right: 20px;
				font-size: 2rem;
			}

			.modal-content {
				max-width: 98vw;
				max-height: 70vh;
			}
		}


/* Стили для SEO блока */
.seo-features-section {
max-width: 1200px;
margin: 40px auto;
padding: 20px;
display: flex;
flex-wrap: wrap;
gap: 40px;
align-items: flex-start;
justify-content: center;
font-family: 'Roboto', sans-serif;
}

.seo-image {
width: 420px;
margin: 0 auto;
border-radius: 10px;
box-shadow: 0 8px 24px rgba(52,152,219,0.15);
overflow: hidden;
margin-top: 160px; /* Add this line to push it down */
}

.swiper {
width: 400px;
height: 250px;
margin: 0 auto;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.swiper-wrapper {
display: flex;
}

.swiper-slide {
width: 100% !important;
display: flex;
justify-content: center;
align-items: center;
}

.swiper-slide img {
width: 100%;
height: auto;
display: block;
border-radius: 10px;
object-fit: contain;
}

.swiper-button-prev,
.swiper-button-next {
color: #007aff;
width: 44px;
height: 44px;
top: 50%;
transform: translateY(-50%);
background-color: rgba(255,255,255,0.9);
border-radius: 50%;
box-shadow: 0 2px 6px rgba(0,0,0,0.2);
cursor: pointer;
}

.swiper-button-prev {
left: 10px;
}

.swiper-button-next {
right: 10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
font-size: 20px;
font-weight: bold;
}

.swiper-pagination-bullet {
background: #3498db;
opacity: 0.7;
cursor: pointer;
}

.swiper-pagination-bullet-active {
opacity: 1;
}

.seo-text {
flex: 1 1 480px;
min-width: 280px;
}

.seo-features-list {
list-style: none;
padding: 0;
margin-top: 25px;
font-size: 1.1rem;
color: #34495e;
columns: 2;
column-gap: 40px;
max-width: 600px;
}

.seo-features-list li {
position: relative;
padding-left: 30px;
margin-bottom: 18px;
break-inside: avoid;
}

.seo-features-list li i {
position: absolute;
left: 0;
top: 0.25em;
color: #3498db;
font-size: 1.3rem;
}

@media (max-width: 900px) {
.seo-features-section {
flex-direction: column;
align-items: center;
}

.seo-text,
.seo-image {
max-width: 100%;
flex-basis: auto;
}

.seo-features-list {
columns: 1;
max-width: 100%;
}
}
	

		/* Секция с тарифами */
		.pricing-section {
			padding: 80px 0;
			background-color: #f8f9fa;
		}

		.pricing-cards {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
			gap: 30px;
			margin-top: 30px;
		}

		.pricing-card {
			background-color: white;
			border-radius: 8px;
			overflow: hidden;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
			transition: all 0.3s ease;
		}

		.pricing-card:hover {
			transform: translateY(-5px);
			box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
		}

		.pricing-card.popular {
			position: relative;
			border: 2px solid #3498db;
			transform: scale(1.05);
			z-index: 1;
		}

		.popular-badge {
			position: absolute;
			top: 15px;
			right: 15px;
			background-color: #3498db;
			color: white;
			font-size: 0.8rem;
			padding: 5px 10px;
			border-radius: 20px;
			font-weight: 600;
		}

		.pricing-header {
			background-color: #f8f9fa;
			padding: 25px;
			text-align: center;
			border-bottom: 1px solid #e9ecef;
		}

		.pricing-title {
			font-size: 1.5rem;
			margin-bottom: 10px;
		}

		.pricing-price {
			font-size: 2.5rem;
			font-weight: 700;
			color: #2c3e50;
			margin-bottom: 10px;
		}

		.pricing-period {
			font-size: 0.9rem;
			color: #7f8c8d;
		}

		.pricing-features {
			padding: 25px;
		}

		.pricing-features ul {
			list-style: none;
		}

		.pricing-features li {
			padding: 10px 0;
			border-bottom: 1px solid #e9ecef;
			display: flex;
			align-items: center;
		}

		.pricing-features li:last-child {
			border-bottom: none;
		}

		.pricing-features li i {
			color: #2ecc71;
			margin-right: 10px;
		}

		.pricing-features li.unavailable {
			color: #bdc3c7;
		}

		.pricing-features li.unavailable i {
			color: #e74c3c;
		}

		.pricing-footer {
			padding: 20px 25px 25px;
			text-align: center;
		}
.options-table-block {
  margin-bottom: 36px;
  width: 100%;
}
.options-table-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #246dd2;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.options-table {
  width: 100%;
  border-collapse: separate; /* NB! */
  border-spacing: 0;
  background: none;
  font-size: 1em;
  margin-bottom: 7px;
  border-radius: 14px;       /* добавлено */
  overflow: hidden;          /* добавлено */
  box-shadow: 0 2px 10px 0 rgba(70,110,180,0.07); /* по желанию */
}
.options-table th, .options-table td {
  padding: 13px 12px;
  border: none;
}
.options-table th {
  background: #eaf3fc;
  color: #246dd2;
  font-weight: bold;
  font-size: 1.05em;
  border-bottom: 2px solid #b6d0ef;
  text-align: left;
}
.options-table th:first-child { border-top-left-radius: 14px; }     /* добавлено */
.options-table th:last-child  { border-top-right-radius: 14px; }    /* добавлено */
.options-table td {
  background: #fff;
  text-align: left;
}
.options-table tr:nth-child(even) td {
  background: #f5f8fc;
}
.options-table tr:last-child td {
  border-bottom: none;
}
.options-table tr:last-child td:first-child { border-bottom-left-radius: 14px; }   /* добавлено */
.options-table tr:last-child td:last-child { border-bottom-right-radius: 14px; }   /* добавлено */
.options-note {
  color: #A3B5C6;
  font-size: 0.98em;
  margin-top: 6px;
}
@media (max-width: 700px) {
  .options-table-block {
    margin-bottom: 24px;
  }
  .options-table th, .options-table td {
    padding: 9px 7px;
  }
}
.panel-logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel-logo {
  height: 28px;
  width: auto;
  display: inline-block;
}
@media (max-width: 600px) {
  .panel-logo { height: 20px; }
}
/* стили сетки ОС */
.os-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px,1fr));
  gap: 38px 42px;
  justify-items: center;
  max-width: 880px;
  margin: 0 auto;
}
.os-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.os-logo-box {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.os-logo-box img {
  max-height: 48px;
  max-width: 62px;
  display: block;
  margin: 0 auto;
}

.os-item span {
  font-size: 1.07rem;
  color: #344862;
  font-weight: 600;
  margin: 0;
  text-align: center;
  line-height: 1.18;
  letter-spacing: .01em;
  min-height: 1.15em;
  margin-top: 9px;
}

/* Именно до 900px - ЛОГОТИПЫ БОЛЬШЕ */
@media (max-width: 900px) {
  .os-list { gap: 19px 12px; max-width: 96vw;}
  .os-logo-box { width: 90px; height: 90px; }
  .os-logo-box img { max-height: 64px; max-width: 84px; }
  .os-item span { font-size: 1.1rem; }
}

/* Мелкие экраны — мелко */
@media (max-width: 560px) {
  .os-list {gap: 7px 5px;}
  .os-logo-box { width: 18vw; height: 18vw; min-width: 25px; min-height: 25px;}
  .os-logo-box img {max-height: 12vw; max-width: 17vw;}
  .os-item span {font-size: .86rem;}
}

/*Стили для блока локаций серверов */

.locations-section {
  padding: 60px 0;
  background: linear-gradient(to right, #f5f9fa, #edfaf7);
  border-top: 1px solid #e0f2f7;
  border-bottom: 1px solid #e0f2f7;
}

.section-title {
  margin-bottom: 40px;
  text-align: center;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.section-title p {
  color: #666;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.flags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.location-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.location-item:hover {
  transform: translateY(-5px);
}

.location-item:hover .flag-box {
  box-shadow: 0 5px 15px rgba(44, 181, 226, 0.2);
  border-color: #36c986;
}

.flag-box {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin-bottom: 12px;
  border: 2px solid #e0f2f7;
  transition: all 0.3s ease;
}

.flag-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-align: center;
}

@media (max-width: 768px) {
  .flags-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 20px;
  }
  
  .flag-box {
    width: 65px;
    height: 65px;
  }
}
/* Карточка-блок ограничений */
.eco-limit-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eaf3fc;
  box-shadow: 0 2px 7px 0 rgba(36,109,210,0.07);
  padding: 32px 28px 26px 28px;
  max-width: 520px;
  margin: 0 auto 36px auto;
}

/* Заголовок с иконкой */
.eco-limit-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
}
.eco-limit-card-header .eco-limit-title {
  font-weight: 700;
  font-size: 1.08em;
}

/* Список ограничений */
.eco-limit-list {
  margin-bottom: 22px;
  padding-left: 0;
  list-style: none;
}
.eco-limit-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: #222;
}

/* Зеленые иконки */
.eco-limit-list i {
  color: #21ba45;
  min-width: 1.15em;
  font-size: 1.08em;
}

/* Кнопка */
.eco-limit-card .btn-primary {
  min-width: 170px;
  text-align: center;
}

/* Для адаптива разрешаем уменьшаться по ширине */
@media (max-width: 600px) {
  .eco-limit-card {
    padding: 22px 8px 18px 8px;
    max-width: 99%;
  }
}
.video-theme-title {
  color: #344862;
  font-weight: 700;
  font-size: 1.11rem;
  margin: 38px 0 18px 0;
  text-align: left;
  letter-spacing: .01em;
}

.video-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 22px 16px;
  margin-bottom: 18px;
}

.video-card {
  background: #fafbfe;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(80,122,154,0.06);
  padding: 12px 12px 16px 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  /* ensures all blocks same height (except for huge title...) */
  min-height: 320px;
  max-height: 360px;
  box-sizing: border-box;
}

.video-title {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #344862;
  font-weight: 700;
  min-height: 35px; /* for 1/2-line alignment */
  line-height: 1.1;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #e4e8f3;
  object-fit: cover;
  display: block;
}

/* Адаптив для мобильных, если нужно */
@media (max-width: 600px) {
  .video-theme-title {margin: 22px 0 9px 0;}
  .video-list {grid-template-columns: 1fr;}
  .video-card {min-height: 0; max-height: unset;}
}
.domain-form {
    display: flex;
    gap: 13px;
    margin: 28px 0 12px 0;
    max-width: 480px;
    width: 100%;
    justify-content: center;
}
.domain-input {
    flex: 1 1 0;
    border: 1.7px solid #e4ecf4;
    border-radius: 7px;
    font-size: 1.13rem;
    padding: 12px 14px;
    outline: none;
    transition: border 0.18s;
}
.domain-input:focus {
    border: 1.7px solid #286cd3;
}
.domain-submit {
    padding: 12px 28px;
    font-size: 1.05rem;
    border-radius: 7px;
    border: none;
    cursor: pointer;
}
@media (max-width: 500px) {
    .domain-form { flex-direction: column; gap: 11px; max-width: 98vw;}
    .domain-submit, .domain-input { font-size: 0.97rem; padding: 10px 9px; }
}

		/* Блок с отзывами */
		.testimonials-section {
			padding: 80px 0;
			background-color: white;
		}

		.testimonials-container {
			max-width: 1000px;
			margin: 0 auto;
		}

		.testimonials-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
			gap: 30px;
		}

		.testimonial-card {
			background-color: #f8f9fa;
			border-radius: 8px;
			padding: 30px;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
			transition: all 0.3s ease;
		}

		.testimonial-card:hover {
			transform: translateY(-5px);
			box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
		}

		.testimonial-content {
			font-style: italic;
			margin-bottom: 20px;
			color: #555;
			position: relative;
		}

		.testimonial-content:before {
			content: '\f10d';
			font-family: 'Font Awesome 6 Free';
			font-weight: 900;
			color: rgba(52, 152, 219, 0.2);
			font-size: 2rem;
			position: absolute;
			top: -10px;
			left: -10px;
		}

		.testimonial-author {
			display: flex;
			align-items: center;
		}

		.author-avatar {
			width: 50px;
			height: 50px;
			border-radius: 50%;
			overflow: hidden;
			margin-right: 15px;
		}

		.author-info h4 {
			margin-bottom: 5px;
			font-size: 1.1rem;
		}

		.author-info p {
			color: #7f8c8d;
			font-size: 0.9rem;
		}

		/* FAQ секция */
		.faq-section {
			padding: 80px 0;
			background-color: #f8f9fa;
		}

		.faq-container {
			max-width: 800px;
			margin: 0 auto;
		}

		.faq-item {
			background-color: white;
			border-radius: 8px;
			margin-bottom: 15px;
			box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
			overflow: hidden;
		}

		.faq-question {
			padding: 20px;
			cursor: pointer;
			position: relative;
			font-weight: 600;
			color: #2c3e50;
			display: flex;
			justify-content: space-between;
			align-items: center;
		}

		.faq-question:after {
			content: '\f078';
			font-family: 'Font Awesome 6 Free';
			font-weight: 900;
			color: #3498db;
			transition: all 0.3s ease;
		}

		.faq-item.active .faq-question:after {
			transform: rotate(180deg);
		}

		.faq-answer {
			padding: 0 20px 20px;
			display: none;
		}

		.faq-item.active .faq-answer {
			display: block;
		}

		/* CTA секция */
		.cta-section {
			padding: 80px 0;
			background-color: #3498db;
			color: white;
			text-align: center;
		}

		.cta-container {
			max-width: 500px;
			margin: 0 auto;
			padding: 20px;
		}

		.cta-title {
			font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
			font-weight: 700;
			font-size: 2.3rem;
			margin-bottom: 18px;
			letter-spacing: 0.04em;
			line-height: 1.15;
			color: white;
		}

		.cta-description {
			font-family: 'Roboto', Arial, sans-serif;
			font-size: 1.15rem;
			margin-bottom: 32px;
			letter-spacing: 0.01em;
			color: #f1f6fb;
		}

		.cta-btn {
			display: inline-block;
			padding: 16px 32px;
			background: #2ecc71;
			color: #fff !important;
			font-weight: 600;
			border: none;
			border-radius: 6px;
			font-size: 1.14rem;
			letter-spacing: 0.02em;
			transition: background 0.2s;
			text-decoration: none;
			box-shadow: 0 4px 14px rgba(46, 204, 113, 0.18);
		}

		.cta-btn:hover {
			background: #27ae60;
			color: #fff;
		}

		@media (max-width: 700px) {
			.cta-title {
				font-size: 1.6rem;
			}

			.cta-container {
				padding: 10px;
			}
		}


		/* Футер */
		.footer {
			background-color: #2c3e50;
			color: white;
			padding: 60px 0 30px;
		}

		.footer-content {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
			gap: 30px;
			margin-bottom: 40px;
		}

		.footer-column h3 {
			color: white;
			font-size: 1.3rem;
			margin-bottom: 20px;
			position: relative;
			padding-bottom: 10px;
		}

		.footer-column h3:after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 0;
			width: 40px;
			height: 2px;
			background-color: #3498db;
		}

		.footer-column p {
			color: #bdc3c7;
			margin-bottom: 20px;
		}

		.footer-links {
			list-style: none;
		}

		.footer-links li {
			margin-bottom: 10px;
		}

		.footer-links a {
			color: #bdc3c7;
			transition: all 0.3s ease;
		}

		.footer-links a:hover {
			color: white;
			padding-left: 5px;
		}

		.social-links {
			display: flex;
			gap: 15px;
			margin-top: 20px;
		}

		.social-links a {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 40px;
			height: 40px;
			background-color: rgba(255, 255, 255, 0.1);
			color: white;
			border-radius: 50%;
			transition: all 0.3s ease;
		}

		.social-links a:hover {
			background-color: #3498db;
			transform: translateY(-3px);
		}

		.footer-newsletter {
			margin-top: 20px;
		}

		.newsletter-form {
			display: flex;
		}

		.newsletter-input {
			flex: 1;
			padding: 12px 15px;
			border: none;
			border-radius: 4px 0 0 4px;
			outline: none;
		}

		.newsletter-button {
			background-color: #3498db;
			color: white;
			border: none;
			padding: 0 15px;
			border-radius: 0 4px 4px 0;
			cursor: pointer;
		}

		.footer-bottom {
			text-align: center;
			padding-top: 30px;
			border-top: 1px solid rgba(255, 255, 255, 0.1);
		}

		.footer-bottom p {
			color: #bdc3c7;
			font-size: 0.9rem;
		}

		/* Адаптивные стили */
		@media (max-width: 992px) {
			.hero-container {
				flex-direction: column;
				text-align: center;
			}

			.hero-content {
				padding-right: 0;
				margin-bottom: 40px;
			}

			.hero-actions {
				justify-content: center;
			}

			.builder-overview {
				flex-direction: column;
			}

			.builder-image {
				order: -1;
				margin-bottom: 30px;
			}

			.feature-list {
				display: grid;
				grid-template-columns: repeat(2, 1fr);
				gap: 10px;
			}
		}

		@media (max-width: 768px) {
			.header-top .container {
				flex-direction: column;
				gap: 10px;
			}

			.header-contacts,
			.header-actions {
				justify-content: center;
			}

			.mobile-menu-toggle {
				display: block;
			}

			.main-nav {
				display: none;
				position: absolute;
				top: 100%;
				left: 0;
				width: 100%;
				background-color: white;
				box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
				padding: 15px;
			}

			.main-nav.active {
				display: block;
			}

			.main-nav ul {
				flex-direction: column;
			}

			.main-nav li {
				margin: 10px 0;
			}

			.dropdown-menu {
				position: static;
				opacity: 1;
				visibility: visible;
				transform: none;
				box-shadow: none;
				padding: 0 0 0 20px;
				display: none;
			}

			.main-nav li:hover .dropdown-menu {
				display: block;
			}

			.hero-title {
				font-size: 2.2rem;
			}

			.feature-list {
				grid-template-columns: 1fr;
			}
		}