:root {
    --bg-dark: #070d17;
    --bg-dark-card: #0d1726;
    --bg-card-border: #1a283e;
    --primary-gold: #d99a46;
    --primary-gold-hover: #c48737;
    --primary-gold-light: #f5b058;
    --text-white: #ffffff;
    --text-muted: #8b9bb4;
    --text-dark: #1b2432;
    --bg-light: #f8fafc;
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    white-space: nowrap;
}

@media (max-width:480px) {
    .btn {
        padding: 8px;
    }
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
    color: #0b111a;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 154, 70, 0.3);
}

.btn-outline {
    background: rgba(13, 23, 38, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

/* Section Headings */
.section-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 8px;
    display: block;
    text-align: center;
}

.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 45px;
    color: var(--text-white);
}

.section-title.dark {
    color: var(--text-dark);
}

/* ================= 1. HEADER & HERO ================= */
.hero-wrapper {
    position: relative;
    background: radial-gradient(circle at 75% 30%, #15253e 0%, #080e18 70%);
    padding-bottom: 70px;
    overflow: hidden;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.08;
    mix-blend-mode: luminosity;
    pointer-events: none;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1.5px;
}

.logo-icon {
    color: var(--primary-gold);
    font-size: 22px;
}

.logo span {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 26px;
}

.nav-menu a {
    font-size: 13px;
    color: #b0c0d6;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-select {
    background: transparent;
    color: #b0c0d6;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Hero Content */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    padding-top: 50px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #e2e8f0;
    line-height: 1.3;
}

.hero-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 520px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 35px;
}

.hero-footer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.flags {
    display: inline-flex;
    gap: 6px;
    font-size: 16px;
}

/* Right Glass Card */
.hero-card {
    background: rgba(13, 23, 38, 0.7);
    border: 1px solid rgba(217, 154, 70, 0.25);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-card-icon {
    font-size: 32px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.hero-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.hero-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ================= 2. STATS BAR ================= */
.stats-section {
    background-color: #ffffff;
    padding: 40px 0;
    color: var(--text-dark);
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width:480px) {
    .stat-item i {
        display: none;
    }
}

.stat-icon {
    font-size: 32px;
    color: var(--primary-gold);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
}

@media (max-width:480px) {
    .stat-number {
        font-size: 16px;
    }

    .stats-section {
        padding: 20px 0;
    }
}

.stat-label {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
    line-height: 1.3;
}

/* ================= 3. SERVICES SECTION ================= */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

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

.service-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: rgba(217, 154, 70, 0.4);
    transform: translateY(-4px);
}

.service-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(217, 154, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-gold);
    font-size: 22px;
}

.service-title {
    font-size: 17px;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width:480px) {
    .services-duo {
        padding: 20px 0 !important;
    }
}

/* ================= 4. WHY CHOOSE US ================= */
.why-section {
    padding: 80px 0;
    background: #09111c;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.why-content .section-tag {
    text-align: left;
}

.why-content .section-title {
    text-align: left;
    margin-bottom: 35px;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
}

.why-feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid rgba(217, 154, 70, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 18px;
}

.why-feature-item span {
    font-size: 13px;
    font-weight: 500;
    color: #e2e8f0;
    line-height: 1.3;
}

.why-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.why-image-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* ================= 5. HOW WE WORK (PROCESS) ================= */
.process-section {
    padding: 90px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
}

.process-item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.process-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--bg-dark-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Dashed line connector */
.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 48px;
    width: calc(100% - 32px);
    height: 2px;
    border-top: 2px dashed #cbd5e1;
    z-index: 1;
}

.process-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 4px;
}

.process-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.process-text {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
}

/* ================= 6. TESTIMONIALS ================= */
.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.testimonial-card {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e2e8f0;
}

.quote-icon {
    color: #e2e8f0;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 12px;
    font-family: serif;
    font-weight: 900;
}

.testimonial-text {
    font-size: 13px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 24px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.author-role {
    font-size: 11px;
    color: #64748b;
}

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

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-gold);
}

/* ================= 7. CTA BANNER ================= */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a1320 0%, #070c14 100%);
    border-top: 1px solid var(--bg-card-border);
    border-bottom: 1px solid var(--bg-card-border);
    position: relative;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.cta-content .section-tag {
    text-align: left;
}

.cta-title {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-white);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-self: end;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #cbd5e1;
}

.contact-row i {
    color: var(--primary-gold);
    width: 18px;
}

/* ================= 8. FOOTER ================= */
.footer {
    padding: 30px 0;
    background-color: #050910;
    font-size: 12px;
    color: var(--text-muted);
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover {
    color: var(--text-white);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 16px;
}

.social-icons a:hover {
    color: var(--primary-gold);
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px;
    }

    .process-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-grid,
    .why-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-contacts {
        justify-self: start;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 34px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Заголовки секций с полосками */
.section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-title::before,
.section-title::after {
    content: '';
    height: 1px;
    width: 40px;
    background-color: #f59e0b;
}

/* =======================================
   1. ПОЧЕМУ ВЫБИРАЮТ НАС
   ======================================= */
.why-us {
    padding: 80px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.06);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0b1e38;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

/* Стилизация SVG внутри первого блока */
.why-icon svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.why-title {
    font-size: 15px;
    font-weight: 700;
    color: #0b1e38;
    margin-bottom: 8px;
}

.why-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.45;
}

/* =======================================
   2. КАК МЫ РАБОТАЕМ
   ======================================= */
.how-it-works {
    background: #0b1e38;
    color: #ffffff;
    padding: 80px 0;
}

.how-it-works .section-title {
    color: #ffffff;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
}

/* Пунктирная линия между шагами */
.how-grid::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 6%;
    right: 6%;
    height: 1px;
    border-top: 1px dashed rgba(255, 255, 255, 0.25);
    z-index: 1;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #f59e0b;
    color: #0b1e38;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 0 4px #0b1e38;
}

.step-icon {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
}

/* Стилизация SVG внутри второго блока */
.step-icon svg {
    width: 24px;
    height: 24px;
    stroke: #cbd5e1;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
}

.step-desc {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.45;
}

/* =======================================
   АДАПТИВНОСТЬ (RESPONSIVE)
   ======================================= */
@media (max-width: 992px) {
    .how-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 16px;
    }

    .how-grid::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .how-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 18px;
    }
}

.services-duo {
    padding: 60px 0;
    background-color: #f8fafc;
}

.duo-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
}

/* Круг с плюсом по центру */
.duo-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.plus-circle {
    width: 44px;
    height: 44px;
    background-color: #0b1e38;
    color: #f59e0b;
    border: 4px solid #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Карточки */
.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.card-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    display: block;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0b1e38;
    margin-bottom: 24px;
}

.card-body {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    flex-grow: 1;
}

.card-image-wrap {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 220px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Список преимуществ */
.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #475569;
    line-height: 1.35;
}

.feature-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.feature-icon svg {
    width: 16px;
    height: 16px;
    stroke: #0b1e38;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Кнопка */
.btn-primary {
    background-color: #f6a623;
    color: #0b1e38;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s, transform 0.1s;
    width: 100%;
}

.btn-primary:hover {
    background-color: #e09419;
}

.btn-primary svg {
    width: 14px;
    height: 14px;
    stroke: #0b1e38;
    stroke-width: 2.2;
    fill: none;
}

/* Адаптив под планшеты и мобилки */
@media (max-width: 1100px) {
    .card-body {
        grid-template-columns: 1fr;
    }

    .card-image-wrap {
        height: 180px;
    }
}

@media (max-width: 860px) {
    .duo-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .duo-divider {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        display: flex;
        justify-content: center;
        margin: -24px 0;
    }
}

@media (max-width:480px) {
    .service-card {
        padding: 10px;
    }

    .card-title {
        margin-bottom: 10px;

    }

    .card-image-wrap {
        min-height: 170px;
        height: 170px;
    }

    .why-us {
        padding: 30px 0;
    }

    .section-title {
        margin-bottom: 10px;
    }

    .how-it-works {
        padding: 20px 0;
    }

    .step-card {
        display: flex;
        align-items: center;
        grid-gap: 10px;
    }

    .step-card .text {
        text-align: left;
    }

    .step-number {
        margin: 0;
    }

    .services-section {
        padding: 20px 0;
    }

    .why-feature-item {
        display: flex;
        flex-direction: row;
    }

    .why-section {
        padding: 20px 0;
    }

    .why-image-wrapper img {
        display: none;
    }

    .process-section {
        padding: 20px 0;
    }
}

.service-card .service-title {
    color: black;
}

/* Обертка медиа-блока */
.card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* Соотношение сторон по умолчанию */
  overflow: hidden;
  background-color: #0f172a;
  user-select: none;
}

/* Дорожка со слайдами */
.card-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Отдельный слайд */
.card-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Медиа-элементы (фото и видео) */
.card-slide img,
.card-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Бейдж-метка для видео */
.card-video-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}

/* Стрелки переключения */
.card-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-image-wrap:hover .card-slider-btn {
  opacity: 1;
}

.card-slider-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.card-slider-btn.prev {
  left: 8px;
}

.card-slider-btn.next {
  right: 8px;
}

/* Точки пагинации */
.card-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: 10px;
}

.card-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.25s ease;
}

.card-slider-dot.active {
  background: #ffffff;
  width: 14px;
  border-radius: 3px;
}