/**
 * Components v3 - Modern
 */

/* ========================================
   PRODUCT CARD
   ======================================== */
.product-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    transition: all .4s cubic-bezier(.16,1,.3,1);
}
.product-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37,99,235,.2);
}
.product-card-image {
    position: relative; height: 250px;
    overflow: hidden; background: var(--bg-light);
}
.product-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.product-card:hover .product-card-image img { transform: scale(1.1); }

.product-card-badges {
    position: absolute; top: 1rem; left: 1rem;
    display: flex; flex-wrap: wrap; gap: .35rem;
}
.product-badge { padding: .25rem .625rem; font-size: .75rem; font-weight: 700; border-radius: 50px; }
.product-badge-new  { background: var(--color-success); color: #fff; }
.product-badge-sale { background: var(--color-error); color: #fff; }
.product-badge-hit  { background: var(--color-accent); color: #fff; }

.product-card-actions {
    position: absolute; top: 1rem; right: 1rem;
    display: flex; flex-direction: column; gap: .35rem;
    opacity: 0; transform: translateX(10px);
    transition: all .3s cubic-bezier(.16,1,.3,1);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.95); border-radius: 50%;
    font-size: 1rem; color: var(--text-secondary);
    box-shadow: var(--shadow); transition: all .2s;
}
.product-action-btn:hover { background: var(--color-secondary); color: #fff; transform: scale(1.1); }

.product-card-body { padding: 1.25rem 1.5rem; }
.product-card-category {
    font-size: .75rem; font-weight: 700; color: var(--color-secondary);
    text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem;
}
.product-card-title {
    font-size: 1.0625rem; font-weight: 800; margin-bottom: .5rem;
    color: var(--text-primary); line-height: 1.3; letter-spacing: -.01em;
}
.product-card-title a:hover { color: var(--color-secondary); }
.product-card-excerpt {
    font-size: .875rem; color: var(--text-secondary); line-height: 1.6;
    margin-bottom: 1rem; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1rem; border-top: 1px solid var(--border-color);
}
.product-price { display: flex; flex-direction: column; }
.product-price-value { font-size: 1.25rem; font-weight: 900; color: var(--text-primary); letter-spacing: -.01em; }
.product-price-unit  { font-size: .75rem; color: var(--text-muted); }

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.25rem; }
.gallery-item { position: relative; border-radius: var(--border-radius-lg); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; box-shadow: var(--shadow-card); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,15,30,.85) 0%,transparent 60%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 1.25rem; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-title { font-size: 1rem; font-weight: 700; color: #fff; }
.gallery-item-zoom { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0); width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 50%; font-size: 1.25rem; color: #fff; transition: transform .3s cubic-bezier(.34,1.56,.64,1); border: 1px solid rgba(255,255,255,.3); }
.gallery-item:hover .gallery-item-zoom { transform: translate(-50%,-50%) scale(1); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: var(--z-modal); background: rgba(0,0,0,.95); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .3s; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.1); border-radius: 50%; color: #fff; font-size: 1.25rem; cursor: pointer; transition: background .2s; }
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-image { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 12px; }

/* ========================================
   PAGINATION
   ======================================== */
.pagination { display: flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 2.5rem; }
.pagination-item { display: flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 1rem; font-weight: 700; color: var(--text-primary); background: var(--bg-primary); border: 1.5px solid var(--border-color); border-radius: var(--border-radius-sm); cursor: pointer; transition: all .2s; font-size: .9375rem; }
.pagination-item:hover { border-color: var(--color-secondary); color: var(--color-secondary); background: rgba(37,99,235,.05); }
.pagination-item.active { background: var(--color-secondary); border-color: var(--color-secondary); color: #fff; box-shadow: 0 4px 12px rgba(37,99,235,.35); }
.pagination-item.disabled { opacity: .4; cursor: not-allowed; }

/* ========================================
   LOADING
   ======================================== */
.loading { display: flex; align-items: center; justify-content: center; padding: 3rem; }
.loading-spinner { width: 40px; height: 40px; border: 3px solid var(--border-color); border-top-color: var(--color-secondary); border-radius: 50%; animation: spin 1s linear infinite; }

/* ========================================
   TOAST
   ======================================== */
.toast-container { position: fixed; top: calc(var(--header-height) + 1.5rem); right: 1.5rem; z-index: var(--z-toast); display: flex; flex-direction: column; gap: .625rem; }
.toast { display: flex; align-items: center; gap: 1rem; padding: .875rem 1.25rem; background: var(--bg-primary); border-radius: var(--border-radius); box-shadow: var(--shadow-lg); animation: slideInRight .3s ease; min-width: 280px; }
.toast-success { border-left: 4px solid var(--color-success); }
.toast-error   { border-left: 4px solid var(--color-error); }
.toast-warning { border-left: 4px solid var(--color-warning); }
.toast-icon { font-size: 1.125rem; }
.toast-success .toast-icon { color: var(--color-success); }
.toast-error .toast-icon   { color: var(--color-error); }
.toast-warning .toast-icon { color: var(--color-warning); }
.toast-message { font-size: .875rem; color: var(--text-primary); flex: 1; }
.toast-close { padding: .25rem; color: var(--text-muted); cursor: pointer; font-size: .875rem; }

/* ========================================
   SKELETON
   ======================================== */
.skeleton { background: linear-gradient(90deg,var(--bg-light) 25%,var(--bg-secondary) 50%,var(--bg-light) 75%); background-size: 200% 100%; animation: skeleton-loading 1.5s infinite; border-radius: var(--border-radius-sm); }
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-text  { height: 1em; margin-bottom: .5rem; }
.skeleton-title { height: 1.5em; width: 60%; margin-bottom: 1rem; }
.skeleton-image { height: 200px; }

/* ========================================
   SEARCH
   ======================================== */
.search-form { display: flex; gap: 1rem; max-width: 600px; margin: 0 auto 2.5rem; }
.search-input { flex: 1; padding: .875rem 1.25rem; font-size: 1rem; border: 2px solid var(--border-color); border-radius: var(--border-radius); transition: border-color .2s; outline: none; }
.search-input:focus { border-color: var(--color-secondary); }

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.breadcrumb-item { display: flex; align-items: center; gap: .5rem; }
.breadcrumb-item a { color: var(--text-secondary); transition: color .2s; }
.breadcrumb-item a:hover { color: var(--color-secondary); }
.breadcrumb-separator { color: var(--text-muted); font-size: 9px; }
.breadcrumb-item.active { color: var(--text-primary); font-weight: 600; }

/* ========================================
   TAGS
   ======================================== */
.tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag { display: inline-flex; align-items: center; gap: .3rem; padding: .3rem .875rem; background: var(--bg-light); border-radius: 50px; font-size: .875rem; color: var(--text-secondary); transition: all .2s; border: 1px solid transparent; }
.tag:hover { background: var(--color-secondary); color: #fff; }

/* ========================================
   SHARE
   ======================================== */
.share { display: flex; align-items: center; gap: 1rem; }
.share-label { font-size: .875rem; font-weight: 700; color: var(--text-secondary); }
.share-links { display: flex; gap: .5rem; }
.share-link { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg-light); border-radius: 50%; color: var(--text-secondary); transition: all .25s cubic-bezier(.34,1.56,.64,1); }
.share-link:hover { background: var(--color-secondary); color: #fff; transform: translateY(-3px) scale(1.1); }
.share-link.vk:hover { background: #4C75A3; }
.share-link.tg:hover { background: #0088cc; }
.share-link.wa:hover { background: #25D366; }

/* ========================================
   REGIONS
   ======================================== */
.regions-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 1rem; }
.region-item { display: flex; align-items: center; gap: 1rem; padding: 1.125rem 1.25rem; background: var(--bg-primary); border-radius: var(--border-radius); border: 1px solid var(--border-color); transition: all .3s cubic-bezier(.16,1,.3,1); text-decoration: none; }
.region-item:hover { border-color: var(--color-secondary); background: rgba(37,99,235,.04); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,99,235,.1); }
.region-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,var(--color-secondary),var(--color-secondary-dark)); border-radius: 10px; color: #fff; font-size: 1rem; flex-shrink: 0; transition: all .3s cubic-bezier(.34,1.56,.64,1); }
.region-item:hover .region-icon { transform: scale(1.1); }
.region-name { font-weight: 700; font-size: .9375rem; color: var(--text-primary); }

/* ========================================
   CATALOG MODERN
   ======================================== */
.catalog-section {
    background: var(--bg-secondary);
}

.catalog-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}
.catalog-section-header .section-title { margin-bottom: 0.5rem; }
.catalog-all-btn { flex-shrink: 0; }

.catalog-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* First card spans 2 cols and 2 rows for visual interest */
.catalog-modern-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}
.catalog-modern-card:first-child .catalog-modern-img {
    height: 360px;
}

.catalog-modern-card {
    position: relative;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: var(--shadow-card);
}
.catalog-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37,99,235,0.2);
}

.catalog-modern-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--bg-light);
    flex-shrink: 0;
}
.catalog-modern-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.catalog-modern-card:hover .catalog-modern-img img { transform: scale(1.08); }

.catalog-modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,15,30,0.85) 0%, rgba(10,15,30,0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}
.catalog-modern-card:hover .catalog-modern-overlay { opacity: 1; }

.catalog-modern-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--color-secondary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transform: translateY(8px);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.catalog-modern-card:hover .catalog-modern-cta { transform: translateY(0); }

.catalog-modern-num {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    font-size: 0.6875rem;
    font-weight: 900;
    color: rgba(255,255,255,0.9);
    background: rgba(10,15,30,0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
    letter-spacing: 0.05em;
}

.catalog-modern-body {
    padding: 1.125rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.catalog-modern-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.catalog-modern-card:first-child .catalog-modern-title { font-size: 1.25rem; }
.catalog-modern-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.875rem;
    flex: 1;
}
.catalog-modern-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}
.catalog-modern-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--color-secondary);
    transition: gap 0.2s;
}
.catalog-modern-card:hover .catalog-modern-link { gap: 0.6rem; }
.catalog-modern-link i { transition: transform 0.2s; font-size: 0.75rem; }
.catalog-modern-card:hover .catalog-modern-link i { transform: translateX(3px); }

/* ========================================
   FEATURES MODERN
   ======================================== */
.features-modern-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}
.features-modern-section::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 65%);
    pointer-events: none;
}

.features-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.feature-modern-card {
    position: relative;
    padding: 2.25rem 2rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    overflow: hidden;
    background: var(--bg-primary);
}
/* Remove right border on last in row */
.feature-modern-card:nth-child(4n) { border-right: none; }
/* Remove bottom border on last row */
.feature-modern-card:nth-last-child(-n+4) { border-bottom: none; }

.feature-modern-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}
.feature-modern-card:hover { background: rgba(37,99,235,0.02); }
.feature-modern-card:hover::before { opacity: 1; }

.feature-modern-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.feature-modern-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: 14px;
    font-size: 1.375rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    position: relative; z-index: 1;
    flex-shrink: 0;
}
.feature-modern-card:hover .feature-modern-icon {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 12px 28px rgba(37,99,235,0.45);
}

.feature-modern-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(37,99,235,0.07);
    line-height: 1;
    letter-spacing: -0.03em;
    transition: color 0.35s;
}
.feature-modern-card:hover .feature-modern-num {
    color: rgba(37,99,235,0.12);
}

.feature-modern-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
    position: relative; z-index: 1;
}

.feature-modern-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative; z-index: 1;
    margin-bottom: 1.25rem;
}

.feature-modern-line {
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative; z-index: 1;
}
.feature-modern-card:hover .feature-modern-line { width: 48px; }

/* ========================================
   STEPS MODERN
   ======================================== */
.steps-modern-section {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}
.steps-modern-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(37,99,235,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.steps-modern-section .section-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--color-accent);
}
.steps-modern-section .section-title { color: #fff; }
.steps-modern-section .section-description { color: rgba(255,255,255,0.6); }

.steps-modern {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.steps-modern-line {
    position: absolute;
    top: 36px;
    left: calc(10% + 18px);
    right: calc(10% + 18px);
    height: 2px;
    background: linear-gradient(90deg,
        var(--color-secondary) 0%,
        var(--color-accent) 50%,
        var(--color-secondary) 100%);
    opacity: 0.3;
    z-index: 0;
}

.step-modern-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}

.step-modern-icon {
    position: relative;
    width: 72px; height: 72px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    backdrop-filter: blur(8px);
}
.step-modern-item:hover .step-modern-icon {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-color: transparent;
    color: #fff;
    transform: scale(1.12);
    box-shadow: 0 12px 32px rgba(37,99,235,0.5);
}

.step-modern-badge {
    position: absolute;
    top: -6px; right: -6px;
    width: 22px; height: 22px;
    background: var(--color-accent);
    border-radius: 50%;
    font-size: 0.6875rem;
    font-weight: 900;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--color-primary);
    line-height: 1;
}

.step-modern-body { flex: 1; }
.step-modern-title {
    font-size: 0.9375rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.step-modern-desc {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}
.step-modern-item:hover .step-modern-desc { color: rgba(255,255,255,0.75); }

.steps-modern-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius-lg);
    flex-wrap: wrap;
}
.steps-modern-cta p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    margin: 0;
}

/* ========================================
   FEATURED PRODUCTS
   ======================================== */
.featured-section {
    background: var(--bg-secondary);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.featured-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: var(--shadow-card);
}
.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37,99,235,0.2);
}

.featured-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
    flex-shrink: 0;
}
.featured-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.featured-card:hover .featured-card-img img { transform: scale(1.08); }

.featured-card-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    background: linear-gradient(135deg, #f59e0b, #e85d04);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

.featured-card-body {
    padding: 1.125rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.featured-card-cat {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.featured-card-title {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.35;
    letter-spacing: -0.01em;
    flex: 1;
    margin-bottom: 1rem;
}
.featured-card:hover .featured-card-title { color: var(--color-secondary); }

.featured-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.875rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.featured-card-price {
    display: flex;
    flex-direction: column;
}
.featured-price-val {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
}
.featured-price-request {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.featured-price-unit {
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.featured-card-link {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(37,99,235,0.08);
    color: var(--color-secondary);
    border-radius: 50%;
    font-size: 0.8125rem;
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    flex-shrink: 0;
}
.featured-card:hover .featured-card-link {
    background: var(--color-secondary);
    color: #fff;
    transform: scale(1.15);
}

/* ========================================
   FAQ MODERN
   ======================================== */
.faq-modern-section {
    background: var(--bg-primary);
}

.faq-modern-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}

.faq-modern-left {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}
.faq-modern-left .section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}
.faq-modern-sub {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.faq-modern-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}
.faq-stat { display: flex; flex-direction: column; align-items: center; }
.faq-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-secondary);
    letter-spacing: -0.03em;
    line-height: 1;
}
.faq-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}

.faq-modern-right {
    display: flex;
    flex-direction: column;
}

.faq-modern-item {
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.25s ease;
}
.faq-modern-item:first-child { border-top: 1px solid var(--border-color); }
.faq-modern-item.active { border-color: rgba(37,99,235,0.2); }

.faq-modern-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.375rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}
.faq-modern-question:hover .faq-modern-q-text { color: var(--color-secondary); }

.faq-modern-num {
    font-size: 0.6875rem;
    font-weight: 900;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    width: 28px;
    transition: color 0.2s;
}
.faq-modern-item.active .faq-modern-num { color: var(--color-secondary); }

.faq-modern-q-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color 0.2s;
}

.faq-modern-icon {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--color-secondary);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.faq-modern-item.active .faq-modern-icon {
    background: var(--color-secondary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-modern-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-modern-item.active .faq-modern-answer { max-height: 600px; }

.faq-modern-answer-content {
    padding: 0 0 1.5rem 2.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ========================================
   ABOUT MODERN
   ======================================== */
.about-modern-section {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}
.about-modern-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.about-modern-bg::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
    top: -200px; right: -200px;
}
.about-modern-bg::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 65%);
    bottom: -100px; left: 5%;
}

.about-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-modern-section .section-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--color-accent);
}

.about-modern-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.about-modern-title span {
    background: linear-gradient(135deg, var(--color-accent), #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-modern-text {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-modern-metrics {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    margin-bottom: 1.75rem;
}
.about-metric { text-align: center; flex: 1; }
.about-metric-val {
    display: block;
    font-size: 1.875rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}
.about-metric-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    letter-spacing: 0.03em;
}
.about-metric-divider {
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.about-modern-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.about-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}
.about-check i { color: var(--color-success); font-size: 0.875rem; flex-shrink: 0; }

.about-modern-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Right image */
.about-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.about-modern-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    display: block;
}
.about-img-badge {
    position: absolute;
    bottom: 1.5rem; left: -1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    min-width: 180px;
}
.about-img-badge i {
    font-size: 1.5rem;
    color: var(--color-accent);
    flex-shrink: 0;
}
.about-img-badge strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}
.about-img-badge span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.about-img-years {
    position: absolute;
    top: 1.5rem; right: -1rem;
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37,99,235,0.5);
    border: 3px solid rgba(255,255,255,0.15);
}
.about-years-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.about-years-text {
    font-size: 0.5625rem;
    color: rgba(255,255,255,0.75);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* ========================================
   NEWS MODERN
   ======================================== */
.news-modern-section { background: var(--bg-secondary); }

.news-modern-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* Featured big card */
.news-modern-featured {
    text-decoration: none;
    display: block;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.news-modern-featured:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }

.news-modern-featured-img {
    position: relative;
    height: 480px;
    overflow: hidden;
}
.news-modern-featured-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.news-modern-featured:hover .news-modern-featured-img img { transform: scale(1.05); }

.news-modern-featured-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,8,16,0.92) 0%, rgba(5,8,16,0.3) 50%, transparent 100%);
}
.news-modern-featured-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    z-index: 1;
}
.news-modern-date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.news-modern-featured-title {
    font-size: 1.375rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.news-modern-featured-excerpt {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.news-modern-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-accent);
    transition: gap 0.2s;
}
.news-modern-featured:hover .news-modern-cta { gap: 0.65rem; }

/* Side list */
.news-modern-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-modern-item {
    display: flex;
    gap: 0;
    align-items: stretch;
    text-decoration: none;
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: var(--shadow-sm);
}
.news-modern-item:hover {
    border-color: rgba(37,99,235,0.2);
    box-shadow: 0 8px 24px rgba(37,99,235,0.08);
    transform: translateX(4px);
}

.news-modern-item-img {
    width: 110px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--bg-light);
    align-self: stretch;
}
.news-modern-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.news-modern-item:hover .news-modern-item-img img { transform: scale(1.1); }

.news-modern-item-body {
    padding: 0.875rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.news-modern-item-body .news-modern-date { margin-bottom: 0.375rem; }

.news-modern-item-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-modern-item:hover .news-modern-item-title { color: var(--color-secondary); }

.news-modern-item-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-top: auto;
    transition: gap 0.2s;
}
.news-modern-item:hover .news-modern-item-link { gap: 0.5rem; }

/* ========================================
   CONTACT MODERN
   ======================================== */
.contact-modern-section {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}
.contact-modern-bg {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.contact-modern-bg::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 65%);
    bottom: -100px; left: -100px;
}
.contact-modern-bg::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 65%);
    top: -50px; right: 10%;
}

.contact-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.contact-modern-section .section-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--color-accent);
}

.contact-modern-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.contact-modern-title span {
    background: linear-gradient(135deg, var(--color-accent), #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-modern-sub {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-modern-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.contact-modern-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    color: inherit;
}
.contact-modern-item:hover {
    background: rgba(37,99,235,0.12);
    border-color: rgba(37,99,235,0.3);
    transform: translateX(4px);
    color: inherit;
}
.contact-modern-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: 12px;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37,99,235,0.35);
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.contact-modern-item:hover .contact-modern-icon { transform: scale(1.1); }
.contact-modern-item-body { flex: 1; min-width: 0; }
.contact-modern-label {
    display: block;
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}
.contact-modern-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}
.contact-modern-arrow {
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
    transition: all 0.2s;
    flex-shrink: 0;
}
.contact-modern-item:hover .contact-modern-arrow {
    color: var(--color-accent);
    transform: translateX(4px);
}

.contact-modern-messengers {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.contact-modern-messengers-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    width: 100%;
    margin-bottom: 0.25rem;
}
.contact-messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.contact-wa { background: rgba(37,211,102,0.2); border: 1px solid rgba(37,211,102,0.3); }
.contact-wa:hover { background: #25D366; box-shadow: 0 6px 20px rgba(37,211,102,0.4); transform: translateY(-2px); color: #fff; }
.contact-tg { background: rgba(0,136,204,0.2); border: 1px solid rgba(0,136,204,0.3); }
.contact-tg:hover { background: #0088cc; box-shadow: 0 6px 20px rgba(0,136,204,0.4); transform: translateY(-2px); color: #fff; }

/* ========================================
   MAP MODERN
   ======================================== */
.map-modern-wrap {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.map-modern-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-modern-card {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
    width: 320px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.8);
}

.map-modern-title {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.map-modern-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-modern-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.map-modern-item-link:hover { color: var(--color-secondary); }
.map-modern-item-link:hover .map-modern-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37,99,235,0.4);
}

.map-modern-icon {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: 10px;
    font-size: 0.875rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(37,99,235,0.3);
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.map-modern-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}
.map-modern-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ========================================
   CONTACTS PAGE
   ======================================== */
.contacts-hero {
    position: relative;
    padding: 5rem 0 4rem;
    background: var(--color-primary);
    overflow: hidden;
    text-align: center;
}
.contacts-hero-bg {
    position: absolute; inset: 0; pointer-events: none;
}
.contacts-hero-bg::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 65%);
    top: -200px; left: 50%;
    transform: translateX(-50%);
}
.contacts-hero-content { position: relative; z-index: 1; }
.contacts-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    line-height: 1.1;
}
.contacts-hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto;
}
.contacts-hero .page-breadcrumbs { color: rgba(255,255,255,0.4); }
.contacts-hero .page-breadcrumbs a { color: rgba(255,255,255,0.5); }

/* Contact cards */
.contacts-cards-section {
    background: var(--bg-secondary);
    padding: var(--spacing-3xl) 0;
}
.contacts-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.contacts-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    box-shadow: var(--shadow-card);
}
.contacts-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37,99,235,0.2);
}
.contacts-card-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.contacts-card:hover .contacts-card-icon { transform: scale(1.1) rotate(-5deg); }
.contacts-card-blue   { background: linear-gradient(135deg, #2563eb, #1d4ed8); box-shadow: 0 4px 12px rgba(37,99,235,0.35); }
.contacts-card-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); box-shadow: 0 4px 12px rgba(139,92,246,0.35); }
.contacts-card-green  { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 4px 12px rgba(16,185,129,0.35); }
.contacts-card-orange { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 12px rgba(245,158,11,0.35); }

.contacts-card-body { flex: 1; min-width: 0; }
.contacts-card-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 3px;
}
.contacts-card-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}
.contacts-card-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.contacts-card-arrow {
    color: var(--text-muted);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.2s;
}
.contacts-card:hover .contacts-card-arrow {
    color: var(--color-secondary);
    transform: translateX(4px);
}

/* Guarantee list */
.contacts-guarantee {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}
.contacts-guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}
.contacts-guarantee-item i { color: var(--color-success); font-size: 1rem; flex-shrink: 0; }

/* ========================================
   GALLERY MODERN
   ======================================== */
.gallery-modern-section { background: var(--bg-primary); }

.gallery-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 2rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 2.5rem;
    width: fit-content;
}
.gallery-stat-item { text-align: center; }
.gallery-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-secondary);
    letter-spacing: -0.03em;
    line-height: 1;
}
.gallery-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 2px;
}
.gallery-stat-divider {
    width: 1px; height: 36px;
    background: var(--border-color);
    flex-shrink: 0;
}

.gallery-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.gallery-modern-featured { grid-column: span 2; }

.gallery-modern-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    box-shadow: var(--shadow-card);
}
.gallery-modern-featured { aspect-ratio: 16/9; }

.gallery-modern-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
    display: block;
}
.gallery-modern-item:hover img { transform: scale(1.08); }

.gallery-modern-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,15,30,0.85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.gallery-modern-item:hover .gallery-modern-overlay { opacity: 1; }

.gallery-modern-zoom {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    font-size: 1.125rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    transform: scale(0);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    margin-bottom: 0.75rem;
}
.gallery-modern-item:hover .gallery-modern-zoom { transform: scale(1); }

.gallery-modern-caption {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-align: center;
    padding: 0 1rem;
    position: absolute;
    bottom: 1rem; left: 0; right: 0;
}

.gallery-modern-num {
    position: absolute;
    top: 0.625rem; right: 0.625rem;
    font-size: 0.6875rem;
    font-weight: 900;
    color: rgba(255,255,255,0.8);
    background: rgba(10,15,30,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 0.15rem 0.4rem;
    letter-spacing: 0.05em;
}

/* Empty state */
.gallery-empty {
    text-align: center;
    padding: 5rem 0;
}
.gallery-empty-icon {
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}
.gallery-empty h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}
.gallery-empty p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* CTA block */
.gallery-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.gallery-cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.gallery-cta-sub {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 480px;
}
.gallery-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* Gallery lightbox */
.gallery-lightbox {
    position: fixed; inset: 0;
    z-index: var(--z-modal);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}
.gallery-lightbox.active { opacity: 1; visibility: visible; }

.gallery-lightbox-overlay {
    position: absolute; inset: 0;
    background: rgba(5,8,16,0.97);
    backdrop-filter: blur(12px);
}

.gallery-lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 95vw;
    max-height: 95vh;
}

.gallery-lightbox-img-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gallery-lightbox-img {
    max-width: 80vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    transition: opacity 0.15s ease;
}
.gallery-lightbox-caption {
    margin-top: 0.875rem;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    text-align: center;
}

.gallery-lightbox-close {
    position: fixed;
    top: 1.5rem; right: 1.5rem;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: #fff;
    font-size: 1.125rem;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
}
.gallery-lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

.gallery-lightbox-prev,
.gallery-lightbox-next {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
    flex-shrink: 0;
}
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(37,99,235,0.5);
    color: #fff;
    border-color: rgba(37,99,235,0.4);
    transform: scale(1.1);
}

.gallery-lightbox-counter {
    position: fixed;
    bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    background: rgba(255,255,255,0.06);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

/* ========================================
   NEWS LIST PAGE
   ======================================== */
.news-list-section { background: var(--bg-secondary); }

.news-list-featured {
    display: block;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card-hover);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.news-list-featured:hover { transform: translateY(-4px); box-shadow: 0 32px 80px rgba(0,0,0,0.15); }

.news-list-featured-img {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.news-list-featured-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.news-list-featured:hover .news-list-featured-img img { transform: scale(1.04); }

.news-list-featured-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,8,16,0.95) 0%, rgba(5,8,16,0.4) 50%, transparent 100%);
}
.news-list-featured-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2.5rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.news-list-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-accent);
    padding: 0.3rem 0.875rem;
    border-radius: 50px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.news-list-featured-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.025em;
    max-width: 700px;
}
.news-list-featured-excerpt {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    max-width: 600px;
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.news-list-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    box-shadow: var(--shadow-card);
}
.news-list-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37,99,235,0.2);
}
.news-list-card-img {
    height: 220px; overflow: hidden; background: var(--bg-light);
}
.news-list-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.news-list-card:hover .news-list-card-img img { transform: scale(1.07); }
.news-list-card-body {
    padding: 1.375rem 1.5rem;
    display: flex; flex-direction: column; flex: 1;
}
.news-list-card-title {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin: 0.5rem 0 0.75rem;
    flex: 1;
}
.news-list-card:hover .news-list-card-title { color: var(--color-secondary); }
.news-list-card-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.news-list-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-top: auto;
    transition: gap 0.2s;
}
.news-list-card:hover .news-list-card-link { gap: 0.6rem; }

/* ========================================
   NEWS ARTICLE PAGE
   ======================================== */
.news-article-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background: var(--color-primary);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.news-article-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,8,16,0.97) 0%, rgba(5,8,16,0.5) 60%, rgba(5,8,16,0.3) 100%);
}
.news-article-hero-content {
    position: relative; z-index: 1;
    padding: 3rem 0;
    max-width: 800px;
}
.news-article-date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-bottom: 1rem;
}
.news-article-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}
.news-article-excerpt {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 600px;
}

.news-article-section { background: var(--bg-secondary); }
.news-article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

.news-article-content {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}
.news-article-body {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}
.news-article-body p { margin-bottom: 1.25rem; }

.news-article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}
.news-share-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
}
.news-share-links { display: flex; gap: 0.5rem; }
.news-share-btn {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.news-share-btn:hover { transform: translateY(-3px) scale(1.1); color: #fff; }
.news-share-vk { background: #4C75A3; }
.news-share-tg { background: #0088cc; }
.news-share-wa { background: #25D366; }

.news-article-back { margin-top: 0.5rem; }

/* Sidebar */
.news-article-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.news-sidebar-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}
.news-sidebar-title {
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.news-sidebar-sub {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.news-sidebar-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 1rem;
}
.news-sidebar-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}
.news-sidebar-contact:hover { color: var(--color-secondary); }
.news-sidebar-contact i { color: var(--color-secondary); width: 16px; flex-shrink: 0; }

.news-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.news-sidebar-item {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    align-items: flex-start;
    transition: all 0.2s;
}
.news-sidebar-item:hover { transform: translateX(4px); }
.news-sidebar-item img {
    width: 64px; height: 52px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.news-sidebar-item-date {
    display: block;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-bottom: 3px;
    font-weight: 600;
}
.news-sidebar-item-title {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}
.news-sidebar-item:hover .news-sidebar-item-title { color: var(--color-secondary); }

.news-sidebar-all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-decoration: none;
    transition: gap 0.2s;
}
.news-sidebar-all:hover { gap: 0.6rem; }

/* ========================================
   ABOUT STATS SECTION
   ======================================== */
.about-stats-section {
    background: var(--color-primary);
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}
.about-stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}
.about-stats-item:last-child { border-right: none; }
.about-stats-item:hover { background: rgba(255,255,255,0.03); }
.about-stats-num {
    font-size: 2.25rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.about-stats-num span { color: var(--color-accent); }
.about-stats-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    line-height: 1.4;
}

/* ========================================
   ABOUT REQUISITES
   ======================================== */
.about-requisites-wrap { max-width: 860px; margin: 0 auto; }
.about-requisites {
    background: var(--bg-primary);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.about-req-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.125rem 1.75rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.15s;
}
.about-req-row:last-child { border-bottom: none; }
.about-req-row:hover { background: var(--bg-secondary); }
.about-req-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    width: 220px;
    flex-shrink: 0;
}
.about-req-value {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ========================================
   PROMOTIONS
   ======================================== */
.promos-section { background: var(--bg-secondary); }

.promos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.promo-modern-card {
    background: var(--bg-primary);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    display: flex;
    flex-direction: column;
}
.promo-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(37,99,235,0.15);
}

.promo-modern-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
}
.promo-modern-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.promo-modern-card:hover .promo-modern-img img { transform: scale(1.05); }
.promo-modern-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; color: rgba(255,255,255,0.3);
}
.promo-modern-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.8125rem; font-weight: 800;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(245,158,11,0.45);
    text-transform: uppercase; letter-spacing: 0.03em;
}

.promo-modern-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.promo-modern-meta {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 0.875rem; flex-wrap: wrap;
}
.promo-modern-deadline {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.8125rem; font-weight: 600;
    color: var(--color-error);
    background: rgba(239,68,68,0.08);
    padding: 0.25rem 0.75rem; border-radius: 50px;
}
.promo-modern-code {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.8125rem; font-weight: 700;
    color: var(--color-secondary);
    background: rgba(37,99,235,0.08);
    padding: 0.25rem 0.75rem; border-radius: 50px;
    font-family: monospace;
}
.promo-modern-title {
    font-size: 1.25rem; font-weight: 900;
    color: var(--text-primary); line-height: 1.3;
    letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.promo-modern-excerpt {
    font-size: 0.9375rem; color: var(--text-secondary);
    line-height: 1.7; margin-bottom: 1.5rem; flex: 1;
}
.promo-modern-footer {
    display: flex; align-items: center; gap: 1.25rem;
    margin-top: auto;
}
.promo-modern-more {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.875rem; font-weight: 700;
    color: var(--color-secondary); text-decoration: none;
    transition: gap 0.2s;
}
.promo-modern-more:hover { gap: 0.6rem; color: var(--color-secondary); }

/* Promo code block */
.promo-code-block {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(37,99,235,0.05);
    border: 1.5px dashed rgba(37,99,235,0.3);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.promo-code-label {
    font-size: 0.875rem; font-weight: 700;
    color: var(--text-secondary);
    display: flex; align-items: center; gap: 0.4rem;
}
.promo-code-value {
    font-size: 1.5rem; font-weight: 900;
    color: var(--color-secondary);
    font-family: monospace; letter-spacing: 0.05em;
    flex: 1;
}
.promo-code-copy {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.5rem 1rem; background: var(--color-secondary);
    color: #fff; border-radius: 8px; font-size: 0.875rem;
    font-weight: 700; cursor: pointer; border: none;
    transition: all 0.2s;
}
.promo-code-copy:hover { background: var(--color-secondary-dark); }

/* Promo sidebar */
.promo-sidebar-discount {
    text-align: center; margin-bottom: 1rem;
    font-size: 3rem; font-weight: 900;
    color: var(--color-accent); line-height: 1;
    letter-spacing: -0.03em;
}
.promo-sidebar-discount span {
    display: block; font-size: 0.875rem;
    font-weight: 600; color: var(--text-muted);
    letter-spacing: 0;
}
.promo-sidebar-deadline {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; color: var(--color-error);
    font-weight: 600; margin-top: 0.75rem;
}

/* Hero promo badges */
.promo-hero-badges {
    display: flex; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap;
}
.promo-hero-discount {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--color-accent); color: #fff;
    font-size: 0.875rem; font-weight: 800;
    padding: 0.375rem 1rem; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(245,158,11,0.45);
}
.promo-hero-deadline {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem; font-weight: 600;
    padding: 0.375rem 1rem; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
}

/* Form wrap */
.contact-modern-form-wrap {
    background: rgba(255,255,255,0.97);
    border-radius: 24px;
    padding: 2.25rem;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}
.contact-modern-form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}
.contact-form-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: 12px;
    font-size: 1.125rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37,99,235,0.35);
}
.contact-form-title {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}
.contact-form-sub {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ========================================
   REGIONS MODERN
   ======================================== */
.regions-section {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.regions-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.regions-bg-decor::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 65%);
    top: -200px; right: -200px;
}
.regions-bg-decor::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 65%);
    bottom: -150px; left: -100px;
}

.regions-section .section-title { color: #fff; }
.regions-section .section-description { color: rgba(255,255,255,0.6); }
.regions-section .section-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--color-accent);
}

.regions-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.region-modern-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    cursor: pointer;
}
.region-modern-item:hover {
    background: rgba(37,99,235,0.15);
    border-color: rgba(37,99,235,0.4);
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(37,99,235,0.2);
}

.region-modern-num {
    font-size: 0.75rem;
    font-weight: 900;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.05em;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    width: 24px;
}

.region-modern-body {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.region-modern-icon {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: 10px;
    color: #fff;
    font-size: 0.9375rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37,99,235,0.35);
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.region-modern-item:hover .region-modern-icon {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(37,99,235,0.5);
}

.region-modern-name {
    font-weight: 700;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.region-modern-item:hover .region-modern-name { color: #fff; }

.region-modern-arrow {
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.3s;
}
.region-modern-item:hover .region-modern-arrow {
    color: var(--color-accent);
    transform: translateX(4px);
}

.regions-bottom {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.regions-stat {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.9375rem;
    font-weight: 600;
}
.regions-stat i {
    color: var(--color-accent);
    font-size: 1rem;
}
