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

body {
    background-color: #0a0a0f;
    background-image: radial-gradient(circle at 25% 0%, rgba(255, 70, 200, 0.08) 0%, #0a0a0f 70%);
    font-family: 'Space Grotesk', sans-serif;
    color: #ededee;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #1a1a24;
}
::-webkit-scrollbar-thumb {
    background: #ff4d6d;
    border-radius: 12px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
}

.gradient-text {
    background: linear-gradient(135deg, #ffb347, #ff4d6d, #a855f7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 3s linear infinite;
}

.gradient-kurgan {
    background: linear-gradient(135deg, #ffb347, #ff4d6d, #a855f7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 3s linear infinite;
    display: inline-block;
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Header */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(16px);
    background: rgba(10, 10, 15, 0.7);
    border-bottom: 1px solid rgba(255, 77, 109, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(120deg, #fff, #ff99cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

.logo span {
    color: #ff4d6d;
    background: none;
    -webkit-text-fill-color: #ff4d6d;
}

.nav a {
    color: #ddd;
    margin-left: 36px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
}

.nav a:hover {
    color: #ff4d6d;
    border-bottom-color: #ff4d6d;
}

.btn-ghost {
    border: 1px solid #ff4d6d;
    padding: 8px 22px;
    border-radius: 60px;
    background: transparent;
    color: white;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

/* Hero */
.hero {
    padding: 100px 0 80px;
    position: relative;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 77, 109, 0.2);
    backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 77, 109, 0.6);
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

.hero p {
    font-size: 18px;
    color: #b0b0c0;
    max-width: 90%;
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-neon {
    background: linear-gradient(95deg, #ff4d6d, #b32eff);
    border: none;
    padding: 14px 34px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 0 15px rgba(255, 77, 109, 0.4);
    font-family: inherit;
}

.btn-neon i {
    margin-right: 8px;
}

.btn-neon:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px #ff4d6d;
}

a.btn-neon {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-outline-white {
    background: transparent;
    border: 1.5px solid #ffffff40;
    padding: 14px 34px;
    border-radius: 60px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    font-family: inherit;
    font-size: 16px;
}

.stats-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 48px;
    padding: 36px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    color: #ff4d6d;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #b0b0c0;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
}

.floating-shape {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #ff4d6d30, transparent);
    filter: blur(60px);
    bottom: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 52px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card-unique {
    background: rgba(18, 18, 28, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 42px;
    padding: 36px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.service-card-unique:hover {
    border-color: #ff4d6d;
    transform: translateY(-10px) rotate(0.5deg);
    background: #111118;
}

.service-icon-lg {
    font-size: 52px;
    margin-bottom: 24px;
    color: #ffb347;
}

.service-card-unique h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 12px;
}

.service-card-unique p {
    color: #b0b0c0;
    line-height: 1.5;
}

.portfolio-item-3d {
    background: #12121c;
    border-radius: 36px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #2a2a36;
}

.portfolio-img-fake {
    height: 240px;
    background: linear-gradient(145deg, #2a1e2c, #0f0f1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #ff8c5a;
    position: relative;
    overflow: hidden;
}

.portfolio-img-fake .portfolio-slide-badge {
    z-index: 2;
}

.portfolio-img-fake .sdp-portfolio-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.portfolio-img-fake > i {
    position: relative;
    z-index: 1;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-info h4 {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: #b0b0c0;
    line-height: 1.5;
    font-size: 15px;
}

.portfolioSwiperUnique .swiper-button-next,
.portfolioSwiperUnique .swiper-button-prev {
    color: #ff4d6d;
}

.portfolioSwiperUnique .swiper-button-prev::after,
.portfolioSwiperUnique .swiper-button-next::after {
    font-size: 22px;
}

.portfolio-cta-wrap {
    text-align: center;
    margin-top: 40px;
}

.clients-section {
    padding: 60px 0;
}

.clients-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.clients-section-title {
    margin-bottom: 12px;
}

.clients-section-sub {
    color: #b0b0c0;
    font-size: 18px;
    line-height: 1.55;
    max-width: 640px;
    margin: 0 auto;
}

.clients-section-sub:empty {
    display: none;
}

/* Адаптивная сетка логотипов (замена слайдера) */
.clients-showcase {
    background: rgba(18, 18, 28, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 56px;
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 8px;
}

.clients-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.client-logo-card {
    background: rgba(10, 10, 15, 0.6);
    border-radius: 28px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 140px;
    filter: grayscale(0.25);
}

.client-logo-card:hover {
    filter: grayscale(0);
    transform: translateY(-6px);
    border-color: rgba(255, 77, 109, 0.5);
    background: rgba(30, 30, 48, 0.85);
    box-shadow: 0 15px 30px -12px rgba(255, 77, 109, 0.22);
}

/* Холст логотипа в карточке: те же 2,5:1, масштабируется внутри ячейки сетки */
.sdp-client-logo-slot {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.sdp-client-logo-slot--card {
    width: 100%;
    max-width: 200px;
    height: 72px;
    margin-bottom: 16px;
}

.client-logo-card .sdp-client-logo-slot > i {
    font-size: clamp(30px, 7vw, 48px);
    color: #ffb347;
    transition: 0.2s;
}

.client-logo-card:hover .sdp-client-logo-slot > i {
    color: #ff4d6d;
    transform: scale(1.05);
}

.client-logo-card .sdp-client-logo-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.client-card-name {
    font-size: 18px;
    font-weight: 600;
    color: #e0e0e0;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.client-card-desc {
    font-size: 12px;
    color: #888;
    margin-top: 6px;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .clients-section-head {
        margin-bottom: 28px;
    }

    .clients-section .clients-section-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .clients-section-sub {
        font-size: 15px;
    }

    .clients-showcase {
        padding: 24px 20px;
        border-radius: 40px;
    }

    .clients-grid-pro {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }

    .client-logo-card {
        padding: 18px 12px;
        min-height: 120px;
    }

    .sdp-client-logo-slot--card {
        margin-bottom: 10px;
    }

    .client-card-name {
        font-size: 15px;
    }

    .client-card-desc {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .clients-grid-pro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .clients-showcase {
        padding: 20px 16px;
    }

    .client-logo-card {
        padding: 14px 8px;
    }

    .client-logo-card .sdp-client-logo-slot > i {
        font-size: clamp(26px, 9vw, 36px);
    }

    .client-card-name {
        font-size: 13px;
    }
}

@media (min-width: 1200px) {
    .clients-grid-pro {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.contact-unified {
    background: linear-gradient(125deg, #12121c, #050508);
    border-radius: 64px;
    padding: 56px 48px;
    border: 1px solid rgba(255, 77, 109, 0.4);
    box-shadow: 0 25px 45px -20px #ff4d6d30;
    margin: 40px 0 60px;
}

.contact-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.contact-info h3 {
    font-size: 36px;
    font-family: 'Syne', sans-serif;
    margin-bottom: 16px;
}

.social-icons-large {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.social-icon-ring {
    background: #1e1e2c;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: 0.2s;
    color: white;
    text-decoration: none;
}

.social-icon-ring:hover {
    background: #ff4d6d;
    transform: scale(1.1);
    box-shadow: 0 0 15px #ff4d6d;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #0c0c14;
    border: 1px solid #2c2c3a;
    padding: 16px 22px;
    border-radius: 48px;
    color: white;
    font-size: 16px;
    margin-bottom: 18px;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-form textarea {
    border-radius: 32px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff4d6d;
}

.btn-submit {
    background: linear-gradient(95deg, #ff4d6d, #b32eff);
    border: none;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
    font-family: inherit;
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px #ff4d6d;
}

.map-section {
    padding: 60px 0 80px;
}

.map-container {
    background: rgba(18, 18, 28, 0.5);
    border-radius: 48px;
    padding: 32px;
    border: 1px solid rgba(255, 77, 109, 0.3);
    margin-top: 30px;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #2a2a36;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.address-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 60px;
    width: fit-content;
    max-width: 100%;
    flex-wrap: wrap;
}

.address-info i {
    font-size: 28px;
    color: #ff4d6d;
}

.address-info p {
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 880px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 48px;
    }
    .section-title {
        font-size: 38px;
    }
    .stats-grid {
        flex-direction: column;
        gap: 24px;
    }
    .stat-divider {
        display: none;
    }
    .contact-two-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .map-wrapper {
        height: 300px;
    }
    .nav a {
        margin-left: 18px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 0;
    }
    .nav a {
        margin-left: 0;
        margin-right: 16px;
    }
}

.toast-custom {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #1f1f2e;
    backdrop-filter: blur(16px);
    padding: 12px 28px;
    border-radius: 60px;
    border-left: 5px solid #ff4d6d;
    z-index: 9999;
    font-weight: 500;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
    max-width: min(400px, calc(100vw - 40px));
}

.site-footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 20px;
    color: #b0b0c0;
    font-size: 15px;
    line-height: 1.5;
}

/* Внутренние страницы (услуги / проекты) */
.page-hero {
    padding: 48px 0 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero p {
    color: #b0b0c0;
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
}

.page-block {
    margin-bottom: 28px;
    padding: 28px;
    background: rgba(18, 18, 28, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 42px;
}

.page-block h2 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}

.page-block p {
    color: #b0b0c0;
    line-height: 1.5;
}

.page-footer-links {
    margin: 40px 0 60px;
    text-align: center;
}

.page-footer-links a {
    color: #ff4d6d;
    text-decoration: none;
}

.page-footer-links a:hover {
    text-decoration: underline;
}

/* ---------- Страница «Услуги» (контент макета) ---------- */
body.page-services {
    background-color: #0a0a0f;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(255, 77, 109, 0.08) 0%, #0a0a0f 70%),
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.01) 0px,
            rgba(255, 255, 255, 0.01) 2px,
            transparent 2px,
            transparent 8px
        );
}

body.page-services .services-page-hero {
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.page-services .hero-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff4d6d20, transparent);
    filter: blur(70px);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}

body.page-services .services-page-hero h1 {
    font-size: 76px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
    line-height: 1.1;
}

body.page-services .services-page-hero p {
    font-size: 20px;
    color: #c0c0d0;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.5;
}

body.page-services .service-category {
    margin-bottom: 100px;
    position: relative;
    border-radius: 56px;
    background: rgba(12, 12, 18, 0.3);
    backdrop-filter: blur(2px);
    padding: 20px 0 20px;
}

body.page-services .category-header {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    border-bottom: 2px solid rgba(255, 77, 109, 0.4);
    padding-bottom: 20px;
}

body.page-services .category-title {
    font-size: 48px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 1.15;
}

body.page-services .category-icon-bg {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(145deg, #ff4d6d20, #b32eff20);
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #ffb347;
    backdrop-filter: blur(4px);
}

body.page-services .category-desc {
    color: #b0b0c0;
    font-size: 18px;
    max-width: 70%;
    font-weight: 400;
    line-height: 1.5;
}

body.page-services .services-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 36px;
}

body.page-services .service-card {
    background: rgba(22, 22, 32, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 48px;
    padding: 38px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.5);
}

body.page-services .service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff4d6d, #ffb347, #a855f7);
    opacity: 0;
    transition: 0.3s;
}

body.page-services .service-card:hover::after {
    opacity: 1;
}

body.page-services .service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 77, 109, 0.5);
    background: #181822;
    box-shadow: 0 30px 40px -20px #ff4d6d40;
}

body.page-services .service-icon {
    font-size: 54px;
    color: #ffb347;
    margin-bottom: 28px;
    background: rgba(255, 77, 109, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    transition: 0.2s;
}

body.page-services .service-card:hover .service-icon {
    background: #ff4d6d20;
    transform: scale(1.02);
}

body.page-services .service-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

body.page-services .service-card p {
    color: #cbcbdd;
    line-height: 1.5;
    margin-bottom: 20px;
}

body.page-services .feature-list {
    list-style: none;
    margin-top: 16px;
}

body.page-services .feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #e0e0f0;
}

body.page-services .feature-list li i {
    color: #ff4d6d;
    width: 20px;
    font-size: 14px;
    flex-shrink: 0;
}

body.page-services .badge-fast {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(95deg, #ff4d6d20, #b32eff20);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #ffb347;
    margin-bottom: 22px;
    border: 1px solid #ff4d6d60;
    backdrop-filter: blur(4px);
}

body.page-services .visual-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff4d6d, #a855f7);
    margin: 30px 0 20px;
    border-radius: 4px;
}

body.page-services .legal-note {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border-radius: 40px;
    padding: 22px 32px;
    margin: 40px 0;
    text-align: center;
    font-size: 14px;
    color: #b0b0c0;
    border: 1px solid rgba(255, 77, 109, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

body.page-services .btn-cta-large {
    background: linear-gradient(95deg, #ff4d6d, #b32eff);
    border: none;
    padding: 20px 52px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: 0.25s;
    margin-top: 20px;
    box-shadow: 0 0 22px rgba(255, 77, 109, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: inherit;
}

body.page-services .btn-cta-large:hover {
    transform: scale(1.02);
    box-shadow: 0 0 32px #ff4d6d;
}

body.page-services .services-cta-wrap {
    text-align: center;
    margin: 40px 0 80px;
}

body.page-services .services-cta-sub {
    margin-top: 24px;
    color: #8a8aa0;
    font-size: 16px;
}

@media (max-width: 880px) {
    body.page-services .services-page-hero h1 {
        font-size: 48px;
    }
    body.page-services .category-title {
        font-size: 36px;
    }
    body.page-services .category-desc {
        max-width: 100%;
    }
    body.page-services .services-flex {
        gap: 24px;
    }
    body.page-services .container {
        padding: 0 20px;
    }
}

/* ---------- Блок «Что мы разрабатываем» (после портфолио) ---------- */
.dev-services-section {
    padding: 70px 0 50px;
    position: relative;
}

.dev-header {
    text-align: center;
    margin-bottom: 60px;
}

.dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 77, 109, 0.15);
    backdrop-filter: blur(4px);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 77, 109, 0.5);
    color: #ffb347;
}

.dev-header h2 {
    font-size: clamp(28px, 5vw, 54px);
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 1.15;
}

.dev-header p {
    font-size: 18px;
    color: #b0b0c0;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}

.dev-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

.dev-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: rgba(18, 18, 28, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 48px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.dev-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 77, 109, 0.1), transparent);
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

.dev-card:hover::before {
    opacity: 1;
}

.dev-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 77, 109, 0.5);
    background: rgba(22, 22, 35, 0.8);
    box-shadow: 0 25px 40px -20px rgba(255, 77, 109, 0.3);
}

.dev-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, #ff4d6d20, #b32eff20);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 48px;
    color: #ffb347;
    transition: 0.2s;
}

.dev-card:hover .dev-icon {
    transform: scale(1.05);
    color: #ff4d6d;
}

.dev-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.dev-card p {
    color: #c0c0d0;
    line-height: 1.5;
    margin-bottom: 24px;
    font-size: 16px;
    text-align: left;
}

.dev-features {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.dev-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ddd;
}

.dev-features li i {
    color: #ff4d6d;
    width: 20px;
    flex-shrink: 0;
    font-size: 14px;
}

.max-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(95deg, #ff4d6d20, #b32eff20);
    border-radius: 60px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #ffb347;
    margin-top: 20px;
    border: 1px solid #ff4d6d40;
}

.dev-tech-stack {
    margin-top: 80px;
    background: rgba(18, 18, 28, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dev-tech-stack h4 {
    font-size: 24px;
    font-family: 'Syne', sans-serif;
    margin-bottom: 25px;
    font-weight: 700;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tech-item i {
    font-size: 40px;
    color: #ffb347;
}

.tech-item span {
    font-size: 14px;
    color: #aaa;
}

@media (max-width: 880px) {
    .dev-cards {
        gap: 25px;
    }
    .dev-card {
        padding: 30px 24px;
        max-width: none;
    }
    .dev-card h3 {
        font-size: 28px;
    }
    .dev-tech-stack {
        padding: 30px 20px;
        margin-top: 56px;
    }
}

@media (max-width: 480px) {
    .dev-icon {
        width: 70px;
        height: 70px;
        font-size: 38px;
    }
    .dev-services-section {
        padding: 50px 0 40px;
    }
}

/* ========== Мобильная шапка и бургер-меню (≤768px) ========== */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10040;
    padding: 14px 20px;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 77, 109, 0.3);
}

.mobile-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.mobile-logo {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    background: linear-gradient(120deg, #ffffff, #ffb347, #ff99cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mobile-logo span {
    color: #ff4d6d;
    -webkit-text-fill-color: #ff4d6d;
    background: none;
}

.burger-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 77, 109, 0.5);
    border-radius: 30px;
    background: rgba(255, 77, 109, 0.15);
    color: #ff4d6d;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.2s, transform 0.15s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.burger-btn:hover {
    background: rgba(255, 77, 109, 0.28);
}

.burger-btn:active {
    transform: scale(0.96);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10050;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
}

.mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
}

/* Затемнение на весь экран — только плавное появление, без сдвига слева */
.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.35s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
}

/* Панель с пунктами — выезжает только справа */
.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: min(88vw, 420px);
    max-width: 88vw;
    background: rgba(5, 5, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 48px;
    box-sizing: border-box;
    border-left: 1px solid rgba(255, 77, 109, 0.2);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    transform: translate3d(100%, 0, 0);
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    will-change: transform;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translate3d(0, 0, 0);
}

.menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 77, 109, 0.45);
    background: rgba(255, 77, 109, 0.12);
    color: #ff4d6d;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s, color 0.2s;
}

.menu-close:hover {
    background: rgba(255, 77, 109, 0.25);
    color: #fff;
}

.menu-nav-list {
    list-style: none;
    text-align: center;
    width: 100%;
    max-width: 420px;
}

.menu-nav-list li {
    margin-bottom: 28px;
}

.menu-nav-list li:last-child {
    margin-bottom: 0;
}

.menu-nav-list a {
    font-family: 'Syne', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.menu-nav-list a:hover,
.menu-nav-list a:focus-visible {
    color: #ff4d6d;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.menu-contact-btn {
    margin-top: 40px;
    padding: 14px 44px;
    border: none;
    border-radius: 60px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(95deg, #ff4d6d, #b32eff);
    box-shadow: 0 0 15px rgba(255, 77, 109, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.menu-contact-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 22px rgba(255, 77, 109, 0.45);
}

.menu-contact-btn:active {
    transform: scale(0.98);
}

@media (min-width: 769px) {
    .mobile-header,
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header {
        display: none !important;
    }

    .mobile-header {
        display: block;
    }

    body {
        padding-top: 72px;
    }

    #services,
    #portfolio,
    #develop,
    #clients,
    #contacts,
    #office {
        scroll-margin-top: 76px;
    }

    .toast-custom {
        bottom: 20px;
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

/* Страница «Наши работы» (/works) */
body.page-works {
    background-image: radial-gradient(circle at 20% 10%, rgba(255, 77, 109, 0.08) 0%, #0a0a0f 90%);
}

body.page-works main {
    padding-bottom: 40px;
}

.works-page-hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.works-page-hero h1 {
    font-size: 72px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.works-page-hero p {
    font-size: 18px;
    color: #b0b0c0;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}

.works-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 40px 0 50px;
}

.works-filter-btn {
    background: rgba(30, 30, 45, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 28px;
    border-radius: 60px;
    font-weight: 500;
    color: #ddd;
    cursor: pointer;
    transition: 0.2s;
    font-size: 15px;
    font-family: inherit;
}

.works-filter-btn.active,
.works-filter-btn:hover {
    background: #ff4d6d;
    border-color: #ff4d6d;
    color: white;
    box-shadow: 0 0 12px rgba(255, 77, 109, 0.4);
}

.works-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    align-items: stretch;
}

.home-works-preview-grid {
    margin-top: 24px;
    margin-bottom: 48px;
}

.home-works-preview-lead {
    color: #a8a8bc;
    font-size: 15px;
    line-height: 1.55;
    max-width: 640px;
    margin: 14px 0 0;
}

.works-project-card {
    background: rgba(18, 18, 28, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.works-project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 77, 109, 0.5);
    box-shadow: 0 25px 40px -20px rgba(255, 77, 109, 0.25);
}

.works-project-preview {
    height: 220px;
    background: linear-gradient(145deg, #2a1e2c, #0f0f1a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.works-project-preview i {
    font-size: 64px;
    color: #ff8c5a;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.works-project-preview .works-project-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.works-project-preview .works-project-badge {
    z-index: 2;
}

.works-project-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #ffb347;
    border: 1px solid rgba(255, 77, 109, 0.4);
}

.works-project-info {
    padding: 28px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.works-project-title {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.works-project-desc {
    color: #c0c0d0;
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.works-project-story {
    background: rgba(255, 77, 109, 0.08);
    padding: 14px 16px;
    border-radius: 20px;
    margin: 12px 0 20px;
    border-left: 3px solid #ff4d6d;
    font-size: 13px;
    color: #bbb;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.works-project-story strong {
    color: #ffb347;
    display: block;
    margin-bottom: 8px;
}

.works-project-links {
    display: flex;
    gap: 16px;
    margin-top: auto;
    flex-wrap: wrap;
}

.works-btn-live {
    background: linear-gradient(95deg, #ff4d6d, #b32eff);
    border: none;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    flex: 1;
    justify-content: center;
    min-width: 160px;
    font-family: inherit;
}

.works-btn-live:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px #ff4d6d;
}

.works-btn-details {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 60px;
    font-weight: 500;
    font-size: 14px;
    color: #ddd;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
    font-family: inherit;
    flex: 1;
    min-width: 140px;
}

.works-btn-details:hover {
    border-color: #ff4d6d;
    color: #ff4d6d;
}

/* Модальное окно «Подробнее» (страница работ) */
.works-project-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.works-project-modal-overlay.is-open {
    visibility: visible;
    opacity: 1;
}

.works-project-modal-container {
    background: #12121c;
    border-radius: 48px;
    max-width: 700px;
    width: 100%;
    max-height: min(85vh, 900px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 77, 109, 0.4);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.96);
    transition: transform 0.3s ease;
}

.works-project-modal-overlay.is-open .works-project-modal-container {
    transform: scale(1);
}

.works-project-modal-header {
    flex-shrink: 0;
    padding: 24px 28px 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 77, 109, 0.3);
}

.works-project-modal-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #fff;
}

.works-project-modal-close {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 77, 109, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.2s, transform 0.2s;
}

.works-project-modal-close:hover {
    background: #ff4d6d;
    transform: rotate(90deg);
}

.works-project-modal-body {
    padding: 20px 28px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 15px;
    line-height: 1.65;
    color: #ccc;
}

.works-project-modal-body h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #ffb347;
    font-family: 'Syne', sans-serif;
}

.works-project-modal-body p {
    margin: 0 0 12px;
}

.works-project-modal-body .works-modal-empty {
    color: #889;
    font-style: italic;
}

.works-project-modal-body .works-modal-plain p {
    margin-bottom: 14px;
}

.works-project-modal-body ul {
    margin: 12px 0;
    padding-left: 1.35rem;
}

.works-project-modal-body li {
    margin-bottom: 8px;
}

.works-project-modal-body strong {
    color: #ffb347;
}

.works-reviews-section {
    margin: 80px 0 100px;
}

.works-section-title {
    font-size: 48px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-align: center;
}

.works-section-sub {
    text-align: center;
    color: #b0b0c0;
    margin-bottom: 50px;
    line-height: 1.5;
}

.works-reels-slider {
    background: rgba(18, 18, 28, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 56px;
    padding: 40px 20px;
    border: 1px solid rgba(255, 77, 109, 0.2);
}

.works-reel-card {
    background: #12121c;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #2a2a36;
    transition: 0.2s;
}

.works-reel-video-wrap video {
    width: 100%;
    display: block;
    max-height: 500px;
    background: #0a0a12;
    border-radius: 32px 32px 0 0;
}

.works-reel-video-placeholder {
    height: 500px;
    background: linear-gradient(145deg, #1e1e2c, #0a0a12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    cursor: pointer;
}

.works-reel-video-placeholder i.fa-circle-play {
    font-size: 64px;
    color: #ff4d6d;
    opacity: 0.8;
}

.works-reel-video-placeholder span {
    font-size: 14px;
    color: #aaa;
}

.works-play-icon-overlay {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    backdrop-filter: blur(4px);
}

.works-reel-info {
    padding: 20px;
    text-align: center;
}

.works-reel-info h4 {
    font-size: 18px;
    margin-bottom: 6px;
    font-family: 'Syne', sans-serif;
}

.works-reel-info p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.4;
}

.reelsSwiper .reels-swiper-next,
.reelsSwiper .reels-swiper-prev {
    color: #ff4d6d;
}

.reelsSwiper .reels-swiper-prev::after,
.reelsSwiper .reels-swiper-next::after {
    font-size: 22px;
}

.reelsSwiper .reels-pagination .swiper-pagination-bullet-active {
    background: #ff4d6d;
}

@media (max-width: 880px) {
    .works-page-hero h1 {
        font-size: 48px;
    }

    .works-projects-grid {
        grid-template-columns: 1fr;
    }

    .works-section-title {
        font-size: 36px;
    }

    .works-reel-video-placeholder {
        height: 400px;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* —— Модальное окно заявки (главная) —— */
.sdp-request-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s ease;
}

.sdp-request-modal.sdp-request-modal--open {
    visibility: visible;
    opacity: 1;
}

.sdp-request-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
}

.sdp-request-modal__container {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #12121c, #0a0a12);
    border-radius: 48px;
    max-width: 480px;
    width: 100%;
    padding: 36px 32px;
    border: 1px solid rgba(255, 77, 109, 0.4);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 77, 109, 0.1);
    animation: sdpReqModalIn 0.35s ease;
}

@keyframes sdpReqModalIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.sdp-request-modal__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255, 255, 255, 0.08);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    color: #aaa;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.sdp-request-modal__close:hover {
    background: #ff4d6d;
    color: white;
    transform: rotate(90deg);
}

.sdp-request-modal__container h3 {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
    letter-spacing: -0.5px;
    padding-right: 48px;
}

.sdp-request-modal__sub {
    color: #b0b0c0;
    margin: 0 0 28px;
    font-size: 14px;
    border-left: 2px solid #ff4d6d;
    padding-left: 12px;
    line-height: 1.45;
}

.sdp-req-field {
    margin-bottom: 22px;
}

.sdp-req-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ddd;
    font-size: 14px;
}

.sdp-req-field input {
    width: 100%;
    box-sizing: border-box;
    background: #0c0c14;
    border: 1px solid #2c2c3a;
    padding: 14px 18px;
    border-radius: 40px;
    color: white;
    font-size: 15px;
    font-family: 'Space Grotesk', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sdp-req-field input:focus {
    outline: none;
    border-color: #ff4d6d;
    box-shadow: 0 0 0 2px rgba(255, 77, 109, 0.2);
}

.sdp-req-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0 8px;
}

.sdp-req-check input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #ff4d6d;
    cursor: pointer;
    flex-shrink: 0;
}

.sdp-req-check label {
    font-size: 13px;
    color: #b0b0c0;
    line-height: 1.4;
    cursor: pointer;
}

.sdp-req-check a {
    color: #ff4d6d;
    text-decoration: none;
    border-bottom: 1px dashed #ff4d6d;
}

.sdp-req-check a:hover {
    color: #ffb347;
}

.sdp-req-error {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 6px;
    display: none;
}

.sdp-req-error.sdp-req-error--visible {
    display: block;
}

.sdp-req-error--check {
    margin: 0 0 16px;
}

.sdp-req-submit {
    background: linear-gradient(95deg, #ff4d6d, #b32eff);
    border: none;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sdp-req-submit:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 0 18px #ff4d6d;
}

.sdp-req-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 550px) {
    .sdp-request-modal__container {
        padding: 28px 22px;
        border-radius: 32px;
    }

    .sdp-request-modal__container h3 {
        font-size: 26px;
    }
}
