/* Добавление новых стилей в начало файла, перед существующими стилями */

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.coffee-cup {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 20px;
    animation: float 2s ease-in-out infinite;
}

.coffee-cup-body {
    width: 50px;
    height: 60px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 0 0 25px 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.coffee {
    position: absolute;
    width: 40px;
    height: 15px;
    background-color: #4b2b15;
    top: 10px;
    left: 5px;
    border-radius: 50%;
    animation: fill 2s ease-in-out infinite;
}

.handle {
    width: 20px;
    height: 30px;
    border: 6px solid var(--primary-color);
    border-left: none;
    border-radius: 0 20px 20px 0;
    position: absolute;
    right: 5px;
    top: 15px;
}

.preloader p {
    color: var(--primary-color);
    font-size: 18px;
    letter-spacing: 2px;
    animation: pulse 1.5s infinite;
}

@keyframes fill {
    0% { height: 0; }
    50% { height: 35px; }
    100% { height: 35px; }
}

/* Анимации и эффекты */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.typewriter {
    overflow: hidden;
    border-right: .15em solid var(--primary-color);
    white-space: nowrap;
    animation: typing 3.5s steps(30, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.1);
}

.hover-rotate {
    transition: transform 0.5s ease;
}

.hover-rotate:hover {
    transform: rotate(10deg);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    transition: transform 0.7s ease-in-out;
    opacity: 0;
}

.shine-effect:hover::after {
    transform: rotate(30deg) translate(100%, 0);
    opacity: 1;
}

/* Обратный отсчет */
.countdown-timer {
    margin: 25px 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--box-shadow);
}

.countdown-label {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
}

.countdown-container {
    display: flex;
    gap: 15px;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 80px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.countdown-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.countdown-item span:first-child {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 2px 5px rgba(200, 162, 125, 0.8);
    font-variant-numeric: tabular-nums;
    letter-spacing: 1px;
}

.countdown-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Анимация кофейных зерен */
.coffee-beans {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.bean {
    position: absolute;
    width: 35px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    animation: floating 20s linear infinite;
    filter: sepia(20%);
}

.bean-1 {
    top: 10%;
    left: 10%;
}

.bean-2 {
    top: 30%;
    left: 20%;
}

.bean-3 {
    top: 20%;
    left: 80%;
}

.bean-4 {
    top: 60%;
    left: 70%;
}

.bean-5 {
    top: 70%;
    left: 30%;
}

@keyframes floating {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 100px) rotate(90deg);
    }
    50% {
        transform: translate(100px, 50px) rotate(180deg);
    }
    75% {
        transform: translate(50px, 0px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(200, 162, 125, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(200, 162, 125, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(200, 162, 125, 0.5);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Интерактивная карта */
.map-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.interactive-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-info {
    background-color: var(--dark-bg);
    border-radius: 8px;
    padding: 20px;
}

.cafe-preview {
    text-align: center;
}

.cafe-preview h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cafe-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Стили для FAQ */
.faq-container {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: var(--dark-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover::before,
.faq-item.active::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    background-color: var(--dark-bg);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(200, 162, 125, 0.1);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    padding-right: 30px;
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 20px;
    background-color: rgba(200, 162, 125, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: var(--muted-text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Стили для слайдера отзывов были удалены */

/* Стили для формы обратной связи */
.error-message {
    color: var(--danger-color);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 2px rgba(214, 64, 69, 0.2);
}

.success-message {
    background-color: var(--success-color);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    animation: fadeInUp 0.5s ease;
}

.success-message i {
    margin-right: 10px;
    font-size: 20px;
}

/* Стили для sticky навигации */
nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 30, 36, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.menu a.active {
    color: var(--primary-color);
}

.menu a.active::after {
    width: 100%;
}

/* Стили для плавающей кнопки заказа */
.floating-order-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition), opacity 0.5s ease, transform 0.5s ease;
}

.floating-order-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-order-btn.hidden {
    opacity: 0;
    transform: translateY(20px);
}

/* Дополнительные эффекты при наведении */
.hover-active {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.rotate-active {
    transform: perspective(1000px) rotateY(10deg) !important;
}

/* Стили для прогресса прокрутки */
.scroll-progress.active {
    box-shadow: 0 0 10px var(--primary-color);
}

/* Улучшенные стили для контактной формы */
.contact-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.contact-form, .contact-info {
    flex: 1;
    background: rgba(30, 30, 36, 0.7);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form::before, .contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 162, 125, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.form-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.form-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--light-text);
}

.form-group label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--light-text);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(200, 162, 125, 0.2);
    outline: none;
}

.form-group input.error, .form-group select.error, .form-group textarea.error {
    border-color: var(--error-color);
    box-shadow: 0 0 0 2px rgba(255, 76, 76, 0.2);
}

.error-message {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

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

.form-status {
    width: 100%;
    margin-top: 15px;
}

.success-message {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.success-message i {
    margin-right: 10px;
    font-size: 18px;
}

.error-message {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.error-message i {
    margin-right: 10px;
    font-size: 18px;
}

.form-privacy {
    display: flex;
    align-items: center;
}

.form-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: var(--primary-color);
}

.form-privacy label {
    font-size: 14px;
    color: var(--muted-text);
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

.success-message {
    background-color: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.success-message i {
    margin-right: 10px;
    font-size: 20px;
}

/* Стили для контактной информации */
.map-container {
    position: relative;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.map-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.map-card {
    background: rgba(30, 30, 36, 0.9);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    max-width: 80%;
    backdrop-filter: blur(5px);
}

.map-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.map-card-header i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 10px;
}

.map-card-header h3 {
    margin: 0;
    font-size: 18px;
}

.map-card p {
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 14px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(200, 162, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.contact-text h3 {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
}

.contact-text p {
    margin: 0;
    color: var(--light-text);
}

.contact-text a {
    color: var(--light-text);
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.social-links-container {
    text-align: center;
}

.social-links-container h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 0;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: #fff;
}

.social-link:hover {
    transform: translateY(-5px);
}

/* Стили для раздела презентации */
#presentation {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.presentation-nav {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.presentation-nav-btn {
    background: var(--dark-bg);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.presentation-nav-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.presentation-nav-btn.active {
    background: var(--accent-color);
    box-shadow: 0 5px 15px rgba(200, 162, 125, 0.3);
}

.presentation-slides {
    position: relative;
    min-height: 500px;
    margin-top: 40px;
}

.presentation-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    padding: 20px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.presentation-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

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

.slide-text {
    flex: 1;
    min-width: 300px;
}

.slide-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

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

.slide-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-color);
}

.key-metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: var(--dark-bg);
    border-radius: var(--border-radius);
    color: #fff;
    flex: 1;
    min-width: 120px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
}

.metric-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Стили для слайда проблемы */
.problem-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

/* Удаляем лишний контейнер для иконок */

.problem-icon {
    font-size: 24px;
    color: var(--accent-color);
    padding: 10px;
    background: var(--dark-bg);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
}

.problem-item h4 {
    margin: 0 0 5px;
    font-size: 18px;
}

.problem-item p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.problem-image {
    max-width: 80%;
    animation: float 3s ease-in-out infinite;
}

/* Стили для слайда решения */
.solution-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.solution-feature:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

.solution-icon {
    font-size: 24px;
    color: var(--accent-color);
    padding: 10px;
    background: var(--dark-bg);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
}

.solution-feature h4 {
    margin: 0 0 5px;
    font-size: 18px;
}

.solution-feature p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.solution-image {
    max-width: 80%;
    animation: pulse 3s ease-in-out infinite;
}

/* Стили для слайда технологий */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-step {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 12px 15px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--dark-bg);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 18px;
    color: var(--accent-color);
}

.step-text {
    font-size: 15px;
    font-weight: 500;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: transform 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.tech-category h4 {
    margin: 0 0 15px;
    color: var(--accent-color);
    font-size: 18px;
    text-align: center;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-item {
    background: var(--dark-bg);
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--accent-color);
    transform: translateX(5px);
}

.tech-image {
    max-width: 80%;
    animation: rotate 20s linear infinite;
}

/* Стили для слайда бизнес-модели */
.business-model {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.revenue-stream h4,
.key-metrics-business h4 {
    margin: 0 0 15px;
    color: var(--accent-color);
    font-size: 18px;
}

.revenue-stream ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.revenue-stream li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.revenue-stream li:last-child {
    border-bottom: none;
}

.revenue-stream li i {
    color: var(--accent-color);
    font-size: 16px;
}

.business-metrics {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.business-metric {
    background: var(--dark-bg);
    color: #fff;
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
    flex: 1;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.business-metric:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 36, 0.8);
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.metric-name {
    font-size: 14px;
    opacity: 0.8;
}

.business-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.business-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
}

.chart-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
}

.business-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 60px;
    width: 100%;
    margin-bottom: 10px;
}

/* Удаляем старые стили для меток */

.chart-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.chart-bar {
    width: 80px;
    height: 200px;
    background: linear-gradient(to top, var(--accent-color), var(--accent-color-light));
    border-radius: 5px 5px 0 0;
    margin-bottom: 15px;
    transition: height 1s ease;
}

.chart-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 5px;
}

.chart-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
}

/* Стили для слайда дорожной карты */
.roadmap-content {
    width: 100%;
}

.roadmap {
    position: relative;
    margin-top: 40px;
    padding-left: 30px;
}

.roadmap:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(200, 162, 125, 0.3);
}

.roadmap-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 30px;
}

.roadmap-item:before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--dark-bg);
    border: 2px solid var(--accent-color);
    z-index: 1;
}

.roadmap-item.completed:before {
    background: var(--accent-color);
}

.roadmap-item.active:before {
    background: var(--accent-color-light);
    box-shadow: 0 0 15px rgba(200, 162, 125, 0.5);
    animation: pulse 2s infinite;
}

.roadmap-date {
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.roadmap-info h4 {
    margin: 0 0 10px;
    font-size: 20px;
}

.roadmap-info p {
    margin: 0;
    opacity: 0.8;
}

/* Анимации для презентации */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

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

/* Адаптивность для презентации */
@media (max-width: 768px) {
    .presentation-nav-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .slide-content {
        flex-direction: column;
    }
    
    .slide-text, .slide-visual {
        width: 100%;
    }
    
    .tech-stack {
        grid-template-columns: 1fr;
    }
    
    .business-chart {
        height: 200px;
    }
    
    .chart-bar {
        width: 40px;
    }
    
    .roadmap-item {
        padding-left: 15px;
    }
}

/* Волнистый разделитель */
.header-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.header-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* Плавающая кнопка заказа */
.floating-order-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 90;
}

.order-now-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.order-now-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background-color: var(--primary-color);
    opacity: 0.5;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Кнопка наверх */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 90;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top:hover::before {
    opacity: 1;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.back-to-top::before {
    content: "↑";
    font-size: 24px;
    font-weight: bold;
}

/* Анимация при скролле */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Улучшенный эффект наведения для кнопок */
.btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
}

/* Bean Coins Banner */
.bean-coins-banner {
    background: linear-gradient(135deg, #C8A27D 0%, #8B593E 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 15px 40px rgba(139, 89, 62, 0.2);
    position: relative;
    overflow: hidden;
}

.bean-coins-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.coins-animation {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: coinFloat 3s ease-in-out infinite;
}

.coins-animation i {
    font-size: 2.5em;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.coins-content {
    color: white;
    flex: 1;
}

.coins-content h3 {
    font-size: 1.8em;
    margin: 0 0 10px 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.coins-content p {
    margin: 0;
    font-size: 1.1em;
    opacity: 0.95;
    line-height: 1.6;
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(120deg); }
    66% { transform: translateY(4px) rotate(240deg); }
}

@media (max-width: 768px) {
    .bean-coins-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .coins-content h3 {
        font-size: 1.5em;
    }
    
    .coins-content p {
        font-size: 1em;
    }
}

/* Остальные стили без изменений */
:root {
    --primary-color: #C8A27D;
    --secondary-color: #8B593E;
    --accent-color: #E8A87C;
    --dark-bg: #1E1E24;
    --darker-bg: #121218;
    --light-bg: #2A2A32;
    --light-text: #F5F5F5;
    --muted-text: #AAAAAA;
    --danger-color: #D64045;
    --success-color: #5FAD56;
    --container-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-repeat: repeat;
    background-blend-mode: overlay;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 100px 0;
}

.section-padding.dark-section {
    background: #1a1a1a;
    color: white;
}

/* Pricing Section Title Fix */
#pricing .section-title {
    color: #ffffff !important;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: none;
}

#pricing .section-subtitle {
    color: #6c757d !important;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin: 0 auto 60px; /* центрирование */
    text-align: center;
    color: var(--light-text);
    position: relative;
    display: block; /* был inline-block, из-за этого не центрировался в некоторых секциях */
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.dark-section {
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    opacity: 0.03;
    pointer-events: none;
}

/* Header & Navigation */
header {
    background-color: var(--dark-bg);
    background-image: linear-gradient(135deg, rgba(30, 30, 36, 0.95) 0%, rgba(18, 18, 24, 0.97) 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    background-color: var(--dark-bg);
    background-image: linear-gradient(135deg, rgba(30, 30, 36, 0.95) 0%, rgba(18, 18, 24, 0.97) 100%);
    padding: 120px 0 80px 0; /* Отступ сверху для закрепленного header */
    position: relative;
    overflow: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    transition: var(--transition);
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.logo::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    left: -35px;
    top: 50%;
    transform: translateY(-50%) rotate(30deg);
    opacity: 0.8;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    color: var(--light-text);
}

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

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Стили кнопки мобильного меню (видна только на мобильных) */
.mobile-menu-button {
    display: none; /* СКРЫВАЕМ КНОПКУ НА ДЕСКТОПЕ */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    width: 35px;
    height: 35px;
    padding: 5px;
    z-index: 1002;
    margin-left: auto;
}

.mobile-menu-button span {
    width: 25px;
    height: 3px;
    background-color: #C8A27D; /* Яркий цвет для видимости */
    display: block;
    transition: all 0.3s ease;
    border-radius: 2px;
    margin: 3px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* Тень для видимости */
}

.mobile-menu-button:hover span {
    background-color: var(--primary-color);
}

.mobile-menu-button.active {
    z-index: 1003; /* Еще выше когда активна */
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--primary-color);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--primary-color);
}

/* Анимация для появления пунктов меню */
@keyframes slideInMenu {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Overlay для мобильного меню */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--darker-bg);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0 140px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.hero-content {
    flex: 0 0 50%;
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 162, 125, 0.2);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(200, 162, 125, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.hero-features {
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgba(200, 162, 125, 0.2);
}

.hero-feature i {
    color: var(--primary-color);
    font-size: 16px;
}

.hero h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(to right, var(--light-text), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: var(--primary-color);
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--muted-text);
}

.app-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.app-btn {
    display: inline-block;
    transition: transform 0.3s ease;
    max-width: 140px;
    width: 140px;
    height: 42px;
}

.app-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-btn:hover {
    transform: scale(1.05);
}

.hero-image {
    flex: 0 0 35%;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img.main-image {
    max-width: 70%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-image img.main-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, rgba(200, 162, 125, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(30px);
    animation: pulse 3s infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-element.coffee-icon {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.floating-element.star-icon {
    bottom: 25%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element.location-icon {
    top: 60%;
    left: 15%;
    animation-delay: 1.5s;
}

/* How It Works Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--muted-text);
    font-size: 1.2rem;
    margin-top: 15px;
    font-weight: 400;
    text-align: center;           /* центрируем текст */
    display: block;               /* гарантируем блочное поведение */
    max-width: 800px;             /* аккуратная ширина строки */
    margin-left: auto;            /* центрируем блок */
    margin-right: auto;           /* центрируем блок */
}

/* Utility: принудительное центрирование где нужно */
.text-center {
    text-align: center !important;
}

.features-container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: linear-gradient(145deg, var(--dark-bg), #1a1a24);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-number {
    color: rgba(255, 255, 255, 0.05);
    transform: scale(1.1);
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(200, 162, 125, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

/* Ensure Font Awesome icons are properly sized and centered */
.feature-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.6em; /* Slightly larger icon size */
    line-height: 1;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(200, 162, 125, 0.3);
}

/* Ensure consistent icon alignment across all cards */
.feature-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.feature-card p {
    color: var(--muted-text);
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    overflow: hidden;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-wave {
    opacity: 0.5;
}

.feature-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.features-cta {
    text-align: center;
    margin-top: 60px;
}

.features-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    box-shadow: 0 10px 25px rgba(200, 162, 125, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.features-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(200, 162, 125, 0.4);
}

.features-cta .btn:active {
    transform: translateY(0);
}

.features-cta p {
    margin-top: 15px;
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

.feature:hover::before {
    transform: translateY(0);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg), var(--light-bg));
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3), inset 0 2px 5px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(200, 162, 125, 0.2) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover .feature-icon::after {
    opacity: 1;
}

.feature-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature p {
    color: var(--muted-text);
}

/* Split Section */
.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 0 0 35%;
}

.split-image img {
    max-width: 70%;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    display: block;
}

.split-content {
    flex: 0 0 50%;
}

.split-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit p {
    color: var(--muted-text);
}

.cafe-join {
    margin-top: 40px;
}

/* App Features Section */
.app-features {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.app-mockup {
    flex: 0 0 35%;
}

.app-mockup img {
    max-width: 70%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    display: block;
}

.app-features-list {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.app-feature h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.app-feature p {
    color: var(--muted-text);
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial {
    background-color: var(--dark-bg);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
}

.testimonial-text {
    margin-bottom: 30px;
}

.testimonial-text p {
    font-style: italic;
    color: var(--muted-text);
    font-size: 16px;
    line-height: 1.7;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--muted-text);
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat {
    background: rgba(30, 30, 36, 0.5);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(200, 162, 125, 0.1) 0%, transparent 70%);
    top: -25%;
    left: -25%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat:hover::before {
    opacity: 1;
}

.stat h2 {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.stat h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.stat p {
    color: var(--muted-text);
    font-size: 18px;
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.contact-form {
    flex: 0 0 55%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(30, 30, 36, 0.5);
    color: var(--light-text);
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(200, 162, 125, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    flex: 0 0 35%;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--dark-bg);
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 0;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link img {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: filter 0.3s ease;
}

.social-link:hover img {
    filter: brightness(0) invert(1);
}

.social-link:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
}

.social-link img {
    width: 24px;
    height: 24px;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo {
    flex: 0 0 30%;
}

.footer-logo p {
    margin-top: 20px;
    color: var(--muted-text);
}

.footer-links {
    flex: 0 0 65%;
    display: flex;
    justify-content: space-between;
}

.footer-links-group h4 {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 20px;
}

.footer-links-group ul li {
    margin-bottom: 12px;
}

.footer-links-group ul li a {
    color: var(--muted-text);
}

.footer-links-group ul li a:hover {
    color: var(--primary-color);
}

/* Стили для блока с Bean-Coins */
.bean-coins-promo {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.2));
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #C8A27D;
    position: relative;
    overflow: hidden;
}

.bean-coins-promo:before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.coins-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ff9900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.coins-icon i {
    font-size: 24px;
    color: white;
}

.coins-text {
    position: relative;
    z-index: 1;
}

.coins-text h4 {
    color: #ffd700;
    font-size: 18px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.coins-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Стили для блока с бесплатным первым месяцем */
.free-month-promo {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.2));
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.free-month-promo:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    position: relative;
    z-index: 1;
}

.promo-badge i {
    font-size: 18px;
    color: white;
    margin-right: 8px;
}

.promo-badge span {
    color: white;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.free-month-promo p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Стили для раздела "Команда и вакансии" */
.team-content {
    max-width: 1000px;
    margin: 0 auto;
}

.team-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.team-intro {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.team-message {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.vacancies {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vacancy-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vacancy-category h4 {
    font-size: 20px;
    margin: 0 0 20px 0;
    color: white;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.vacancy-category h4:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 3px;
}

.vacancy-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vacancy-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.vacancy-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-left-color: var(--primary-color);
}

.ps {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(200, 162, 125, 0.8);
    font-style: italic;
    margin-top: 1.5rem;
    padding: 0.8rem;
    background: rgba(200, 162, 125, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.ps:hover {
    background: rgba(200, 162, 125, 0.15);
    transform: translateY(-2px);
}

.vacancy-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.vacancy-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.vacancy-details h5 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.vacancy-details p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.join-team {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.2));
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.join-team p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.join-team .btn {
    padding: 12px 25px;
    font-size: 16px;
}

@media (max-width: 992px) {
    .vacancy-items {
        grid-template-columns: 1fr;
    }
}

/* Стили для раздела "Преимущества сотрудничества" */
.partnership-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.partnership-offer,
.partnership-results {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.offer-header,
.results-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.offer-icon,
.results-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.offer-icon {
    background: linear-gradient(135deg, #3498db, #1abc9c);
}

.results-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.offer-icon i,
.results-icon i {
    font-size: 22px;
    color: white;
}

.offer-header h4,
.results-header h4 {
    font-size: 20px;
    margin: 0;
    color: white;
    font-weight: 600;
}

.offer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.offer-feature {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.offer-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(26, 188, 156, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-content h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.feature-content p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.results-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-metric {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.result-metric:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.metric-circle {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    flex-shrink: 0;
}

.circular-chart {
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.circle {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

.partnership-results .result-metric:nth-child(1) .circle {
    stroke: #3498db;
}

.partnership-results .result-metric:nth-child(2) .circle {
    stroke: var(--primary-color);
}

.partnership-results .result-metric:nth-child(3) .circle {
    stroke: #e74c3c;
}

.percentage {
    fill: white;
    font-size: 0.5em;
    text-anchor: middle;
    font-weight: bold;
}

.metric-info h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.metric-info p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

@media (max-width: 992px) {
    .partnership-container {
        flex-direction: column;
    }
    
    .offer-features {
        grid-template-columns: 1fr;
    }
}

/* Стили для раздела "Как работает BeanScout" */
.workflow-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.workflow-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.workflow-divider {
    width: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    margin: 0 15px;
}

.workflow-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.workflow-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.client-icon {
    background: linear-gradient(135deg, #3498db, #1abc9c);
}

.cafe-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.workflow-icon i {
    font-size: 22px;
    color: white;
}

.workflow-header h4 {
    font-size: 20px;
    margin: 0;
    color: white;
    font-weight: 600;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.workflow-step {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid rgba(255, 255, 255, 0.1);
}

.workflow-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.workflow-column:first-child .workflow-step:hover {
    border-left-color: #3498db;
}

.workflow-column:last-child .workflow-step:hover {
    border-left-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #333;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.workflow-column:first-child .step-number {
    background: linear-gradient(135deg, #3498db, #1abc9c);
}

.workflow-column:last-child .step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.step-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.step-icon i {
    font-size: 18px;
    color: white;
}

.step-content h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.step-content p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .workflow-container {
        flex-direction: column;
    }
    
    .workflow-divider {
        height: 1px;
        width: 100%;
        margin: 30px 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    }
}

/* Стили для раздела Преимущества для клиентов */
.slide-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.slide-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.3);
}

.benefit-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.client-quote {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    margin-top: 40px;
    border-left: 4px solid var(--primary-color);
}

.client-quote i {
    color: var(--primary-color);
    font-size: 24px;
    opacity: 0.5;
    margin-bottom: 10px;
    display: block;
}

.client-quote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.quote-author span {
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
}

/* Анимации */
.fade-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Дубликат удален - используется единое определение в начале файла + media queries */

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Success Button */
.btn.success {
    background-color: var(--success-color);
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .container {
        max-width: 900px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .testimonials,
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    /* Header Navigation */
    nav {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo::before {
        display: none;
    }
    
    .download-btn {
        display: none;
    }
    
    /* Hero Section */
    header {
        padding: 20px 0;
        min-height: auto;
    }
    
    .hero {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 20px 0;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
    }
    
    .hero-feature {
        justify-content: center;
        font-size: 14px;
    }
    
    .countdown-timer {
        margin: 25px 0;
    }
    
    .countdown-label {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .countdown-container {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px 8px;
    }
    
    .countdown-item span:first-child {
        font-size: 20px;
    }
    
    .countdown-text {
        font-size: 11px;
    }
    
    .hero-image-container {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .main-image {
        width: 100%;
        height: auto;
    }
    
    .floating-elements {
        display: none;
    }
    
    .coffee-beans {
        display: none;
    }
    
    .hero,
    .split-section,
    .app-features,
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content,
    .split-image,
    .split-content,
    .app-mockup,
    .app-features-list,
    .contact-form,
    .contact-info {
        flex: 0 0 100%;
    }
    
    .split-section.reverse {
        flex-direction: column;
    }
    
    .features {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo,
    .footer-links {
        flex: 0 0 100%;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-links-group {
        flex: 0 0 45%;
    }
    
    .mobile-menu-button {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        width: 30px;
        height: 30px;
        cursor: pointer;
        position: relative;
        z-index: 1002;
        background: none;
        border: none;
        padding: 5px;
        margin-left: auto;
    }
    
    .mobile-menu-button span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #C8A27D; /* Яркий цвет для видимости */
        margin: 3px 0;
        transition: all 0.3s ease;
        transform-origin: center;
        border-radius: 2px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-menu-button:hover span {
        background-color: var(--primary-color);
    }
    
    .mobile-menu-button.active span {
        background-color: var(--primary-color);
    }
    
    .mobile-menu-button.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-button.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    #main-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(30, 30, 36, 0.98) 0%, rgba(18, 18, 24, 0.99) 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1001;
        backdrop-filter: blur(10px);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        list-style: none;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    #main-menu.active {
        right: 0 !important;
    }
    
    #main-menu li {
        margin: 0;
        width: 100%;
    }
    
    #main-menu a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px 30px;
        color: var(--light-text);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
        margin: 2px 15px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
    }
    
    #main-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(200, 162, 125, 0.15) 0%, rgba(200, 162, 125, 0.08) 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: -1;
    }
    
    #main-menu a:hover::before,
    #main-menu a:active::before {
        transform: scaleX(1);
    }
    
    #main-menu a:hover,
    #main-menu a:active {
        color: var(--primary-color);
        background: rgba(200, 162, 125, 0.12);
        transform: translateX(8px);
        box-shadow: 0 4px 20px rgba(200, 162, 125, 0.15);
    }
    
    #main-menu a.active {
        background: rgba(200, 162, 125, 0.15);
        color: var(--primary-color);
    }
    
    #main-menu a i {
        margin-right: 15px;
        font-size: 18px;
        width: 20px;
        text-align: center;
    }
    
    /* Download buttons in mobile menu */
    .download-btn {
        display: none;
    }
    
    #main-menu .download-btn {
        display: block;
        padding: 20px 30px;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        margin-top: 20px;
    }
    
    #main-menu .download-btn .btn {
        width: 100%;
        margin-bottom: 10px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    #main-menu .download-btn .btn:last-child {
        margin-bottom: 0;
        margin-left: 0 !important;
    }
    
    /* Убеждаемся, что кнопка меню остается видимой поверх открытого меню */
    .mobile-menu-button.active {
        z-index: 1003;
    }
    
    .menu li {
        margin: 8px 0;
        opacity: 0;
        transform: translateX(30px);
        animation: slideInMenu 0.3s ease forwards;
    }
    
    .menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .menu.active li:nth-child(2) { animation-delay: 0.15s; }
    .menu.active li:nth-child(3) { animation-delay: 0.2s; }
    .menu.active li:nth-child(4) { animation-delay: 0.25s; }
    .menu.active li:nth-child(5) { animation-delay: 0.3s; }
    .menu.active li:nth-child(6) { animation-delay: 0.35s; }
    
    .menu a {
        font-size: 18px;
        font-weight: 500;
        padding: 16px 24px;
        margin: 4px 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(200, 162, 125, 0.15);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 200px;
        justify-content: flex-start;
        color: var(--light-text);
        text-decoration: none;
    }
    
    .menu a:hover {
        background: rgba(200, 162, 125, 0.15);
        border-color: rgba(200, 162, 125, 0.3);
        color: var(--primary-color);
        transform: translateX(5px);
    }
    
    .menu a i {
        font-size: 16px;
        width: 20px;
        text-align: center;
        color: var(--primary-color);
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .hero h1 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .hero-features {
        gap: 10px;
    }
    
    .hero-feature {
        font-size: 13px;
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 8px 6px;
    }
    
    .countdown-item span:first-child {
        font-size: 18px;
    }
    
    .countdown-text {
        font-size: 10px;
    }
    
    .hero-image-container {
        max-width: 240px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        flex: 0 0 100%;
    }
    
    /* Компактный footer для мобильных устройств */
    footer {
        padding: 30px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-logo {
        order: 2;
        margin-top: 20px;
    }
    
    .footer-logo .logo {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .footer-logo p {
        font-size: 12px;
        opacity: 0.7;
        margin: 0;
    }
    
    .footer-links {
        order: 1;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links-group {
        flex: 1;
        margin: 0;
    }
    
    .footer-links-group h4 {
        font-size: 14px;
        margin-bottom: 10px;
        color: var(--primary-color);
        font-weight: 600;
    }
    
    .footer-links-group ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 15px;
        margin: 0;
        padding: 0;
    }
    
    .footer-links-group li {
        list-style: none;
    }
    
    .footer-links-group a {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        padding: 4px 8px;
        border-radius: 6px;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .footer-links-group a:hover {
        color: var(--primary-color);
        background: rgba(200, 162, 125, 0.1);
    }
}

/* ========================================
   BUSINESS PAGE STYLES
   ======================================== */

/* Business Hero */
.business-hero {
    position: relative;
    background: linear-gradient(135deg, #a75f4979 0%, #ecb24656 50%, #8d6e6369 100%);
    padding: 120px 0 80px;
}

.business-hero .hero-content {
    max-width: 900px;
    text-align: center;
}

.business-hero .hero-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.business-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Business Benefits */
.benefit-icon.business-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B6F47 100%);
}

/* Pricing Section */
#pricing {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.05);
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #e9ecef;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    background: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(200, 162, 125, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 80px rgba(200, 162, 125, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.pricing-badge.free-trial {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.pricing-badge.popular {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8B6F47 100%);
}

.pricing-badge.custom {
    background: linear-gradient(135deg, #FF6B6B 0%, #C44569 100%);
}

.pricing-card h3 {
    font-size: 28px;
    margin: 20px 0 15px;
    color: #2c3e50;
    font-weight: 700;
}

.price {
    margin: 20px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.price .currency {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
}

.price .amount {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.price .commission {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

.price .period {
    font-size: 16px;
    color: #6c757d;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #495057;
    font-size: 16px;
    font-weight: 500;
}

.pricing-features li i {
    color: #4CAF50;
    font-size: 18px;
}

.pricing-note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 20px;
    font-style: italic;
    font-weight: 500;
}

/* Calculator */
.calculator-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.input-group label i {
    color: var(--primary-color);
}

.input-group input[type="number"] {
    width: 100%;
    padding: 15px 50px 15px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.input-group input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.input-unit {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.range-container {
    position: relative;
}

.range-container input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.range-container input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.range-container input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.range-value {
    position: absolute;
    right: 0;
    top: -35px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.result-card.highlight {
    background: linear-gradient(135deg, rgba(200, 162, 125, 0.3) 0%, rgba(139, 111, 71, 0.3) 100%);
    border-color: var(--primary-color);
}

.result-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.result-content h4 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 8px 0;
    font-weight: 500;
}

.result-value {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.result-value.primary {
    color: var(--primary-color);
    font-size: 32px;
}

.result-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0 0 0;
}

.calculator-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-cta p {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Workflow Horizontal */
.workflow-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.workflow-horizontal .workflow-step {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.workflow-horizontal .workflow-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.workflow-horizontal .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.workflow-horizontal .step-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.workflow-horizontal h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.workflow-horizontal p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.workflow-arrow {
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.6;
}

/* Benefits Grid (адаптація) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Business Link in Header */
.business-link,
.client-link {
    background: rgba(200, 162, 125, 0.15);
    padding: 10px 18px !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 25px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Navigation Layout Fix */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

header nav {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

header nav ul.menu {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

/* Force mobile layout: hide desktop menu and show hamburger */
@media screen and (max-width: 768px) {
    header nav ul.menu {
        display: none !important;
    }
    
    /* Мобильное меню должно быть всегда видимым */
    #main-menu {
        display: flex !important;
    }
    .mobile-menu-button {
        display: flex !important;
    }
}

header nav ul.menu li {
    margin: 0;
}

header nav ul.menu li a {
    padding: 12px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    white-space: nowrap;
}

header nav ul.menu li a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Header Download Button */
.download-btn {
    flex-shrink: 0;
    margin-left: auto;
}

.download-btn .btn {
    white-space: nowrap;
    padding: 12px 24px;
    margin-left: 15px;
}

.business-link:hover,
.client-link:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
}

/* Mobile Responsive - Business Page */
@media (max-width: 768px) {
    .business-hero {
        padding: 80px 0 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .calculator-container {
        padding: 25px 20px;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .result-card {
        flex-direction: column;
        text-align: center;
    }
    
    .workflow-horizontal {
        flex-direction: column;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }
    
    .workflow-horizontal .workflow-step {
        flex: 1;
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Showcase Sections */
.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-row.fade-element {
    opacity: 0;
    transform: translateY(30px);
}

.feature-row.fade-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    max-width: 300px;
    margin: 0 auto;
}

.feature-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

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

.feature-description {
    padding: 20px;
}

.feature-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.feature-badge i {
    font-size: 28px;
    color: white;
}

.feature-description h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.dark-section .feature-description h3 {
    color: white;
}

.feature-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #888;
    margin-bottom: 25px;
}

.dark-section .feature-description p {
    color: #aaa;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 12px 0;
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-section .feature-list li {
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

/* Responsive Design for Features */
@media (max-width: 1024px) {
    .feature-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .features-showcase {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .features-showcase {
        gap: 50px;
        margin-top: 40px;
    }
    
    .feature-description h3 {
        font-size: 24px;
    }
    
    .feature-description p {
        font-size: 15px;
    }
    
    .feature-badge {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    
    .feature-badge i {
        font-size: 24px;
    }
    
    .feature-image {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }
} 