/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460, #533483);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(0) !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo-link {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(139, 69, 255, 0.3);
    transition: all 0.3s ease;
}

.logo-image:hover {
    border-color: #8b45ff;
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #8b45ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: #8b45ff;
}

.nav-item.active {
    color: #8b45ff;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #8b45ff, #ff6b6b);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero секция */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 95px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    min-height: 80vh;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #8b45ff, #ff6b6b, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #8b45ff, #ff6b6b);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 69, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #8b45ff;
}

.btn-secondary:hover {
    background: #8b45ff;
    transform: translateY(-2px);
}

.hero-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
    align-items: start;
}

.hero-card {
    background: linear-gradient(135deg, rgba(139, 69, 255, 0.15), rgba(255, 107, 107, 0.15));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(139, 69, 255, 0.4);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(139, 69, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 255, 0.1), rgba(255, 107, 107, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.hero-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 69, 255, 0.8);
    box-shadow: 0 16px 48px rgba(139, 69, 255, 0.3);
}

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

.hero-card:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
}

.hero-card:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
}

.hero-card:nth-child(3) {
    grid-row: 2;
    grid-column: 1;
}

.hero-card:nth-child(4) {
    grid-row: 2;
    grid-column: 2;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(139, 69, 255, 0.3));
    transition: all 0.3s ease;
}

.hero-card:hover .card-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(139, 69, 255, 0.5));
}

.hero-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-card p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Секции */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6rem;
    margin-top: 8rem;
    background: linear-gradient(45deg, #8b45ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Секция преимуществ */
.features {
    padding: 25rem 0 12rem 0;
    margin-top: 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(139, 69, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* Секция о Битрикс24 */
.about-bitrix {
    padding: 15rem 0 12rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-text p {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.pros h4, .cons h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    padding: 0.5rem 0;
    color: #b8b8b8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 200px;
    background: rgba(139, 69, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(139, 69, 255, 0.3);
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.placeholder-content p {
    color: #ffffff;
    font-weight: 600;
}

/* Футер */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: #b8b8b8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #8b45ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #b8b8b8;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 69, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 69, 255, 0.6);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Анимационные классы */
.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInFromRight 0.8s ease-out forwards;
}

.slide-in-bottom {
    animation: slideInFromBottom 0.8s ease-out forwards;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

.glow-animation {
    animation: glow 2s ease-in-out infinite;
}

.bounce-animation {
    animation: bounce 1s ease-in-out infinite;
}

.shake-animation {
    animation: shake 0.5s ease-in-out;
}

.rotate-animation {
    animation: rotate 2s linear infinite;
}

.count-up-animation {
    animation: countUp 0.8s ease-out forwards;
}

/* Начальные состояния для анимаций */
.hero-card,
.feature-card,
.team-card,
.value-card,
.achievement-item,
.process-step,
.pricing-card,
.case-card,
.article-card,
.testimonial-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.6s ease-out;
}

.section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.btn {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease-out;
}

/* Анимация фона */
body {
    background: linear-gradient(-45deg, #1a1a2e, #16213e, #0f3460, #533483);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Анимация навигации */
.navbar {
    transition: all 0.3s ease;
}

.nav-item {
    position: relative;
    transition: all 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #8b45ff, #ff6b6b);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* Анимация логотипа */
.logo-image {
    transition: all 0.4s ease;
}

.logo-text {
    transition: all 0.3s ease;
}

/* Анимация форм */
.form-group {
    position: relative;
    transition: all 0.3s ease;
}

.form-group.focused input,
.form-group.focused textarea {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(139, 69, 255, 0.3);
}

/* Анимация частиц */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Анимация hero контента */
.hero-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.hero-image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}

/* Анимация при загрузке */
.hero-content,
.hero-image {
    animation: fadeInUp 0.8s ease-out;
}

/* Дополнительные стили для новых страниц */

/* Стили для страницы "О нас" */
.team-section, .values-section, .achievements-section, .process-section {
    padding: 5rem 0;
}

.team-grid, .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card, .value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover, .value-card:hover {
    transform: translateY(-10px);
    background: rgba(139, 69, 255, 0.2);
}

.team-avatar, .value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-role, .value-card h3 {
    color: #8b45ff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description, .value-card p {
    color: #b8b8b8;
    line-height: 1.6;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-10px);
    background: rgba(139, 69, 255, 0.2);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8b45ff;
    margin-bottom: 0.5rem;
}

.achievement-text {
    color: #b8b8b8;
    font-weight: 600;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Убираем центральную линию */

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b45ff, #a855f7, #c084fc, #e879f9, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 2rem;
    z-index: 2;
    position: relative;
    box-shadow: 
        0 8px 25px rgba(139, 69, 255, 0.4),
        0 4px 15px rgba(255, 107, 107, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: stepPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Добавляем стрелку как часть блока с текстом */
.step-content:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid rgba(139, 69, 255, 0.8);
    z-index: 1;
    animation: arrowGlow 2s ease-in-out infinite;
}

.step-content:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: linear-gradient(180deg, 
        rgba(139, 69, 255, 0.8) 0%, 
        rgba(168, 85, 247, 0.6) 50%, 
        rgba(255, 107, 107, 0.8) 100%);
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(139, 69, 255, 0.4);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 10px rgba(139, 69, 255, 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(139, 69, 255, 0.8);
    }
}

@keyframes arrowGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 35px rgba(139, 69, 255, 0.6),
        0 6px 20px rgba(255, 107, 107, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

@keyframes stepPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
    transform: scale(1.05);
    }
}

.step-content {
    flex: 1;
    background: linear-gradient(135deg, 
        rgba(139, 69, 255, 0.15), 
        rgba(168, 85, 247, 0.1), 
        rgba(255, 107, 107, 0.15));
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(139, 69, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(139, 69, 255, 0.2),
        0 4px 16px rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    margin-bottom: 40px;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 69, 255, 0.1), 
        rgba(255, 107, 107, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.step-content:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 69, 255, 0.5);
    box-shadow: 
        0 12px 40px rgba(139, 69, 255, 0.3),
        0 6px 20px rgba(255, 107, 107, 0.2);
}

.step-content:hover::before {
    opacity: 1;
}

.step-content h3 {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #8b45ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Стили для страницы "Тарифы" */
.pricing-section, .services-section, .comparison-section, .faq-section {
    padding: 5rem 0;
}

/* Переключатель периодов */
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.toggle-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: #ffffff;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 25px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #8b45ff, #ff6b6b);
    border-radius: 25px;
    transition: 0.3s;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + label:before {
    transform: translateX(25px);
}

.discount-badge {
    background: #ffd700;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(139, 69, 255, 0.2);
}

/* Новые стили для тарифов */
.user-limit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
}

.price-container {
    position: relative;
    margin: 1rem 0;
}

.price-original {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.5rem 0;
}

.discount {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b6b;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.storage {
    background: rgba(139, 69, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 1rem 0;
    display: inline-block;
}

.feature-category {
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin: 0.5rem 0;
}

.sub-features {
    list-style: none;
    padding-left: 1rem;
    margin: 0.5rem 0;
}

.sub-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.btn-green {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.btn-blue {
    background: linear-gradient(45deg, #2196F3, #1976D2);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.btn-green-large {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 2rem;
}

.btn-green-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

.compare-button {
    text-align: center;
    margin-top: 3rem;
}

.crm-badge {
    background: #2196F3;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-card.featured {
    border: 2px solid #8b45ff;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #8b45ff, #ff6b6b);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b45ff;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #b8b8b8;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #b8b8b8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(139, 69, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #b8b8b8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    color: #8b45ff;
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(139, 69, 255, 0.2);
    color: #ffffff;
    font-weight: 600;
}

.comparison-table td {
    color: #b8b8b8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    background: rgba(139, 69, 255, 0.2);
}

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* Стили для страницы "Кейсы" */
.cases-section, .stats-section, .testimonials-section {
    padding: 5rem 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.case-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    background: rgba(139, 69, 255, 0.2);
}

.case-image {
    height: 200px;
    background: rgba(139, 69, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-placeholder {
    text-align: center;
}

.case-icon {
    font-size: 4rem;
}

.case-content {
    padding: 2rem;
}

.case-content h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.case-industry {
    color: #8b45ff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-description {
    color: #b8b8b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-results {
    display: flex;
    gap: 1rem;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b45ff;
}

.result-text {
    font-size: 0.9rem;
    color: #b8b8b8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(139, 69, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8b45ff;
    margin-bottom: 0.5rem;
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    position: relative;
}

.stat-item:nth-child(1) .stat-number::after {
    content: "+";
    font-size: 2rem;
    vertical-align: top;
}

.stat-item:nth-child(2) .stat-number::after {
    content: "%";
    font-size: 2rem;
    vertical-align: top;
}

.stat-item:nth-child(4) .stat-number::after {
    content: "/7";
    font-size: 2rem;
    vertical-align: top;
}

.stat-text {
    color: #b8b8b8;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(139, 69, 255, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #b8b8b8;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #8b45ff;
    font-size: 0.9rem;
}

/* Стили для страницы "Статьи" */
.articles-section, .categories-section, .newsletter-section {
    padding: 5rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px);
    background: rgba(139, 69, 255, 0.2);
}

.article-image {
    height: 200px;
    background: rgba(139, 69, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-placeholder {
    text-align: center;
}

.article-icon {
    font-size: 4rem;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.article-category {
    background: rgba(139, 69, 255, 0.2);
    color: #8b45ff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-date {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.article-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.article-content p {
    color: #b8b8b8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-link {
    color: #8b45ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #ff6b6b;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    background: rgba(139, 69, 255, 0.2);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-card p {
    color: #b8b8b8;
    line-height: 1.6;
}

.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.newsletter-content p {
    color: #b8b8b8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #b8b8b8;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #8b45ff;
    box-shadow: 0 0 20px rgba(139, 69, 255, 0.3);
}

/* Стили для страницы "Контакты" */
.contacts-section {
    padding: 5rem 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
    width: 60px;
    height: 60px;
    background: rgba(139, 69, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #b8b8b8;
    margin-bottom: 0.25rem;
}

.contact-form h2 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b8b8b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b45ff;
    box-shadow: 0 0 20px rgba(139, 69, 255, 0.3);
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
}

/* Стили для страницы "Дополнительные кейсы" */
.coming-soon-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.coming-soon-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-icon {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.coming-soon-icon .icon {
    font-size: 4rem;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #8b45ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.coming-soon-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.coming-soon-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.case-actions {
    margin-top: 1.5rem;
    text-align: center;
    padding: 1rem 0;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.case-actions .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.case-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #8b45ff;
    border: 2px solid #8b45ff;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.btn-outline:hover {
    background: #8b45ff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 255, 0.3);
}

/* Принудительное отображение кнопки */
.always-visible {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    animation: none !important;
}

.always-visible-btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
    animation: none !important;
}

/* Стили для страницы отзывов */
.testimonials-section {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translateY(0) !important;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 255, 0.1), rgba(255, 107, 107, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 69, 255, 0.3);
    box-shadow: 0 10px 30px rgba(139, 69, 255, 0.2);
}

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

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.testimonial-text {
    color: #ffffff;
    font-style: italic;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.author-info h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #8b45ff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Форма добавления отзыва */
.add-testimonial-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.testimonial-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.testimonial-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group input[type="tel"] {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="tel"]:focus {
    outline: none;
    border-color: #8b45ff;
    background: rgba(139, 69, 255, 0.1);
    box-shadow: 0 0 20px rgba(139, 69, 255, 0.3);
}

.form-group input[type="tel"]::placeholder {
    color: #888;
}

/* Стили для уведомлений */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #8b45ff, #ff6b6b);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(139, 69, 255, 0.3);
    z-index: 10000;
    max-width: 400px;
    word-wrap: break-word;
    font-size: 0.9rem;
    line-height: 1.4;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.success {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.notification.error {
    background: linear-gradient(45deg, #f44336, #d32f2f);
    box-shadow: 0 10px 30px rgba(244, 67, 54, 0.3);
}

.notification.info {
    background: linear-gradient(45deg, #2196F3, #1976D2);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}

/* Адаптивность для уведомлений */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        font-size: 0.8rem;
        padding: 0.8rem 1rem;
    }
}

/* Стили для формы контактов */
.contact-form input[required],
.contact-form textarea[required] {
    border-left: 3px solid #8b45ff;
}

.contact-form input[required]:focus,
.contact-form textarea[required]:focus {
    border-left-color: #ff6b6b;
    box-shadow: 0 0 20px rgba(139, 69, 255, 0.3);
}

.contact-form input[type="tel"] {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input[type="tel"]:focus {
    outline: none;
    border-color: #8b45ff;
    background: rgba(139, 69, 255, 0.1);
    box-shadow: 0 0 20px rgba(139, 69, 255, 0.3);
}

.contact-form input[type="tel"]::placeholder {
    color: #888;
}

/* Стили для WhatsApp ссылки */
#whatsapp-link {
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    position: relative !important;
    z-index: 1000 !important;
}

/* Стили для ссылок в подвале */
.footer-contact-link {
    color: #8b45ff !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
}

.footer-contact-link:hover {
    color: #ff6b6b !important;
    text-shadow: 0 0 10px rgba(139, 69, 255, 0.5) !important;
    transform: translateY(-1px) !important;
}

/* Стили для виджета Битрикс24 */
/* Обеспечиваем правильное позиционирование виджета */
.bx-live-chat {
    z-index: 9999 !important;
}

/* Убеждаемся, что виджет не перекрывает важные элементы */
.bx-live-chat-widget {
    z-index: 9999 !important;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .bx-live-chat,
    .bx-live-chat-widget {
        bottom: 20px !important;
        right: 20px !important;
    }
}

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

.form-group label {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b45ff;
    box-shadow: 0 0 20px rgba(139, 69, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Рейтинг звезды */
.rating-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.3rem;
}

.star {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.star:hover,
.star.hover {
    color: #ffd700;
    transform: scale(1.1);
}

.star.active {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Уведомления */
.notification {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-card:nth-child(1),
    .hero-card:nth-child(2),
    .hero-card:nth-child(3),
    .hero-card:nth-child(4) {
        grid-column: 1;
        margin-top: 0;
    }
    
    .hero-card:nth-child(2) {
        grid-row: 2;
    }
    
    .hero-card:nth-child(3) {
        grid-row: 3;
    }
    
    .hero-card:nth-child(4) {
        grid-row: 4;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .process-step:nth-child(odd) {
        flex-direction: column;
    }

    .step-number {
        margin: 0 0 1rem 0;
    }

    .step-content:not(:last-child)::after,
    .step-content:not(:last-child)::before {
        display: none;
    }

    .coming-soon-title {
        font-size: 2rem;
    }

    .coming-soon-text {
        font-size: 1.1rem;
    }

    .coming-soon-actions {
        flex-direction: column;
        align-items: center;
    }

    .coming-soon-actions .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .testimonial-form-container {
        padding: 2rem;
    }

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

    .rating-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .stars {
        gap: 0.2rem;
    }

    .star {
        font-size: 1.5rem;
    }
}