/* ============================================================
   БАЗОВЫЕ СТИЛИ
   ============================================================ */

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background: #000000;
    font-family: 'Inter', sans-serif;
    color: #f0f4fa;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

/* ============================================================
   ПАРЯЩИЕ ЧАСТИЦЫ
   ============================================================ */

.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(106, 61, 232, 0.25);
    border-radius: 50%;
    animation: float-particle 12s infinite linear;
}

.particle:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 14s; }
.particle:nth-child(2) { left: 15%; animation-delay: 1.5s; animation-duration: 12s; }
.particle:nth-child(3) { left: 25%; animation-delay: 3s; animation-duration: 16s; }
.particle:nth-child(4) { left: 35%; animation-delay: 4.5s; animation-duration: 10s; }
.particle:nth-child(5) { left: 45%; animation-delay: 2s; animation-duration: 13s; }
.particle:nth-child(6) { left: 55%; animation-delay: 5s; animation-duration: 15s; }
.particle:nth-child(7) { left: 65%; animation-delay: 0.5s; animation-duration: 11s; }
.particle:nth-child(8) { left: 75%; animation-delay: 3.5s; animation-duration: 14s; }
.particle:nth-child(9) { left: 85%; animation-delay: 2.5s; animation-duration: 12s; }
.particle:nth-child(10) { left: 95%; animation-delay: 4s; animation-duration: 13s; }
.particle:nth-child(11) { left: 10%; animation-delay: 6s; animation-duration: 11s; }
.particle:nth-child(12) { left: 50%; animation-delay: 7s; animation-duration: 15s; }

@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translateY(85vh) scale(1); }
    90% { opacity: 0.8; transform: translateY(10vh) scale(1); }
    100% { transform: translateY(-5vh) scale(0.5); opacity: 0; }
}

/* ============================================================
   ВИНЬЕТКА
   ============================================================ */

.vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.7) 100%);
    mix-blend-mode: multiply;
}

/* ============================================================
   ХЕДЕР
   ============================================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 3rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header__inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header__logo-link {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
}

.header__logo-text {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #6a3de8, #9b59b6, #6a3de8, #9b59b6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: word-glow 4s ease-in-out infinite;
    white-space: nowrap;
}

.header__nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header__nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: color 0.25s;
    position: relative;
    padding: 0.25rem 0;
    white-space: nowrap;
}

.header__nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: #6a3de8;
    transition: width 0.3s ease;
}

.header__nav a:hover {
    color: #c4b5fd;
}

.header__nav a:hover::after {
    width: 100%;
}

.header__nav a.active {
    color: #c4b5fd;
}

.header__nav a.active::after {
    width: 100%;
    background: linear-gradient(135deg, #6a3de8, #ec4899);
}

.btn-consultation {
    display: inline-block;
    background: linear-gradient(135deg, #6a3de8, #9b59b6, #6a3de8);
    background-size: 300% 300%;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.8rem;
    border-radius: 60px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    animation: btn-gradient-shift 3s ease-in-out infinite, btn-pulse 2s ease-in-out infinite;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #7a4df8, #ab69c6, #7a4df8);
    background-size: 300% 300%;
    animation: btn-gradient-shift 3s ease-in-out infinite, btn-pulse-hover 2s ease-in-out infinite;
    color: #ffffff;
}

@keyframes btn-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes btn-pulse {
    0% { box-shadow: 0 0 20px rgba(106, 61, 232, 0.3), 0 0 40px rgba(106, 61, 232, 0.1); }
    50% { box-shadow: 0 0 40px rgba(106, 61, 232, 0.6), 0 0 80px rgba(106, 61, 232, 0.25); }
    100% { box-shadow: 0 0 20px rgba(106, 61, 232, 0.3), 0 0 40px rgba(106, 61, 232, 0.1); }
}

@keyframes btn-pulse-hover {
    0% { box-shadow: 0 0 30px rgba(106, 61, 232, 0.4), 0 0 60px rgba(106, 61, 232, 0.2); }
    50% { box-shadow: 0 0 60px rgba(106, 61, 232, 0.7), 0 0 100px rgba(106, 61, 232, 0.35); }
    100% { box-shadow: 0 0 30px rgba(106, 61, 232, 0.4), 0 0 60px rgba(106, 61, 232, 0.2); }
}

/* ============================================================
   ГЕРОЙ (ГЛАВНЫЙ ЭКРАН)
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 6rem 3rem 3rem;
    background: #000000;
    isolation: isolate;
    z-index: 1;
}

.hero__inner {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    max-width: 720px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.hero__content::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(106, 61, 232, 0.07), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    animation: glow-float-1 8s ease-in-out infinite;
}

.hero__content::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.05), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    animation: glow-float-2 10s ease-in-out infinite;
}

@keyframes glow-float-1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(30px, -20px) scale(1.2); opacity: 1; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
}

@keyframes glow-float-2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(-20px, 30px) scale(1.3); opacity: 0.8; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
}

.left-particles {
    position: absolute;
    inset: -30px -50px -30px -50px;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.5;
}

.left-particles canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* ============================================================
   АНИМАЦИЯ ЗАГОЛОВКА
   ============================================================ */

.animate-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    overflow: visible;
}

.animate-item:nth-child(1) { animation-delay: 0s; }
.animate-item:nth-child(2) { animation-delay: 0.15s; }
.animate-item:nth-child(3) { animation-delay: 0.3s; }
.animate-item:nth-child(4) { animation-delay: 0.45s; }
.animate-item:nth-child(5) { animation-delay: 0.6s; }
.animate-item:nth-child(6) { animation-delay: 0.75s; }
.animate-item:nth-child(7) { animation-delay: 0.9s; }

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(35px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(106, 61, 232, 0.08);
    border: 1px solid rgba(106, 61, 232, 0.2);
    border-radius: 60px;
    padding: 0.4rem 1.2rem 0.4rem 0.9rem;
    width: fit-content;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9b59b6;
}

.hero__badge .pulse {
    width: 7px;
    height: 7px;
    background: #6a3de8;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.4); }
}

.hero__title {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    overflow: visible;
}

.hero__title-line1 {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    white-space: nowrap;
}

.hero__title-line2 {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: visible;
    padding: 0 30px 0 0;
}

.hero__title-line2-inner {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #6a3de8, #9b59b6, #6a3de8, #9b59b6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: word-glow 4s ease-in-out infinite;
    white-space: nowrap;
    padding: 4px 0;
    margin: -4px 0;
}

@keyframes word-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero__desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    max-width: 50ch;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.hero__usp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 0.5rem;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    padding: 0.1rem 0;
    border-radius: 4px;
    transition: transform 0.3s ease;
    cursor: default;
}

.usp-item strong {
    color: #ffffff;
    font-weight: 500;
    margin-right: 0.15rem;
}

.usp-icon {
    color: #9b59b6;
    font-size: 1.1rem;
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}

.usp-item:hover {
    transform: translateX(4px);
}

.usp-item:hover .usp-icon {
    transform: scale(1.2);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #6a3de8, #9b59b6, #6a3de8);
    background-size: 300% 300%;
    border: none;
    padding: 0.85rem 2.8rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 0.02em;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    animation: btn-gradient-shift 3s ease-in-out infinite, btn-pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #7a4df8, #ab69c6, #7a4df8);
    background-size: 300% 300%;
    animation: btn-gradient-shift 3s ease-in-out infinite, btn-pulse-hover 2s ease-in-out infinite;
}

.btn-secondary {
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    border: none;
    padding: 0.85rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(106, 61, 232, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #7a4df8, #f472b6);
    box-shadow: 0 0 40px rgba(106, 61, 232, 0.4), 0 0 80px rgba(106, 61, 232, 0.2);
    color: #ffffff;
}

.hero__logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75vh;
    min-height: 450px;
    overflow: visible;
    background: transparent;
}

#logo-container {
    width: 100%;
    height: 100%;
    min-height: 450px;
    max-height: 75vh;
    position: relative;
    background: transparent;
    overflow: visible;
}

#logo-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    object-fit: contain;
}

.hero__promo {
    margin-top: 1.2rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem 2rem;
    background: transparent;
    border: none;
}

.promo-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.promo-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.promo-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
}

.promo-text strong {
    background: linear-gradient(135deg, #6a3de8, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
}

.countdown-wrapper {
    flex: 0 1 auto;
}

.countdown-simple {
    display: flex;
    align-items: center;
    gap: 2px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
}

.time-number {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #ffffff;
    line-height: 1.2;
    padding: 0.1rem 0.2rem;
    min-width: 44px;
    text-align: center;
    background: transparent;
    border: none;
    text-shadow: 0 0 20px rgba(106, 61, 232, 0.4), 0 0 40px rgba(106, 61, 232, 0.2), 0 0 80px rgba(106, 61, 232, 0.1);
}

.time-label {
    font-size: 0.45rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.time-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 1.8rem;
    font-weight: 300;
    padding: 0 2px;
    margin-top: -8px;
}

/* ============================================================
   АНИМАЦИИ ПРИ СКРОЛЛЕ
   ============================================================ */

.scroll-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.delay-1 { transition-delay: 0.1s; }
.scroll-animate.delay-2 { transition-delay: 0.2s; }
.scroll-animate.delay-3 { transition-delay: 0.3s; }
.scroll-animate.delay-4 { transition-delay: 0.4s; }
.scroll-animate.delay-5 { transition-delay: 0.5s; }
.scroll-animate.delay-6 { transition-delay: 0.6s; }

.scroll-animate.from-left {
    transform: translateX(-60px);
}
.scroll-animate.from-left.visible {
    transform: translateX(0);
}

.scroll-animate.from-right {
    transform: translateX(60px);
}
.scroll-animate.from-right.visible {
    transform: translateX(0);
}

.scroll-animate.scale-up {
    transform: scale(0.8);
}
.scroll-animate.scale-up.visible {
    transform: scale(1);
}

.scroll-animate.from-top {
    transform: translateY(-30px);
}
.scroll-animate.from-top.visible {
    transform: translateY(0);
}

/* ============================================================
   УСЛУГИ (ГОЛОГРАММНЫЕ КАРТОЧКИ)
   ============================================================ */

.services {
    padding: 5rem 3rem;
    background: #000000;
    position: relative;
    z-index: 2;
}

.services__header {
    text-align: center;
    margin-bottom: 4rem;
}

.services__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9b59b6;
    border: 1px solid rgba(106, 61, 232, 0.25);
    padding: 0.3rem 1.5rem;
    border-radius: 60px;
    background: rgba(106, 61, 232, 0.06);
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
}

.services__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.services__title-highlight {
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.holo-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    cursor: default;
    transform-style: preserve-3d;
    perspective: 800px;
}

.holo-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 30px 80px rgba(106, 61, 232, 0.2), 0 0 0 1px rgba(106, 61, 232, 0.1);
}

.holo-card__glow {
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    z-index: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(106, 61, 232, 0.15) 45%, 
        rgba(236, 72, 153, 0.15) 55%, 
        transparent 70%
    );
    background-size: 300% 300%;
    animation: holo-shimmer 4s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.holo-card:hover .holo-card__glow {
    opacity: 1;
}

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

.holo-card__image {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.holo-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    transform: scale(1);
    filter: brightness(0.85) saturate(0.9);
}

.holo-card:hover .holo-card__image img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1.1);
}

.holo-card__content {
    position: relative;
    z-index: 2;
    padding: 1.5rem 1.8rem 2rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
}

.holo-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.holo-card__desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.holo-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #9b59b6;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.2rem;
}

.holo-card__link:hover {
    color: #c4b5fd;
    border-bottom-color: #6a3de8;
    gap: 0.6rem;
}

.services__seo-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.services__seo-toggle {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    padding: 0.7rem 2.5rem;
    border-radius: 60px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

.services__seo-toggle:hover {
    background: rgba(106, 61, 232, 0.08);
    border-color: rgba(106, 61, 232, 0.25);
    color: #c4b5fd;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(106, 61, 232, 0.08);
}

.services__seo-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 2rem;
    transition: max-height 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.6s ease 0.1s,
                padding 0.4s ease,
                margin 0.4s ease;
    text-align: left;
}

.services__seo-content.is-open {
    max-height: 4000px;
    opacity: 1;
    padding: 2.5rem 2rem 0.5rem;
    margin-top: 1.5rem;
}

.services__seo-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.services__seo-content p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.services__seo-content p strong {
    color: #ffffff;
    font-weight: 500;
}

/* ============================================================
   КНОПКА "ИНТЕРЕСНЫЕ СТАТЬИ"
   ============================================================ */

.services__articles-wrapper {
    text-align: center;
    margin-top: 1.5rem;
}

.services__articles-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2.8rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(106, 61, 232, 0.15), rgba(236, 72, 153, 0.15));
    border: 1px solid rgba(106, 61, 232, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    box-shadow: 0 0 30px rgba(106, 61, 232, 0.05);
}

.services__articles-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 60px;
    z-index: 0;
    background: linear-gradient(45deg, 
        transparent 20%, 
        rgba(106, 61, 232, 0.3) 40%, 
        rgba(236, 72, 153, 0.3) 60%, 
        transparent 80%
    );
    background-size: 300% 300%;
    animation: articles-btn-shimmer 4s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.services__articles-btn:hover::before {
    opacity: 1;
}

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

.services__articles-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 60px;
    z-index: -1;
    background: linear-gradient(135deg, #6a3de8, #ec4899, #6a3de8);
    background-size: 300% 300%;
    animation: btn-gradient-shift 3s ease-in-out infinite;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.6s ease;
}

.services__articles-btn:hover::after {
    opacity: 0.4;
}

.services__articles-btn .articles-btn-icon {
    font-size: 1.2rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.services__articles-btn .articles-btn-text {
    position: relative;
    z-index: 1;
}

.services__articles-btn:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(106, 61, 232, 0.4);
    background: linear-gradient(135deg, rgba(106, 61, 232, 0.2), rgba(236, 72, 153, 0.2));
    box-shadow: 
        0 0 40px rgba(106, 61, 232, 0.15),
        0 0 80px rgba(106, 61, 232, 0.08),
        0 0 120px rgba(236, 72, 153, 0.05);
    color: #ffffff;
}

/* ============================================================
   НЕОНОВАЯ ДОРОЖКА
   ============================================================ */

.ticker {
    padding: 2rem 0;
    background: #000000;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(106, 61, 232, 0.05), transparent 70%);
    pointer-events: none;
}

.ticker__track {
    display: flex;
    gap: 0;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker__items {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-shrink: 0;
}

.ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.4rem 1rem;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.ticker__item .highlight {
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.ticker__item .highlight-purple {
    background: linear-gradient(135deg, #6a3de8, #9b59b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.ticker__item .highlight-pink {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.ticker__item .highlight-gold {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

.ticker__item:hover {
    color: #ffffff;
    background: rgba(106, 61, 232, 0.06);
    border-color: rgba(106, 61, 232, 0.15);
}

.ticker__icon {
    font-size: 1.1rem;
    line-height: 1;
    color: #6a3de8;
    filter: drop-shadow(0 0 6px rgba(106, 61, 232, 0.25));
    transition: all 0.3s ease;
}

.ticker__item:hover .ticker__icon {
    color: #9b59b6;
    filter: drop-shadow(0 0 12px rgba(106, 61, 232, 0.4));
}

.ticker__sep {
    color: rgba(255, 255, 255, 0.06);
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

/* ============================================================
   УМНЫЕ ВЫБИРАЮТ НАС
   ============================================================ */

.choice {
    padding: 5rem 3rem;
    background: #000000;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.choice__inner {
    position: relative;
    z-index: 1;
}

.choice__header {
    text-align: center;
    margin-bottom: 4rem;
}

.choice__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9b59b6;
    border: 1px solid rgba(106, 61, 232, 0.25);
    padding: 0.3rem 1.5rem;
    border-radius: 60px;
    background: rgba(106, 61, 232, 0.06);
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
}

.choice__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.choice__title-highlight {
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.choice__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.choice__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.choice__item {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    backdrop-filter: blur(6px);
}

.choice__item:hover {
    transform: translateY(-8px);
    border-color: rgba(106, 61, 232, 0.2);
    background: rgba(106, 61, 232, 0.04);
    box-shadow: 0 20px 60px rgba(106, 61, 232, 0.06);
}

.choice__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(106, 61, 232, 0.06);
    border: 1px solid rgba(106, 61, 232, 0.1);
    transition: all 0.4s ease;
}

.choice__item:hover .choice__icon {
    background: rgba(106, 61, 232, 0.12);
    border-color: rgba(106, 61, 232, 0.25);
    box-shadow: 0 0 30px rgba(106, 61, 232, 0.08);
}

.choice__icon svg {
    width: 32px;
    height: 32px;
    filter: brightness(0.8) saturate(1.2);
    transition: all 0.4s ease;
}

.choice__item:hover .choice__icon svg {
    filter: brightness(1) saturate(1.5);
}

.choice__item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.choice__item-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* ============================================================
   ДЕКОРАТИВНАЯ 3D-ФИГУРА (Преимущества — только слева)
   ============================================================ */

.choice__decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
}

.choice__decor svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 0 60px rgba(106, 61, 232, 0.25));
}

/* Левая фигура — сдвинута правее, чтобы хорошо было видно */
.choice__decor--left {
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    opacity: 0.75;
    animation: decorFloat 8s ease-in-out infinite;
}

@keyframes decorFloat {
    0%, 100% {
        opacity: 0.6;
        margin-top: 0;
    }
    50% {
        opacity: 0.9;
        margin-top: -25px;
    }
}

/* ============================================================
   ⚡ ЗОЛОТЫЕ ИСКРЫ — АНИМАЦИЯ ТОКА
   ============================================================ */

/* Бегущий штрих по линиям */
.spark-run {
    animation: sparkRun 3s linear infinite;
}

.spark-run--1 { animation-duration: 4s;   animation-delay: 0s; }
.spark-run--2 { animation-duration: 3.2s; animation-delay: 0.8s; }
.spark-run--3 { animation-duration: 2.5s; animation-delay: 1.6s; }

@keyframes sparkRun {
    0% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
    10% { opacity: 1; }
    90%  { opacity: 1; }
    100% {
        stroke-dashoffset: -1000;
        opacity: 0;
    }
}

/* Пульсирующие искры */
.gold-spark {
    animation: goldSparkPulse 2s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.gold-spark--1 { animation-delay: 0s; }
.gold-spark--2 { animation-delay: 0.7s; }
.gold-spark--3 { animation-delay: 1.4s; }

@keyframes goldSparkPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50%      { opacity: 1;   transform: scale(1.4); }
}

/* Ядро искры */
.gold-spark-core {
    animation: goldSparkCore 1.2s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.gold-spark-core--1 { animation-delay: 0s; }
.gold-spark-core--2 { animation-delay: 0.3s; }
.gold-spark-core--3 { animation-delay: 0.6s; }

@keyframes goldSparkCore {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}

/* Мигающие искры */
.gold-blink {
    animation: goldBlink 3s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.gold-blink--1 { animation-delay: 0s; }
.gold-blink--2 { animation-delay: 0.8s; }
.gold-blink--3 { animation-delay: 1.5s; }
.gold-blink--4 { animation-delay: 2.2s; }

@keyframes goldBlink {
    0%, 40%, 60%, 100% { opacity: 0; transform: scale(0.5); }
    50%                { opacity: 1; transform: scale(1.6); }
}

/* ============================================================
   ПРОЦЕСС
   ============================================================ */

.process {
    padding: 5rem 3rem;
    background: #000000;
    position: relative;
    z-index: 2;
}

.process__header {
    text-align: center;
    margin-bottom: 4rem;
}

.process__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9b59b6;
    border: 1px solid rgba(106, 61, 232, 0.25);
    padding: 0.3rem 1.5rem;
    border-radius: 60px;
    background: rgba(106, 61, 232, 0.06);
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
}

.process__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.process__title-highlight {
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.process__step {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

.process__step:hover {
    transform: translateY(-8px);
    border-color: rgba(106, 61, 232, 0.2);
    background: rgba(106, 61, 232, 0.04);
    box-shadow: 0 20px 60px rgba(106, 61, 232, 0.06);
}

.process__step-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.process__step-icon svg {
    width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto;
}

.process__step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.process__step-time {
    font-size: 0.85rem;
    color: rgba(106, 61, 232, 0.6);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.process__step-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.process__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    background: rgba(106, 61, 232, 0.04);
    border: 1px solid rgba(106, 61, 232, 0.08);
    text-align: center;
}

.process__bottom-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.process__bottom-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

.process__bottom-text strong {
    color: #ffffff;
    font-weight: 500;
}

/* ============================================================
   ПОРТФОЛИО
   ============================================================ */

.portfolio {
    padding: 5rem 3rem;
    background: #000000;
    position: relative;
    z-index: 2;
}

.portfolio__header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9b59b6;
    border: 1px solid rgba(106, 61, 232, 0.25);
    padding: 0.3rem 1.5rem;
    border-radius: 60px;
    background: rgba(106, 61, 232, 0.06);
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
}

.portfolio__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.portfolio__title-highlight {
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio__item {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio__item:hover {
    transform: translateY(-8px);
    border-color: rgba(106, 61, 232, 0.2);
    box-shadow: 0 20px 60px rgba(106, 61, 232, 0.06);
    background: #000000;
}

.portfolio__item-image {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
    background: #000000;
}

.portfolio__item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio__item:hover .portfolio__item-image img {
    transform: scale(1.05);
}

.portfolio__item-image--contain {
    padding-top: 0 !important;
    aspect-ratio: 16 / 9;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio__item-image--contain img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background: #000000;
    display: block;
}

.portfolio__item-image--contain:hover img {
    transform: scale(1.02);
}

.portfolio__item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio__item:hover .portfolio__item-overlay {
    opacity: 1;
}

.portfolio__item-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 60px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(106, 61, 232, 0.7);
    backdrop-filter: blur(4px);
}

.portfolio__item-content {
    padding: 1.5rem 1.5rem 1.8rem;
    background: #000000;
}

.portfolio__item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.portfolio__item-category {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.portfolio__item-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.portfolio__item-stat {
    display: flex;
    flex-direction: column;
}

.portfolio__stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.portfolio__stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
}

.portfolio__item-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #9b59b6;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.2rem;
}

.portfolio__item-link:hover {
    color: #c4b5fd;
    border-bottom-color: #6a3de8;
    gap: 0.6rem;
}

.portfolio__bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.portfolio__bottom-item {
    display: flex;
    flex-direction: column;
}

.portfolio__bottom-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio__bottom-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.2rem;
}

/* ============================================================
   ПРЕМИАЛЬНЫЙ КАЛЬКУЛЯТОР
   ============================================================ */

.calculator {
    padding: 5rem 0;
    background: #000000;
    position: relative;
    z-index: 2;
}

.calculator__header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 0 2rem;
}

.calculator__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9b59b6;
    border: 1px solid rgba(106, 61, 232, 0.25);
    padding: 0.3rem 1.5rem;
    border-radius: 60px;
    background: rgba(106, 61, 232, 0.06);
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
}

.calculator__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.calculator__title-highlight {
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calculator__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.calculator--premium .calculator__body--full {
    max-width: 100%;
    margin: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    padding: 3rem 4rem;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.3);
    transition: border-color 0.4s ease;
}

.calculator--premium .calculator__body--full:hover {
    border-color: rgba(106, 61, 232, 0.1);
}

.calculator--premium .calculator__group {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.calculator--premium .calculator__group:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.calculator--premium .calculator__group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calculator--premium .calculator__group-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.calculator--premium .calculator__group-label--white {
    color: #ffffff !important;
}

.calculator--premium .calculator__group-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: #a78bfa;
    background: rgba(106, 61, 232, 0.08);
    padding: 0.15rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(106, 61, 232, 0.08);
}

.calculator--premium .calculator__premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.calculator--premium .calculator__premium-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.2rem 0.6rem 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                background 0.35s ease,
                box-shadow 0.35s ease;
    position: relative;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.calculator--premium .calculator__premium-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.04);
    transform: none;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.06), 0 0 60px rgba(255, 215, 0, 0.03);
}

.calculator--premium .calculator__premium-card.active {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.06);
    transform: none;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.12),
        0 0 60px rgba(255, 215, 0, 0.06),
        0 0 100px rgba(255, 215, 0, 0.03),
        inset 0 0 30px rgba(255, 215, 0, 0.04);
}

.calculator--premium .calculator__premium-card-check {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.calculator--premium .calculator__premium-card-check svg {
    stroke: #ffffff;
    width: 10px;
    height: 10px;
}

.calculator--premium .calculator__premium-card.active .calculator__premium-card-check {
    opacity: 1;
    transform: scale(1);
}

.calculator--premium .calculator__premium-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
}

.calculator--premium .calculator__premium-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 215, 0, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.06);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.calculator--premium .calculator__premium-card.active .calculator__premium-card-icon {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.15);
}

.calculator--premium .calculator__premium-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: rgba(255, 215, 0, 0.3);
    transition: stroke 0.3s ease;
}

.calculator--premium .calculator__premium-card.active .calculator__premium-card-icon svg {
    stroke: #fbbf24;
}

.calculator--premium .calculator__premium-card-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.calculator--premium .calculator__premium-card.active .calculator__premium-card-name {
    color: #fbbf24 !important;
}

.calculator--premium .calculator__premium-card-price {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 0.15rem;
    transition: color 0.3s ease;
}

.calculator--premium .calculator__premium-card.active .calculator__premium-card-price {
    color: rgba(251, 191, 36, 0.8) !important;
}

.calculator--premium .calculator__breakdown-row span {
    color: #ffffff !important;
}

.calculator--premium .calculator__breakdown-row span:last-child {
    color: #ffffff !important;
    font-weight: 500;
}

.calculator--premium .calculator__breakdown-row--discount span {
    color: #34d399 !important;
}

.calculator--premium .calculator__breakdown-row--discount span:last-child {
    color: #34d399 !important;
}

.calculator--premium .calculator__premium-range-label {
    color: rgba(255, 255, 255, 0.6) !important;
}

.calculator--premium .calculator__premium-range-value {
    color: #ffffff !important;
    font-weight: 500;
}

.calculator--premium .calculator__slider {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(90deg, rgba(106, 61, 232, 0.15), rgba(106, 61, 232, 0.3));
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    margin: 0.5rem 0 0.3rem;
}

.calculator--premium .calculator__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    cursor: pointer;
    box-shadow: 0 0 30px rgba(106, 61, 232, 0.3);
    transition: all 0.3s ease;
}

.calculator--premium .calculator__slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(106, 61, 232, 0.4);
}

.calculator--premium .calculator__slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 30px rgba(106, 61, 232, 0.3);
}

.calculator--premium .calculator__premium-range-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 0.2rem;
}

.calculator--premium .calculator__premium-range-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    color: #34d399;
    margin-top: 0.3rem;
    padding: 0.3rem 1rem;
    background: rgba(52, 211, 153, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(52, 211, 153, 0.08);
    animation: discountSlide 0.4s ease;
}

.calculator--premium .calculator__premium-range-discount span:last-child {
    font-weight: 600;
}

@keyframes discountSlide {
    0% { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 1; transform: translateY(0); }
}

.calculator--premium .calculator__breakdown {
    padding: 1.2rem 0 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 2rem;
}

.calculator--premium .calculator__breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.75rem;
}

.calculator--premium .calculator__breakdown-row--discount {
    grid-column: 1 / -1;
}

.calculator--premium .calculator__result--premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(106, 61, 232, 0.05), rgba(236, 72, 153, 0.03));
    border-radius: 16px;
    border: 1px solid rgba(106, 61, 232, 0.06);
    transition: all 0.4s ease;
}

.calculator--premium .calculator__result--premium:hover {
    border-color: rgba(106, 61, 232, 0.12);
    background: linear-gradient(135deg, rgba(106, 61, 232, 0.08), rgba(236, 72, 153, 0.05));
}

.calculator--premium .calculator__result-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.calculator--premium .calculator__result-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.calculator--premium .calculator__result-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.calculator--premium .calculator__result-number.bounce {
    transform: scale(1.12);
}

.calculator--premium .calculator__result-currency {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.2);
}

.calculator--premium .calculator__result-btn {
    padding: 0.7rem 2.8rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 30px rgba(106, 61, 232, 0.1);
    white-space: nowrap;
}

.calculator--premium .calculator__result-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(106, 61, 232, 0.25), 0 10px 30px rgba(106, 61, 232, 0.1);
    color: #fff;
}

/* ============================================================
   ОТЗЫВЫ (WHATSAPP СТИЛЬ)
   ============================================================ */

.reviews {
    padding: 5rem 3rem;
    background: #000000;
    position: relative;
    z-index: 2;
}

.reviews__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.reviews__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9b59b6;
    border: 1px solid rgba(106, 61, 232, 0.25);
    padding: 0.3rem 1.5rem;
    border-radius: 60px;
    background: rgba(106, 61, 232, 0.06);
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
}

.reviews__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.reviews__title-highlight {
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews__slider-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
}

.reviews__slider {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0;
}

.reviews__slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.reviews__slide-group {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
}

.reviews__slide {
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.reviews__slide:hover {
    transform: translateY(-4px);
}

.reviews__slide-zoom {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    z-index: 2;
    pointer-events: none;
}

.reviews__slide:hover .reviews__slide-zoom {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-card {
    background: #0a0a12;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.whatsapp-card:hover {
    border-color: rgba(106, 61, 232, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(106, 61, 232, 0.08);
}

.whatsapp-card__header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
}

.whatsapp-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.whatsapp-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.whatsapp-card__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.whatsapp-card__time {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
}

.whatsapp-card__status {
    color: #4fc3f7;
    flex-shrink: 0;
}

.whatsapp-card__body {
    padding: 1rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: #0a0a12;
}

.whatsapp-card__message {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 0.7rem 1rem;
    max-width: 85%;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    animation: messageAppear 0.3s ease;
}

.whatsapp-card__message--right {
    align-self: flex-end;
    background: rgba(106, 61, 232, 0.15);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 4px;
}

.whatsapp-card__message p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.whatsapp-card__message--right p {
    color: rgba(255, 255, 255, 0.9);
}

@keyframes messageAppear {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.whatsapp-card__footer {
    padding: 0.8rem 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.whatsapp-card__project {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
}

.whatsapp-card__rating {
    font-size: 0.75rem;
    color: #fbbf24;
    letter-spacing: 1px;
}

.reviews__slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.reviews__slider-btn:hover {
    background: rgba(106, 61, 232, 0.25);
    border-color: rgba(106, 61, 232, 0.3);
    color: #ffffff;
    box-shadow: 0 0 30px rgba(106, 61, 232, 0.1);
}

.reviews__slider-btn--prev {
    left: 0.5rem;
}

.reviews__slider-btn--next {
    right: 0.5rem;
}

.reviews__slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0 0.5rem;
}

.reviews__slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.reviews__slider-dot.active {
    background: #6a3de8;
    box-shadow: 0 0 20px rgba(106, 61, 232, 0.3);
    width: 24px;
    border-radius: 4px;
}

.reviews__bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.reviews__bottom-item {
    display: flex;
    flex-direction: column;
}

.reviews__bottom-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews__bottom-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.2rem;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: lightboxFade 0.3s ease;
}

.lightbox.active {
    display: flex;
}

@keyframes lightboxFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox__close:hover {
    background: rgba(106, 61, 232, 0.2);
    border-color: rgba(106, 61, 232, 0.3);
    color: #ffffff;
}

.lightbox__image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__content {
    max-width: 500px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 0;
    background: transparent;
}

.lightbox .whatsapp-card {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox .whatsapp-card__body {
    padding: 1.5rem;
}

.lightbox .whatsapp-card__message p {
    font-size: 0.95rem;
}

/* ============================================================
   КОМАНДА
   ============================================================ */

.team {
    padding: 5rem 3rem;
    background: #000000;
    position: relative;
    z-index: 2;
}

.team__header {
    text-align: center;
    margin-bottom: 4rem;
}

.team__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9b59b6;
    border: 1px solid rgba(106, 61, 232, 0.25);
    padding: 0.3rem 1.5rem;
    border-radius: 60px;
    background: rgba(106, 61, 232, 0.06);
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
}

.team__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.team__title-highlight {
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.team__member {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team__member:hover {
    transform: translateY(-8px);
    border-color: rgba(106, 61, 232, 0.2);
    background: rgba(106, 61, 232, 0.04);
    box-shadow: 0 20px 60px rgba(106, 61, 232, 0.06);
}

.team__member-photo {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.team__member-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team__member:hover .team__member-photo img {
    transform: scale(1.05);
}

.team__member-social {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.team__member:hover .team__member-social {
    opacity: 1;
}

.team__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.team__social-link:hover {
    background: rgba(106, 61, 232, 0.25);
    border-color: rgba(106, 61, 232, 0.3);
    color: #ffffff;
    transform: scale(1.1);
}

.team__member-content {
    padding: 1.2rem 1.2rem 1.5rem;
    text-align: center;
}

.team__member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.1rem;
}

.team__member-role {
    font-size: 0.75rem;
    color: rgba(106, 61, 232, 0.6);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.team__member-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.team__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    background: rgba(106, 61, 232, 0.04);
    border: 1px solid rgba(106, 61, 232, 0.08);
    text-align: center;
}

.team__bottom-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.team__bottom-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

.team__bottom-text strong {
    color: #ffffff;
    font-weight: 500;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
    padding: 5rem 3rem;
    background: #000000;
    position: relative;
    z-index: 2;
}

.faq__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.faq__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9b59b6;
    border: 1px solid rgba(106, 61, 232, 0.25);
    padding: 0.3rem 1.5rem;
    border-radius: 60px;
    background: rgba(106, 61, 232, 0.06);
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
}

.faq__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.faq__title-highlight {
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
}

.faq__column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq__item {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.faq__item:hover {
    border-color: rgba(106, 61, 232, 0.15);
}

.faq__item.active {
    border-color: rgba(106, 61, 232, 0.2);
    background: rgba(106, 61, 232, 0.04);
    box-shadow: 0 4px 30px rgba(106, 61, 232, 0.05);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq__question:hover .faq__question-text {
    color: #ffffff;
}

.faq__question-text {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    flex: 1;
}

.faq__item.active .faq__question-text {
    color: #ffffff;
}

.faq__question-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq__question-icon svg {
    width: 20px;
    height: 20px;
    stroke: rgba(255, 255, 255, 0.2);
    transition: stroke 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq__item.active .faq__question-icon {
    transform: rotate(45deg);
}

.faq__item.active .faq__question-icon svg {
    stroke: #9b59b6;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.4s ease 0.05s,
                transform 0.4s ease 0.05s,
                padding 0.3s ease 0.05s;
    padding: 0 1.5rem;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 0 1.5rem 1.5rem;
}

.faq__answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    animation: fadeAnswer 0.5s ease 0.1s both;
}

@keyframes fadeAnswer {
    0% { opacity: 0; transform: translateY(-8px); }
    100% { opacity: 1; transform: translateY(0); }
}

.faq__answer p strong {
    color: #ffffff;
    font-weight: 500;
}

.faq__answer p a {
    color: #9b59b6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq__answer p a:hover {
    color: #c4b5fd;
    border-bottom-color: #6a3de8;
}

.faq__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    background: rgba(106, 61, 232, 0.04);
    border: 1px solid rgba(106, 61, 232, 0.08);
    flex-wrap: wrap;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.faq__bottom-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.faq__bottom-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.faq__bottom-text strong {
    color: #ffffff;
    font-weight: 500;
}

.faq__bottom-btn {
    display: inline-block;
    padding: 0.6rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(106, 61, 232, 0.15);
    flex-shrink: 0;
}

.faq__bottom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(106, 61, 232, 0.3);
    color: #ffffff;
}

/* ============================================================
   КОНТАКТЫ
   ============================================================ */

.contacts {
    padding: 5rem 3rem;
    background: #000000;
    position: relative;
    z-index: 2;
}

.contacts__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.contacts__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9b59b6;
    border: 1px solid rgba(106, 61, 232, 0.25);
    padding: 0.3rem 1.5rem;
    border-radius: 60px;
    background: rgba(106, 61, 232, 0.06);
    backdrop-filter: blur(4px);
    margin-bottom: 1rem;
}

.contacts__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.contacts__title-highlight {
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contacts__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 100%;
    margin: 0 auto;
}

.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 0.5rem;
}

.contacts__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contacts__info-icon {
    width: 36px;
    text-align: center;
    flex-shrink: 0;
}

.contacts__info-icon svg {
    width: 24px;
    height: 24px;
}

.contacts__info-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.contacts__info-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contacts__info-value {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacts__info-value:hover {
    color: #ffffff;
}

.contacts__social {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.contacts__social-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.8rem;
}

.contacts__social-icons {
    display: flex;
    gap: 0.8rem;
}

.contacts__social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.contacts__social-link svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
}

.contacts__social-link--instagram {
    color: #E4405F;
}
.contacts__social-link--instagram:hover {
    background: #E4405F;
    color: #ffffff;
    border-color: #E4405F;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.25);
}
.contacts__social-link--instagram:hover svg {
    stroke: #ffffff;
}

.contacts__social-link--telegram {
    color: #0088cc;
}
.contacts__social-link--telegram:hover {
    background: #0088cc;
    color: #ffffff;
    border-color: #0088cc;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.25);
}
.contacts__social-link--telegram:hover svg {
    stroke: #ffffff;
}

.contacts__social-link--whatsapp {
    color: #25D366;
}
.contacts__social-link--whatsapp:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25);
}
.contacts__social-link--whatsapp:hover svg {
    stroke: #ffffff;
}

.contacts__social-link--vk {
    color: #0077FF;
}
.contacts__social-link--vk:hover {
    background: #0077FF;
    color: #ffffff;
    border-color: #0077FF;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 119, 255, 0.25);
}
.contacts__social-link--vk:hover svg {
    stroke: #ffffff;
}

.contacts__map {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
}

.contacts__map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================================================
   МОДАЛЬНОЕ ОКНО (ОБСУДИТЬ ПРОЕКТ)
   ============================================================ */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: modalFade 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes modalFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.modal {
    position: relative;
    max-width: 540px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(106, 61, 232, 0.05);
    animation: modalSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlide {
    0% { opacity: 0; transform: scale(0.95) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal__close:hover {
    background: rgba(106, 61, 232, 0.1);
    border-color: rgba(106, 61, 232, 0.2);
    color: #ffffff;
}

.modal__header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9b59b6;
    border: 1px solid rgba(106, 61, 232, 0.2);
    padding: 0.2rem 1.2rem;
    border-radius: 60px;
    background: rgba(106, 61, 232, 0.06);
    margin-bottom: 0.8rem;
}

.modal__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.modal__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.modal__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.modal__label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

.modal__required {
    color: #ec4899;
}

.modal__input,
.modal__textarea {
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.modal__input:focus,
.modal__textarea:focus {
    outline: none;
    border-color: rgba(106, 61, 232, 0.3);
    background: rgba(106, 61, 232, 0.04);
    box-shadow: 0 0 30px rgba(106, 61, 232, 0.05);
}

.modal__input::placeholder,
.modal__textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.modal__textarea {
    resize: vertical;
    min-height: 80px;
}

.modal__form-agreement {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.modal__form-agreement input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    accent-color: #6a3de8;
    cursor: pointer;
}

.modal__form-agreement label {
    cursor: pointer;
    line-height: 1.4;
}

.modal__form-agreement a {
    color: #9b59b6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal__form-agreement a:hover {
    color: #c4b5fd;
}

.modal__submit {
    position: relative;
    padding: 0.9rem 2.5rem;
    border-radius: 60px;
    border: none;
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 40px rgba(106, 61, 232, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.modal__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(106, 61, 232, 0.3);
}

.modal__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.modal__submit-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal__success {
    text-align: center;
    padding: 1.5rem 0;
}

.modal__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(52, 211, 153, 0.05));
    border: 1px solid rgba(52, 211, 153, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #34d399;
}

.modal__success-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   КВИЗ-БРИФ (НА ВСЮ ШИРИНУ ЭКРАНА)
   ============================================================ */

.modal--brief-fullscreen {
    max-width: 100%;
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    background: #0a0a12;
    margin: 0;
}

.quiz-fullscreen__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 3rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: linear-gradient(180deg, rgba(106, 61, 232, 0.03), transparent);
}

.quiz-fullscreen__header {
    flex: 1;
}

.quiz-fullscreen__badge {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9b59b6;
    border: 1px solid rgba(106, 61, 232, 0.2);
    padding: 0.15rem 0.8rem;
    border-radius: 60px;
    background: rgba(106, 61, 232, 0.06);
    margin-bottom: 0.2rem;
}

.quiz-fullscreen__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.quiz-fullscreen__subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0.1rem 0 0;
}

.quiz-fullscreen__progress {
    flex: 0 0 360px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.quiz-fullscreen__progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.quiz-fullscreen__progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    border-radius: 4px;
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 0%;
}

.quiz-fullscreen__progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quiz-fullscreen__progress-text {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.quiz-fullscreen__steps {
    display: flex;
    gap: 0.4rem;
}

.quiz-fullscreen__step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s ease;
}

.quiz-fullscreen__step.active {
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(106, 61, 232, 0.2);
}

.quiz-fullscreen__step.done {
    background: rgba(106, 61, 232, 0.15);
    color: #9b59b6;
    border-color: rgba(106, 61, 232, 0.1);
}

.quiz-fullscreen__body {
    padding: 2rem 3rem;
    min-height: 420px;
    max-height: 72vh;
    overflow-y: auto;
    position: relative;
}

.quiz-fullscreen__body::-webkit-scrollbar {
    width: 4px;
}

.quiz-fullscreen__body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.quiz-fullscreen__body::-webkit-scrollbar-thumb {
    background: rgba(106, 61, 232, 0.3);
    border-radius: 4px;
}

.quiz-step-fullscreen {
    display: none;
    animation: quizStepIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quiz-step-fullscreen.active {
    display: block;
}

.quiz-step-fullscreen--result {
    text-align: center;
    padding: 0.5rem 0;
}

.quiz-step-fullscreen__content {
    margin-bottom: 1.5rem;
}

.quiz-step-fullscreen__number {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
}

.quiz-step-fullscreen__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0.1rem 0 0.1rem;
}

.quiz-step-fullscreen__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.quiz-options-fullscreen {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.quiz-options-fullscreen--multi {
    grid-template-columns: repeat(4, 1fr);
    flex: 1;
}

.quiz-options-fullscreen--budget {
    grid-template-columns: repeat(5, 1fr);
}

.quiz-option-fullscreen {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 1.2rem 0.8rem 0.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
}

.quiz-option-fullscreen:hover {
    border-color: rgba(106, 61, 232, 0.15);
    background: rgba(106, 61, 232, 0.03);
    transform: translateY(-2px);
}

.quiz-option-fullscreen.active {
    border-color: rgba(106, 61, 232, 0.3);
    background: rgba(106, 61, 232, 0.06);
    box-shadow: 0 0 30px rgba(106, 61, 232, 0.05);
}

.quiz-option-fullscreen.selected {
    border-color: rgba(236, 72, 153, 0.3);
    background: rgba(236, 72, 153, 0.06);
}

.quiz-option-fullscreen__icon {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.quiz-option-fullscreen__icon svg {
    width: 32px;
    height: 32px;
    stroke: rgba(255, 255, 255, 0.2);
    transition: stroke 0.3s ease;
}

.quiz-option-fullscreen.active .quiz-option-fullscreen__icon svg {
    stroke: #9b59b6;
}

.quiz-option-fullscreen.selected .quiz-option-fullscreen__icon svg {
    stroke: #ec4899;
}

.quiz-option-fullscreen__title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    display: block;
}

.quiz-option-fullscreen__desc {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    line-height: 1.2;
}

.quiz-option-fullscreen__price {
    font-size: 0.65rem;
    color: rgba(106, 61, 232, 0.4);
    display: block;
    margin-top: 0.2rem;
    font-weight: 500;
}

.quiz-option-fullscreen.active .quiz-option-fullscreen__price {
    color: #9b59b6;
}

.quiz-option-fullscreen.selected .quiz-option-fullscreen__price {
    color: #ec4899;
}

.quiz-fullscreen__services-wrapper {
    display: flex;
    gap: 1.5rem;
}

.quiz-fullscreen__services-wrapper .quiz-options-fullscreen--multi {
    flex: 2;
}

.quiz-fullscreen__seo {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

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

.quiz-fullscreen__seo-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.quiz-fullscreen__seo-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.quiz-fullscreen__seo-range {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    margin: 0.4rem 0 0.2rem;
}

.quiz-fullscreen__seo-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(106, 61, 232, 0.2);
}

.quiz-fullscreen__seo-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    cursor: pointer;
    border: none;
}

.quiz-fullscreen__seo-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.15);
}

.quiz-fullscreen__seo-count {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
}

.quiz-fullscreen__seo-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6rem;
    color: #34d399;
    margin-top: 0.2rem;
    padding: 0.2rem 0.6rem;
    background: rgba(52, 211, 153, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(52, 211, 153, 0.06);
}

.quiz-fullscreen__services-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.8rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.quiz-fullscreen__services-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
}

.quiz-fullscreen__services-total {
    font-size: 0.85rem;
    font-weight: 600;
    color: #9b59b6;
}

.quiz-fullscreen__bonus {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, rgba(106, 61, 232, 0.06), rgba(236, 72, 153, 0.03));
    border: 1px solid rgba(106, 61, 232, 0.08);
    border-radius: 12px;
    margin-bottom: 1.2rem;
}

.quiz-fullscreen__bonus-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.quiz-fullscreen__bonus-content {
    flex: 1;
}

.quiz-fullscreen__bonus-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.quiz-fullscreen__bonus-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.quiz-fullscreen__bonus-desc strong {
    color: #fbbf24;
    font-weight: 600;
}

.quiz-fullscreen__bonus-sep {
    margin: 0 0.3rem;
    color: rgba(255, 255, 255, 0.06);
}

.quiz-fullscreen__bonus-timer {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.15);
    margin: 0.1rem 0 0;
    font-family: 'Inter', monospace;
}

.quiz-fullscreen__form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.quiz-fullscreen__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.quiz-fullscreen__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.quiz-fullscreen__label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.2);
}

.quiz-fullscreen__required {
    color: #ec4899;
}

.quiz-fullscreen__input {
    padding: 0.6rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.quiz-fullscreen__input:focus {
    outline: none;
    border-color: rgba(106, 61, 232, 0.2);
    background: rgba(106, 61, 232, 0.03);
}

.quiz-fullscreen__input::placeholder {
    color: rgba(255, 255, 255, 0.1);
}

.quiz-fullscreen__agreement {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 0.4rem;
}

.quiz-fullscreen__agreement input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    accent-color: #6a3de8;
    cursor: pointer;
}

.quiz-fullscreen__agreement label {
    cursor: pointer;
    line-height: 1.3;
}

.quiz-fullscreen__agreement a {
    color: #9b59b6;
    text-decoration: none;
}

.quiz-fullscreen__submit {
    width: 100%;
    padding: 0.8rem;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(106, 61, 232, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quiz-fullscreen__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(106, 61, 232, 0.2);
}

.quiz-fullscreen__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.quiz-fullscreen__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 3rem 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.quiz-fullscreen__nav-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.5rem;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quiz-fullscreen__nav-btn:hover {
    border-color: rgba(106, 61, 232, 0.15);
    color: #ffffff;
    background: rgba(106, 61, 232, 0.03);
}

.quiz-fullscreen__nav-btn--next {
    background: linear-gradient(135deg, rgba(106, 61, 232, 0.08), rgba(236, 72, 153, 0.03));
    border-color: rgba(106, 61, 232, 0.06);
    color: #ffffff;
}

.quiz-fullscreen__nav-btn--next:hover {
    background: linear-gradient(135deg, rgba(106, 61, 232, 0.15), rgba(236, 72, 153, 0.06));
    border-color: rgba(106, 61, 232, 0.12);
}

.quiz-fullscreen__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.4rem 0 0.8rem;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.06);
}

.quiz-fullscreen__result {
    padding: 0.5rem 0;
}

.quiz-fullscreen__result-icon {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.quiz-fullscreen__result-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.1rem;
}

.quiz-fullscreen__result-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.2rem;
}

.quiz-fullscreen__result-price {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 1.2rem;
    margin-bottom: 0.8rem;
    text-align: left;
}

.quiz-fullscreen__result-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
}

.quiz-fullscreen__result-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.quiz-fullscreen__result-discount {
    display: block;
    font-size: 0.85rem;
    color: #34d399;
    margin: 0.1rem 0;
}

.quiz-fullscreen__result-final {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #fbbf24;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.quiz-fullscreen__result-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(251, 191, 36, 0.04);
    border: 1px solid rgba(251, 191, 36, 0.06);
    border-radius: 10px;
    margin-bottom: 1.2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.quiz-fullscreen__result-bonus strong {
    color: #fbbf24;
    font-weight: 600;
}

.quiz-fullscreen__result-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.quiz-fullscreen__result-btn {
    padding: 0.6rem 2rem;
    border-radius: 60px;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quiz-fullscreen__result-btn--primary {
    background: linear-gradient(135deg, #6a3de8, #ec4899);
    color: #ffffff;
}

.quiz-fullscreen__result-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(106, 61, 232, 0.2);
}

.quiz-fullscreen__result-btn--whatsapp {
    background: #25D366;
    color: #ffffff;
}

.quiz-fullscreen__result-btn--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
}

.quiz-fullscreen__result-timer {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

/* ============================================================
   ПОДВАЛ
   ============================================================ */

.footer {
    padding: 4rem 3rem 2rem;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 2;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
}

.footer__brand {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer__logo-link {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.footer__logo-text {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, #6a3de8, #9b59b6, #6a3de8, #9b59b6);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: word-glow 4s ease-in-out infinite;
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.footer__links {
    display: flex;
    gap: 5rem;
    flex: 1;
    justify-content: center;
    max-width: 100%;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__col-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer__col-list li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer__col-list li a:hover {
    color: #ffffff;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.footer__bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem 0.8rem;
}

.footer__bottom-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.footer__bottom-sep {
    color: rgba(255, 255, 255, 0.06);
}

.footer__copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.15);
    margin: 0;
}

/* ============================================================
   АДАПТАЦИЯ — ОБЩАЯ
   ============================================================ */

@media (max-width: 1400px) {
    .choice__decor--left {
        left: -60px;
        width: 420px;
        height: 420px;
    }
}

@media (max-width: 1200px) {
    .quiz-options-fullscreen {
        grid-template-columns: repeat(4, 1fr);
    }
    .quiz-options-fullscreen--budget {
        grid-template-columns: repeat(3, 1fr);
    }
    .quiz-options-fullscreen--multi {
        grid-template-columns: repeat(3, 1fr);
    }

    .choice__decor--left {
        left: -40px;
        width: 340px;
        height: 340px;
        opacity: 0.5;
    }
}

@media (max-width: 992px) {
    .choice__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal--brief-fullscreen {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }

    .quiz-fullscreen__top {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 1.5rem 0.8rem;
    }

    .quiz-fullscreen__progress {
        flex: 1;
        width: 100%;
    }

    .quiz-fullscreen__body {
        padding: 1rem 1.5rem;
        max-height: 65vh;
        min-height: 350px;
    }

    .quiz-options-fullscreen {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .quiz-options-fullscreen--multi {
        grid-template-columns: repeat(2, 1fr);
    }

    .quiz-options-fullscreen--budget {
        grid-template-columns: repeat(2, 1fr);
    }

    .quiz-fullscreen__services-wrapper {
        flex-direction: column;
        gap: 0.8rem;
    }

    .quiz-fullscreen__seo {
        flex: 1;
        width: 100%;
    }

    .quiz-fullscreen__nav {
        padding: 0.6rem 1.5rem 1rem;
        flex-direction: column;
        gap: 0.4rem;
    }

    .quiz-fullscreen__nav-btn {
        width: 100%;
        justify-content: center;
        padding: 0.4rem 1rem;
    }

    .quiz-fullscreen__form-row {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .quiz-fullscreen__bonus {
        flex-direction: column;
        text-align: center;
        padding: 0.6rem;
    }

    .quiz-fullscreen__bonus-icon {
        font-size: 1.6rem;
    }

    .quiz-fullscreen__steps {
        justify-content: center;
    }

    .quiz-fullscreen__step {
        width: 24px;
        height: 24px;
        font-size: 0.55rem;
    }

    .quiz-option-fullscreen {
        padding: 0.8rem 0.4rem 0.6rem;
    }

    .quiz-option-fullscreen__icon {
        font-size: 1.4rem;
    }

    .quiz-option-fullscreen__icon svg {
        width: 26px;
        height: 26px;
    }

    .quiz-option-fullscreen__title {
        font-size: 0.7rem;
    }

    .quiz-option-fullscreen__desc {
        font-size: 0.55rem;
    }

    .quiz-option-fullscreen__price {
        font-size: 0.55rem;
    }

    .quiz-fullscreen__result-number {
        font-size: 1.6rem;
    }

    .quiz-fullscreen__result-actions {
        flex-direction: column;
        gap: 0.4rem;
    }

    .quiz-fullscreen__result-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .choice {
        padding: 4rem 1.5rem;
    }

    .choice__decor {
        display: none;
    }

    .choice__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .choice__item {
        padding: 1.5rem 1.2rem;
    }
}

@media (max-width: 600px) {
    .modal--brief-fullscreen {
        border-radius: 0;
    }

    .quiz-fullscreen__top {
        padding: 0.6rem 1rem 0.5rem;
    }

    .quiz-fullscreen__body {
        padding: 0.6rem 1rem;
        max-height: 68vh;
        min-height: 280px;
    }

    .quiz-fullscreen__title {
        font-size: 1rem;
    }

    .quiz-fullscreen__subtitle {
        font-size: 0.65rem;
    }

    .quiz-options-fullscreen {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }

    .quiz-options-fullscreen--multi {
        grid-template-columns: 1fr 1fr;
    }

    .quiz-options-fullscreen--budget {
        grid-template-columns: 1fr;
    }

    .quiz-option-fullscreen {
        padding: 0.4rem 0.3rem 0.4rem;
        border-radius: 10px;
    }

    .quiz-option-fullscreen__icon {
        font-size: 1.2rem;
    }

    .quiz-option-fullscreen__icon svg {
        width: 22px;
        height: 22px;
    }

    .quiz-option-fullscreen__title {
        font-size: 0.6rem;
    }

    .quiz-option-fullscreen__desc {
        font-size: 0.5rem;
    }

    .quiz-option-fullscreen__price {
        font-size: 0.5rem;
    }

    .quiz-fullscreen__seo {
        padding: 0.4rem 0.6rem;
    }

    .quiz-fullscreen__seo-label {
        font-size: 0.55rem;
    }

    .quiz-fullscreen__seo-price {
        font-size: 0.65rem;
    }

    .quiz-fullscreen__seo-info {
        font-size: 0.45rem;
    }

    .quiz-fullscreen__services-summary {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }

    .quiz-fullscreen__bonus {
        flex-direction: column;
        text-align: center;
        padding: 0.5rem;
    }

    .quiz-fullscreen__bonus-icon {
        font-size: 1.4rem;
    }

    .quiz-fullscreen__bonus-title {
        font-size: 0.7rem;
    }

    .quiz-fullscreen__bonus-desc {
        font-size: 0.6rem;
    }

    .quiz-fullscreen__bonus-timer {
        font-size: 0.5rem;
    }

    .quiz-fullscreen__submit {
        font-size: 0.75rem;
        padding: 0.5rem;
    }

    .quiz-fullscreen__nav {
        padding: 0.4rem 1rem 0.6rem;
    }

    .quiz-fullscreen__nav-btn {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }

    .quiz-step-fullscreen__title {
        font-size: 0.95rem;
    }

    .quiz-step-fullscreen__desc {
        font-size: 0.7rem;
    }

    .quiz-fullscreen__result-title {
        font-size: 1.2rem;
    }

    .quiz-fullscreen__result-number {
        font-size: 1.3rem;
    }

    .quiz-fullscreen__result-price {
        padding: 0.6rem;
    }

    .quiz-fullscreen__result-btn {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }

    .quiz-fullscreen__step {
        width: 20px;
        height: 20px;
        font-size: 0.5rem;
    }

    .quiz-fullscreen__progress {
        flex: 0 0 auto;
    }
}

/* ============================================================
   УВАЖЕНИЕ К ПОЛЬЗОВАТЕЛЮ (a11y) — reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    .choice__decor,
    .spark-run,
    .gold-spark,
    .gold-spark-core,
    .gold-blink {
        animation: none !important;
    }
    .spark-run       { opacity: 0.5; }
    .gold-spark      { opacity: 0.8; }
    .gold-spark-core { opacity: 1; }
}