/* 
 * Госномера - Стили
 * Чистая версия с современным дизайном
 */

/* ========================================
   ОБЩИЕ СТИЛИ И СБРОС
   ======================================== */

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

:root {
    --primary-color: #0063b0;
    --primary-hover: #0C8CE9;
    --text-color: #333;
    --text-light: #666;
    --text-meta: #888;
    --border-color: #e5e5e5;
    --bg-white: #fff;
    --bg-light: #f7f7f7;
    --link-color: #0063b0;
    --link-hover: #004d8c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--link-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ========================================
   КОНТЕЙНЕР
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========================================
   ОРАНЖЕВАЯ ПОЛОСКА СВЕРХУ
   ======================================== */

.top-banner {
    background: linear-gradient(135deg, #FF9933 0%, #FF8833 100%);
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(255, 136, 51, 0.3);
}

.top-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.banner-icon {
    flex-shrink: 0;
    color: #fff;
}

/* ========================================
   ШАПКА САЙТА
   ======================================== */

.header {
    background-color: var(--bg-white);
    padding: 20px 0 0 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
    border-bottom: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.header-content > *:not(.header-logo) {
    flex-shrink: 0;
}

/* ========================================
   ЛОГОТИП И СЛОГАН
   ======================================== */

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.logo-link {
    display: block;
    flex-shrink: 0;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    display: block;
    text-decoration: none;
}

.logo-blue {
    color: #4285F4;
}

.logo-red {
    color: #ff6b00;
}

.logo-tagline {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
    color: #666;
    margin-top: 2px;
    white-space: nowrap;
}

/* ========================================
   АДРЕС
   ======================================== */

.header-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-color);
}

.address-icon {
    flex-shrink: 0;
    color: var(--text-light);
}

.header-address span {
    white-space: nowrap;
}

/* ========================================
   ВРЕМЯ РАБОТЫ
   ======================================== */

.header-schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-color);
}

.schedule-icon {
    flex-shrink: 0;
    color: var(--text-light);
}

.header-schedule span {
    white-space: nowrap;
    font-weight: 500;
}

/* ========================================
   ПОЧТОВЫЙ АДРЕС
   ======================================== */

.header-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-color);
}

.email-icon {
    flex-shrink: 0;
    color: var(--text-light);
}

.header-email span {
    white-space: nowrap;
}

/* ========================================
   ТЕЛЕФОН
   ======================================== */

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.phone-icon {
    flex-shrink: 0;
    color: var(--text-light);
}

.phone-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    white-space: nowrap;
}

.phone-number:hover {
    color: var(--primary-color);
}

/* ========================================
   КНОПКА ЗАКАЗА
   ======================================== */

.header-button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #0C8CE9 0%, #0063b0 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(12, 140, 233, 0.25);
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.header-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(12, 140, 233, 0.4);
    color: #fff;
    background: linear-gradient(135deg, #0E9BFF 0%, #0073cc 100%);
}

/* ========================================
   НАВИГАЦИОННОЕ МЕНЮ
   ======================================== */

.header-nav {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-top: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.nav-item-button {
    margin-left: auto;
}

.nav-item-button .header-button {
    margin: 0;
}

.nav-item {
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(12, 140, 233, 0.05);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   ОСНОВНОЙ КОНТЕНТ
   ======================================== */

.main-content {
    min-height: 100vh;
}

/* ========================================
   HERO СЕКЦИЯ - ПЕРВЫЙ ЭКРАН
   ======================================== */

.hero-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #e8ecf1 0%, #f5f7fa 100%);
}

/* Верхняя часть - заголовок и картинка */
.hero-top {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.hero-title-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Значок ГОСТ */
.gost-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gost-icon {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
}

.gost-text {
    font-size: 18px;
    color: #999;
    font-weight: 400;
}

.gost-text strong {
    color: #333;
    font-weight: 600;
}

/* Главный заголовок */
.main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

/* Картинка номеров */
.hero-image-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.plates-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
}

.warning-badge {
    position: absolute;
    top: 10px;
    right: 0;
    background: linear-gradient(135deg, #FF4444 0%, #CC0000 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(255, 68, 68, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
}

.warning-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Нижняя часть - 3 блока */
.hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Карточка лицензии */
.license-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    color: white;
}

.license-img {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.license-text {
    flex: 1;
}

.license-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
}

/* Средняя карточка - документы и адреса */
.middle-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-icon-small {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-row div {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.info-row strong {
    font-weight: 600;
    color: #1a1a1a;
}

.gray-text {
    color: #888;
}

/* Карточка со скидкой */
.discount-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.discount-text {
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
}

.discount-text strong {
    font-size: 20px;
    display: block;
    margin-top: 5px;
    color: #CC0000;
}

.discount-icon {
    width: 41px;
    height: 41px;
}

/* ========================================
   БЛОК С ДОКУМЕНТАМИ И ДОСТАВКОЙ
   ======================================== */

.docs-delivery-section {
    padding: 60px 0;
    background: white;
}

.docs-delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Карточка с документами */
.docs-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.docs-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.docs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.docs-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 25px 0;
}

/* Блоки доставки */
.delivery-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #f5f7fa;
    border-radius: 12px;
}

.delivery-icon {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
}

.delivery-content {
    flex: 1;
}

.delivery-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.delivery-title .accent {
    color: #0066CC;
}

.delivery-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 10px 0;
}

.spoiler-link {
    font-size: 14px;
    color: #0066CC;
    text-decoration: underline;
    cursor: pointer;
}

.spoiler-link:hover {
    color: #0052A3;
}

/* Карточка с формой заказа */
.order-form-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 25px 0;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-input {
    padding: 15px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #0066CC;
}

.form-input::placeholder {
    color: #999;
}

.form-button {
    padding: 16px 30px;
    background: linear-gradient(135deg, #0C8CE9 0%, #0063b0 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(12, 140, 233, 0.25);
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(12, 140, 233, 0.4);
    background: linear-gradient(135deg, #0E9BFF 0%, #0073cc 100%);
}

/* ========================================
   БЛОК С ЖИРНЫМИ НОМЕРАМИ
   ======================================== */

.bold-plates-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.bold-plates-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    align-items: start;
}

/* Слайдер слева */
.plates-slider-wrapper {
    position: relative;
}

.plates-slider {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.slider-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    aspect-ratio: 4 / 3;
}

.slider-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-left {
    left: 10px;
}

.slider-nav-right {
    right: 10px;
}

.slider-nav svg {
    width: 20px;
    height: 14px;
    color: #333;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #333;
}

/* Контент справа */
.plates-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plates-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.badge-icon-img {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
}

.badge-text {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.badge-text strong {
    color: #333;
    font-weight: 600;
}

.plates-main-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    text-align: right;
}

.plates-main-title strong {
    font-weight: 700;
}

.plates-features-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.feature-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.feature-check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin: 0 0 5px 0;
}

.feature-card-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.plates-bottom-text {
    font-size: 13px;
    line-height: 1.6;
    color: #888;
    margin: 10px 0 0 0;
    text-align: center;
}

.plates-order-btn {
    padding: 16px 50px;
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
    color: white;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.3);
    align-self: flex-end;
    margin-top: 10px;
}

.plates-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, #5a95f5 0%, #2b7de9 100%);
}

/* ========================================
   ОСТАЛЬНЫЕ СЕКЦИИ
   ======================================== */

.section {
    padding: 60px 0;
    min-height: 400px;
}

.section:nth-child(even) {
    background-color: var(--bg-light);
}

.section h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
}

.section p {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
}

/* ========================================
   АДАПТИВНОСТЬ
   ======================================== */

/* Планшеты */
@media (max-width: 1024px) {
    .top-banner-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .banner-item {
        font-size: 13px;
    }
    
    .header-content {
        gap: 20px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-tagline {
        font-size: 11px;
    }
    
    .header-address,
    .header-schedule,
    .header-email {
        font-size: 12px;
    }
    
    .phone-number {
        font-size: 16px;
    }
    
    .header-phone {
        margin-left: 0;
    }
    
    .header-button {
        padding: 10px 22px;
        font-size: 13px;
    }
    
    .nav-menu {
        justify-content: center;
    }
    
    .nav-link {
        padding: 14px 16px;
        font-size: 13px;
    }
    
    /* Hero секция */
    .hero-top {
        gap: 30px;
    }
    
    .main-title {
        font-size: 38px;
    }
    
    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .license-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .license-img {
        width: 120px;
        height: 176px;
    }
    
    /* Блок документов */
    .docs-delivery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .docs-title,
    .form-title {
        font-size: 24px;
    }
    
    .delivery-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Блок жирных номеров */
    .bold-plates-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .plates-main-title {
        font-size: 28px;
        text-align: left;
    }
    
    .plates-features-cards {
        grid-template-columns: 1fr;
    }
    
    .plates-order-btn {
        align-self: center;
        width: 100%;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .top-banner {
        padding: 10px 0;
    }
    
    .top-banner-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .banner-item {
        font-size: 12px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .header-logo {
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .logo-tagline {
        text-align: center;
    }
    
    .header-address,
    .header-schedule,
    .header-email,
    .header-phone {
        width: auto;
        justify-content: center;
    }
    
    .header-phone {
        margin-left: 0;
    }
    
    .nav-item-button {
        margin-left: 0;
        width: 100%;
    }
    
    .nav-item-button .header-button {
        width: 100%;
    }
    
    .header-button {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        justify-content: center;
        width: 100%;
        padding: 12px 15px;
    }
    
    /* Hero секция */
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .gost-icon {
        width: 55px;
        height: 55px;
    }
    
    .gost-text {
        font-size: 16px;
    }
    
    .warning-badge {
        right: 10px;
        padding: 10px 14px;
        font-size: 11px;
    }
    
    .license-card {
        padding: 20px;
    }
    
    .license-img {
        width: 100px;
        height: 146px;
    }
    
    .license-text p {
        font-size: 12px;
    }
    
    /* Блок документов */
    .docs-delivery-section {
        padding: 40px 0;
    }
    
    .docs-card,
    .order-form-card {
        padding: 25px;
    }
    
    .docs-title,
    .form-title {
        font-size: 22px;
    }
    
    .docs-item {
        font-size: 14px;
    }
    
    .delivery-title {
        font-size: 18px;
    }
    
    .delivery-text {
        font-size: 13px;
    }
    
    /* Блок жирных номеров */
    .bold-plates-section {
        padding: 40px 0;
    }
    
    .plates-slider {
        padding: 15px;
        min-height: 300px;
    }
    
    .plates-main-title {
        font-size: 24px;
        text-align: left;
    }
    
    .badge-icon-img {
        width: 50px;
        height: 50px;
    }
    
    .badge-text {
        font-size: 14px;
    }
    
    .feature-card {
        padding: 18px;
    }
    
    .feature-card-title {
        font-size: 15px;
    }
    
    .feature-card-text {
        font-size: 13px;
    }
    
    .plates-bottom-text {
        font-size: 12px;
    }
    
    .plates-order-btn {
        padding: 14px 40px;
        font-size: 16px;
        width: 100%;
        align-self: center;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section h2 {
        font-size: 24px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .top-banner {
        padding: 8px 0;
    }
    
    .banner-item {
        font-size: 11px;
        gap: 6px;
    }
    
    .banner-icon {
        width: 18px;
        height: 18px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .header-address span,
    .header-schedule span,
    .header-email span {
        font-size: 11px;
    }
    
    .phone-number {
        font-size: 15px;
    }
    
    .header-phone {
        margin-left: 0;
    }
    
    .header-button {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    /* Hero секция */
    .hero-section {
        padding: 20px 0;
    }
    
    .gost-badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .gost-icon {
        width: 50px;
        height: 50px;
    }
    
    .gost-text {
        font-size: 14px;
    }
    
    .main-title {
        font-size: 22px;
    }
    
    .warning-badge {
        right: 5px;
        padding: 8px 12px;
        font-size: 10px;
    }
    
    .license-card {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        gap: 12px;
    }
    
    .license-img {
        width: 80px;
        height: 117px;
    }
    
    .license-text p {
        font-size: 11px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    
    .info-row div {
        font-size: 13px;
    }
    
    .discount-text {
        font-size: 14px;
    }
    
    .discount-text strong {
        font-size: 18px;
    }
    
    .discount-icon {
        width: 35px;
        height: 35px;
    }
    
    /* Блок документов */
    .docs-card,
    .order-form-card {
        padding: 20px;
    }
    
    .docs-title,
    .form-title {
        font-size: 20px;
    }
    
    .delivery-icon {
        width: 50px;
        height: 50px;
    }
    
    .delivery-title {
        font-size: 16px;
    }
    
    .delivery-text {
        font-size: 12px;
    }
    
    /* Блок жирных номеров */
    .bold-plates-section {
        padding: 30px 0;
    }
    
    .plates-slider {
        padding: 12px;
        min-height: 250px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav-left {
        left: 5px;
    }
    
    .slider-nav-right {
        right: 5px;
    }
    
    .plates-main-title {
        font-size: 20px;
        text-align: left;
    }
    
    .badge-icon-img {
        width: 45px;
        height: 45px;
    }
    
    .badge-text {
        font-size: 13px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-card-title {
        font-size: 14px;
    }
    
    .feature-card-text {
        font-size: 12px;
    }
    
    .plates-bottom-text {
        font-size: 11px;
    }
    
    .plates-order-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Модальное окно */
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    /* Футер */
    .footer-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
}

/* ========================================
   БЛОК "ГАРАНТИЯ КАЧЕСТВА"
   ======================================== */

.guarantee-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.guarantee-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin: 0 0 50px 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.guarantee-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.guarantee-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    flex: 1;
    min-height: 140px;
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.guarantee-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.guarantee-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.guarantee-item-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.certificate-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-5px);
}

.certificate-image {
    width: 100%;
    height: auto;
    display: block;
}

.certificate-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    font-weight: 600;
}

.certificates-link {
    text-align: center;
}

.cert-link-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #4285F4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cert-link-btn:hover {
    background: #1a73e8;
}

.guarantee-right {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.plates-image-with-markers {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.plates-marker-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.marker {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.marker-1 { top: 35%; left: 20%; }
.marker-2 { top: 51%; left: 57%; }
.marker-3 { top: 23%; left: 64%; }
.marker-4 { top: 9%; left: 23%; }

.marker-dot {
    width: 24px;
    height: 24px;
    background: #4285F4;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.marker:hover .marker-dot {
    transform: scale(1.2);
}

.marker-popup {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    line-height: 1.5;
    color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.marker-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.marker.active .marker-popup {
    opacity: 1;
    visibility: visible;
}

.marker-popup strong {
    display: block;
    margin-bottom: 5px;
    color: #1a1a1a;
}

/* ========================================
   БЛОК "ВАШЕЙ ОРГАНИЗАЦИИ ТРЕБУЕТСЯ"
   ======================================== */

.wholesale-section {
    padding: 80px 0;
    background: #e8f0fe;
}

.wholesale-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #1a73e8;
    margin: 0 0 15px 0;
}

.wholesale-subtitle {
    font-size: 20px;
    text-align: center;
    color: #1a73e8;
    margin: 0 0 50px 0;
}

.wholesale-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.wholesale-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.wholesale-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.wholesale-icon-hex {
    width: 60px;
    height: 60px;
    background: #1a73e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.wholesale-icon-hex svg {
    width: 24px;
    height: 24px;
}

.wholesale-card-content {
    flex: 1;
}

.wholesale-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.wholesale-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.wholesale-cta {
    background: linear-gradient(135deg, #1a73e8 0%, #4285F4 100%);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.3);
    position: relative;
    overflow: hidden;
}

.wholesale-cta::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 1;
}

.cta-button {
    padding: 16px 40px;
    background: white;
    color: #1a73e8;
    border: 2px solid white;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: transparent;
    color: white;
}

/* ========================================
   БЛОК С ЯНДЕКС КАРТОЙ
   ======================================== */

.map-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-card {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 10;
    max-height: calc(100% - 40px);
    overflow-y: auto;
}

.map-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.map-card-logo-text {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.map-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.map-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-card-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.map-card-icon {
    width: 18px;
    height: 18px;
    color: #4285F4;
    flex-shrink: 0;
    margin-top: 2px;
}

.map-card-item div {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}

.map-card-item strong {
    color: #1a1a1a;
}

.map-card-item a {
    color: #4285F4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-card-item a:hover {
    color: #1a73e8;
    text-decoration: underline;
}

.map-card-link {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.3);
    width: 100%;
}

.map-card-link:hover {
    background: linear-gradient(135deg, #5a95f5 0%, #2b7de9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(66, 133, 244, 0.4);
}

/* ========================================
   МОДАЛЬНОЕ ОКНО
   ======================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    text-align: center;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4285F4;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.3);
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, #5a95f5 0%, #2b7de9 100%);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 0 30px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-content > *:not(.footer-logo) {
    flex-shrink: 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.footer-logo .logo-text {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.footer-logo .logo-tagline {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

.footer-address,
.footer-schedule,
.footer-email,
.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ccc;
}

.footer-address .address-icon,
.footer-schedule .schedule-icon,
.footer-email .email-icon,
.footer-phone .phone-icon {
    flex-shrink: 0;
    color: #999;
}

.footer-address span,
.footer-schedule span,
.footer-email span {
    white-space: nowrap;
}

.footer-phone-number {
    font-size: 18px;
    font-weight: 600;
    color: #4285F4;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.footer-phone-number:hover {
    color: #1a73e8;
}


/* Адаптивность для новых блоков */
@media (max-width: 1024px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .wholesale-grid {
        grid-template-columns: 1fr;
    }
    
    .map-card {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-phone {
        margin-left: 0;
    }
    
    .footer-phone-number {
        font-size: 16px;
    }
}

/* ========================================
   КНОПКА "НАВЕРХ"
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #5a95f5 0%, #2b7de9 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(66, 133, 244, 0.5);
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   СТИЛИ ДЛЯ TILDA FORMS
   ======================================== */

.order-form .t-input-error {
    color: #c82824;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.order-form .js-error-control-box input {
    border-color: #c82824;
}

.order-form .js-error-control-box .t-input-error {
    display: block;
}

.order-form .js-errorbox-all {
    background: #fee;
    border: 1px solid #c82824;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    color: #c82824;
    font-size: 14px;
}

.order-form .js-successbox {
    background: #efe;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    color: #2e7d32;
    font-size: 14px;
}

.order-form .required {
    color: #c82824;
}

@media (max-width: 768px) {
    .guarantee-title {
        font-size: 28px;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .guarantee-item {
        min-height: auto;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .wholesale-title {
        font-size: 28px;
    }
    
    .wholesale-features {
        grid-template-columns: 1fr;
    }
    
    .map-card {
        padding: 20px;
    }
    
}

