:root {
    --primary-blue: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #dbeafe;
    --accent: #3b82f6;
    --dark: #0f172a;
    --gray: #475569;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --border-radius: 24px;
    --shadow: 0 20px 35px -8px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);
    --shadow-hover: 0 25px 40px -12px rgba(37,99,235,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s;
}

.hero-image img,
.phone-mockup {
    width: 100%;
    height: auto;
    max-width: 350px;
    margin: 0 auto;
}

.brands-image {
    width: 100%;
    max-width: 500px;
    margin: 50px auto 0 auto;
    border-radius: 16px;
}

.cta-image {
    max-width: 280px;
    margin: 30px auto 0;
}

/* ===== ШАПКА ===== */
header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(37,99,235,0.08);
    position: fixed;
    width: 100%;
    height: 90px;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: transform 0.35s ease;
}

header.hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
}

.nav-link.active {
    color: var(--primary-blue);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--primary-blue);
    transition: width 0.2s;
}

.nav-link:hover::after {
    width: 100%;
}


/* ===== ВЫПАДАЮЩИЙ СПИСОК ===== */
.dropdown {
    position: relative;
    padding-bottom: 20px; 
    margin-bottom: -20px;
}


.dropdown::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    bottom: 0;
    left: 0;
    background: transparent;
}

.dropbtn {
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--dark);
    padding: 8px 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    width: 780px;
    left: -200px;
    top: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    padding: 24px;
    z-index: 100;
    border: 1px solid #f1f5f9;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dropdown-region h4 {
    color: var(--primary-blue);
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 8px;
}

.dropdown-region a {
    display: block;
    padding: 6px 0;
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.dropdown-region a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.dropdown-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    text-align: right;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}

.btn-primary i {
    color: white;
    transition: transform 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline i {
    color: var(--primary-blue);
    transition: transform 0.2s;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.2);
}

.btn-outline:hover i {
    color: white;
    transform: translateX(5px);
}

.btn-outline:active {
    transform: translateY(0);
}

.btn-white {
    background: white;
    color: var(--primary-blue);
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
}

.btn-dropdown:hover {
    background: var(--primary-blue);
    color: white;
}


.instagram-link i {
    font-size: 24px;  
    transition: transform 0.2s;
}

.instagram-link:hover i {
    transform: scale(1.15);  
    color: var(--primary-blue);
}

.phone-header {
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s;
    white-space: nowrap;
}

.phone-header:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

/* ===== БУРГЕР ===== */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-menu span {
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 3px;
    transition: 0.2s;
}

/* ===== МОБИЛЬНОЕ МЕНЮ ===== */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 20px 32px;
    max-height: 80vh;
    overflow-y: auto;
    border-top: 1px solid #e2e8f0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a,
.mobile-dropdown-title {
    padding: 16px 0;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-dropdown-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    padding: 16px 0 8px 16px;
    background: #fafcff;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-region h5 {
    color: var(--primary-blue);
    margin: 12px 0 6px;
    font-size: 15px;
}

.mobile-region a {
    display: block;
    padding: 8px 0 8px 12px;
    border-bottom: none;
    font-weight: 500;
    color: var(--gray);
}

.mobile-all-cities {
    color: var(--primary-blue) !important;
    font-weight: 700;
}

.mobile-phone {
    background: var(--primary-blue);
    color: white !important;
    text-align: center;
    border-radius: 40px;
    margin-top: 16px;
    border: none !important;
}



/* ===== HERO ===== */
.hero {
    padding: 140px 20px 70px;
    background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1.2;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-tags span {
    background: rgba(37,99,235,0.08);
    color: var(--primary-blue);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.hero-sub {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-keywords {
    margin-top: 30px;
    color: #64748b;
    font-size: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.brands-section {
    max-width: 1280px;
    margin: 60px auto 0;
    text-align: center;
}

.brands-label {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    display: block;
    margin-bottom: 20px;
}

/* ===== БЛОК СКУПАЕМ/НЕ СКУПАЕМ ===== */
.acceptance {
    padding: 60px 20px;
    background: white;
}

.acceptance-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.acceptance-card {
    background: white;
    border-radius: 32px;
    padding: 40px 36px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.acceptance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.acceptance-card.accept {
    border-top: 8px solid var(--primary-blue);
}

.acceptance-card.not-accept {
    border-top: 8px solid #ef4444;
}

.acceptance-card h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    margin-bottom: 28px;
}

.acceptance-card ul {
    list-style: none;
}

.acceptance-card li {
    padding: 12px 0;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
}

.acceptance-card.accept li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 18px;
}

.acceptance-card.not-accept li:before {
    content: "✗";
    color: #ef4444;
    font-weight: 800;
    font-size: 18px;
}

/* ===== ПРЕИМУЩЕСТВА ===== */
.features {
    padding: 80px 20px;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

#section-title {
    font-size: 28px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--gray);
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 36px 28px;
    border-radius: 24px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary-blue);
    background: var(--primary-light);
    padding: 16px;
    border-radius: 18px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

/* ===== КАК РАБОТАЕТ ===== */
.how-it-works {
    padding: 80px 20px;
    background: white;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
}

.step {
    background: white;
    border-radius: 24px;
    padding: 36px 28px;
    flex: 1 1 200px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    color: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    margin: 0 auto 24px;
}

/* ===== SEO БЛОК ===== */
.seo-block {
    background: var(--primary-light);
    padding: 70px 20px;
}

.seo-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 48px 56px;
    border-radius: 32px;
    box-shadow: var(--shadow);
    position: relative;  
    border: 1px solid rgba(37,99,235,0.08);  
}

.seo-container h2 {
    font-size: 31px;  
    margin-bottom: 24px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;  
    position: relative;
    padding-bottom: 18px;
}

.seo-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), #60a5fa);
    border-radius: 3px;
}

.seo-container p {
    margin-bottom: 24px;  
    font-size: 17px;
    line-height: 1.7;  
    color: #334155;  
    font-weight: 400;
}

.seo-container p:last-child {
    margin-bottom: 0;
}

.seo-container strong {
    font-weight: 600;
    color: var(--primary-blue);
    background: linear-gradient(145deg, var(--primary-blue), #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-container::before {
    content: '“';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: Georgia, serif;
    pointer-events: none;
}

/* ===== ГОРОДА ===== */
.cities {
    padding: 80px 20px;
    background: white;
}

.cities-container {
    max-width: 1280px;
    margin: 0 auto;
}

.cities-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--gray);
}

.cities-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.city-region-card {
    background: white;
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}

.city-region-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.region-header i {
    color: var(--primary-blue);
    font-size: 18px;
}

.region-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.region-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-tag {
    background: var(--light-gray);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
    transition: all 0.2s;
    cursor: default;
    text-decoration: none;
}

.city-tag:hover {
    background: var(--primary-blue);
    color: white;
}

.cities-all-link {
    text-align: center;
    margin-top: 40px;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(145deg, #1e40af, #2563eb);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.cta-container {
    position: relative;
    z-index: 2; 
    max-width: 800px;
    margin: 0 auto;
}

.cta-image-wrapper {
    position: absolute;
    right: -70px; 
    bottom: 0px; 
    width: 400px;
    height: auto;
    z-index: 1; 
    opacity: 0.8; 
    pointer-events: none; 
}

.cta-image {
    width: 100%;
    height: auto;
    display: block;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-phone,
.cta-messenger {
    background: white;
    color: var(--primary-blue);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.cta-phone:hover,
.cta-messenger:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.insta-cta {
    background: #f09433;
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
    color: white !important;
}

/* ===== ПОДВАЛ ===== */
footer {
    background: #0b1120;
    color: white;
    padding: 70px 20px 30px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
}

.footer-links h3 {
    color: white;
    margin-bottom: 24px;
    font-size: 18px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-blue);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0c0f0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #a0c0f0;
}

.footer-ip {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.6;
}

/* ===== КНОПКА ЗВОНКА ===== */
.call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37,99,235,0.4);
    cursor: pointer;
    transition: 0.3s;
    animation: pulse 2s infinite;
    z-index: 99;
}

.call-button:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,99,235,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}







/* ===== АНИМАЦИИ ===== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes subtleRise {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.animate-onload {
    opacity: 0;
    animation: subtleRise 0.9s ease forwards;
}


.hero h1 {
    opacity: 0;
    animation: slideIn 0.8s ease forwards;
}

.hero-tags {
    opacity: 0;
    animation: floatIn 0.9s ease forwards;
    animation-delay: 0.1s;
}

.hero-sub {
    opacity: 0;
    animation: subtleRise 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-buttons {
    opacity: 0;
    animation: subtleRise 0.8s ease forwards;
    animation-delay: 0.3s;
}

.hero-keywords {
    opacity: 0;
    animation: subtleRise 0.8s ease forwards;
    animation-delay: 0.4s;
}

.brands-label {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
    animation-delay: 0.5s;
}

.brands-image {
    opacity: 0;
    animation: scaleIn 0.8s ease forwards;
    animation-delay: 0.6s;
    transition: transform 0.4s ease;
    border-radius: 16px;
}

.brands-image:hover {
    transform: translateY(-3px);
}

.hero-image {
    opacity: 0;
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.hero-image:hover img {
    transform: translateY(-5px);
}

.feature-card {
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    border: 1px solid rgba(37,99,235,0.12);
    box-shadow: 0 25px 40px -20px rgba(37,99,235,0.18);
}

.feature-icon i {
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon i {
    transform: translateY(-5px) scale(1.1);
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 15px 25px -8px rgba(37,99,235,0.4);
}

.step {
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.step:hover {
    border-color: var(--primary-light);
    transform: translateY(-6px);
    box-shadow: 0 25px 35px -15px rgba(37,99,235,0.12);
}

.step-number {
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.05);
}

.city-tag {
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(8px);
}

.city-tag.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.city-tag:hover {
    transform: translateY(-3px) scale(1.06);
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 8px 18px rgba(37,99,235,0.25);
}

.acceptance-card {
    transition: all 0.5s ease;
    border: 1px solid transparent;
}

.acceptance-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-light);
    box-shadow: 0 30px 45px -20px rgba(37,99,235,0.2);
}

.acceptance-card li {
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(37,99,235,0.05);
}

.acceptance-card li.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.acceptance-card:hover li {
    border-bottom-color: rgba(37,99,235,0.1);
}

.animate-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ----- АНИМАЦИЯ КНОПОК ----- */
.btn {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px -10px rgba(37,99,235,0.45);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 18px 30px -10px rgba(37,99,235,0.25);
}

/* ----- CTA КНОПКИ ----- */
.cta-phone,
.cta-messenger {
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
}

.cta-phone:hover,
.cta-messenger:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 35px -12px rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.3);
}

.insta-cta {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
}

/* ----- АНИМАЦИЯ ДЛЯ ЛОГОТИПА ----- */
.logo {
    transition: transform 0.5s ease;
}

.logo:hover {
    transform: scale(1.06) translateY(-2px);
}

/* ----- АНИМАЦИЯ ЗАГОЛОВКОВ ----- */
.section-title {
    position: relative;
    opacity: 0;
    animation: subtleRise 0.9s ease forwards;
}

.section-title::after {
    transition: width 0.5s ease;
}

.section-title:hover::after {
    width: 100px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-light));
}

/* ----- SEO БЛОК ----- */
.seo-container {
    transition: all 0.5s ease;
    border: 1px solid transparent;
}

.seo-container:hover {
    border-color: rgba(37,99,235,0.1);
    box-shadow: 0 30px 45px -20px rgba(37,99,235,0.08);
    transform: translateY(-5px);
}

/* ----- АНИМАЦИЯ БУРГЕРА ----- */
.burger-menu span {
    transition: all 0.4s ease;
}

.burger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    width: 26px;
}

.burger-menu.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-15px);
}

.burger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    width: 26px;
}

/* ----- АНИМАЦИЯ ДЛЯ МОБИЛЬНОГО ДРОПДАУНА ----- */
.mobile-dropdown-title i {
    transition: transform 0.3s ease;
}

/* ----- ПРЕЛОАДЕР ----- */
body {
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.loaded {
    opacity: 1;
}

/* ----- МОБИЛЬНАЯ АДАПТАЦИЯ ----- */
@media (max-width: 768px) {
    @keyframes floatIn {
        0% {
            opacity: 0;
            transform: translateY(15px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-image {
        animation: fadeInUp 0.8s ease forwards;
    }
    
    .hero-image:hover img {
        transform: translateY(-3px);
    }
    
    .feature-card:hover {
        transform: translateY(-4px);
    }
    
    .step:hover {
        transform: translateY(-4px);
    }
    

    body.loaded {
        opacity: 1;
    }
}



@media (max-width: 768px) {
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-image {
        animation: fadeInUp 0.8s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
    }
    
    .feature-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

@media (max-width: 1100px) {
    .dropdown-content {
        width: 720px;
        left: -150px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-tags {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .acceptance-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .dropdown-content {
        display: none !important;
    }
    
    .nav-links {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .phone-header {
        display: none;
    }
    
    .logo {
        height: 100px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-image {
        max-width: 320px;
    }

    .breadcrumbs {
        margin-top: 110px;
        padding: 12px 0 6px;
    }
    
    .breadcrumbs-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .cities-showcase {
        grid-template-columns: 1fr;
    }
    
    .seo-container {
        padding: 30px 24px;
    }
    
    .cta h2 {
        font-size: 32px;
    }

    .cta-image-wrapper {
        display: none; 
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 20px;
    }
    
    .logo {
        height: 100px;
    }
    
    .hero {
        padding-top: 110px;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .hero-tags span {
        padding: 4px 14px;
        font-size: 12px;
    }
    
    .hero-sub {
        font-size: 18px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-image {
        max-width: 240px;
    }
    
    .brands-image {
        max-width: 90%;
    }
    
    .acceptance-card {
        padding: 30px 24px;
    }
    
    .feature-card {
        padding: 28px 20px;
    }
    
    .step {
        padding: 28px 20px;
    }
    
    .city-region-card {
        padding: 24px 20px;
    }
    
    .city-tag {
        padding: 6px 14px;
        font-size: 13px;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .cta-phone,
    .cta-messenger {
        width: 100%;
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .call-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .breadcrumbs {
        margin-top: 100px;
        padding: 10px 0 4px;
    }
    
    .breadcrumbs-list li {
        font-size: 12px;
    }
    
    .breadcrumbs-container {
        padding: 0 16px;
    }
}


