@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #00BEEF;
    --primary-light: #E5F8FE;
    --primary-dark: #0098BF;
    
    --star-color: #FFC107;
    --purple-color: #8338EC;
    --red-color: #FF006E;
    --green-color: #06D6A0;
    --orange-color: #FB8500;
    
    --text-color: #2B2D42;
    --text-light: #6C757D;
    --bg-color: #FFFFFF;
    --bg-light: #F4FAFC;
    --border-color: #E9ECEF;
    
    --shadow-sm: 0 4px 12px rgba(0, 190, 239, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 190, 239, 0.12);
    --shadow-lg: 0 20px 40px rgba(0, 190, 239, 0.18);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-family: 'Poppins', sans-serif;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-pill: 100px;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.bg-light { background-color: var(--bg-light); }

/* Typography */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 50px;
}

.section-title.no-margin {
    margin-bottom: 0;
}

.link-more {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-color);
}

.link-more:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary { background-color: var(--primary-color); color: white; box-shadow: 0 8px 20px rgba(0, 190, 239, 0.3); }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0, 190, 239, 0.4); }
.btn-light { background-color: white; color: var(--text-color); }
.btn-light:hover { background-color: var(--bg-light); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Header - Modern Glassmorphism */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Removed border-bottom for cleaner look */
}

.header.scrolled { 
    padding: 0; 
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 190, 239, 0.08); 
}

.header-container { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; padding-bottom: 10px; }

/* Language Switcher */
.lang-switcher {
    position: relative;
    cursor: pointer;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-color);
    padding: 12px 12px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    background: white;
    border: 1px solid var(--border-color);
}

.lang-current:hover {
    background: var(--bg-light);
    border-color: var(--primary-light);
    color: var(--primary-color);
}

.lang-current i { width: 16px; height: 16px; }

.lang-current .chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.lang-switcher:hover .chevron {
    transform: rotate(180deg);
}

.lang-list {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    min-width: 80px;
    border: 1px solid var(--border-color);
}

.lang-switcher:hover .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-list li a {
    display: block;
    padding: 8px 16px;
    text-align: center;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-light);
}

.lang-list li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.lang-list li a.active {
    background: var(--primary-color);
    color: white;
}


.logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.nav ul { display: flex; align-items: center; gap: 32px; }
.nav a { font-weight: 600; color: var(--text-color); position: relative; padding: 5px 0; }
.nav a:hover { color: var(--primary-color); }
.nav a.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--text-color);
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
}

.header-contact:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.mobile-menu-btn { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.mobile-menu-btn span { width: 24px; height: 3px; background-color: var(--text-color); border-radius: 3px; }

/* Hero Slider — legacy rule, overridden for new .mhero variant */
.hero-slider {
    padding-top: 120px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
/* When the section uses the modern .mhero variant — neutralise legacy paddings/height
   so the slider can occupy the FULL viewport (handled by .mhero / .mhero-stage rules) */
.hero-slider.mhero,
section.hero-slider.mhero {
    padding: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
}

.main-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
}

.slide-content {
    display: flex;
    align-items: center;
    gap: 60px;
    height: 100%;
    padding: 40px 24px;
}

.slide-text { flex: 1; }
.slide-text h1 { font-size: clamp(2.5rem, 4.5vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.slide-text h1 span { color: var(--primary-color); }
.slide-text p { font-size: clamp(1rem, 1.5vw, 1.3rem); color: var(--text-light); margin-bottom: 40px; max-width: 90%; }

.slide-image { flex: 1; height: 100%; max-height: 450px; }

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 40px 40px 40px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.placeholder-image.alt-bg { background: linear-gradient(135deg, #66DDF5, var(--primary-color)); }
.placeholder-image.brand-bg { background: linear-gradient(135deg, #B3EDFC, var(--primary-dark)); }
.placeholder-icon { width: 120px; height: 120px; opacity: 0.3; }
.placeholder-image.sm { border-radius: 20px 20px 0 0; box-shadow: none; height: 200px; }
.placeholder-icon.sm { width: 64px; height: 64px; }

/* Modern Stats Grid */
.modern-stats-section {
    padding-bottom: 60px;
    /* Must sit ABOVE the hero cloud divider (z-index:10) so the white
       parallax tail from .hero-cloud-divider::before never bleeds into
       the stats section during scroll. */
    position: relative;
    z-index: 20;
    background-color: var(--bg-color);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.text-left { text-align: left; left: 0; transform: none; margin-bottom: 16px; }
.text-left::after { left: 0; transform: none; }

.stats-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    font-weight: 500;
}

.stats-decoration svg { width: 48px; height: 48px; opacity: 0.8; }

.modern-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


.modern-stat-card {
    position: relative;
    padding: 40px 32px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    min-height: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.modern-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.modern-stat-card:hover 
.stat-info {
    position: relative;
    z-index: 2;
}
.stat-info h3 {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 4px;
    line-height: 1;
}
.stat-info p {
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
    font-weight: 600;
    margin: 0;
}
.bg-pink { background-color: #FF8BA7; }
.bg-cyan { background-color: #33C3C3; }
.bg-yellow { background-color: #FFC033; }
.bg-rose { background-color: #FF7E67; }

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.cards-grid.grid-1 { grid-template-columns: 1fr; }
.cards-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Promotions Swiper (>3 items) */
.promo-swiper-wrap { position: relative; }
.promo-swiper { overflow: hidden; }
.promo-swiper .swiper-slide { height: auto; }
.promo-swiper .card { height: 100%; display: flex; flex-direction: column; }
.promo-swiper .card-content { flex: 1; }
.promo-swiper-prev,
.promo-swiper-next {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 40px; height: 40px; border-radius: 50%; background: #fff;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--primary-color); transition: all 0.2s;
}
.promo-swiper-prev:hover,
.promo-swiper-next:hover { background: var(--primary-color); color: #fff; }
.promo-swiper-prev { left: -20px; }
.promo-swiper-next { right: -20px; }
.promo-swiper-prev.swiper-button-disabled,
.promo-swiper-next.swiper-button-disabled { opacity: 0.35; pointer-events: none; }

.card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card-content { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 0.9rem; }
.card-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; line-height: 1.25; }
.card-desc { color: var(--text-light); margin-bottom: 20px; line-height: 1.3; flex: 1; }

/* Badges & Tags */
.badge {
    position: absolute;
    top: 20px; left: 20px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.9rem;
    color: white;
    z-index: 10;
}
.badge-red { background-color: var(--red-color); }
.badge-orange { background-color: var(--orange-color); }
.badge-purple { background-color: var(--purple-color); }

.tag {
    background: var(--bg-light);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
}

.status { font-weight: 700; color: var(--green-color); }
.date { color: var(--text-light); font-weight: 600; }
.read-time { display: flex; align-items: center; gap: 6px; color: var(--text-light); font-weight: 600; }
.read-time svg { width: 16px; height: 16px; }

/* Progress Bar */
.progress-container { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.progress-bar { flex: 1; height: 8px; background: var(--border-color); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--primary-color); border-radius: 4px; }
.progress-text { font-weight: 800; font-size: 0.9rem; color: var(--text-color); width: 40px; text-align: right; }

/* Blog Specific */
.author-meta { display: flex; gap: 8px; font-size: 0.9rem; color: var(--text-light); font-weight: 600; margin-top: auto; }

/* Store Specific */
.store-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.rating { display: flex; align-items: center; gap: 4px; font-weight: 800; }
.star-icon { color: var(--star-color); fill: var(--star-color); width: 18px; height: 18px; }
.store-address, .store-hours { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; color: var(--text-light); margin-bottom: 12px; font-weight: 500; line-height: 1.5; }
.store-address svg, .store-address i, .store-hours svg { display: none; }
.store-amenities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border-color); }
.amenity { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--text-color); background: var(--bg-light); padding: 6px 12px; border-radius: var(--radius-sm); }
.amenity svg { width: 14px; height: 14px; color: var(--text-light); }

/* CTA Banners */
.cta-section { padding: 40px 0; }
.cta-banner {
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    /* clip sides+bottom (rings stay inside), top open (phone exits) */
    overflow: visible;
    clip-path: inset(-50% -0.5px 0 -0.5px round var(--radius-lg));
}
.cta-content { flex: 1; position: relative; z-index: 2; max-width: 600px; }
.cta-content h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; font-style: normal; }
.cta-content p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }

/* Using Brand Colors for CTAs */
.cta-brand-light { background: var(--primary-light); color: var(--text-color); box-shadow: var(--shadow-sm); position: relative; min-height: 200px; padding: 40px 60px; }
.cta-brand { background: var(--primary-color); color: white; box-shadow: var(--shadow-md); position: relative; min-height: 200px; padding: 40px 60px; }
.cta-telegram { background: var(--primary-color); color: white; box-shadow: var(--shadow-md); position: relative; min-height: 200px; padding: 40px 60px; }
.cta-white { background: #FFFFFF; color: var(--text-color); border: 2px solid var(--primary-light); box-shadow: var(--shadow-sm); }

.cta-brand-light .btn-primary { background: var(--primary-color); color: white; }
.cta-brand-light .btn-primary:hover { background: var(--primary-dark); }
.cta-brand .btn-light { background: white; color: var(--primary-color); }
.cta-brand .btn-light:hover { background: var(--bg-light); }
.cta-telegram .btn-light { background: white; color: var(--text-color); font-weight: 700; }
.cta-telegram .btn-light:hover { background: var(--bg-light); }

/* Telegram CTA — Phone Visual */
.cta-phone-visual {
    position: absolute;
    right: 60px;
    bottom: 0;
    width: 280px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
/* Morphing SVG blob behind the phone */
.cta-phone-visual::before { display: none; } /* disable old pseudo */
.cta-blob {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: auto;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;

    animation: ctaBlobSpin 20s linear infinite, ctaBlobBreath 6s ease-in-out infinite;
}
.cta-blob path {
    fill: rgba(255, 255, 255, 0.8);
}
.cta-brand-light .cta-blob path {
    fill: rgba(0, 190, 239, 0.5);
}
.cta-brand .cta-blob path,
.cta-telegram .cta-blob path {
    fill: rgba(255, 255, 255, 0.45);
}
@keyframes ctaBlobSpin {
    0%   { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}
@keyframes ctaBlobBreath {
    0%, 100% { opacity: 0.65; }
    50%      { opacity: 0.9; }
}
.cta-phone-img {
    position: relative;
    z-index: 3;
    max-height: 300px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    display: block;
    transition: transform 0.4s ease;
}
.cta-phone-visual:hover .cta-phone-img {
    transform: translateY(-6px);
}
.cta-phone-rings {
    display: none !important;
}
.cta-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
}
.cta-brand-light .cta-ring {
    border-color: rgba(0, 190, 239, 0.1);
}
.cta-ring-1 { /* removed */ }
.cta-ring-2 { /* removed */ }
.cta-ring-3 { /* removed */ }
.cta-ring-1 { }
.cta-ring-2 { }
.cta-ring-3 { }
/* ctaRingPulse removed — rings disabled */

/* Custom overlay image – replaces decorative rings when admin sets
   an overlayImage for a CTA block. Fills the same visual area so
   layout/spacing stays identical. */
.cta-custom-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 440px;
    max-height: 440px;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}
.cta-telegram .cta-content,
.cta-brand .cta-content,
.cta-brand-light .cta-content {
    max-width: 50%;
}
.cta-telegram .cta-content h2,
.cta-brand .cta-content h2,
.cta-brand-light .cta-content h2 {
    font-weight: 800;
    font-style: normal;
    letter-spacing: -0.01em;
}

.cta-illustration { 
    position: absolute; 
    right: -20px; 
    bottom: -40px; 
    z-index: 1;
}
.cta-illustration svg { width: 350px; height: 350px; }
.cta-brand .cta-illustration { display: none; }
.cta-telegram .cta-illustration { display: none; }
.cta-brand-light .cta-illustration { display: none; }
.cta-white .cta-illustration { opacity: 0.15; color: var(--primary-color); }


 /* Subtler for light bg */

/* Footer - Light Brand Theme */
.footer { background-color: #E7F7F7; padding-top: 80px; position: relative; overflow: hidden; }
.footer::after { display: none; }
.footer-container { position: relative; z-index: 1; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.logo-footer { height: 65px; display: block; margin-bottom: 24px; } /* Removed invert filter so logo stays cyan */
.footer-brand p { color: var(--text-light); max-width: 300px; font-weight: 500; }
.footer h4 { font-size: 1.25rem; font-weight: 800; margin-bottom: 24px; color: var(--text-color); }
.footer ul { display: flex; flex-direction: column; gap: 16px; }
.footer li { color: var(--text-light); transition: var(--transition); display: flex; align-items: center; gap: 12px; font-weight: 600; }
.footer li svg { width: 24px !important; height: 24px !important; min-width: 24px; min-height: 24px; flex-shrink: 0; color: var(--primary-color); }
.footer a { display: inline-flex; transition: var(--transition); }
.footer a:hover { color: var(--primary-color); transform: translateX(5px); }
.social-links li a { display: flex; align-items: center; gap: 10px; }
.footer-bottom { background-color: #E7F7F7; padding: 24px 0; }
.footer-bottom p { color: var(--text-light); font-weight: 600; }
.footer-bottom a { color: var(--text-light); font-weight: 700; display: flex; align-items: center; gap: 6px; }
.footer-bottom a:hover { color: var(--primary-color); transform: none; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* Swiper Overrides */
.swiper-pagination-bullet { background: var(--border-color); opacity: 1; width: 10px; height: 10px; transition: var(--transition); }
.swiper-pagination-bullet-active { background: var(--primary-color); width: 30px; border-radius: 5px; }
.swiper-button-next, .swiper-button-prev { color: var(--primary-color); background: white; width: 50px; height: 50px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 1.2rem; font-weight: bold; }

/* Responsive */
@media (max-width: 1024px) {
    .modern-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid, .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }

    /* Phone CTA blocks tablet — phone on top, content below */
    .cta-telegram,
    .cta-brand,
    .cta-brand-light {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        padding: 0 30px 32px 30px;
        min-height: auto;
        overflow: visible;
        clip-path: none;
        gap: 0;
    }
    .cta-telegram .cta-content,
    .cta-brand .cta-content,
    .cta-brand-light .cta-content {
        max-width: 100%;
        text-align: center;
        padding-bottom: 24px;
    }
    .cta-phone-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 260px;
        height: auto;
        overflow: visible;
        margin-top: -10%;
    }
    .cta-phone-img {
        height: auto;
        max-height: 260px;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        display: block;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .nav, .header-contact { display: none; }
    .lang-switcher { display: none; } /* Hide in header on mobile to save space */
    .mobile-menu-btn { display: flex; }
    
    .slide-content { flex-direction: column; text-align: center; justify-content: center; }
    .slide-text h1 { font-size: 2rem; }
    .slide-image { display: none; }
    
    .cards-grid, .cards-grid-4, .modern-stats-grid { grid-template-columns: 1fr; }
    .stats-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .stats-decoration { display: none; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    
    .cta-banner { padding: 40px 24px; text-align: center; }
    .cta-illustration { display: none; }

    /* Phone CTA blocks mobile — phone on top, content below */
    .cta-telegram,
    .cta-brand,
    .cta-brand-light {
        min-height: auto;
        padding: 0 24px 28px 24px;
        overflow: visible;
        flex-direction: column-reverse;
        align-items: center;
        gap: 0;
    }
    .cta-telegram .cta-content,
    .cta-brand .cta-content,
    .cta-brand-light .cta-content {
        max-width: 100%;
        text-align: center;
        padding-bottom: 24px;
    }
    .cta-telegram .cta-content h2,
    .cta-brand .cta-content h2,
    .cta-brand-light .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .cta-telegram .cta-content p,
    .cta-brand .cta-content p,
    .cta-brand-light .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    .cta-phone-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 220px;
        height: auto;
        margin-top: -10%;
        flex-shrink: 0;
        overflow: visible;
    }
    .cta-phone-img {
        height: auto;
        max-height: 240px;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        display: block;
        object-fit: contain;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    }
    .cta-phone-rings { display: none !important; }
    .cta-phone-visual::before { display: none; }
    .cta-blob { display: none; }
    .cta-banner { clip-path: none; overflow: visible; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 15px; }

    /* ── Mobile global sizing tighten ── */
    .section { padding: 40px 0; }
    .container { padding: 0 16px; }
    .section-title { font-size: 1.6rem; margin-bottom: 28px; }
    .section-header { margin-bottom: 24px; }
    .stat-info h3 { font-size: 2rem; }
    .modern-stat-card { padding: 24px 20px; }
    .card-content { padding: 20px; }
    .card-title { font-size: 1.1rem; }
    .card-desc { font-size: 0.85rem; }
    .btn { padding: 12px 24px; font-size: 0.85rem; }
    .cta-banner { padding: 28px 20px; }
    .cta-content h2 { font-size: 1.6rem; margin-bottom: 12px; }
    .cta-content p { font-size: 0.9rem; margin-bottom: 20px; }
    .slide-text h1 { font-size: 1.7rem; }
    .slide-text p { font-size: 0.9rem; margin-bottom: 24px; }
    .footer { padding-top: 40px; }
    .footer-container { gap: 28px; margin-bottom: 28px; }
    .logo-footer { height: 48px; margin-bottom: 16px; }
    .footer-col h4 { font-size: 1rem; margin-bottom: 12px; }
    .footer-col p, .footer-col li { font-size: 0.85rem; }
    .footer-bottom { padding: 16px 0; }
    .footer-bottom p { font-size: 0.8rem; }
    .modern-stats-section { padding-bottom: 30px; }
    .stats-header h2 { font-size: 1.6rem; }
    .boxed-swiper { min-height: auto; padding: 0; border-radius: 0 !important; }
    .slide-content-inner { padding: 28px 18px 36px; gap: 18px; }
    .glass-icon-card { width: 200px; height: 200px; }
}

/* ── Extra small screens ≤480px ── */
@media (max-width: 480px) {
    .section-title { font-size: 1.4rem; margin-bottom: 20px; }
    .slide-text h1 { font-size: 1.5rem; }
    .stat-info h3 { font-size: 1.75rem; }
    .cta-content h2 { font-size: 1.3rem; }
    .cta-telegram .cta-content h2,
    .cta-brand .cta-content h2,
    .cta-brand-light .cta-content h2 { font-size: 1.3rem; }
    .cta-phone-visual { width: 190px; height: auto; }
    .cta-phone-img { max-height: 200px; }
    .glass-icon-card { width: 170px; height: 170px; }
    .btn { padding: 10px 20px; font-size: 0.8rem; }
    .card-content { padding: 16px; }
    .card-title { font-size: 1rem; }

    /* Hero slider – extra small phones: same fixed height */
    .modern-hero { padding-top: 58px; }
    .boxed-swiper .swiper-slide {
        height: 360px !important;
        min-height: 360px !important;
        max-height: 360px !important;
    }
    .slide-content-inner { padding: 36px 16px 44px; gap: 10px; }
    .slide-text h1 { font-size: 1.3rem; margin-bottom: 6px; }
    .slide-text p { font-size: 0.82rem; margin-bottom: 12px; }
    .slide-visual { height: 120px; }
    .glass-icon-card { width: 110px; height: 110px; }
    .slide-phone-img { max-height: 130px !important; height: 130px !important; }
    .slide-children-img { max-height: 130px !important; height: 130px !important; }

    /* Fullscreen slide – small phone */
    .slide-fullscreen-content { padding: 36px 16px; }
    .slide-fullscreen-content h1 { font-size: 1.3rem; margin-bottom: 10px; }
    .slide-fullscreen-content p { font-size: 0.82rem; margin-bottom: 16px; }
    .slide-fullscreen-content .btn-primary { padding: 10px 22px; font-size: 0.82rem; }

    /* Cloud divider even smaller */
    .hero-cloud-divider { height: 40px; }
    .hero-cloud-divider svg,
    .hero-cloud-divider img { height: 40px; }
    .hero-cloud-divider::after { height: 40px; }
    .hero-cloud-divider::before { top: 38px; height: 220px; }
}

.logo img { height: 65px; }

/* Full Width Modern Slider */
.modern-hero { padding-top: 0; padding-bottom: 0; padding-left: 0; padding-right: 0; position: relative; width: 100%; max-width: 100%; }
.modern-hero.mhero { padding: 0; margin-left: 0; margin-right: 0; width: 100%; max-width: 100%; }

/* Hero cloud divider — pinned inside hero at bottom: 0
   The container consists of:
     1) ::before — white "tail" that sits BELOW the SVG clouds and fills
        the area the clouds uncover when parallax lifts them upward.
     2) <svg>  — the actual cloud artwork.
   Both share the container's transform, so they move together as one
   cohesive cloud layer during scroll. */
.hero-cloud-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    line-height: 0;
    pointer-events: none;
    overflow: visible;
    height: 140px;
    /* GPU-accelerated parallax */
    transform: translate3d(0, 0, 0);
    transition: transform 0.05s linear;
    will-change: transform;
}
/* White filler tail — sits BELOW the SVG clouds INSIDE the hero stage.
   Since .mhero-stage has overflow:hidden, this tail can never spill out.
   It only fills the gap revealed by upward parallax. */
.hero-cloud-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 138px;
    height: 260px;
    background: #FFFFFF;
    pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
    .hero-cloud-divider {
        transform: none !important;
        transition: none !important;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-cloud-divider {
        transform: none !important;
        transition: none !important;
    }
}
.hero-cloud-divider svg {
    width: 100%;
    height: 140px;
    display: block;
    margin-bottom: -2px;
    position: relative;
    z-index: 1; /* sit above the white tail */
}
/* PNG cloud silhouette (black on transparent) → rendered as WHITE clouds
   via CSS mask. The original <img> is kept for SEO/fallback but hidden. */
.hero-cloud-divider img {
    width: 100%;
    height: 140px;
    display: block;
    margin-bottom: -2px;
    position: relative;
    z-index: 1;
    visibility: hidden;
}
.hero-cloud-divider::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 140px;
    z-index: 2;
    background: #FFFFFF;
    -webkit-mask: url("../assets/hero-clouds-divider-new.png") center bottom / 100% 100% no-repeat;
            mask: url("../assets/hero-clouds-divider-new.png") center bottom / 100% 100% no-repeat;
    pointer-events: none;
    filter: drop-shadow(0 4px 6px rgba(0, 30, 60, 0.08));
}
.hero-wrapper { padding: 0; width: 100%; flex: 1; display: flex; align-items: stretch; }
.boxed-swiper {
    width: 100%;
    overflow: hidden;
    background: var(--bg-light);
    height: 100%;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 0 0 32px 32px;
}

.slide-bg-1 { background: linear-gradient(135deg, #f0fbfe 0%, #e5f8fe 100%); position: relative; overflow: hidden; }
.slide-bg-2 { background: linear-gradient(135deg, #f4f0fe 0%, #e8e0fd 100%); position: relative; overflow: hidden; }

/* ===== Slide Fullscreen (photo bg + overlay + centered text) ===== */
.slide-fullscreen {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}
.slide-fullscreen-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}
.slide-fullscreen-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
    height: 100%;
}
.slide-fullscreen-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.slide-fullscreen-content h1 span {
    color: #5ccbef;
}
.slide-fullscreen-content p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}
.slide-fullscreen-content .btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(10,143,214,0.35);
}
.slide-fullscreen-content .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(10,143,214,0.45);
}
/* Animations for fullscreen slide */
.slide-fullscreen-content h1,
.slide-fullscreen-content p,
.slide-fullscreen-content .btn-primary {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.swiper-slide-active.slide-fullscreen .slide-fullscreen-content h1 {
    opacity: 1; transform: translateY(0); transition-delay: 0.1s;
}
.swiper-slide-active.slide-fullscreen .slide-fullscreen-content p {
    opacity: 1; transform: translateY(0); transition-delay: 0.25s;
}
.swiper-slide-active.slide-fullscreen .slide-fullscreen-content .btn-primary {
    opacity: 1; transform: translateY(0); transition-delay: 0.4s;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}
.circle-1 { width: 400px; height: 400px; background: var(--primary-color); opacity: 0.2; top: -100px; right: -50px; }
.circle-2 { width: 300px; height: 300px; background: var(--secondary-color); opacity: 0.15; bottom: -50px; left: -50px; }
.circle-3 { width: 500px; height: 500px; background: var(--purple-color); opacity: 0.15; top: -150px; right: -100px; }
.circle-4 { width: 300px; height: 300px; background: var(--primary-color); opacity: 0.15; bottom: 0; left: 10%; }

.slide-content-inner {
    position: relative;
    z-index: 2;
    width: 100%; /* Force full container width inside flex */
    padding: 0 24px; /* Let container handle the padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto; /* Ensure centering inside swiper-slide */
}

.boxed-swiper .slide-text { flex: 1; max-width: 600px; }

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: white;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(0,0,0,0.04);
    margin-bottom: 24px;
}
.badge-purple { color: var(--purple-color); }
.icon-sm { width: 16px; height: 16px; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #0077B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-purple {
    background: linear-gradient(135deg, var(--purple-color), #5e26b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.boxed-swiper .btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    color: var(--text-color);
    border: 1px solid rgba(255,255,255,0.8);
    transition: var(--transition);
}
.btn-glass:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.btn-purple { background-color: var(--purple-color); box-shadow: 0 8px 20px rgba(131, 56, 236, 0.3); }
.btn-purple:hover { background-color: #6A21CD; box-shadow: 0 12px 25px rgba(131, 56, 236, 0.4); }

/* Visual Side */
.slide-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}
.glass-icon-card {
    width: clamp(280px, 35vh, 450px); height: clamp(280px, 35vh, 450px);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 30px 60px rgba(0, 190, 239, 0.3);
    position: relative;
}

.glass-icon-card::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.glass-icon-card i { width: 140px; height: 140px; color: white; opacity: 1; z-index: 2; }

.swiper-slide-active .glass-icon-card {
    animation: float 6s ease-in-out infinite;
}

.icon-purple i { color: var(--purple-color); }

.floating-badge {
    position: absolute;
    background: white;
    padding: 14px 24px;
    border-radius: 20px;
    font-weight: 800;
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    font-size: 1rem;
    display: flex; align-items: center; gap: 8px;
    color: var(--text-color);
}
.star-color { color: var(--star-color); fill: var(--star-color); }
.primary-color { color: var(--primary-color); }
.purple-color { color: var(--purple-color); }

.badge-top { top: 20px; right: -20px; animation: float 5s ease-in-out infinite reverse; }
.badge-bottom { bottom: 40px; left: -40px; animation: float 7s ease-in-out infinite 1s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Animations for text */
.slide-text h1, .slide-text p, .boxed-swiper .btn-group, .slide-text .badge-modern {
    opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.swiper-slide-active .slide-text h1 { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.swiper-slide-active .slide-text p { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.swiper-slide-active .slide-text .btn-group { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.swiper-slide-active .slide-text .badge-modern { opacity: 1; transform: translateY(0); transition-delay: 0s; }

/* Controls overriding */
.modern-pagination { bottom: 30px !important; }
.modern-pagination .swiper-pagination-bullet {
    width: 10px; height: 10px; background: var(--text-light); opacity: 0.3; transition: all 0.4s ease;
}
.modern-pagination .swiper-pagination-bullet-active {
    width: 40px; border-radius: 5px; background: var(--primary-color); opacity: 1;
}

.modern-nav {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    width: 56px; height: 56px;
    border-radius: 50%;
    color: var(--text-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.6);
}
.modern-nav:hover { background: white; color: var(--primary-color); transform: scale(1.05); }
.modern-nav.swiper-button-next { right: 24px; }
.modern-nav.swiper-button-prev { left: 24px; }
.modern-nav:after { font-size: 1.2rem; font-weight: 900; }

@media (max-width: 1024px) {
    
    .glass-icon-card { width: 280px; height: 280px; }
    .badge-top { right: -10px; }
    .badge-bottom { left: -10px; }
}

@media (max-width: 768px) {
    .modern-hero { padding-top: 65px; padding-bottom: 0; }
    .hero-wrapper { padding: 0; display: block; }
    .hero-slider { height: auto; display: block; }

    /* Remove radius, full-width edge-to-edge */
    .boxed-swiper {
        height: auto;
        padding: 0;
        border-radius: 0 !important;
        display: block;
        min-height: auto;
    }

    /* ── ALL slides same fixed height ── */
    .boxed-swiper .swiper-slide {
        height: 420px !important;
        min-height: 420px !important;
        max-height: 420px !important;
        overflow: hidden;
    }

    /* Slide type 1: Full-image banner — same height, cover */
    .hero-slider .swiper-slide:first-child {
        background-position: center !important;
        background-size: cover !important;
    }

    /* Slide type 2: Text + image — vertical stack, fill height */
    .slide-content-inner {
        flex-direction: column;
        padding: 44px 20px 50px;
        text-align: center;
        gap: 14px;
        height: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    .slide-text { flex: none; }
    .slide-text h1 { font-size: 1.6rem; margin-bottom: 8px; }
    .slide-text p { font-size: 0.92rem; margin-bottom: 14px; }
    .slide-text .badge-modern { font-size: 0.8rem; margin-bottom: 6px; }
    .boxed-swiper .btn-group { justify-content: center; }
    .slide-visual {
        flex: none;
        max-width: 100%;
        height: 140px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .glass-icon-card {
        width: 130px; height: 130px;
        margin: 0 auto;
    }
    .glass-icon-card i { width: 50px; height: 50px; }
    .slide-phone-img {
        transform: none !important;
        max-height: 150px !important;
        height: 150px !important;
        object-fit: contain;
        filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
    }
    .slide-children-img {
        transform: none !important;
        max-height: 150px !important;
        height: 150px !important;
        object-fit: contain;
        filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
    }
    .floating-badge { display: none; }
    .modern-nav { display: none; }

    /* Slide type 3: Fullscreen overlay — same height, centered */
    .slide-fullscreen-content {
        padding: 44px 20px;
        max-width: 100%;
        height: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    .slide-fullscreen-content h1 { font-size: 1.55rem; }
    .slide-fullscreen-content p { font-size: 0.95rem; margin-bottom: 22px; }
    .slide-fullscreen-content .btn-primary { padding: 12px 28px; font-size: 0.93rem; }

    /* Cloud divider — smaller on tablet */
    .hero-cloud-divider { height: 55px; }
    .hero-cloud-divider svg,
    .hero-cloud-divider img { height: 55px; }
    .hero-cloud-divider::after { height: 55px; }
    .hero-cloud-divider::before { top: 53px; height: 240px; }

    /* Pagination — compact */
    .modern-pagination { bottom: 14px !important; }
    .modern-pagination .swiper-pagination-bullet { width: 8px; height: 8px; }
    .modern-pagination .swiper-pagination-bullet-active { width: 28px; }
}

/* Image Card Overrides */
.glass-icon-card.image-card {
    transform: rotate(0deg);
    /* We keep the circle background from .glass-icon-card */
}

.slide-phone-img {
    height: 160%;
    max-height: 650px;
    object-fit: contain;
    transform: scale(1.3) translateY(-10px);
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.slide-clothes-img {
    height: 120%;
    max-height: 600px;
    object-fit: contain;
    transform: scale(1.1);
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

.slide-children-img {
    height: 140%;
    max-height: 600px;
    object-fit: contain;
    transform: scale(1.1);
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

.slide-heart-bg {
    position: absolute;
    left: -100px;
    top: auto;
    bottom: -15%;
    height: 120%;
    max-height: 800px;
    object-fit: contain;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.stores-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
    height: 550px;
    margin-top: 40px;
}
.stores-list-container {
    height: 100%;
    overflow-y: auto;
    padding-right: 20px;
    scrollbar-width: thin;
    scrollbar-color: #00BEEF #E2E8F0;
    position: relative;
}
.stores-list-container::before,
.stores-list-container::after {
    content: '';
    position: sticky;
    left: 0;
    right: 0;
    height: 24px;
    display: block;
    pointer-events: none;
    z-index: 2;
    flex-shrink: 0;
}
.stores-list-container::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
}
.stores-list-container::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
}
.stores-list-container::-webkit-scrollbar {
    width: 6px;
}
.stores-list-container::-webkit-scrollbar-track {
    background: #E2E8F0;
    border-radius: 4px;
}
.stores-list-container::-webkit-scrollbar-thumb {
    background-color: #00BEEF;
    border-radius: 4px;
}
.stores-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 6px 2px;
}
.store-list-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}
.store-list-item:hover, .store-list-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}
.store-item-image {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.store-item-image.alt-bg { background: none; }
.store-item-image.brand-bg { background: none; }
.store-item-info {
    flex: 1;
}
p.store-item-info {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0 0 2px 0;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}
.store-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}
.store-item-header h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
}
.store-item-info .rating {
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}
.store-item-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0 0 2px 0;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}
.store-item-info p i {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
}
.store-amenities-mini {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}
.store-amenities-mini span {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}
.store-amenities-mini span i {
    width: 14px;
    height: 14px;
}
/* Bottom row: working hours (left) + Подробнее button (right) */
.store-item-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.store-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
    gap: 8px;
}
.store-item-hours {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.store-item-hours i,
.store-item-hours svg {
    width: 15px;
    height: 15px;
    color: var(--primary-color);
}
.store-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    color: #01BFEF;
    border: 1.5px solid #01BFEF;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
}
.store-detail-btn:hover {
    background: #01BFEF;
    color: #fff;
}
.store-detail-btn svg,
.store-detail-btn i {
    width: 16px;
    height: 16px;
}
.stores-map-container {
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--bg-light);
    position: relative;
}
.yandex-map {
    width: 100%;
    height: 100%;
}
/* Balloon styles */
.ymap-balloon {
    padding: 10px;
    max-width: 280px;
    font-family: var(--font-family);
}
.ymap-balloon h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: var(--text-color);
}
.ymap-balloon p {
    font-size: 0.9rem;
    margin: 0 0 8px 0;
    color: var(--text-color);
    line-height: 1.5;
}
.ymap-balloon p strong {
    color: var(--text-light);
    font-weight: 600;
}
.ymap-balloon .btn-route {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    background: var(--primary-color);
    color: white;
    margin-top: 15px;
    transition: var(--transition);
}
.ymap-balloon .btn-route:hover {
    background: var(--primary-dark);
}

@media (max-width: 992px) {
    .stores-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    .stores-list-container {
        height: auto;
        max-height: 280px; /* Shows 2 items max */
    }
    .stores-map-container {
        height: 400px;
    }
}

.store-item-image i { width: 24px; height: 24px; color: var(--primary-color); }
.store-amenities-mini span i { width: 10px; height: 10px; }

/* Stores Toolbar (location.html filters) */
.stores-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    padding: 20px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}
/* Spinner animation */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
    width: 40px; height: 40px;
    border: 3px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Single Store Page Grid */
.single-store-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}
.store-sidebar {
    position: sticky;
    top: 100px;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Single Store: Contact Info Card */
.store-contact-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}
.store-contact-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 25px;
}
.contact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.contact-row:last-of-type { margin-bottom: 30px; }
.contact-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-row h4 {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 500;
}
.contact-row p {
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0;
}
.contact-row a { color: inherit; }

/* Map Link Chips */
.map-links { display: flex; gap: 10px; margin-top: 15px; flex-wrap: wrap; }
.map-link-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    background: #fff;
}
.map-link-chip:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--primary-light);
    transform: translateY(-1px);
}
.map-link-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Amenity pills */
.amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.95rem;
}
.amenity-pill i { color: var(--primary-color); }

/* Store gallery info container */
.store-gallery-info {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Store gallery grid */
.store-gallery-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}
.store-gallery-grid.cols-1 { grid-template-columns: 1fr; }
.store-gallery-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.store-gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.store-gallery-grid img {
    width: 100%; height: auto;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* Nearby stores section */
.nearby-stores-section .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

@media (max-width: 992px) {
    .single-store-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    /* Mobile: show content first, then sidebar/map */
    .store-gallery-info { order: 1; }
    .store-sidebar {
        order: 2;
        position: static !important;
    }
    /* Prevent horizontal overflow on single-store page */
    .store-contact-card {
        padding: 20px;
        overflow: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .store-contact-card h3 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }
    .contact-row p {
        font-size: 0.95rem;
        word-break: break-word;
    }
    .store-gallery-info {
        overflow: hidden;
        max-width: 100%;
    }
    .store-sidebar {
        overflow: hidden;
        max-width: 100%;
    }
    #single-store-map {
        height: 250px !important;
    }
    .map-links {
        flex-wrap: wrap;
    }
    .stores-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .stores-toolbar .filter-group {
        max-width: 100% !important;
    }
    .store-gallery-grid img { height: auto; }
    .store-gallery-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .nearby-stores-section .cards-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .store-gallery-grid.cols-2,
    .store-gallery-grid.cols-3 { grid-template-columns: 1fr; }
    .store-gallery-grid img { height: auto; }
    .amenity-pill { font-size: 0.85rem; padding: 8px 14px; }
    .map-links { gap: 8px; }
    .map-link-chip { font-size: 0.8rem; padding: 6px 12px; }
}

/* Make sure card images support actual images */
.card-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.card-image.sm {
    height: 280px;
}
/* Default cover (logo centered on light bg) */
.card-image.sm.default-cover {
    background: #f0f9fd;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}
.card-image.sm.default-cover img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: none;
    transform: none;
}
.card-image.sm.default-cover::before,
.card-image.sm.default-cover::after { display: none; }
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}
.card:hover .card-image img {
    transform: scale(1.05);
}
.card-image .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

/* Online Button */
.btn-online {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    background-color: white;
    color: white;
    font-weight: 700;
}
.btn-online:hover {
    background-color: var(--primary-dark);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-dropdown .dropdown-menu {
    min-width: 100%;
    white-space: nowrap;
    gap: 4px;
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    transform: translateY(10px);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    min-width: 180px;
    border: 1px solid var(--border-color);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown .dropdown-menu li {
    margin: 0;
}
.nav-dropdown .dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-color);
}
.nav-dropdown .dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

@media (max-width: 992px) {
    /* Mobile header actions reorder */
    .header-actions {
        gap: 12px;
    }
    
    /* Make lang-switcher visible on mobile */
    .lang-switcher { display: block; }
    
/* Show "Онлайн" text and basket icon together */
    .btn-online .btn-text {
        display: none; /* Default hide inside btn-online to reset */
    }
    .btn-online .mobile-text {
        display: inline; /* Explicitly show only mobile text */
    }
    .btn-online {
        padding: 8px 16px;
        border-radius: var(--radius-pill);
        gap: 6px;
    }
    /* We still want to show only the mobile text ("Онлайн") and not the desktop text */

    
    /* Keep phone icon only on mobile to save space */
    .header-contact {
        padding: 10px;
        border-radius: 50%;
    }
    .header-contact .phone-text {
        display: none;
    }
    
    /* Move burger to the left of the screen if needed, 
       but standard is right. The order from left to right is now:
       Burger -> Nav ? No, requested order in header right:
       Logo on left.
       On right: Burger?
       The user said: "В мобилном версии нужно: Логотип, Бугрег меню... После кнопку бургер Переклячател языке, Иконка карзинка, Телефон номер"
       Wait, this means the burger is maybe on the left? Or just standard order. Let's set standard flex order.
    */
    .header-container {
        flex-wrap: wrap;
    }
    
    /* Allow Mobile Nav Dropdown */
    .nav-dropdown .dropdown-menu {
    min-width: 100%;
    white-space: nowrap;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        background: transparent;
        display: none; /* Can be toggled, but for CSS let's just make it block for now */
    }
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: flex;
    }
}

@media (max-width: 992px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    /* Move burger menu button to the start of header-actions */
    .mobile-menu-btn {
        order: -1; 
        margin-right: 5px;
    }
    .lang-switcher {
        order: 1;
    }
    .btn-online {
        order: 2;
    }
    .header-contact {
        order: 3;
    }
    
    /* Adjust styles for tiny mobile screens if needed */
    .header-contact {
        padding: 8px;
    }
    .btn-online {
        padding: 8px;
    }
    .lang-current {
        padding: 8px 8px;
    }
}

.mobile-only-contact {
    display: none !important;
}
@media (max-width: 992px) {
    .mobile-only-contact {
        display: block !important;
        margin-top: 15px;
        padding-top: 15px;
        border-top: none;
    }
    .mobile-only-contact .header-contact {
        display: flex;
        justify-content: flex-start;
        background: transparent;
        padding: 0;
    }
    
    /* Hide the default desktop phone from the header on mobile */
    .header-actions > .header-contact {
        display: none;
    }
    
    /* Fix mobile nav dropdown clickability */
    .nav-dropdown > a {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    /* We handle the display toggle via JS, so we need to override the hover states for mobile */
    .nav-dropdown .dropdown-menu {
    min-width: 100%;
    white-space: nowrap;
        display: none !important;
        opacity: 1;
        visibility: visible;
        margin-top: 10px;
    }
    .nav-dropdown.is-open .dropdown-menu {
        display: flex !important;
    }
}

/* Header Top Bar */
.header-top {
    background-color: #f0fafe;
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 600;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    max-height: 50px;
    padding: 6px 0;
    opacity: 1;
    border-bottom: 1px solid rgba(0, 190, 239, 0.1);
}
.header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-top-left {
    display: flex;
    gap: 20px;
}
.header-top-right {
    display: flex;
    gap: 15px;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar-link {
    color: var(--text-light);
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}
.top-bar-link:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .header-top {
        display: none; /* Hide on mobile to save space */
    }
}

.header-top a {
    color: var(--text-light);
    text-decoration: none;
}
.header-top a:hover {
    color: var(--primary-color);
}

/* Social icons in top bar */
.top-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff !important;
    font-size: 13px;
    transition: transform 0.2s, background 0.2s;
}
.top-social-icons a:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
    color: #fff !important;
}
.header-top-left, .header-top-right {
    display: flex;
    align-items: center;
    gap: 24px;
}
.region-current {
    cursor: pointer;
    font-weight: 700;
}
/* Ensure the region list drops down properly and has dark text */
.region-selector .dropdown-menu {
    top: calc(100% + 5px);
    transform: none; /* simple display */
    width: 260px;
    max-height: 350px;
    overflow-y: auto;
    z-index: 1001;
}
.region-selector .dropdown-menu a {
    color: var(--text-color);
    padding: 8px 16px;
    font-weight: 500;
}
.region-selector .dropdown-menu a:hover {
    color: var(--primary-color);
}

.top-lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(0, 190, 239, 0.08);
    border-radius: var(--radius-pill);
    padding: 3px;
    gap: 2px;
}
.top-lang-switcher a {
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-light);
    transition: var(--transition);
}
.top-lang-switcher a.active, .top-lang-switcher a:hover {
    background: var(--primary-color);
    color: #fff;
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
}
.badge-247 {
    background: white;
    color: var(--primary-color);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    font-weight: 800;
}

/* Main Header Left Alignment */
.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}
.mobile-only-nav {
    display: none;
}
.mobile-lang {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    background: var(--bg-light);
    padding: 4px;
    border-radius: var(--radius-pill);
    margin-top: 10px;
}
.mobile-lang a {
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    color: var(--text-color);
}
.mobile-lang a.active {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 992px) {
    .header-left {
        gap: 0;
    }
    .mobile-only-nav {
        display: block !important;
        margin-top: 5px;
        padding-top: 5px;
        border-top: none;
    }
}

/* Hide top bar on scroll */
.header.scrolled .header-top {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
}


/* Social Buttons */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    height: 40px;
    color: var(--primary-color) !important;
    background-color: transparent !important;
    border: none !important;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}
.social-btn i, .social-btn svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color) !important;
    transition: var(--transition);
}
.social-btn:hover {
    transform: translateX(5px) !important;
    color: var(--primary-dark) !important;
    background-color: transparent !important;
    box-shadow: none;
}
.social-btn:hover i, .social-btn:hover svg {
    color: var(--primary-dark) !important;
}
.social-btn i, .social-btn svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;
    min-height: 24px;
    flex-shrink: 0;
}


.top-bar-item svg { width: 20px; height: 20px; }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(231, 247, 252, 0.85); /* #E7F7F7 */
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
body.no-scroll {
    overflow: hidden;
}

.desktop-text { display: inline; }
.mobile-text { display: none; }

@media (max-width: 992px) {

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        z-index: 1001;
        transition: left 0.4s ease;
        padding: 20px;
        overflow-y: auto;
        display: block !important;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    .nav.nav-open {
        left: 0;
    }
    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .nav a {
        display: flex;
        width: 100%;
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 15px;
        border-left: 2px solid var(--border-color);
        margin-left: 10px;
        margin-top: 10px;
        display: none !important;
        min-width: unset;
        white-space: normal;
    }
    .nav-dropdown.is-open .dropdown-menu {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
    }
    .desktop-text { display: none; }
    .mobile-text { display: inline; }

}

.mobile-nav-logo {
    display: none;
}
@media (max-width: 992px) {
    .mobile-nav-logo {
        display: block;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }
}

@media (max-width: 992px) {
    .section-title { font-size: 2rem; }
    .stat-info h3 { font-size: 2.8rem; }
    .cta-content h2 { font-size: 2rem; }
    .footer::after { display: none; }
    .slide-heart-bg {
        width: 100%;
        height: auto;
        opacity: 0.4;
    }
    .cta-content p { font-size: 1rem; }
    .btn { font-size: 0.9rem; }
    .footer-bottom p { font-size: 0.9rem; }
    .mobile-only-nav { border-top: none !important; margin-top: 5px !important; padding-top: 5px !important; }
    .boxed-swiper { padding-top: 0 !important; }
    .to-top-link { display: flex; align-items: center; }
    .store-item-header { margin-bottom: 3px; }

}

/* ── Mobile override (must come after 992px to win cascade) ── */
@media (max-width: 768px) {
    .section-title { font-size: 1.6rem; margin-bottom: 28px; }
    .stat-info h3 { font-size: 2rem; }
    .cta-content h2 { font-size: 1.6rem; margin-bottom: 12px; }
    .cta-content p { font-size: 0.9rem; }
    .btn { font-size: 0.85rem; }
    .footer-bottom p { font-size: 0.8rem; }
}
@media (max-width: 480px) {
    .section-title { font-size: 1.4rem; }
    .stat-info h3 { font-size: 1.75rem; }
    .cta-content h2 { font-size: 1.3rem; }
}

/* Page Header */
.page-header {
    background-color: #ECFAFE;
    padding: 120px 0 30px;
    position: relative;
    overflow: hidden;
}
.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url("../assets/heart-shape.png") no-repeat left center;
    background-size: contain;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}
.page-header-heart {
    display: none;
}
.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}
.breadcrumbs a {
    color: var(--text-color);
    transition: var(--transition);
}
.breadcrumbs a:hover {
    color: var(--primary-color);
}
.breadcrumbs i {
    width: 16px;
    height: 16px;
}

/* Filters */
.stores-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.filter-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}
.form-select, .form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--bg-light);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: var(--transition);
    outline: none;
}
.form-select:focus, .form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 190, 239, 0.1);
}
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.search-input-wrapper i {
    position: absolute;
    left: 12px;
    color: var(--text-light);
    width: 18px;
    height: 18px;
}
.search-input-wrapper .form-input {
    padding-left: 40px;
}

@media (max-width: 992px) {
    .page-header {
        padding: 110px 0 25px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .page-header-bg {
        width: 100%;
        opacity: 0.2;
    }
    .stores-filters {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .breadcrumbs { font-size: 0.9rem; }
    .catalog-list { max-height: 300px; }
}

@media (max-width: 992px) {
    .page-header-heart {
        bottom: -20%;
        width: 50%;
    }
}

@media (max-width: 992px) {
    .page-header {
        padding: 110px 0 25px !important;
    }
    .breadcrumbs {
        font-size: 0.9rem !important;
    }
    .stores-list-container {
        height: 300px !important;
        max-height: 300px !important;
    }
    .page-header img {
        bottom: 0% !important;
        width: 56% !important;
    }
}

/* ================= HEADER COLOR INVERSION ================= */
/* 1. Top bar: default theme (overridden by CMS inline styles) */
.header-top {
    background-color: #f0fafe;
    color: var(--text-light);
}
.header-top a, .top-bar-link, .top-bar-item {
    color: var(--text-light);
}
.header-top a:hover {
    color: var(--primary-color);
}
.top-social-icons a, .top-social-icons a:hover {
    color: var(--text-light);
}
.header-top .top-lang-switcher a {
    color: var(--text-light);
}
.header-top .top-lang-switcher a.active,
.header-top .top-lang-switcher a:hover {
    color: #fff !important;
    background: var(--primary-color) !important;
}

/* 2. Main header: Primary background, white text */
.header {
    background: var(--primary-color) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.header.scrolled {
    background: var(--primary-color) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Desktop nav links inside main header */
@media (min-width: 993px) {
    .nav > ul > li > a {
        color: #ffffff !important;
    }
    .nav > ul > li > a:hover {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    .nav > ul > li > a.active {
        color: rgba(255, 255, 255, 0.9) !important;
        border-bottom: none;
    }
    
    /* Make contact text white on desktop */
    .header-contact {
        color: #ffffff !important;
    }
    .header-contact i {
        color: #ffffff !important;
    }
}

/* Keep dropdown menu text dark */
.dropdown-menu a {
    color: var(--text-color) !important;
}
.dropdown-menu a:hover {
    color: var(--primary-color) !important;
}

/* Button Online */
.header .btn-online {
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
}
.header .btn-online:hover {
    background-color: var(--bg-light) !important;
}

/* Logo image - make it white if it's black/blue originally */
/* .header .logo img {
    filter: brightness(0) invert(1);
} */
/* Wait, maybe the user wants logo white too? I will apply brightness invert just in case, but let's test if it's fine. Actually let's just make it white. */
.header .logo img {
    filter: brightness(0) invert(1);
}
/* But in mobile sidebar, logo should be normal */
.mobile-nav-logo img {
    filter: none !important;
}
.footer .logo-footer {
    filter: none;
}

/* Mobile Menu Button */
.mobile-menu-btn span {
    background-color: #ffffff !important;
}

/* Fix top lang switcher on white background */
.top-lang-switcher {
    background: var(--bg-light) !important;
}
.top-lang-switcher a.active, .top-lang-switcher a:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
}

.modern-stat-card.has-image {
    padding: 35px 55px 35px 35px;
    justify-content: start;
}
.stat-image {
    position: absolute;
    right: -10%;
    bottom: -10%;
    width: 190px;
    height: 190px;
    object-fit: contain;
    border-radius: 0;
    border: none;
    z-index: 1;
    transition: var(--transition);
    pointer-events: none;
}
.modern-stat-card:hover .stat-image {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .modern-stat-card.has-image {
        padding-right: 16px;
        padding-bottom: 60px;
        align-items: flex-start;
        text-align: left;
    }
    .stat-image {
        right: -5px;
        bottom: -10px;
        transform: none;
    }
    .modern-stat-card:hover .stat-image {
        transform: scale(1.08);
    }
}

.footer li i { width: 24px !important; height: 24px !important; min-width: 24px; min-height: 24px; flex-shrink: 0; color: var(--primary-color); }

/* --- Fixes for Mobile (Requested via prompt) --- */
@media (max-width: 768px) {
    /* 1. Mobile Logo Height */
    .logo img, .header .logo img, .logo-footer, .mobile-nav-logo img {
        height: 55px !important;
    }

    /* 2. Modern Stat Cards (2 per row) */
    .modern-stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .modern-stat-card {
        min-height: auto !important;
        padding: 16px !important;
        padding-bottom: 60px !important; /* space for image at bottom */
        border-radius: 20px !important;
        gap: 10px !important;
    }
    .modern-stat-card.has-image {
        padding-right: 16px !important;
        align-items: flex-start !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }
    .modern-stat-card .stat-info h3 {
        font-size: 1.8rem !important;
        margin-bottom: 2px !important;
    }
    .modern-stat-card .stat-info p {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
    }
    .stat-image {
        width: 90px !important;
        height: 90px !important;
        right: -5px !important;
        bottom: -8px !important;
        transform: none !important;
        border: none !important;
        border-radius: 0 !important;
    }
    .modern-stat-card:hover .stat-image {
        transform: scale(1.08) !important;
    }

    /* 3. Swipeable horizontal cards (Promo & Blog & Partners) */
    .cards-grid, .cards-grid-4 {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding-bottom: 20px !important;
        
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important; /* Firefox */
    }
    .cards-grid::-webkit-scrollbar, .cards-grid-4::-webkit-scrollbar {
        display: none !important; /* Safari/Chrome */
    }
    .cards-grid .card, .cards-grid-4 .card {
        flex: 0 0 calc(100% - 40px) !important; /* leaves 40px for the next card to peek out */
        width: calc(100% - 40px) !important;
        max-width: none !important;
        scroll-snap-align: start !important;
    }
    
    /* Ensure the padding-right doesn't get collapsed by browser flexbox bugs */
    .cards-grid::after, .cards-grid-4::after {
        content: '';
        flex: 0 0 8px !important;
        width: 8px !important;
    }
}

/* (mobile swiper-slide min-heights moved to main 768px block above) */

/* ============================================================
   LARGE SCREEN ADAPTATION (1440px+, 1920px+, 2560px+)
   Scales container, hero, fonts, cards, images proportionally
   without changing UI design — only proportions adapt.
   ============================================================ */

/* ── 1440px+ (Laptop L / Small Desktop) ─────────────────── */
@media (min-width: 1440px) {
    .container {
        max-width: 1360px;
    }

    /* Hero content area */
    .slide-content-inner {
        max-width: 1360px;
        margin: 0 auto;
    }
    .boxed-swiper .slide-text {
        max-width: 680px;
    }
    .slide-visual {
        max-width: 560px;
    }

    /* Fonts */
    .section-title {
        font-size: 2.75rem;
    }
    .slide-text h1 {
        font-size: clamp(2.8rem, 4vw, 4.5rem);
    }
    .slide-text p {
        font-size: clamp(1.05rem, 1.3vw, 1.4rem);
    }
    .stat-info h3 {
        font-size: 2.8rem;
    }
    .cta-content h2 {
        font-size: 2.75rem;
    }
    .cta-content p {
        font-size: 1.3rem;
    }

    /* Cards */
    .card-title {
        font-size: 1.35rem;
    }
    .card-content {
        padding: 32px;
    }

    /* Glass icon card (hero visual) */
    .glass-icon-card {
        width: clamp(300px, 38vh, 500px);
        height: clamp(300px, 38vh, 500px);
    }

    /* Footer */
    .footer-container {
        gap: 70px;
    }

    /* Telegram CTA 1440 */
    .cta-telegram, .cta-brand, .cta-brand-light { min-height: 430px; }
    .cta-section { padding-top: 80px; }
    .cta-phone-visual { right: 80px; width: 300px; }
    .cta-phone-img { max-height: 380px; }
}

/* ── 1920px+ (Full HD / Standard Desktop) ───────────────── */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 0 40px;
    }

    /* Section spacing */
    .section {
        padding: 120px 0;
    }

    /* Hero */
    .slide-content-inner {
        max-width: 1600px;
        padding: 0 40px;
    }
    .boxed-swiper .slide-text {
        max-width: 760px;
    }
    .slide-visual {
        max-width: 640px;
    }
    .boxed-swiper {
        min-height: 580px;
    }

    /* Fonts scale up */
    .section-title {
        font-size: 3.2rem;
    }
    .slide-text h1 {
        font-size: clamp(3rem, 3.8vw, 5rem);
    }
    .slide-text p {
        font-size: clamp(1.1rem, 1.2vw, 1.55rem);
        max-width: 85%;
    }
    .stat-info h3 {
        font-size: 2.8rem;
    }
    .stat-info p {
        font-size: 1.2rem;
    }
    .cta-content h2 {
        font-size: 3.2rem;
    }
    .cta-content p {
        font-size: 1.4rem;
    }
    .cta-content {
        max-width: 700px;
    }

    /* Cards */
    .cards-grid {
        gap: 36px;
    }
    .cards-grid-4 {
        gap: 36px;
    }
    .card-title {
        font-size: 1.45rem;
    }
    .card-content {
        padding: 36px;
    }
    .card-desc {
        font-size: 1.05rem;
    }

    /* Stats */
    .modern-stats-grid {
        gap: 32px;
    }
    .modern-stat-card {
        min-height: 270px;
        padding: 48px 40px;
    }

    /* Buttons */
    .btn {
        padding: 16px 36px;
        font-size: 1.05rem;
    }
    .badge-modern {
        padding: 10px 24px;
        font-size: 0.95rem;
    }

    /* Glass icon card */
    .glass-icon-card {
        width: clamp(320px, 36vh, 520px);
        height: clamp(320px, 36vh, 520px);
    }
    .glass-icon-card i {
        width: 160px;
        height: 160px;
    }

    /* Floating badges */
    .floating-badge {
        padding: 16px 28px;
        font-size: 1.1rem;
    }

    /* Slide images */
    .slide-clothes-img {
        max-height: 680px;
    }
    .slide-children-img {
        max-height: 680px;
    }
    .slide-phone-img {
        max-height: 720px;
    }

    /* Page header */
    .page-header {
        padding: 160px 0 80px;
    }
    .page-header h1 {
        font-size: 3.4rem;
    }

    /* Footer */
    .footer-container {
        gap: 80px;
        margin-bottom: 80px;
    }
    .footer h4 {
        font-size: 1.4rem;
    }
    .logo img {
        height: 75px;
    }

    /* Header nav */
    .nav > ul > li > a {
        font-size: 1.05rem;
    }

    /* Stores layout */
    .stores-layout {
        grid-template-columns: 420px 1fr;
        height: 620px;
    }

    /* Phone CTA blocks 1920 */
    .cta-telegram, .cta-brand, .cta-brand-light { min-height: 430px; }
    .cta-phone-visual { right: 100px; width: 360px; }
    .cta-phone-img { max-height: 495px; }



}

/* ── 2560px+ (2K / QHD / Retina scaled) ─────────────────── */
@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
        padding: 0 60px;
    }

    /* Section spacing */
    .section {
        padding: 150px 0;
    }

    /* Hero */
    .slide-content-inner {
        max-width: 2000px;
        padding: 0 60px;
    }
    .boxed-swiper .slide-text {
        max-width: 900px;
    }
    .slide-visual {
        max-width: 780px;
    }
    .boxed-swiper {
        min-height: 700px;
    }

    /* Fonts scale significantly */
    .section-title {
        font-size: 4rem;
    }
    .slide-text h1 {
        font-size: clamp(3.5rem, 3.5vw, 6rem);
    }
    .slide-text p {
        font-size: clamp(1.3rem, 1.1vw, 1.8rem);
        margin-bottom: 50px;
    }
    .stat-info h3 {
        font-size: 2.8rem;
    }
    .stat-info p {
        font-size: 1.4rem;
    }
    .cta-content h2 {
        font-size: 4rem;
    }
    .cta-content p {
        font-size: 1.6rem;
    }
    .cta-content {
        max-width: 850px;
    }

    /* Cards */
    .cards-grid {
        gap: 44px;
    }
    .cards-grid-4 {
        gap: 44px;
    }
    .card-title {
        font-size: 1.7rem;
    }
    .card-content {
        padding: 44px;
    }
    .card-desc {
        font-size: 1.2rem;
        line-height: 1.5;
    }
    .card-meta {
        font-size: 1.05rem;
    }

    /* Stats */
    .modern-stats-grid {
        gap: 40px;
    }
    .modern-stat-card {
        min-height: 320px;
        padding: 56px 48px;
        border-radius: 40px;
    }

    /* Buttons */
    .btn {
        padding: 20px 44px;
        font-size: 1.15rem;
    }
    .btn-group {
        gap: 20px;
    }
    .badge-modern {
        padding: 12px 28px;
        font-size: 1.05rem;
    }

    /* Glass icon card */
    .glass-icon-card {
        width: clamp(400px, 32vh, 640px);
        height: clamp(400px, 32vh, 640px);
    }
    .glass-icon-card i {
        width: 200px;
        height: 200px;
    }

    /* Floating badges */
    .floating-badge {
        padding: 20px 36px;
        font-size: 1.25rem;
        border-radius: 24px;
    }
    .badge-top {
        right: -30px;
    }
    .badge-bottom {
        left: -50px;
    }

    /* Slide images */
    .slide-clothes-img {
        max-height: 800px;
    }
    .slide-children-img {
        max-height: 800px;
    }
    .slide-phone-img {
        max-height: 880px;
    }

    /* Stat images */
    .stat-image {
        width: 180px;
        height: 180px;
        border-radius: 0 !important;
        border: none !important;
    }
    .modern-stat-card.has-image {
        padding-right: 140px;
    }

    /* Page header */
    .page-header {
        padding: 200px 0 100px;
    }
    .page-header h1 {
        font-size: 4rem;
    }
    .breadcrumbs {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-container {
        gap: 100px;
        margin-bottom: 100px;
    }
    .footer h4 {
        font-size: 1.6rem;
        margin-bottom: 32px;
    }
    .footer-brand p {
        max-width: 400px;
        font-size: 1.1rem;
    }
    .logo img {
        height: 90px;
    }

    /* Header */
    .nav > ul > li > a {
        font-size: 1.15rem;
    }
    .header-container {
        padding-top: 14px;
        padding-bottom: 14px;
    }
    .top-phone {
        font-size: 1.1rem;
    }

    /* Stores */
    .stores-layout {
        grid-template-columns: 500px 1fr;
        height: 720px;
        gap: 40px;
    }
    .store-item-header h4 {
        font-size: 1.1rem;
    }
    .store-item-info p {
        font-size: 0.95rem;
    }

    /* CTA */
    .cta-banner {
        padding: 80px 60px;
    }

    /* Swiper controls */
    .modern-nav {
        width: 68px;
        height: 68px;
    }
    .modern-nav:after {
        font-size: 1.4rem;
    }
    .modern-pagination .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
    }
    .modern-pagination .swiper-pagination-bullet-active {
        width: 50px;
    }

    /* Phone CTA blocks 2K */
    .cta-telegram, .cta-brand, .cta-brand-light { min-height: 430px; }
    .cta-phone-visual { right: 140px; width: 420px; }
    .cta-phone-img { max-height: 580px; }



}

/* ── 3840px+ (4K / Ultra HD) ────────────────────────────── */
@media (min-width: 3840px) {
    .container {
        max-width: 2800px;
        padding: 0 80px;
    }

    .section {
        padding: 200px 0;
    }

    /* Hero */
    .slide-content-inner {
        max-width: 2800px;
        padding: 0 80px;
    }
    .boxed-swiper .slide-text {
        max-width: 1200px;
    }
    .slide-visual {
        max-width: 1000px;
    }
    .boxed-swiper {
        min-height: 900px;
    }

    .section-title {
        font-size: 5.5rem;
        margin-bottom: 80px;
    }
    .slide-text h1 {
        font-size: clamp(4.5rem, 3vw, 8rem);
        margin-bottom: 40px;
    }
    .slide-text p {
        font-size: clamp(1.6rem, 1vw, 2.4rem);
        margin-bottom: 64px;
    }
    .stat-info h3 {
        font-size: 2.8rem;
    }
    .stat-info p {
        font-size: 1.8rem;
    }
    .cta-content h2 {
        font-size: 5.5rem;
    }
    .cta-content p {
        font-size: 2rem;
    }
    .cta-content {
        max-width: 1100px;
    }

    /* Cards */
    .cards-grid, .cards-grid-4 {
        gap: 56px;
    }
    .card-title {
        font-size: 2.2rem;
    }
    .card-content {
        padding: 56px;
    }
    .card-desc {
        font-size: 1.5rem;
    }
    .card-meta {
        font-size: 1.3rem;
    }

    /* Stats */
    .modern-stat-card {
        min-height: 420px;
        padding: 72px 64px;
        border-radius: 48px;
    }
    .modern-stats-grid {
        gap: 56px;
    }

    /* Buttons */
    .btn {
        padding: 24px 56px;
        font-size: 1.4rem;
        border-radius: 120px;
    }
    .badge-modern {
        padding: 16px 36px;
        font-size: 1.3rem;
    }

    /* Glass icon card */
    .glass-icon-card {
        width: clamp(500px, 28vh, 800px);
        height: clamp(500px, 28vh, 800px);
    }
    .glass-icon-card i {
        width: 280px;
        height: 280px;
    }

    .floating-badge {
        padding: 28px 48px;
        font-size: 1.6rem;
        border-radius: 32px;
    }

    /* Images */
    .slide-clothes-img { max-height: 1100px; }
    .slide-children-img { max-height: 1100px; }
    .slide-phone-img { max-height: 1200px; }

    .stat-image {
        width: 240px;
        height: 240px;
        border-radius: 0 !important;
        border: none !important;
    }
    .modern-stat-card.has-image {
        padding-right: 200px;
    }

    /* Page header */
    .page-header {
        padding: 260px 0 130px;
    }
    .page-header h1 {
        font-size: 5.5rem;
    }
    .breadcrumbs {
        font-size: 1.4rem;
    }

    /* Footer */
    .footer-container {
        gap: 140px;
    }
    .footer h4 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .footer-brand p {
        max-width: 560px;
        font-size: 1.4rem;
    }
    .logo img {
        height: 120px;
    }
    .footer li {
        font-size: 1.2rem;
    }

    /* Header */
    .nav > ul > li > a {
        font-size: 1.4rem;
    }
    .header-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /* Stores */
    .stores-layout {
        grid-template-columns: 640px 1fr;
        height: 900px;
        gap: 56px;
    }
    .store-item-header h4 {
        font-size: 1.4rem;
    }
    .store-item-info p {
        font-size: 1.15rem;
    }

    /* Swiper */
    .modern-nav {
        width: 88px;
        height: 88px;
    }
    .modern-nav:after {
        font-size: 1.8rem;
    }

    /* Phone CTA blocks 4K */
    .cta-telegram, .cta-brand, .cta-brand-light { min-height: 430px; }
    .cta-phone-visual { right: 200px; width: 520px; }
    .cta-phone-img { max-height: 740px; }



}

/* ================= CMS TOPBAR THEME CLASSES ================= */
/* Applied dynamically by cms.js based on admin settings */
.header-top.topbar-light {
    background-color: #f0fafe !important;
    color: var(--text-light) !important;
}
.header-top.topbar-light a,
.header-top.topbar-light .top-bar-item {
    color: var(--text-light) !important;
}
.header-top.topbar-light a:hover {
    color: var(--primary-color) !important;
}
/* Lang switcher active — always white text on colored pill */
.header-top.topbar-light .top-lang-switcher a.active,
.header-top.topbar-light .top-lang-switcher a:hover {
    color: #fff !important;
    background: var(--primary-color) !important;
}
/* Social icons — always white on colored background */
.header-top.topbar-light .top-social-icons a,
.header-top.topbar-light .top-social-icons a:hover {
    color: #fff !important;
}

.header-top.topbar-dark {
    color: #fff !important;
}
.header-top.topbar-dark a,
.header-top.topbar-dark .top-bar-item {
    color: #fff !important;
}
.header-top.topbar-dark a:hover {
    opacity: 0.8;
}
.header-top.topbar-dark .top-lang-switcher a.active,
.header-top.topbar-dark .top-lang-switcher a:hover {
    color: #fff !important;
    background: var(--primary-color) !important;
}

/* ===== PRELOADER — top progress bar + clouds ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(180deg, #e8f8ff 0%, #f2fbff 40%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    overflow: hidden;
}
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ── Top progress bar ── */
.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(1, 191, 239, 0.12);
    z-index: 2;
}
.preloader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #01BFEF 0%, #00d4ff 50%, #01BFEF 100%);
    background-size: 200% 100%;
    border-radius: 0 2px 2px 0;
    animation: progressSlide 2.2s ease-in-out infinite;
    width: 0%;
    transition: width 0.3s ease;
}
@keyframes progressSlide {
    0%   { width: 0%;   background-position: 0% 0; }
    50%  { width: 70%;  background-position: 100% 0; }
    85%  { width: 92%;  background-position: 0% 0; }
    100% { width: 100%; background-position: 100% 0; }
}

/* ── Clouds ── */
.preloader-cloud {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0.7;
    will-change: transform;
}
.preloader-cloud::before,
.preloader-cloud::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 50%;
}

/* Cloud 1 — top-left, medium */
.cloud-1 {
    width: 120px; height: 40px;
    top: 12%; left: -150px;
    animation: cloudFloat 14s linear infinite;
}
.cloud-1::before { width: 50px; height: 50px; top: -25px; left: 20px; }
.cloud-1::after  { width: 70px; height: 55px; top: -30px; left: 50px; }

/* Cloud 2 — upper-mid, large */
.cloud-2 {
    width: 170px; height: 52px;
    top: 22%; left: -220px;
    animation: cloudFloat 18s linear infinite 2s;
    opacity: 0.5;
}
.cloud-2::before { width: 68px; height: 62px; top: -32px; left: 32px; }
.cloud-2::after  { width: 95px; height: 68px; top: -38px; left: 72px; }

/* Cloud 3 — center-right, small fast */
.cloud-3 {
    width: 90px; height: 30px;
    top: 35%; left: -120px;
    animation: cloudFloat 11s linear infinite 5s;
    opacity: 0.55;
}
.cloud-3::before { width: 38px; height: 38px; top: -18px; left: 14px; }
.cloud-3::after  { width: 52px; height: 42px; top: -22px; left: 38px; }

/* Cloud 4 — mid-left, large slow */
.cloud-4 {
    width: 150px; height: 48px;
    top: 48%; left: -190px;
    animation: cloudFloat 20s linear infinite 1s;
    opacity: 0.4;
}
.cloud-4::before { width: 58px; height: 56px; top: -28px; left: 25px; }
.cloud-4::after  { width: 80px; height: 60px; top: -32px; left: 65px; }

/* Cloud 5 — lower, medium fast */
.cloud-5 {
    width: 110px; height: 36px;
    top: 62%; left: -140px;
    animation: cloudFloat 13s linear infinite 7s;
    opacity: 0.6;
}
.cloud-5::before { width: 44px; height: 44px; top: -22px; left: 18px; }
.cloud-5::after  { width: 62px; height: 50px; top: -26px; left: 48px; }

/* Cloud 6 — bottom-right, tiny fast */
.cloud-6 {
    width: 75px; height: 25px;
    top: 74%; left: -100px;
    animation: cloudFloat 10s linear infinite 3s;
    opacity: 0.45;
}
.cloud-6::before { width: 32px; height: 32px; top: -16px; left: 10px; }
.cloud-6::after  { width: 44px; height: 35px; top: -18px; left: 30px; }

/* Cloud 7 — very top, large slow */
.cloud-7 {
    width: 140px; height: 44px;
    top: 5%; left: -180px;
    animation: cloudFloat 22s linear infinite 9s;
    opacity: 0.35;
}
.cloud-7::before { width: 55px; height: 52px; top: -26px; left: 22px; }
.cloud-7::after  { width: 75px; height: 58px; top: -30px; left: 58px; }

/* Cloud 8 — bottom, medium */
.cloud-8 {
    width: 130px; height: 42px;
    top: 85%; left: -170px;
    animation: cloudFloat 16s linear infinite 6s;
    opacity: 0.38;
}
.cloud-8::before { width: 52px; height: 50px; top: -24px; left: 20px; }
.cloud-8::after  { width: 72px; height: 54px; top: -28px; left: 55px; }

@keyframes cloudFloat {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 300px)); }
}

/* ── Center content: logo only (no spinner) ── */
.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 1;
}
.preloader-logo {
    width: 120px;
    height: auto;
    animation: logoPulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(1, 191, 239, 0.15));
}
@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.04); opacity: 0.88; }
}

/* Spinner ring — hidden (replaced by progress bar) */
.preloader-spinner {
    display: none;
}

/* Loading text — hidden */
.preloader-text {
    display: none;
}
/* ===== END PRELOADER ===== */
/* ===== RICH TEXT / BLOG POST CONTENT (TipTap WYSIWYG output) ===== */
.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4,
.single-post-content h5,
.single-post-content h6 {
    font-weight: 800;
    line-height: 1.3;
    margin: 1.8em 0 0.6em;
    color: var(--text-color);
}
.single-post-content h1 { font-size: 2rem; }
.single-post-content h2 { font-size: 1.6rem; }
.single-post-content h3 { font-size: 1.35rem; }
.single-post-content h4 { font-size: 1.15rem; }
.single-post-content h5 { font-size: 1.05rem; }
.single-post-content h6 { font-size: 0.95rem; }
.single-post-content > h1:first-child,
.single-post-content > h2:first-child,
.single-post-content > h3:first-child,
.single-post-content > img + h1,
.single-post-content > img + h2,
.single-post-content > img + h3,
.single-post-content > div + h1,
.single-post-content > div + h2,
.single-post-content > div + h3 {
    margin-top: 0.8em;
}
.single-post-content p {
    margin: 0 0 1.2em;
    line-height: 1.75;
}
.single-post-content strong,
.single-post-content b {
    font-weight: 700;
    color: var(--text-color);
}
.single-post-content em,
.single-post-content i:not([data-lucide]):not(.fas):not(.far):not(.fab):not(.lucide) {
    font-style: italic;
}
.single-post-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.single-post-content a:hover {
    color: #0097c7;
}

/* Lists */
.single-post-content ul,
.single-post-content ol {
    margin: 0.8em 0 1.4em;
    padding-left: 1.8em;
}
.single-post-content ul { list-style-type: disc; }
.single-post-content ol { list-style-type: decimal; }
.single-post-content li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}
.single-post-content li > ul,
.single-post-content li > ol {
    margin: 0.4em 0 0.2em;
}

/* Blockquote */
.single-post-content blockquote {
    margin: 1.6em 0;
    padding: 20px 24px 20px 28px;
    background: linear-gradient(135deg, #f0faff 0%, #f8fdff 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: #3a4a5c;
    position: relative;
}
.single-post-content blockquote::before {
    content: '\201C';
    font-size: 3.5rem;
    color: var(--primary-color);
    opacity: 0.25;
    position: absolute;
    top: -6px;
    left: 10px;
    font-family: Georgia, serif;
    line-height: 1;
}
.single-post-content blockquote p {
    margin-bottom: 0.5em;
}
.single-post-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Code */
.single-post-content code {
    background: #f1f5f9;
    padding: 2px 7px;
    border-radius: 5px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.88em;
    color: #e11d48;
}
.single-post-content pre {
    margin: 1.4em 0;
    padding: 20px 24px;
    background: #1e293b;
    border-radius: var(--radius-md);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.single-post-content pre code {
    background: none;
    color: #e2e8f0;
    padding: 0;
    font-size: 0.9em;
    line-height: 1.6;
}

/* Tables */
.single-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}
.single-post-content thead {
    background: #f8fafc;
}
.single-post-content th {
    font-weight: 600;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid #e2e8f0;
    color: var(--text-color);
}
.single-post-content td {
    padding: 10px 16px;
    border-bottom: 1px solid #f1f5f9;
}
.single-post-content tr:last-child td {
    border-bottom: none;
}
.single-post-content tr:hover td {
    background: #f8fafc;
}

/* Images inside content */
.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 1em 0;
}

/* Horizontal rule */
.single-post-content hr {
    border: none;
    border-top: 2px solid #e2e8f0;
    margin: 2em 0;
}

/* Highlighted / colored text (TipTap marks) */
.single-post-content mark,
.single-post-content span[style*="background-color"],
.single-post-content span[data-color] {
    border-radius: 3px;
    padding: 1px 4px;
}

/* TipTap text-align classes */
.single-post-content .text-center,
.single-post-content [style*="text-align: center"] { text-align: center; }
.single-post-content .text-right,
.single-post-content [style*="text-align: right"] { text-align: right; }
.single-post-content .text-justify,
.single-post-content [style*="text-align: justify"] { text-align: justify; }

/* Callout / tip boxes (admin may wrap in styled div) */
.single-post-content [data-type="callout"],
.single-post-content .callout {
    margin: 1.4em 0;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    background: #fffbeb;
    border: 1px solid #fde68a;
}

/* Mobile */
@media (max-width: 768px) {
    .single-post-content h1 { font-size: 1.5rem; }
    .single-post-content h2 { font-size: 1.3rem; }
    .single-post-content h3 { font-size: 1.15rem; }
    .single-post-content blockquote {
        padding: 16px 18px 16px 22px;
        margin: 1.2em 0;
    }
    .single-post-content pre {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    .single-post-content table {
        font-size: 0.85rem;
    }
    .single-post-content th,
    .single-post-content td {
        padding: 8px 10px;
    }
}
/* ===== END RICH TEXT ===== */



/* ===== CMS PAGE BLOCKS ===== */

/* Full-width image blocks */
.cms-block-twi { background: #fff; }
.cms-fullwidth-img { width: 100%; overflow: hidden; }
.cms-fullwidth-img img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}
.cms-fullwidth-img:hover img { transform: scale(1.02); }

/* CMS content blocks */
.cms-content { font-size: 1.05rem; line-height: 1.7; color: var(--text-color); }
.cms-content p { margin-bottom: 15px; }
.cms-content ul, .cms-content ol { margin-left: 20px; margin-bottom: 15px; }
.cms-content li { line-height: 1.6; }

/* ─── Leadership Section ─── */
.leadership-section {
    background: linear-gradient(170deg, #f0fbff 0%, #e8f4f8 40%, #fff 100%);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}
.leadership-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,239,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.leadership-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,190,239,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.leadership-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.leadership-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,190,239,0.08);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.leadership-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.leadership-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}
.leadership-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.leadership-cards-grid.single-card {
    max-width: 420px;
}
.about-leader-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: leaderCardAppear 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.about-leader-card:nth-child(1) { animation-delay: 0.1s; }
.about-leader-card:nth-child(2) { animation-delay: 0.2s; }
.about-leader-card:nth-child(3) { animation-delay: 0.3s; }
.about-leader-card:nth-child(4) { animation-delay: 0.4s; }
.about-leader-card:nth-child(5) { animation-delay: 0.5s; }
.about-leader-card:nth-child(6) { animation-delay: 0.6s; }
@keyframes leaderCardAppear {
    to { opacity: 1; transform: translateY(0); }
}
.about-leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,190,239,0.15), 0 8px 20px rgba(0,0,0,0.06);
}
.about-leader-card .card-photo-wrap {
    position: relative;
    overflow: hidden;
}
.about-leader-card .card-photo-wrap img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.about-leader-card:hover .card-photo-wrap img {
    transform: scale(1.04);
}
.about-leader-card .card-photo-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(255,255,255,0.6), transparent);
    pointer-events: none;
}
.about-leader-card .card-info {
    padding: 28px 24px 32px;
    text-align: center;
}
.about-leader-card .card-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 6px;
    line-height: 1.3;
}
.about-leader-card .card-info .card-position {
    display: inline-block;
    background: rgba(0,190,239,0.08);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}
.about-leader-card .card-info .card-bio {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 0.93rem;
}

/* CMS page loading skeleton */
.cms-page-skeleton {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .cms-fullwidth-img img { max-height: 250px; }
    .leadership-section { padding: 50px 0 60px; }
    .leadership-title { font-size: 1.8rem; }
    .leadership-subtitle { font-size: 1rem; }
    .leadership-cards-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 8px; }
    .about-leader-card .card-photo-wrap img { aspect-ratio: 1 / 1; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .leadership-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== END CMS PAGE BLOCKS ===== */


/* ═══════════════════════════════════════════════════════════════
   Bootstrap 5.3-style Placeholder / Skeleton Loading
   ═══════════════════════════════════════════════════════════════ */

/* Base placeholder bar */
.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: #dee2e6;
  opacity: .5;
  border-radius: 6px;
}

/* Glow animation (Bootstrap 5.3) */
.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}
@keyframes placeholder-glow {
  50% { opacity: .2; }
}

/* Wave animation alternative */
.placeholder-wave .placeholder {
  mask-image: linear-gradient(130deg, #000 55%, rgba(0,0,0,.8) 75%, #000 95%);
  mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}
@keyframes placeholder-wave {
  100% { mask-position: -200% 0%; }
}

/* Size helpers */
.placeholder-xs { min-height: .6em; }
.placeholder-sm { min-height: .8em; }
.placeholder-lg { min-height: 1.2em; }

/* Round variant */
.placeholder-circle {
  border-radius: 50%;
}

/* Card-shaped placeholder */
.placeholder-card {
  background: #fff;
  border-radius: var(--radius-md, 20px);
  overflow: hidden;
  box-shadow: var(--shadow-sm, 0 4px 12px rgba(0,190,239,.08));
  border: 1px solid var(--border-color, #E9ECEF);
}

/* Image placeholder area */
.placeholder-img {
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f0f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-img svg {
  opacity: .25;
}

/* Skeleton shimmer bar inside cards */
.skel-bar {
  display: block;
  background-color: #dee2e6;
  opacity: .5;
  border-radius: 6px;
  animation: placeholder-glow 2s ease-in-out infinite;
}

/* Skeleton grid for cards-grid */
.skel-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .skel-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .skel-cards-grid { grid-template-columns: 1fr; }
}

/* Skeleton for stat cards row (4 items) */
.skel-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .skel-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Skeleton for store list items */
.skel-store-item {
  display: flex;
  gap: 15px;
  padding: 18px;
  border-bottom: 1px solid var(--border-color, #E9ECEF);
  align-items: flex-start;
}

/* Skeleton for blog list (2-col grid) */
.skel-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .skel-blog-grid { grid-template-columns: 1fr; }
}

/* CTA skeleton */
.skel-cta-banner {
  border-radius: var(--radius-lg, 32px);
  padding: 50px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .skel-cta-banner { flex-direction: column; padding: 30px 20px; }
}

/* Hero skeleton */
.skel-hero {
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 0 5%;
}
@media (max-width: 768px) {
  .skel-hero { min-height: 280px; flex-direction: column; padding: 40px 20px; }
}

/* Sidebar skeleton (blog/post) */
.skel-sidebar-widget {
  background: #fff;
  border-radius: var(--radius-md, 20px);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color, #E9ECEF);
}

/* Page-level skeleton (about, contacts, vacancies, leadership) */
.skel-page-section {
  padding: 40px 0;
}

/* Skeleton map placeholder */
.skel-map {
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f0f0 100%);
  border-radius: var(--radius-md, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

/* Transition: smooth fade-out when skeleton is replaced */
.skel-fade-out {
  animation: skelFadeOut 0.3s ease forwards;
}
@keyframes skelFadeOut {
  to { opacity: 0; transform: translateY(-5px); }
}

/* ═══════════════════════════════════════════════════════════════════
   ▓▓▓ MITTIVOY HERO SLIDER — clean modern redesign ▓▓▓
   3 slide types:
     • split  : text + image side-by-side
     • banner : full background photo + dark overlay + center text
     • video  : background video + dark overlay + text
   No decorative dots, sparkles, blobs, pulsing badges.
   ═══════════════════════════════════════════════════════════════════ */

/* CSS variables (header height set by JS) */
.mhero {
    --mhero-header-h: 84px;
    --mhero-h: calc(100vh - var(--mhero-header-h));
    --mhero-accent: var(--primary-color, #00BEEF);
    --mhero-accent-dark: var(--primary-dark, #0098BF);
    --mhero-ink: #0E2A3A;
    --mhero-ink-soft: #4D6A7A;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}
@supports (height: 100dvh) {
    .mhero { --mhero-h: calc(100dvh - var(--mhero-header-h)); }
}

/* Override legacy .hero-slider rule when .mhero is present */
.hero-slider.mhero,
section.hero-slider.mhero {
    padding: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
}

.mhero-shell {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}
.mhero-stage {
    position: relative;
    width: 100%;
    height: var(--mhero-h);
    overflow: hidden;
    background: #F4FAFC;
}
.mhero-swiper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.mhero-swiper .swiper-wrapper { height: 100%; }
.mhero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* ───────── Shared content typography ───────── */
.mhero-content-inner {
    max-width: 600px;
    display: flex;
    flex-direction: column;
}
.mhero-title {
    font-size: clamp(2rem, 4.2vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--mhero-ink);
    margin: 0 0 18px;
}
.mhero-title .mhero-accent {
    color: var(--mhero-accent);
}
.mhero-text {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.55;
    color: var(--mhero-ink-soft);
    margin: 0 0 32px;
    max-width: 540px;
}

/* ───────── CTA button (with solid background) ───────── */
.mhero-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    background: var(--mhero-accent) !important;
    background-color: var(--mhero-accent) !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    border: 0;
    border-radius: 100px;
    text-decoration: none !important;
    cursor: pointer;
    box-shadow: 0 10px 28px -8px rgba(0,158,200,0.55);
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    width: fit-content;
    -webkit-appearance: none;
    appearance: none;
}
.mhero-cta:hover,
.mhero-cta:focus {
    background: var(--mhero-accent-dark) !important;
    background-color: var(--mhero-accent-dark) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -8px rgba(0,158,200,0.65);
    text-decoration: none !important;
}
.mhero-cta svg,
.mhero-cta i {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

/* ═══════════ TYPE 1: SPLIT — text left, image right ═══════════ */
.mhero-slide--split {
    background: linear-gradient(135deg, #EAF7FB 0%, #F4FAFC 100%);
}
.mhero-split-grid {
    width: 100%;
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 80px) clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: clamp(32px, 5vw, 80px);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.mhero-split-text { min-width: 0; }
.mhero-split-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mhero-split-visual img {
    width: 100%;
    max-width: 540px;
    max-height: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 36px rgba(0,0,0,0.12));
}

/* ═══════════ TYPE 2: BANNER — full photo + dark overlay + center text ═══════════ */
.mhero-slide--banner {
    background-color: #0a1d2a;
}
.mhero-banner-media {
    position: absolute; inset: 0;
    z-index: 0; overflow: hidden;
}
.mhero-banner-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.mhero-banner-overlay {
    position: absolute; inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.55) 100%);
}
.mhero-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(40px, 6vw, 35px);
    box-sizing: border-box;
    color: #fff;
}
.mhero-slide--banner .mhero-content-inner {
    align-items: center;
    text-align: center;
    max-width: 760px;
}
.mhero-slide--banner .mhero-title {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.mhero-slide--banner .mhero-title .mhero-accent {
    color: #FFC93C;
}
.mhero-slide--banner .mhero-text {
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 10px rgba(0,0,0,0.30);
    max-width: 620px;
}
.mhero-slide--banner .mhero-cta {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: var(--mhero-accent) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.30);
}
.mhero-slide--banner .mhero-cta:hover {
    background: var(--mhero-accent) !important;
    background-color: var(--mhero-accent) !important;
    color: #ffffff !important;
}

/* Banner alignment options */
.mhero-slide--banner.align-left  .mhero-banner-content { justify-content: flex-start; text-align: left; }
.mhero-slide--banner.align-left  .mhero-content-inner  { align-items: flex-start; text-align: left; }
.mhero-slide--banner.align-right .mhero-banner-content { justify-content: flex-end;   text-align: right; }
.mhero-slide--banner.align-right .mhero-content-inner  { align-items: flex-end;   text-align: right; }

/* ═══════════ TYPE 3: VIDEO — background video + dark overlay + text ═══════════ */
.mhero-slide--video {
    background-color: #0a1d2a;
    background-image: url("../assets/slider-spring.png");
    background-size: cover;
    background-position: center;
}
.mhero-video-media {
    position: absolute; inset: 0;
    z-index: 0; overflow: hidden;
}
.mhero-video-media video,
.mhero-video-media iframe {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    border: 0;
    display: block;
}
.mhero-video-overlay {
    position: absolute; inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
}
.mhero-video-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(40px, 6vw, 80px);
    box-sizing: border-box;
    color: #fff;
}
.mhero-slide--video .mhero-content-inner {
    align-items: center;
    text-align: center;
    max-width: 760px;
}
.mhero-slide--video .mhero-title {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.mhero-slide--video .mhero-title .mhero-accent {
    color: #FFC93C;
}
.mhero-slide--video .mhero-text {
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 10px rgba(0,0,0,0.30);
    max-width: 620px;
}
.mhero-slide--video .mhero-cta {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: var(--mhero-accent) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.30);
}
.mhero-slide--video .mhero-cta:hover {
    background: var(--mhero-accent) !important;
    background-color: var(--mhero-accent) !important;
    color: #ffffff !important;
}

/* Video alignment options */
.mhero-slide--video.align-left  .mhero-video-content { justify-content: flex-start; text-align: left; }
.mhero-slide--video.align-left  .mhero-content-inner { align-items: flex-start; text-align: left; }
.mhero-slide--video.align-right .mhero-video-content { justify-content: flex-end;   text-align: right; }
.mhero-slide--video.align-right .mhero-content-inner { align-items: flex-end;   text-align: right; }

/* Mute toggle button */
.mhero-video-mute {
    position: absolute;
    bottom: 22px;
    right: 22px;
    z-index: 4;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.20);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
.mhero-video-mute:hover { background: rgba(0,0,0,0.65); transform: scale(1.05); }
.mhero-video-mute svg { width: 20px; height: 20px; stroke-width: 2; }

/* ═══════════ NAVIGATION ARROWS ═══════════ */
.mhero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--mhero-ink);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, opacity 0.3s ease;
    margin: 0; padding: 0;
    opacity: 0;
    pointer-events: none;
}
.mhero-stage:hover .mhero-nav {
    opacity: 1;
    pointer-events: auto;
}
.mhero-nav:hover {
    background: #fff;
    color: var(--mhero-accent);
    transform: translateY(-50%) scale(1.06);
}
.mhero-nav:disabled,
.mhero-nav.swiper-button-disabled {
    opacity: 0.7; cursor: not-allowed;
}
.mhero-nav.mhero-nav--prev { left: clamp(14px, 2vw, 30px); }
.mhero-nav.mhero-nav--next { right: clamp(14px, 2vw, 30px); }
.mhero-nav svg { width: 22px; height: 22px; stroke-width: 2.5; }
.mhero-nav::after { display: none; }

/* Pagination & progress bar — HIDDEN per design */
.mhero-pagination,
.mhero-pagination.swiper-pagination,
.mhero .swiper-pagination,
.mhero-swiper .swiper-pagination,
.mhero-progress,
.mhero-progress-fill { display: none !important; }

/* ═══════════ ENTRY ANIMATIONS — minimal & smooth ═══════════ */
.mhero-slide .mhero-title,
.mhero-slide .mhero-text,
.mhero-slide .mhero-cta,
.mhero-slide .mhero-split-visual img {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.25,0.8,0.25,1),
                transform 0.7s cubic-bezier(0.25,0.8,0.25,1);
}
.mhero-slide.swiper-slide-active .mhero-title         { opacity: 1; transform: translateY(0); transition-delay: 0.10s; }
.mhero-slide.swiper-slide-active .mhero-text          { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
.mhero-slide.swiper-slide-active .mhero-cta           { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }
.mhero-slide.swiper-slide-active .mhero-split-visual img { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }

/* ═══════════ RESPONSIVE — TABLET (≤ 1024px) ═══════════ */
@media (max-width: 1024px) {
    .mhero-split-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 24px;
        padding: 32px 28px;
        text-align: center;
    }
    .mhero-split-text { order: 2; align-items: center; }
    .mhero-split-text .mhero-content-inner { align-items: center; max-width: 100%; }
    .mhero-split-visual { order: 1; }
    .mhero-split-visual img { max-height: 100%; }
    .mhero-cta { padding: 14px 28px; font-size: 0.95rem; }
    .mhero-nav { width: 44px; height: 44px; }
    .mhero-nav svg { width: 18px; height: 18px; }
}

/* ═══════════ RESPONSIVE — MOBILE (≤ 640px) ═══════════ */
@media (max-width: 640px) {
    .mhero-stage {
        height: auto;
    }
    .mhero-slide {
        height: auto;
    }
    .mhero-swiper,
    .mhero-swiper .swiper-wrapper {
        height: auto;
    }
    .mhero-banner-content,
    .mhero-video-content {
        padding: 120px 20px 80px;
    }
    .mhero-split-grid { padding: 70px 18px; gap: 18px; }
    .mhero-title { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 12px; }
    .mhero-text  { font-size: 0.95rem; margin-bottom: 22px; }
    .mhero-cta   { padding: 13px 26px; font-size: 0.9rem; }
    .mhero-nav   { display: none; }
    /* padding already set above for banner+video content */
    .mhero-video-mute { width: 38px; height: 38px; bottom: 14px; right: 14px; }
    .mhero-video-mute svg { width: 16px; height: 16px; }
    .mhero-slide--banner.align-left  .mhero-banner-content,
    .mhero-slide--banner.align-right .mhero-banner-content,
    .mhero-slide--video.align-left   .mhero-video-content,
    .mhero-slide--video.align-right  .mhero-video-content {
        justify-content: center; text-align: center;
    }
    .mhero-slide--banner.align-left  .mhero-content-inner,
    .mhero-slide--banner.align-right .mhero-content-inner,
    .mhero-slide--video.align-left   .mhero-content-inner,
    .mhero-slide--video.align-right  .mhero-content-inner {
        align-items: center; text-align: center;
    }
}

/* ═══════════ LARGE DESKTOP (≥ 1440px) ═══════════ */
@media (min-width: 1440px) {
    .mhero-split-grid { max-width: 1360px; padding: 80px 96px; }
    .mhero-banner-content { max-width: 1360px; }
}
@media (min-width: 1920px) {
    .mhero-split-grid { max-width: 1600px; padding: 96px 120px; }
    .mhero-banner-content { max-width: 1600px; }
    .mhero-content-inner { max-width: 720px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .mhero-slide .mhero-title,
    .mhero-slide .mhero-text,
    .mhero-slide .mhero-cta,
    .mhero-slide .mhero-split-visual img {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ▓▓▓ ABOUT / VACANCIES / PARTNERS — unified content design ▓▓▓
   ═══════════════════════════════════════════════════════════════════ */

/* ============ Общие переменные и утилиты ============ */
.ab-eyebrow,
.vac-eyebrow,
.prt-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: #E0F7FC;
    color: #0098BF;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 16px;
}
.ab-h2,
.vac-h2,
.prt-h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0E2A3A;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.ab-section-head,
.vac-section-head,
.prt-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.ab-section-sub,
.vac-section-sub,
.prt-section-sub {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4D6A7A;
    margin: 0;
}

/* ============ ABOUT: Intro ============ */
.ab-intro {
    padding: 80px 0;
    background: #fff;
}
.ab-intro-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}
.ab-intro-text .ab-h2 { margin-bottom: 20px; }
.ab-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4D6A7A;
    margin: 0 0 32px;
}
.ab-mini-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.ab-mini-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ab-mini-num {
    font-size: 2rem;
    font-weight: 800;
    color: #00BEEF;
    line-height: 1;
}
.ab-mini-label {
    font-size: 0.9rem;
    color: #4D6A7A;
    font-weight: 500;
}
.ab-intro-visual {
    position: relative;
}
.ab-visual-card {
    background: linear-gradient(135deg, #ECFAFE 0%, #FFE3EE 100%);
    border-radius: 28px;
    padding: 32px;
    aspect-ratio: 4/5;
    max-width: 480px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 48px -16px rgba(0, 158, 200, 0.25);
    position: relative;
    overflow: hidden;
}
.ab-visual-card::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, transparent 70%);
    top: -40px; right: -40px;
    border-radius: 50%;
}
.ab-visual-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 16px 24px rgba(0,0,0,0.15));
}
.ab-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 16px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.ab-floating-badge i {
    width: 36px; height: 36px;
    background: #FFF6DB;
    color: #E5A700;
    border-radius: 10px;
    padding: 7px;
    flex-shrink: 0;
}
.ab-floating-badge strong {
    display: block;
    font-size: 0.92rem;
    color: #0E2A3A;
    line-height: 1.2;
}
.ab-floating-badge span {
    font-size: 0.78rem;
    color: #4D6A7A;
}

/* ============ ABOUT: Timeline ============ */
.ab-history {
    padding: 80px 0;
    background: linear-gradient(180deg, #F8FCFD 0%, #fff 100%);
}
.ab-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.ab-timeline::before {
    content: '';
    position: absolute;
    left: 90px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, #00BEEF 10%, #00BEEF 90%, transparent 100%);
    opacity: 0.3;
}
.ab-tl-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 32px;
    margin-bottom: 32px;
    position: relative;
}
.ab-tl-item:last-child { margin-bottom: 0; }
.ab-tl-year {
    font-size: 1.4rem;
    font-weight: 800;
    color: #00BEEF;
    text-align: right;
    padding-top: 22px;
    position: relative;
}
.ab-tl-year::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 30px;
    width: 14px; height: 14px;
    background: #00BEEF;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(0, 190, 239, 0.25);
}
.ab-tl-card {
    background: #fff;
    border: 1px solid #E5EFF3;
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ab-tl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 158, 200, 0.12);
}
.ab-tl-card--accent {
    background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
    border: 0;
    color: #fff;
}
.ab-tl-card--accent h3 { color: #fff; }
.ab-tl-card--accent p { color: rgba(255,255,255,0.9); }
.ab-tl-icon {
    width: 44px; height: 44px;
    background: #ECFAFE;
    color: #00BEEF;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.ab-tl-icon i { width: 22px; height: 22px; }
.ab-tl-card--accent .ab-tl-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.ab-tl-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0E2A3A;
    margin: 0 0 8px;
}
.ab-tl-card p {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #4D6A7A;
    margin: 0;
}

/* ============ ABOUT: Values ============ */
.ab-values {
    padding: 80px 0;
    background: #fff;
}
.ab-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.ab-value-card {
    background: #fff;
    border: 1px solid #E5EFF3;
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ab-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 158, 200, 0.12);
    border-color: transparent;
}
.ab-value-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.ab-value-icon i { width: 28px; height: 28px; }
.ab-value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0E2A3A;
    margin: 0 0 10px;
}
.ab-value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4D6A7A;
    margin: 0;
}

/* ============ ABOUT: Stats ============ */
.ab-stats {
    padding: 80px 0;
    background: #F8FCFD;
}
.ab-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.ab-stat-card {
    color: #fff;
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}
.ab-stat-card:hover { transform: translateY(-4px); }
.ab-stat-num {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.ab-stat-lbl {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* ============ ABOUT: CTA ============ */
.ab-cta {
    padding: 80px 0;
    background: #fff;
}
.ab-cta-card {
    background: linear-gradient(135deg, #00BEEF 0%, #0098BF 50%, #FF6FA3 130%);
    border-radius: 32px;
    padding: 64px 48px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 64px -20px rgba(0, 158, 200, 0.5);
}
.ab-cta-bg {
    position: absolute;
    right: -120px; bottom: -120px;
    width: 400px;
    opacity: 0.15;
    pointer-events: none;
}
.ab-cta-content { position: relative; z-index: 1; }
.ab-cta-card h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin: 0 0 14px;
    color: #fff;
}
.ab-cta-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    max-width: 600px;
    margin: 0 auto 32px;
}
.ab-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.ab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease;
    border: 2px solid transparent;
}
.ab-btn i { width: 18px; height: 18px; }
.ab-btn--white {
    background: #fff;
    color: #0098BF;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.ab-btn--white:hover { transform: translateY(-2px); background: #f5fcff; }
.ab-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.ab-btn--ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ============ ABOUT: responsive ============ */
@media (max-width: 992px) {
    .ab-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .ab-visual-card { margin: 0 auto; }
    .ab-timeline::before { left: 70px; }
    .ab-tl-item { grid-template-columns: 70px 1fr; gap: 20px; }
    .ab-tl-year { font-size: 1.15rem; padding-top: 22px; }
    .ab-tl-year::after { right: -7px; top: 28px; width: 12px; height: 12px; }
}
@media (max-width: 640px) {
    .ab-intro, .ab-history, .ab-values, .ab-stats, .ab-cta { padding: 56px 0; }
    .ab-mini-stats { gap: 20px; }
    .ab-mini-num { font-size: 1.6rem; }
    .ab-tl-item { grid-template-columns: 60px 1fr; gap: 14px; }
    .ab-tl-card { padding: 18px 20px; }
    .ab-stat-num { font-size: 2.1rem; }
    .ab-cta-card { padding: 44px 24px; border-radius: 24px; }
    .ab-floating-badge { left: 8px; bottom: 12px; padding: 10px 14px; }
}

/* ═══════════════════════════════════════════════════════════════════
   ▓▓▓ VACANCIES PAGE ▓▓▓
   ═══════════════════════════════════════════════════════════════════ */

.vac-intro {
    padding: 80px 0;
    background: #fff;
}
.vac-perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.vac-perk-card {
    background: #fff;
    border: 1px solid #E5EFF3;
    border-radius: 20px;
    padding: 30px 26px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vac-perk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 158, 200, 0.12);
}
.vac-perk-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.vac-perk-icon i { width: 30px; height: 30px; }
.vac-perk-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0E2A3A;
    margin: 0 0 8px;
}
.vac-perk-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #4D6A7A;
    margin: 0;
}

/* Список вакансий */
.vac-list-section {
    padding: 80px 0;
    background: #F8FCFD;
}
.vac-list {
    display: grid;
    gap: 18px;
    max-width: 980px;
    margin: 0 auto;
}
.vac-card {
    background: #fff;
    border: 1px solid #E5EFF3;
    border-radius: 20px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.vac-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 158, 200, 0.12);
    border-color: #00BEEF;
}
.vac-card-info {}
.vac-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.vac-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #ECFAFE;
    color: #0098BF;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 100px;
}
.vac-tag i { width: 13px; height: 13px; }
.vac-tag--hot {
    background: #FFE3EE;
    color: #FF6FA3;
}
.vac-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0E2A3A;
    margin: 0 0 8px;
}
.vac-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #4D6A7A;
    font-size: 0.9rem;
}
.vac-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.vac-card-meta i { width: 15px; height: 15px; color: #00BEEF; }
.vac-card-salary {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0E2A3A;
    margin: 8px 0 0;
}
.vac-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}
.vac-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #00BEEF;
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
}
.vac-apply-btn:hover { background: #0098BF; transform: translateY(-2px); }
.vac-apply-btn i { width: 16px; height: 16px; }

/* HR-CTA */
.vac-hr-cta {
    padding: 80px 0;
    background: #fff;
}
.vac-hr-card {
    background: linear-gradient(135deg, #ECFAFE 0%, #FFE3EE 100%);
    border-radius: 28px;
    padding: 48px 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    border: 1px solid rgba(0,190,239,0.15);
}
.vac-hr-card h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 800;
    color: #0E2A3A;
    margin: 0 0 8px;
}
.vac-hr-card p {
    font-size: 1.02rem;
    color: #4D6A7A;
    margin: 0;
    line-height: 1.55;
}
.vac-hr-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vac-hr-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease;
    white-space: nowrap;
}
.vac-hr-btn i { width: 16px; height: 16px; }
.vac-hr-btn--primary {
    background: #00BEEF;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0,158,200,0.35);
}
.vac-hr-btn--primary:hover { transform: translateY(-2px); background: #0098BF; }
.vac-hr-btn--secondary {
    background: #fff;
    color: #0E2A3A;
    border: 1px solid #E5EFF3;
}
.vac-hr-btn--secondary:hover { transform: translateY(-2px); }

/* Vacancies responsive */
@media (max-width: 768px) {
    .vac-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px 24px;
    }
    .vac-card-actions { align-items: flex-start; }
    .vac-hr-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 28px;
    }
    .vac-hr-actions { align-items: center; }
}
@media (max-width: 640px) {
    .vac-intro, .vac-list-section, .vac-hr-cta { padding: 56px 0; }
    .vac-card-meta { gap: 10px; font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   ▓▓▓ PARTNERS PAGE ▓▓▓
   ═══════════════════════════════════════════════════════════════════ */

.prt-intro {
    padding: 80px 0;
    background: #fff;
}
.prt-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.prt-intro-text .prt-h2 { margin-bottom: 18px; }
.prt-intro-text p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #4D6A7A;
    margin: 0 0 18px;
}
.prt-intro-text p:last-of-type { margin-bottom: 24px; }
.prt-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.prt-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #0E2A3A;
    font-weight: 500;
    line-height: 1.5;
}
.prt-checklist li i {
    width: 22px; height: 22px;
    background: #E5FBE9;
    color: #21B045;
    border-radius: 7px;
    padding: 4px;
    flex-shrink: 0;
    margin-top: 1px;
}
.prt-intro-visual {
    background: linear-gradient(135deg, #ECFAFE 0%, #FFF6DB 100%);
    border-radius: 28px;
    padding: 40px;
    aspect-ratio: 1/1;
    max-width: 480px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 48px -16px rgba(0, 158, 200, 0.2);
}
.prt-intro-visual img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(0,0,0,0.12));
}

/* Преимущества */
.prt-benefits {
    padding: 80px 0;
    background: #F8FCFD;
}
.prt-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.prt-benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 26px;
    border: 1px solid #E5EFF3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prt-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 158, 200, 0.12);
}
.prt-benefit-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.prt-benefit-icon i { width: 28px; height: 28px; }
.prt-benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0E2A3A;
    margin: 0 0 8px;
}
.prt-benefit-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #4D6A7A;
    margin: 0;
}

/* Шаги — как стать партнёром */
.prt-steps {
    padding: 80px 0;
    background: #fff;
}
.prt-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    counter-reset: prt-step;
}
.prt-step-card {
    background: #fff;
    border: 1px solid #E5EFF3;
    border-radius: 20px;
    padding: 32px 26px;
    position: relative;
    counter-increment: prt-step;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prt-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 158, 200, 0.12);
}
.prt-step-num {
    position: absolute;
    top: -18px;
    left: 26px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
    color: #fff;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0, 158, 200, 0.4);
}
.prt-step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0E2A3A;
    margin: 14px 0 8px;
}
.prt-step-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #4D6A7A;
    margin: 0;
}

/* Логотипы текущих партнёров */
.prt-logos {
    padding: 80px 0;
    background: #F8FCFD;
}
.prt-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}
.prt-logo-tile {
    background: #fff;
    border: 1px solid #E5EFF3;
    border-radius: 16px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: #0E2A3A;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.prt-logo-tile:hover {
    transform: translateY(-3px);
    border-color: #00BEEF;
    box-shadow: 0 12px 24px rgba(0,158,200,0.12);
}

/* Форма заявки */
.prt-form-section {
    padding: 80px 0;
    background: #fff;
}
.prt-form-card {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ECFAFE 0%, #fff 100%);
    border: 1px solid rgba(0, 190, 239, 0.18);
    border-radius: 28px;
    padding: 48px;
}
.prt-form-card .prt-h2 { text-align: center; }
.prt-form-card > p {
    text-align: center;
    color: #4D6A7A;
    margin-bottom: 32px;
    line-height: 1.55;
}
.prt-form {
    display: grid;
    gap: 18px;
}
.prt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.prt-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0E2A3A;
    margin-bottom: 7px;
}
.prt-form input,
.prt-form textarea,
.prt-form select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #D9E6EC;
    border-radius: 12px;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    color: #0E2A3A;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.prt-form input:focus,
.prt-form textarea:focus,
.prt-form select:focus {
    border-color: #00BEEF;
    box-shadow: 0 0 0 4px rgba(0, 190, 239, 0.15);
}
.prt-form textarea { resize: vertical; min-height: 120px; }
.prt-submit {
    margin-top: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
    color: #fff;
    border: 0;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(0, 158, 200, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.prt-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 158, 200, 0.45);
}
.prt-submit i { width: 18px; height: 18px; }

@media (max-width: 992px) {
    .prt-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .prt-intro-visual { margin: 0 auto; }
}
@media (max-width: 640px) {
    .prt-intro, .prt-benefits, .prt-steps, .prt-logos, .prt-form-section { padding: 56px 0; }
    .prt-form-card { padding: 32px 22px; border-radius: 22px; }
    .prt-form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   ▓▓▓ ABOUT v2 — Intro / History / Values (REDESIGN) ▓▓▓
   ═══════════════════════════════════════════════════════════════════ */

/* ============ Intro v2: текст → фото 100% контейнера → текст ============ */
.ab-intro2 {
    padding: 80px 0 90px;
    background: #fff;
}
.ab-intro2-head {
    max-width: 920px;
    margin: 0 auto 48px;
    text-align: center;
}
.ab-intro2-head .ab-eyebrow { display: inline-block; }
.ab-intro2-head .ab-h2 { margin: 14px 0 20px; }
.ab-intro2-head .ab-lead {
    font-size: 1.12rem;
    line-height: 1.7;
    color: #4D6A7A;
    margin: 0;
}

/* Фото 100% контейнера */
.ab-hero-img {
    position: relative;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: linear-gradient(135deg, #ECFAFE 0%, #FFE3EE 60%, #FFF6DB 100%);
    box-shadow: 0 30px 60px -20px rgba(0, 158, 200, 0.28);
    aspect-ratio: 21/9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 56px;
}
.ab-hero-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.55) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(255,255,255,0.4) 0%, transparent 45%);
    pointer-events: none;
}
.ab-hero-img img {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 36px rgba(0,0,0,0.18));
}
.ab-hero-img__badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.14);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}
.ab-hero-img__badge i {
    width: 40px; height: 40px;
    background: #FFF6DB;
    color: #E5A700;
    border-radius: 12px;
    padding: 8px;
    flex-shrink: 0;
}
.ab-hero-img__badge strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    color: #0E2A3A;
    line-height: 1.2;
}
.ab-hero-img__badge span {
    font-size: 0.83rem;
    color: #4D6A7A;
}

/* Текст под фото — 2 колонки */
.ab-intro2-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.ab-intro2-col h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0E2A3A;
    margin: 0 0 14px;
    position: relative;
    padding-left: 18px;
}
.ab-intro2-col h3::before {
    content: '';
    position: absolute;
    left: 0; top: 8px; bottom: 8px;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #00BEEF 0%, #FF6FA3 100%);
}
.ab-intro2-col p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4D6A7A;
    margin: 0;
}

/* Мини-стат внизу intro */
.ab-intro2-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 36px 32px;
    background: linear-gradient(135deg, #ECFAFE 0%, #fff 100%);
    border: 1px solid #E0F2F8;
    border-radius: 24px;
}
.ab-intro2-stats .ab-mini-stat {
    text-align: center;
    align-items: center;
}
.ab-intro2-stats .ab-mini-num {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============ History v2: горизонтальные карточки ============ */
.ab-history2 {
    padding: 90px 0;
    background: linear-gradient(180deg, #F8FCFD 0%, #fff 100%);
    overflow: hidden;
}
.ab-hist2-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.ab-hist2-line {
    position: absolute;
    top: 38px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, #00BEEF 0%, #FF6FA3 50%, #FFC93C 100%);
    opacity: 0.2;
    border-radius: 3px;
    z-index: 0;
}
.ab-hist2-card {
    position: relative;
    background: #fff;
    border: 1px solid #E5EFF3;
    border-radius: 22px;
    padding: 56px 22px 26px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    z-index: 1;
}
.ab-hist2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(0, 158, 200, 0.18);
    border-color: rgba(0, 190, 239, 0.35);
}
.ab-hist2-year {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #00BEEF;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 100px;
    border: 2px solid #00BEEF;
    z-index: 3;
    letter-spacing: 0.5px;
}
.ab-hist2-dot {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px; height: 14px;
    background: #00BEEF;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(0, 190, 239, 0.25);
    z-index: 2;
}
.ab-hist2-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.ab-hist2-icon i { width: 24px; height: 24px; }
.ab-hist2-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0E2A3A;
    margin: 0 0 8px;
    line-height: 1.3;
}
.ab-hist2-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: #4D6A7A;
    margin: 0;
}
.ab-hist2-card--accent {
    background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
    border: 0;
    box-shadow: 0 22px 44px -10px rgba(0, 158, 200, 0.45);
}
.ab-hist2-card--accent .ab-hist2-year {
    background: #00BEEF;
    color: #fff;
    border-color: #fff;
}
.ab-hist2-card--accent .ab-hist2-dot {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45);
}
.ab-hist2-card--accent h3 { color: #fff; }
.ab-hist2-card--accent p { color: rgba(255, 255, 255, 0.92); }

/* ============ Values v2: масонри — 2 широких + 3 узких ============ */
.ab-values2 {
    padding: 90px 0;
    background: #fff;
}
.ab-values2-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    margin-top: 48px;
}
.ab-val2-card {
    grid-column: span 2;
    position: relative;
    background: #fff;
    border: 1px solid #E5EFF3;
    border-radius: 24px;
    padding: 32px 28px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}
.ab-val2-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(0, 190, 239, 0.04) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ab-val2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(0, 158, 200, 0.14);
    border-color: rgba(0, 190, 239, 0.3);
}
.ab-val2-card:hover::after { opacity: 1; }
.ab-val2-card--lg { grid-column: span 3; }
.ab-val2-num {
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(0, 190, 239, 0.12);
    line-height: 1;
    letter-spacing: -1px;
}
.ab-val2-icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.ab-val2-icon i { width: 30px; height: 30px; }
.ab-val2-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0E2A3A;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}
.ab-val2-card p {
    font-size: 0.97rem;
    line-height: 1.65;
    color: #4D6A7A;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============ ABOUT v2 RESPONSIVE ============ */
@media (max-width: 1024px) {
    .ab-hero-img { aspect-ratio: 16/9; }
    .ab-hist2-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 18px;
    }
    .ab-hist2-line { display: none; }
    .ab-values2-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-val2-card, .ab-val2-card--lg { grid-column: span 1; }
}
@media (max-width: 768px) {
    .ab-intro2 { padding: 64px 0 72px; }
    .ab-intro2-head { margin-bottom: 36px; }
    .ab-intro2-body {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 36px;
    }
    .ab-hero-img {
        aspect-ratio: 4/3;
        border-radius: 24px;
        margin-bottom: 36px;
    }
    .ab-hero-img__badge {
        bottom: 16px;
        left: 16px;
        padding: 10px 14px;
        gap: 10px;
    }
    .ab-hero-img__badge i { width: 32px; height: 32px; padding: 6px; }
    .ab-hero-img__badge strong { font-size: 0.88rem; }
    .ab-hero-img__badge span { font-size: 0.74rem; }
    .ab-intro2-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
        gap: 18px;
    }
    .ab-intro2-stats .ab-mini-num { font-size: 1.8rem; }
    .ab-history2, .ab-values2 { padding: 64px 0; }
    .ab-hist2-track { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .ab-values2-grid { grid-template-columns: 1fr; }
    .ab-val2-num { font-size: 1.9rem; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT v3 — БЛОКИ ab2-* (по ТЗ от 2026-04-29)
   ═══════════════════════════════════════════════════════════ */
.ab2-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00BEEF;
  background: #E5F8FE;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.ab2-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #2B2D42;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}
.ab2-h1-grad, .ab2-grad {
  background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ab2-h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #2B2D42;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
}
.ab2-lead {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: #6C757D;
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.ab2-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.ab2-section-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  color: #6C757D;
  margin: 8px 0 0;
  line-height: 1.6;
}
.ab2-pill {
  display: inline-block;
  background: #E5F8FE;
  color: #0098BF;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* БЛОК 1: HERO IMAGE */
.ab2-hero { padding: 80px 0 40px; background: #FFFFFF; }
.ab2-hero .container { text-align: center; }
.ab2-hero-img {
  position: relative;
  width: 100%;
  margin: 40px auto 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,190,239,0.15);
  height: 600px;
  background: linear-gradient(135deg, #E5F8FE 0%, #FFE3EE 100%);
}
.ab2-hero-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.ab2-hero-img__deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}
.ab2-hero-img__deco--1 {
  width: 220px; height: 220px;
  background: #FFC107;
  top: -50px; right: -50px;
}
.ab2-hero-img__deco--2 {
  width: 180px; height: 180px;
  background: #FF006E;
  bottom: -40px; left: -40px;
}

/* БЛОК 2: О КОМПАНИИ */
.ab2-about { padding: 100px 0; background: #FFFFFF; }
.ab2-about-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}
.ab2-about-left .ab2-h2 { margin-bottom: 0; }
.ab2-about-right p {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #6C757D;
  margin: 0 0 18px;
}
.ab2-about-right p:last-child { margin-bottom: 0; }
.ab2-about-right strong { color: #2B2D42; font-weight: 700; }

.ab2-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ab2-stat {
  height: 140px;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0,190,239,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ab2-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,190,239,0.22);
}
.ab2-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.ab2-stat-lbl {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

/* БЛОК 3: TIMELINE */
.ab2-timeline { padding: 100px 0; background: #F4FAFC; }
.ab2-tl {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.ab2-tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-image: linear-gradient(to bottom, rgba(0,190,239,0.3) 50%, transparent 50%);
  background-size: 2px 12px;
  background-repeat: repeat-y;
  transform: translateX(-50%);
}
.ab2-tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 36px;
}
.ab2-tl-item:last-child { margin-bottom: 0; }
.ab2-tl-pin {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 52px;
  height: 52px;
  background: #00BEEF;
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab2-tl-icon {
  width: 22px;
  height: 22px;
  color: #FFFFFF;
  stroke-width: 2.2;
}
.ab2-tl-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 10px 30px rgba(0,190,239,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 4px solid transparent;
}
.ab2-tl-card--pink  { border-top-color: #FF8BA7; }
.ab2-tl-card--teal  { border-top-color: #33C3C3; }
.ab2-tl-card--yellow { border-top-color: #FFC033; }
.ab2-tl-card--purple { border-top-color: #7E5BEF; }
.ab2-tl-card--orange { border-top-color: #FF7E67; }
.ab2-tl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,190,239,0.15);
}
.ab2-tl-item--left .ab2-tl-card {
  grid-column: 1;
  margin-right: 52px;
  text-align: right;
}
.ab2-tl-item--right .ab2-tl-card {
  grid-column: 2;
  margin-left: 52px;
}
.ab2-tl-year {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #00BEEF;
  background: #E5F8FE;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.ab2-tl-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2B2D42;
  margin: 0 0 8px;
}
.ab2-tl-card p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.97rem;
  line-height: 1.6;
  color: #6C757D;
  margin: 0;
}
.ab2-tl-item--accent .ab2-tl-card {
  background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
}
.ab2-tl-item--accent .ab2-tl-year {
  background: rgba(255,255,255,0.25);
  color: #FFFFFF;
}
.ab2-tl-item--accent .ab2-tl-card h3,
.ab2-tl-item--accent .ab2-tl-card p { color: #FFFFFF; }
.ab2-tl-item--accent .ab2-tl-card p { color: rgba(255,255,255,0.92); }

/* БЛОК 4: ПАРТНЁРЫ — Marquee */
.ab2-partners { padding: 100px 0; background: #FFFFFF; overflow: hidden; }
.ab2-marquee {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}
.ab2-marquee-row { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 80px, #000 calc(100% - 80px), transparent); }
.ab2-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: ab2-marquee-ltr 30s linear infinite;
}
.ab2-marquee-row--rtl .ab2-marquee-track { animation-name: ab2-marquee-rtl; }
@keyframes ab2-marquee-ltr {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ab2-marquee-rtl {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.ab2-marquee-row:hover .ab2-marquee-track { animation-play-state: paused; }
.ab2-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #6C757D;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.3s ease;
}
.ab2-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  color: #00BEEF;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,190,239,0.18);
  border-color: #B8EAF7;
}

/* БЛОК 5: РЕЙТИНГИ И ОТЗЫВЫ */
.ab2-reviews { padding: 100px 0; background: #FFFFFF; }
.ab2-rate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.ab2-rate-card {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,190,239,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ab2-rate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0,190,239,0.2);
}
.ab2-rate-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.ab2-rate-logo--ya { color: #FF0000; }
.ab2-rate-logo--ya .ab2-ya-y { color: #FF0000; }
.ab2-rate-num {
  font-family: 'Poppins', sans-serif;
  font-size: 4.2rem;
  font-weight: 800;
  color: #2B2D42;
  line-height: 1;
  margin-bottom: 12px;
}
.ab2-rate-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}
.ab2-rate-stars i, .ab2-rv-stars i {
  width: 22px; height: 22px;
  color: #FFC107;
  fill: #FFC107;
}
.ab2-rate-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.97rem;
  color: #6C757D;
  margin: 0 0 24px;
}
.ab2-rate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ab2-rate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,190,239,0.3);
  color: #FFFFFF;
}
.ab2-rate-btn i { width: 16px; height: 16px; }

/* Reviews slider — full-width infinite marquee */
.ab2-rv-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 32px;
  padding: 10px 0 20px;
}
.ab2-rv-slider::before,
.ab2-rv-slider::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ab2-rv-slider::before { left: 0; background: linear-gradient(to right, #FFFFFF 0%, transparent 100%); }
.ab2-rv-slider::after  { right: 0; background: linear-gradient(to left, #FFFFFF 0%, transparent 100%); }

@keyframes ab2-rv-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ab2-rv-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: ab2-rv-scroll 45s linear infinite;
}
.ab2-rv-slider:hover .ab2-rv-track {
  animation-play-state: paused;
}
.ab2-rv-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 6px 20px rgba(0,190,239,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex: 0 0 380px;
  min-width: 380px;
  max-width: 380px;
}
.ab2-rv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,190,239,0.16);
}
.ab2-rv-quote {
  position: absolute;
  top: 24px; right: 24px;
  width: 28px; height: 28px;
  color: #E5F8FE;
}
.ab2-rv-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.ab2-rv-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.ab2-rv-meta strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #2B2D42;
}
.ab2-rv-meta span {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: #6C757D;
}
.ab2-rv-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.ab2-rv-stars i { width: 16px; height: 16px; }
.ab2-rv-text {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #2B2D42;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ab2-rv-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #F1F3F5;
}
.ab2-rv-source {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.ab2-rv-source--g { background: #E8F0FE; color: #4285F4; }
.ab2-rv-source--y { background: #FFEAEA; color: #FF0000; }
.ab2-rv-date {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  color: #6C757D;
}

/* БЛОК 6: КОМАНДА */
.ab2-team { padding: 100px 0; background: #FFFFFF; }
.ab2-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.ab2-tm-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  border: 1px solid #F1F3F5;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ab2-tm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,190,239,0.14);
  border-color: transparent;
}
.ab2-tm-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab2-tm-initials {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.ab2-tm-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2B2D42;
  margin: 0 0 4px;
}
.ab2-tm-role {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #00BEEF;
  margin-bottom: 14px;
}
.ab2-tm-bio {
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  line-height: 1.55;
  color: #6C757D;
  margin: 0 0 18px;
}
.ab2-tm-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.ab2-tm-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #E5F8FE;
  color: #00BEEF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.ab2-tm-social a:hover {
  background: #00BEEF;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.ab2-tm-social i { width: 16px; height: 16px; }

/* БЛОК 7: CTA */
.ab2-cta { padding: 100px 0 120px; background: #FFFFFF; }
.ab2-cta-card {
  position: relative;
  background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
  border-radius: 32px;
  padding: 72px 56px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,190,239,0.25);
}
.ab2-cta-bg {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 360px;
  opacity: 0.18;
  pointer-events: none;
}
.ab2-cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.ab2-cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
}
.ab2-cta-content p {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0 0 28px;
}
.ab2-cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.ab2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.ab2-btn i { width: 18px; height: 18px; }
.ab2-btn--white {
  background: #FFFFFF;
  color: #00BEEF;
}
.ab2-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  color: #0098BF;
}
.ab2-btn--ghost {
  background: rgba(255,255,255,0.16);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.4);
}
.ab2-btn--ghost:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* ======================== TABLET ≤1239 ======================== */
/* ===== UI POLISH (additions) ===== */
.ab2-section-head .ab2-eyebrow { margin-bottom: 14px; }
.ab2-section-head .ab2-h2 { margin-bottom: 6px; }
.ab2-hero .container > .ab2-pill,
.ab2-hero .container > .ab2-h1 { text-align: center; }
.ab2-hero .ab2-h1 { max-width: 900px; margin-left: auto; margin-right: auto; }
.ab2-about-left { position: sticky; top: 100px; }
.ab2-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}
.ab2-stat { position: relative; overflow: hidden; }
.ab2-stat-num, .ab2-stat-lbl { position: relative; z-index: 1; }
.ab2-tl-card { position: relative; }
.ab2-rv-card { display: flex; flex-direction: column; }
.ab2-rv-foot { margin-top: auto; }

/* ======================== TABLET ≤1239 ======================== */
@media (max-width: 1239px) {
  .ab2-hero { padding: 64px 0 32px; }
  .ab2-hero-img { height: 380px; border-radius: 28px; }
  .ab2-about, .ab2-timeline, .ab2-partners, .ab2-reviews, .ab2-team { padding: 80px 0; }
  .ab2-cta { padding: 80px 0 100px; }
  .ab2-about-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .ab2-about-left { position: static; }
  .ab2-stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ab2-stat { height: 130px; }
  .ab2-stat-num { font-size: 2.3rem; }
  .ab2-rate-grid { gap: 24px; }
  .ab2-rate-card { padding: 40px 32px; }
  .ab2-rate-num { font-size: 3.6rem; }
  .ab2-rv-card { flex: 0 0 340px; min-width: 340px; max-width: 340px; }
  .ab2-team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ab2-logo { width: 160px; height: 110px; }
  .ab2-section-head { margin-bottom: 44px; }
  .ab2-cta-card { padding: 60px 40px; }
}

/* ======================== MOBILE <768 ======================== */
@media (max-width: 767px) {
  /* Padding & rhythm */
  .ab2-hero { padding: 36px 0 20px; }
  .ab2-hero-img {
    height: 240px;
    border-radius: 22px;
    margin-top: 28px;
    box-shadow: 0 16px 32px rgba(0,190,239,0.18);
  }
  .ab2-about, .ab2-timeline, .ab2-partners, .ab2-reviews, .ab2-team { padding: 56px 0; }
  .ab2-cta { padding: 56px 0 72px; }
  .ab2-section-head { margin-bottom: 32px; }
  .ab2-section-head .ab2-section-sub { font-size: 0.95rem; }

  /* Typography scaling */
  .ab2-h1 { font-size: 1.85rem; line-height: 1.2; }
  .ab2-h2 { font-size: 1.5rem; line-height: 1.25; }
  .ab2-lead { font-size: 0.97rem; line-height: 1.6; margin-bottom: 24px; padding: 0 6px; }
  .ab2-pill, .ab2-eyebrow { font-size: 11px; padding: 7px 14px; letter-spacing: 1.2px; }

  /* Hero deco — отключаем тяжёлые блюры на слабых GPU */
  .ab2-hero-img__deco--1 { width: 140px; height: 140px; top: -30px; right: -30px; }
  .ab2-hero-img__deco--2 { width: 120px; height: 120px; bottom: -28px; left: -28px; }

  /* About */
  .ab2-about-grid { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
  .ab2-about-left { position: static; }
  .ab2-about-right p { font-size: 0.97rem; line-height: 1.65; margin-bottom: 14px; }

  /* Stats: 2×2 на мобильном — компактнее, чем 1 колонка */
  .ab2-stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ab2-stat { height: 110px; padding: 14px 10px; border-radius: 16px; }
  .ab2-stat-num { font-size: 1.7rem; margin-bottom: 6px; }
  .ab2-stat-lbl { font-size: 0.78rem; line-height: 1.25; }

  /* Timeline → одна колонка слева */
  .ab2-tl-line { left: 34px; background-size: 2px 10px; }
  .ab2-tl-item { grid-template-columns: 1fr; margin-bottom: 22px; }
  .ab2-tl-pin {
    left: 14px;
    top: 16px;
    width: 40px;
    height: 40px;
    border-width: 3px;
  }
  .ab2-tl-icon {
    width: 18px;
    height: 18px;
  }
  .ab2-tl-item--left .ab2-tl-card,
  .ab2-tl-item--right .ab2-tl-card {
    grid-column: 1;
    margin-left: 50px;
    margin-right: 0;
    text-align: left;
    padding: 18px 18px;
    border-radius: 16px;
  }
  .ab2-tl-card h3 { font-size: 1.05rem; }
  .ab2-tl-card p { font-size: 0.92rem; }
  .ab2-tl-year { font-size: 12px; padding: 3px 10px; margin-bottom: 8px; }

  /* Partners marquee */
  .ab2-marquee { gap: 14px; margin-top: 32px; }
  .ab2-marquee-row { mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent); }
  .ab2-logo {
    width: 130px;
    height: 80px;
    font-size: 0.88rem;
    border-radius: 16px;
    /* На мобильных снимаем grayscale, чтобы партнёры читались */
    filter: none;
    opacity: 1;
  }
  .ab2-marquee-track { animation-duration: 24s; gap: 14px; }

  /* Ratings */
  .ab2-rate-grid { grid-template-columns: 1fr; gap: 16px; }
  .ab2-rate-card { padding: 28px 22px; border-radius: 22px; }
  .ab2-rate-logo { font-size: 1.6rem; margin-bottom: 12px; }
  .ab2-rate-num { font-size: 2.8rem; margin-bottom: 8px; }
  .ab2-rate-stars i { width: 18px; height: 18px; }
  .ab2-rate-sub { font-size: 0.9rem; margin-bottom: 18px; }
  .ab2-rate-btn { font-size: 13px; padding: 11px 20px; }

  /* Reviews */
  .ab2-rv-card { flex: 0 0 280px; min-width: 280px; max-width: 280px; }
  .ab2-rv-slider::before, .ab2-rv-slider::after { width: 60px; }
  .ab2-rv-track { gap: 16px; animation-duration: 35s; }
  .ab2-rv-card { padding: 22px 20px; border-radius: 18px; }
  .ab2-rv-quote { width: 22px; height: 22px; top: 18px; right: 18px; }
  .ab2-rv-avatar { width: 48px; height: 48px; font-size: 0.95rem; }
  .ab2-rv-meta strong { font-size: 0.95rem; }
  .ab2-rv-meta span { font-size: 0.82rem; }
  .ab2-rv-text { font-size: 14px; -webkit-line-clamp: 6; }
  .ab2-rv-source { font-size: 11px; padding: 3px 8px; }
  .ab2-rv-date { font-size: 0.8rem; }
  /* На мобильном — второй H2 поднять ближе */
  .ab2-reviews .ab2-section-head[style*="margin-top:80px"] { margin-top: 56px !important; }

  /* Team */
  .ab2-team-grid { grid-template-columns: 1fr; gap: 18px; }
  .ab2-tm-card { padding: 24px 22px; border-radius: 20px; }
  .ab2-tm-photo { width: 96px; height: 96px; margin-bottom: 14px; }
  .ab2-tm-initials { font-size: 1.7rem; }
  .ab2-tm-name { font-size: 1.05rem; }
  .ab2-tm-role { font-size: 0.85rem; margin-bottom: 10px; }
  .ab2-tm-bio { font-size: 0.88rem; line-height: 1.55; margin-bottom: 14px; }

  /* CTA */
  .ab2-cta-card {
    padding: 40px 22px;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0,190,239,0.22);
  }
  .ab2-cta-bg { width: 220px; right: -50px; bottom: -50px; }
  .ab2-cta-content h2 { font-size: 1.4rem; margin-bottom: 10px; }
  .ab2-cta-content p { font-size: 0.95rem; margin-bottom: 22px; }
  .ab2-cta-actions { display: flex; flex-direction: column; gap: 10px; width: 100%; }
  .ab2-btn { font-size: 14px; padding: 12px 20px; justify-content: center; width: 100%; }

  /* Page-header inline-styles override на мобиле */
  main > .page-header { padding: 100px 0 25px !important; }
  main > .page-header .page-header-heart { width: 80% !important; bottom: -18% !important; }
}

/* ======================== MOBILE XS ≤480 ======================== */
@media (max-width: 480px) {
  .ab2-hero-img { height: 200px; }
  .ab2-stats-row { gap: 10px; }
  .ab2-stat { height: 100px; padding: 12px 8px; }
  .ab2-stat-num { font-size: 1.45rem; }
  .ab2-stat-lbl { font-size: 0.72rem; }
  .ab2-rate-num { font-size: 2.4rem; }
  .ab2-tm-card { padding: 22px 18px; }
  .ab2-cta-content h2 { font-size: 1.25rem; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  .ab2-marquee-track { animation: none !important; }
  .ab2-stat:hover, .ab2-tl-card:hover, .ab2-rate-card:hover,
  .ab2-rv-card:hover, .ab2-tm-card:hover, .ab2-logo:hover { transform: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   PROMO CARDS — blur-bg + centered original image (no crop)
   Auto-span: 1 card → full row, 2 cards → half each, 3+ → 1 col
   ═══════════════════════════════════════════════════════════ */

/* AUTO-SPAN: одиночная акция — на всю ширину; две — по половине */
#promotions .cards-grid:has(.promo-card:only-child) { grid-template-columns: 1fr; }
#promotions .cards-grid:has(.promo-card:nth-child(2):last-child) { grid-template-columns: repeat(2, 1fr); }
/* fallback для браузеров без :has() — данные кидаются в data-атрибут JS */
#promotions .cards-grid[data-count="1"] { grid-template-columns: 1fr; }
#promotions .cards-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }

/* Контейнер фото в promo-card */
.promo-card .card-image {
    position: relative;
    overflow: hidden;
    /* фикс. высота сохраняется, но фото теперь не обрезается */
}
.promo-card .card-image.sm {
    height: 280px;
    background: #f0f9fd;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Базовый <img> теперь играет роль ФОНА с blur */
.promo-card .card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(22px) brightness(0.78) saturate(1.15);
    transform: scale(1.15); /* убираем размытые края, появляющиеся от blur */
    transition: transform 0.5s ease, filter 0.5s ease;
    z-index: 0;
}

/* Тёмная полупрозрачная подложка для контраста badge */
.promo-card .card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,30,60,0.18) 0%, rgba(0,30,60,0.05) 50%, rgba(0,30,60,0.22) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Центральное фото-оригинал (тот же src, дублируется через CSS) */
.promo-card .card-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;          /* при 3 колонках */
    max-width: 90%;
    height: 240px;         /* < 280px высоты контейнера */
    background-image: var(--promo-img);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    border-radius: 16px;
    filter: drop-shadow(0 14px 30px rgba(0,30,60,0.28));
    transition: transform 0.5s ease;
}

/* hover: лёгкий зум центрального фото, фон не двигаем */
.promo-card:hover .card-image::after {
    transform: translate(-50%, -50%) scale(1.04);
}
.promo-card:hover .card-image img {
    transform: scale(1.2);
    filter: blur(20px) brightness(0.74) saturate(1.2);
}

/* Badge поверх всего */
.promo-card .card-image .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* ── 1 акция (full row) — фото шире ── */
#promotions .cards-grid:has(.promo-card:only-child) .promo-card .card-image,
#promotions .cards-grid[data-count="1"] .promo-card .card-image { height: 420px; }
#promotions .cards-grid:has(.promo-card:only-child) .promo-card .card-image::after,
#promotions .cards-grid[data-count="1"] .promo-card .card-image::after {
    width: 560px;
    height: 360px;
}

/* ── 2 акции — фото средней ширины ── */
#promotions .cards-grid:has(.promo-card:nth-child(2):last-child) .promo-card .card-image,
#promotions .cards-grid[data-count="2"] .promo-card .card-image { height: 320px; }
#promotions .cards-grid:has(.promo-card:nth-child(2):last-child) .promo-card .card-image::after,
#promotions .cards-grid[data-count="2"] .promo-card .card-image::after {
    width: 400px;
    height: 280px;
}

/* ── Tablet 768–1239 ── */
@media (max-width: 1239px) {
    #promotions .cards-grid:has(.promo-card:only-child) .promo-card .card-image,
    #promotions .cards-grid[data-count="1"] .promo-card .card-image { height: 360px; }
    #promotions .cards-grid:has(.promo-card:only-child) .promo-card .card-image::after,
    #promotions .cards-grid[data-count="1"] .promo-card .card-image::after { width: 460px; height: 300px; }
    .promo-card .card-image::after { width: 260px; height: 200px; }
}

/* ── Mobile <768 ── */
@media (max-width: 767px) {
    .promo-card .card-image.sm { height: 220px; }
    .promo-card .card-image::after {
        width: 220px;
        height: 170px;
    }
    .promo-card .card-image img {
        filter: blur(18px) brightness(0.78) saturate(1.15);
        transform: scale(1.18);
    }
    /* На мобильных все варианты складываются в 1 колонку — выравниваем размеры */
    #promotions .cards-grid:has(.promo-card:only-child) .promo-card .card-image,
    #promotions .cards-grid[data-count="1"] .promo-card .card-image,
    #promotions .cards-grid:has(.promo-card:nth-child(2):last-child) .promo-card .card-image,
    #promotions .cards-grid[data-count="2"] .promo-card .card-image { height: 240px; }
    #promotions .cards-grid:has(.promo-card:only-child) .promo-card .card-image::after,
    #promotions .cards-grid[data-count="1"] .promo-card .card-image::after,
    #promotions .cards-grid:has(.promo-card:nth-child(2):last-child) .promo-card .card-image::after,
    #promotions .cards-grid[data-count="2"] .promo-card .card-image::after { width: 240px; height: 180px; }
}

@media (max-width: 480px) {
    .promo-card .card-image::after { width: 200px; height: 150px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .promo-card:hover .card-image img,
    .promo-card:hover .card-image::after { transform: translate(-50%, -50%); }
    .promo-card .card-image img { transition: none; }
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  VACANCIES PAGE 2.0 (.vac2-*) — Mittivoy career page          ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ─── Common typography ──────────────────────────────────────── */
.vac2-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00BEEF;
  margin-bottom: 14px;
}
.vac2-h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: #2B2D42;
  margin: 0 0 14px;
}
.vac2-grad {
  background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vac2-section-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #6C757D;
  max-width: 640px;
  margin: 0 auto;
}
.vac2-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

/* ─── Block 1: Why Mittivoy ──────────────────────────────────── */
.vac2-perks { padding: 100px 0; background: #FFFFFF; }
.vac2-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vac2-perk {
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 24px;
  padding: 36px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .3s;
  position: relative;
}
.vac2-perk:hover {
  transform: translateY(-6px);
  border-color: #00BEEF;
  box-shadow: 0 20px 40px rgba(0,190,239,0.12);
}
.vac2-perk-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vac2-perk-icon i,
.vac2-perk-icon svg { width: 28px; height: 28px; stroke-width: 2; }
.vac2-perk h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #2B2D42;
  margin: 24px 0 0;
}
.vac2-perk p {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #6C757D;
  margin: 12px 0 0;
}

/* ─── Block 2: Active vacancies ──────────────────────────────── */
.vac2-list-section {
  padding: 100px 0;
  background: #F4FAFC;
}

/* Filter panel */
.vac2-filters {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 20px;
  padding: 16px 20px;
  margin-bottom: 36px;
  position: relative;
  z-index: 5;
}
.vac2-filter { position: relative; }
.vac2-filter-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #6C757D;
  margin-bottom: 6px;
}
.vac2-select {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: #2B2D42;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  text-align: left;
}
.vac2-select:hover { border-color: #00BEEF; }
.vac2-select[aria-expanded="true"] {
  border-color: #00BEEF;
  box-shadow: 0 0 0 3px rgba(0,190,239,0.12);
}
.vac2-select-ic { width: 18px; height: 18px; color: #00BEEF; flex-shrink: 0; }
.vac2-select-val { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vac2-select-chev {
  width: 18px; height: 18px; color: #6C757D;
  transition: transform .2s; flex-shrink: 0;
}
.vac2-select[aria-expanded="true"] .vac2-select-chev { transform: rotate(180deg); }

.vac2-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,30,60,0.10);
  list-style: none;
  margin: 0;
  padding: 6px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}
.vac2-dropdown.is-open { display: block; }
.vac2-dropdown li {
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #2B2D42;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color .15s;
}
.vac2-dropdown li:hover { background: #F4FAFC; }
.vac2-dropdown li.is-active { background: #E5F8FE; color: #0098BF; font-weight: 700; }
.vac2-dropdown li.is-active::before {
  content: '✓';
  color: #00BEEF;
  font-weight: 800;
}
.vac2-dropdown li:not(.is-active)::before {
  content: '';
  width: 10px;
  display: inline-block;
}
.vac2-dropdown li.is-empty {
  font-style: italic;
  color: #6C757D;
  cursor: default;
}
.vac2-dropdown li.is-empty:hover { background: transparent; }

.vac2-counter {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 4px;
  white-space: nowrap;
}
.vac2-counter-text {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: #2B2D42;
}
.vac2-counter-text strong { color: #00BEEF; font-weight: 800; }
.vac2-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #6C757D;
  padding: 6px 10px;
  border-radius: 100px;
  transition: background-color .2s, color .2s;
}
.vac2-reset:hover { background: #F4FAFC; color: #2B2D42; }
.vac2-reset i { width: 14px; height: 14px; }

/* Vacancy cards grid */
.vac2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.vac2-card {
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .3s, opacity .25s;
  opacity: 0;
  transform: translateY(12px);
}
.vac2-card.is-shown {
  opacity: 1;
  transform: translateY(0);
}
.vac2-card.is-leaving {
  opacity: 0;
  transform: translateY(0);
}
.vac2-card:hover {
  transform: translateY(-4px);
  border-color: #00BEEF;
  box-shadow: 0 16px 32px rgba(0,190,239,0.10);
}
.vac2-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.vac2-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #F4FAFC;
  color: #2B2D42;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.vac2-card-tag i,
.vac2-card-tag svg { width: 14px; height: 14px; }
.vac2-card-tag--hot {
  background: #FFF1F0;
  color: #FF006E;
  font-weight: 700;
}
.vac2-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.3;
  color: #2B2D42;
  margin: 0 0 16px;
}
.vac2-card-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.vac2-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #6C757D;
}
.vac2-card-meta i,
.vac2-card-meta svg { width: 16px; height: 16px; flex-shrink: 0; color: #00BEEF; }
.vac2-card-salary {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0098BF;
  margin: 0;
}
.vac2-card-foot {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E9ECEF;
  display: flex;
  justify-content: flex-end;
}
.vac2-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.vac2-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,190,239,0.30);
  color: #FFFFFF;
}
.vac2-apply i { width: 16px; height: 16px; transition: transform .25s; }
.vac2-apply:hover i { transform: translateX(3px); }

/* Empty state */
.vac2-empty {
  text-align: center;
  padding: 60px 20px;
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 24px;
  margin-top: 8px;
}
.vac2-empty-svg { width: 100px; height: 100px; margin: 0 auto 20px; display: block; }
.vac2-empty-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #2B2D42;
  margin: 0 0 8px;
}
.vac2-empty-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #6C757D;
  margin: 0 0 20px;
}
.vac2-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #E5F8FE;
  color: #0098BF;
  border: none;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .2s, transform .2s;
}
.vac2-empty-btn:hover { background: #C5EBFA; transform: translateY(-2px); }

/* Show more */
.vac2-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.vac2-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #FFFFFF;
  color: #0098BF;
  border: 1px solid #E9ECEF;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .2s, background-color .2s, transform .2s;
}
.vac2-more:hover {
  border-color: #00BEEF;
  background: #E5F8FE;
  transform: translateY(-2px);
}
.vac2-more i { width: 16px; height: 16px; transition: transform .25s; }
.vac2-more:hover i { transform: translateY(2px); }

/* ─── Block 3: HR CTA banner ─────────────────────────────────── */
.vac2-cta { padding: 0 0 100px; background: #FFFFFF; }
.vac2-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 48px;
  background: linear-gradient(135deg, #E5F8FE 0%, #FFFFFF 100%);
  border: 1px solid rgba(0,190,239,0.10);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.vac2-cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.vac2-cta-blob--1 {
  width: 220px; height: 220px;
  background: #00BEEF;
  top: -60px; right: -40px;
}
.vac2-cta-blob--2 {
  width: 180px; height: 180px;
  background: #FF8BA7;
  bottom: -50px; left: -30px;
}
.vac2-cta-text { position: relative; z-index: 1; }
.vac2-cta-text h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #2B2D42;
  margin: 0 0 8px;
}
.vac2-cta-text p {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #6C757D;
  margin: 0;
  max-width: 560px;
}
.vac2-cta-actions { position: relative; z-index: 1; }
.vac2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
  color: #FFFFFF;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.vac2-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,190,239,0.30);
  color: #FFFFFF;
}
.vac2-cta-btn i { width: 18px; height: 18px; transition: transform .25s; }
.vac2-cta-btn:hover i { transform: translateX(4px); }

/* ─── Tablet (768–1239px) ────────────────────────────────────── */
@media (max-width: 1239px) {
  .vac2-perks { padding: 80px 0; }
  .vac2-list-section { padding: 80px 0; }
  .vac2-cta { padding: 0 0 80px; }
  .vac2-perks-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .vac2-perk { padding: 28px; }
  .vac2-section-head { margin-bottom: 44px; }
  .vac2-cta-card { padding: 40px; }
}

/* ─── Mobile (<768px) ────────────────────────────────────────── */
@media (max-width: 767px) {
  .vac2-perks { padding: 60px 0; }
  .vac2-list-section { padding: 60px 0; }
  .vac2-cta { padding: 0 0 60px; }
  .vac2-section-head { margin-bottom: 32px; }
  .vac2-h2 { font-size: 1.6rem; }
  .vac2-section-sub { font-size: 14px; }

  .vac2-perks-grid { grid-template-columns: 1fr; gap: 16px; }
  .vac2-perk { padding: 24px; border-radius: 20px; }
  .vac2-perk h3 { margin-top: 18px; font-size: 1.1rem; }

  .vac2-filters {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
  }
  .vac2-counter {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 0;
    margin-top: 4px;
    border-top: 1px solid #E9ECEF;
    padding-top: 12px;
  }
  .vac2-grid { grid-template-columns: 1fr; gap: 16px; }
  .vac2-card { padding: 22px; border-radius: 20px; }
  .vac2-card h3 { font-size: 1.15rem; }
  .vac2-card-foot { justify-content: stretch; }
  .vac2-apply { width: 100%; justify-content: center; }

  .vac2-cta-card {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
    border-radius: 24px;
  }
  .vac2-cta-text h3 { font-size: 1.3rem; }
  .vac2-cta-actions { display: flex; justify-content: center; }
  .vac2-cta-btn { width: 100%; justify-content: center; }
  .vac2-empty { padding: 40px 20px; }
}

/* ─── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .vac2-perk, .vac2-card, .vac2-apply, .vac2-cta-btn,
  .vac2-more, .vac2-empty-btn, .vac2-select, .vac2-select-chev,
  .vac2-apply i, .vac2-cta-btn i, .vac2-more i {
    transition: none !important;
  }
  .vac2-perk:hover, .vac2-card:hover, .vac2-apply:hover,
  .vac2-cta-btn:hover, .vac2-more:hover, .vac2-empty-btn:hover {
    transform: none !important;
  }
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  PARTNERS PAGE 2.0 (.prt2-*) — Mittivoy partners page         ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ─── Common typography ──────────────────────────────────────── */
.prt2-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00BEEF;
  margin-bottom: 14px;
}
.prt2-h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: #2B2D42;
  margin: 0 0 18px;
}
.prt2-grad {
  background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.prt2-section-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #6C757D;
  max-width: 640px;
  margin: 0 auto;
}
.prt2-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

/* ─── BLOCK 1: О сотрудничестве ──────────────────────────────── */
.prt2-intro { padding: 100px 0; background: #FFFFFF; }
.prt2-intro-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 60px;
  align-items: center;
}
.prt2-intro-text .prt2-h2 { margin-bottom: 18px; text-align: left; }
.prt2-lead {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2B2D42;
  margin: 0 0 36px;
}
.prt2-stats {
  display: flex;
  align-items: stretch;
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 20px;
  overflow: hidden;
}
.prt2-stat {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid #E9ECEF;
}
.prt2-stat:last-child { border-right: 0; }
.prt2-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.prt2-stat-label {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6C757D;
  line-height: 1.3;
}

.prt2-intro-visual {
  position: relative;
}
.prt2-visual-card {
  width: 100%;
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,190,239,0.15);
  background: #E5F8FE;
}
.prt2-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prt2-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #FFFFFF;
  border-radius: 100px;
  box-shadow: 0 16px 36px rgba(0,30,60,0.12);
}
.prt2-badge-ic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E5F8FE;
  color: #00BEEF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prt2-badge-ic i,
.prt2-badge-ic svg { width: 20px; height: 20px; }
.prt2-badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.prt2-badge-text strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #2B2D42;
}
.prt2-badge-text span {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  color: #6C757D;
}

/* ─── BLOCK 2: Что получают партнёры ─────────────────────────── */
.prt2-benefits { padding: 100px 0; background: #F4FAFC; }
.prt2-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.prt2-benefit {
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 24px;
  padding: 36px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .3s;
}
.prt2-benefit:hover {
  transform: translateY(-6px);
  border-color: #00BEEF;
  box-shadow: 0 20px 40px rgba(0,190,239,0.12);
}
.prt2-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prt2-benefit-icon i,
.prt2-benefit-icon svg { width: 28px; height: 28px; stroke-width: 2; }
.prt2-benefit h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #2B2D42;
  margin: 24px 0 0;
}
.prt2-benefit p {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #6C757D;
  margin: 12px 0 0;
}

/* ─── BLOCK 3: Логотипы партнёров ────────────────────────────── */
.prt2-logos { padding: 100px 0; background: #FFFFFF; }

.prt2-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.prt2-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 100px;
  background: #F4FAFC;
  border: 1px solid transparent;
  color: #6C757D;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .2s, color .2s, transform .2s, box-shadow .25s, border-color .2s;
  white-space: nowrap;
}
.prt2-tab:hover {
  background: #E5F8FE;
  color: #0098BF;
}
.prt2-tab.is-active {
  background: #00BEEF;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0,190,239,0.3);
}
.prt2-tab-count {
  font-weight: 600;
  opacity: 0.75;
}

.prt2-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  transition: opacity .25s;
}
.prt2-logo {
  height: 120px;
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .3s, opacity .3s, filter .3s;
  filter: grayscale(100%);
  opacity: 0.65;
  transform: translateY(8px);
}
.prt2-logo.is-shown {
  opacity: 0.65;
  transform: translateY(0);
}
.prt2-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-4px);
  border-color: #00BEEF;
  box-shadow: 0 12px 24px rgba(0,190,239,0.10);
}
.prt2-logo img {
  max-height: 60px;
  max-width: 70%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.prt2-logo-fallback {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #2B2D42;
  text-align: center;
  letter-spacing: 0.3px;
}
.prt2-logos-note {
  text-align: center;
  margin: 36px 0 0;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #6C757D;
}

/* ─── BLOCK 4: CTA финальная полоса ──────────────────────────── */
.prt2-cta { padding: 0 0 100px; background: #FFFFFF; }
.prt2-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 48px;
  background: linear-gradient(135deg, #E5F8FE 0%, #FFFFFF 100%);
  border: 1px solid rgba(0,190,239,0.10);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.prt2-cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.prt2-cta-blob--1 {
  width: 220px; height: 220px;
  background: #00BEEF;
  top: -60px; right: -40px;
}
.prt2-cta-blob--2 {
  width: 180px; height: 180px;
  background: #FF8BA7;
  bottom: -50px; left: -30px;
}
.prt2-cta-text { position: relative; z-index: 1; }
.prt2-cta-text h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #2B2D42;
  margin: 0 0 8px;
}
.prt2-cta-text p {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #6C757D;
  margin: 0;
  max-width: 560px;
}
.prt2-cta-actions { position: relative; z-index: 1; }
.prt2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #00BEEF 0%, #0098BF 100%);
  color: #FFFFFF;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.prt2-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,190,239,0.30);
  color: #FFFFFF;
}
.prt2-cta-btn i { width: 18px; height: 18px; transition: transform .25s; }
.prt2-cta-btn:hover i { transform: translateX(4px); }

/* ─── Tablet (768–1239px) ────────────────────────────────────── */
@media (max-width: 1239px) {
  .prt2-intro { padding: 80px 0; }
  .prt2-benefits { padding: 80px 0; }
  .prt2-logos { padding: 80px 0; }
  .prt2-cta { padding: 0 0 80px; }
  .prt2-intro-grid { gap: 36px; }
  .prt2-visual-card { height: 400px; }
  .prt2-benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .prt2-benefit { padding: 28px; }
  .prt2-logos-grid { grid-template-columns: repeat(4, 1fr); }
  .prt2-section-head { margin-bottom: 44px; }
  .prt2-cta-card { padding: 40px; }
}

/* ─── Mobile (<768px) ────────────────────────────────────────── */
@media (max-width: 767px) {
  .prt2-intro { padding: 60px 0; }
  .prt2-benefits { padding: 60px 0; }
  .prt2-logos { padding: 60px 0; }
  .prt2-cta { padding: 0 0 60px; }
  .prt2-h2 { font-size: 1.6rem; }
  .prt2-section-sub { font-size: 14px; }
  .prt2-section-head { margin-bottom: 32px; }
  .prt2-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .prt2-intro-visual { order: -1; }
  .prt2-visual-card { height: 320px; border-radius: 24px; }
  .prt2-floating-badge { bottom: 16px; left: 16px; padding: 10px 16px; }
  .prt2-stats { flex-direction: column; }
  .prt2-stat { border-right: 0; border-bottom: 1px solid #E9ECEF; padding: 16px; }
  .prt2-stat:last-child { border-bottom: 0; }
  .prt2-benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .prt2-benefit { padding: 24px; border-radius: 20px; }
  .prt2-benefit h3 { margin-top: 18px; font-size: 1.1rem; }

  .prt2-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 4px 8px;
    margin: 0 -16px 28px;
    padding-left: 16px;
    padding-right: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .prt2-tabs::-webkit-scrollbar { display: none; }
  .prt2-tab { scroll-snap-align: start; flex-shrink: 0; }

  .prt2-logos-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .prt2-logo { height: 90px; border-radius: 16px; padding: 10px; }
  .prt2-logo img { max-height: 44px; }

  .prt2-cta-card {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
    border-radius: 24px;
  }
  .prt2-cta-text h3 { font-size: 1.3rem; }
  .prt2-cta-actions { display: flex; justify-content: center; }
  .prt2-cta-btn { width: 100%; justify-content: center; }
}

/* ─── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .prt2-benefit, .prt2-logo, .prt2-cta-btn, .prt2-tab,
  .prt2-cta-btn i {
    transition: none !important;
  }
  .prt2-benefit:hover, .prt2-logo:hover, .prt2-cta-btn:hover {
    transform: none !important;
  }
}

/* ─── Russian language: Calibri headings ────────────────────── */
:lang(ru) .mhero-title,
:lang(ru) .stores-list .store-item-header h4,
:lang(ru) .section-title,
:lang(ru) .cards-grid h4,
:lang(ru) .vac2-h2,
:lang(ru) .ab2-cta-content h2,
:lang(ru) .store-item-header h4 {
  font-family: 'Calibri', 'Carlito', sans-serif;
}

/* ── CMS Image Loading Shimmer ─────────────────────────────── */
@keyframes cmsImgShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.cms-img-loading {
  position: relative;
}
.cms-img-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: linear-gradient(90deg, 
    rgba(224,247,247,0.0) 0%, 
    rgba(224,247,247,0.5) 20%,
    rgba(255,240,245,0.6) 50%, 
    rgba(224,247,247,0.5) 80%,
    rgba(224,247,247,0.0) 100%);
  background-size: 200% 100%;
  animation: cmsImgShimmer 1.8s ease-in-out infinite;
}
.cms-img-loading > img {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cms-img-loaded > img {
  opacity: 1;
}
