:root {
    --hero-overlay-light: rgba(0, 0, 0, 0.4);
    --hero-overlay-dark: rgba(0, 0, 0, 0.6);
}

[data-bs-theme="dark"] {
    --hero-overlay: var(--hero-overlay-dark);
    --navbar-bg: #2c3034;
    --footer-bg: #2c3034;
    --footer-text: #e9ecef;
    --text-primary: #e9ecef;
    --text-secondary: #adb5bd;
    --bg-primary: #2c3034;
    --bg-secondary: #343a40;
}

[data-bs-theme="light"] {
    --hero-overlay: var(--hero-overlay-light);
    --navbar-bg: #f0f2f5;
    --footer-bg: #f0f2f5;
    --footer-text: #495057;
    --text-primary: #495057;
    --text-secondary: #6c757d;
    --bg-primary: #f0f2f5;
    --bg-secondary: #e9ecef;
}

.theme-switch {
    position: fixed;
    top: 70px;
    right: 1rem;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 0.5rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.theme-switch:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.theme-switch svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.navbar {
    background-color: var(--navbar-bg) !important;
    transition: background-color 0.3s ease;
}

.navbar-dark {
    background-color: var(--navbar-bg) !important;
}

.navbar-light {
    background-color: var(--navbar-bg) !important;
}

.navbar-brand, .nav-link {
    color: var(--text-primary) !important;
}

.nav-link:hover {
    color: var(--text-secondary) !important;
}

footer {
    background-color: var(--footer-bg) !important;
    color: var(--footer-text) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

footer h5 {
    color: var(--text-primary);
}

footer p {
    color: var(--text-secondary);
}

.btn-primary {
    background-color: var(--bg-secondary);
    border-color: var(--bg-secondary);
    color: var(--text-primary);
}

.btn-primary:hover {
    background-color: var(--text-secondary);
    border-color: var(--text-secondary);
    color: var(--bg-primary);
}

.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        padding: 2rem 0;
    }
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    .hero-description {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }
    .hero-button {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
    .hero-content {
        padding: 1rem !important;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
    .nav-link {
        font-size: 1rem;
    }
    .theme-switch {
        top: 60px;
        right: 0.5rem;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 2rem;
    max-width: 90%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

.btn-link.hero-button {
    color: white !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn-link.hero-button:hover {
    opacity: 0.8;
}

body {
    padding-top: 0;
}

.hero-content p {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-content h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Стили для модальных окон */
.modal-fullscreen {
    padding: 0 !important;
}

.modal-fullscreen .modal-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.modal-fullscreen .modal-header {
    border-bottom: 1px solid var(--bg-secondary);
    padding: 1.5rem;
}

.modal-fullscreen .modal-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 120px);
}

.modal-fullscreen .modal-footer {
    border-top: 1px solid var(--bg-secondary);
    padding: 1.5rem;
}

/* Обновленные стили для форм */
.modal-body form {
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .modal-body form {
        max-width: 50%; /* 6 колонок из 12 */
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .modal-body form {
        max-width: 66.666667%; /* 8 колонок из 12 */
    }
}

.form-control {
    background-color: var(--bg-secondary);
    border: 1px solid var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-check-input {
    background-color: var(--bg-secondary);
    border-color: var(--text-secondary);
}

.form-check-input:checked {
    background-color: var(--text-secondary);
    border-color: var(--text-secondary);
}

.form-check-label {
    color: var(--text-primary);
}

.btn-submit {
    background-color: var(--bg-secondary);
    border-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-submit:not(:disabled):hover {
    background-color: var(--text-secondary);
    border-color: var(--text-secondary);
    color: var(--bg-primary);
}

.contact-info {
    text-align: center;
    padding: 2rem 0;
}

.contact-info a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

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

.close-modal {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-secondary);
}

/* Обновленные стили для модального окна */
.modal-header {
    border-bottom: 1px solid var(--bg-secondary);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    position: relative;
    width: 100%;
}

@media (min-width: 992px) {
    .modal-header {
        max-width: 50%; /* 6 колонок из 12 */
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .modal-header {
        max-width: 66.666667%; /* 8 колонок из 12 */
        margin-left: auto;
        margin-right: auto;
    }
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.close-modal {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Стили для кнопки телефона в навбаре */
.navbar .btn-outline-primary {
    border-color: var(--text-primary);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar .btn-outline-primary:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 1rem;
    }
}

/* Стили для секции с формой обратной связи */
.feedback-section {
    background-color: #FF6B35;
    color: white;
}

.feedback-section h3 {
    font-size: 1.75rem;
    font-weight: 500;
}

.feedback-section .form-group {
    display: flex;
    height: 48px;
}

.feedback-section .form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.75rem 1rem;
    height: 100%;
    color: #2C2C2C !important;
}

.feedback-section .form-control::placeholder {
    color: #666;
}

.feedback-section .btn-dark {
    background-color: #2C2C2C;
    border: none;
    padding: 0.75rem 1rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feedback-section .btn-dark:hover:not(:disabled) {
    background-color: #1a1a1a;
}

.feedback-section .btn-dark:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.feedback-section .form-check-label {
    color: white;
}

.feedback-section .form-check-input {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: transparent;
}

.feedback-section .form-check-input:checked {
    background-color: #2C2C2C;
    border-color: #2C2C2C;
}

.feedback-section .form-check-label a {
    color: #fff;
    text-decoration: underline;
}

.feedback-section .form-check-label a:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767px) {
    .feedback-section .form-group {
        margin-bottom: 1rem;
    }
}

/* Стили для секции FAQ */
.accordion-button:not(.collapsed) {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--bg-secondary);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23adb5bd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23adb5bd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item {
    border: 1px solid var(--bg-secondary);
    margin-bottom: 1rem;
}

.accordion-body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

#faqForm textarea.form-control {
    resize: none;
    min-height: 120px;
}

#faqForm .form-control {
    background-color: var(--bg-secondary);
    border: 1px solid var(--bg-secondary);
    color: var(--text-primary);
}

#faqForm .form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

#faqForm .form-check-input {
    background-color: var(--bg-secondary);
    border-color: var(--text-secondary);
}

#faqForm .form-check-input:checked {
    background-color: var(--text-secondary);
    border-color: var(--text-secondary);
}

#faqForm .form-check-label {
    color: var(--text-primary);
}

#faqForm .btn-primary {
    background-color: var(--bg-secondary);
    border-color: var(--bg-secondary);
    color: var(--text-primary);
}

#faqForm .btn-primary:hover:not(:disabled) {
    background-color: var(--text-secondary);
    border-color: var(--text-secondary);
    color: var(--bg-primary);
}

#faqForm .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Стили для секции проектов */
.projects-section {
    background-color: var(--bg-light);
}

.projects-section .card {
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.projects-section .card-img-top {
    height: 200px;
    object-fit: cover;
}

.projects-section .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.projects-section .card-body {
    padding: 1.25rem;
    font-size: 0.95rem;
}

.projects-section .card-body ul li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0;
    position: relative;
}

.projects-section .card-body ul li strong {
    color: var(--text-primary);
    margin-right: 0;
    flex-shrink: 0;
}

.projects-section .card-body ul li strong::after {
    content: '';
    position: absolute;
    bottom: 0.2em;
    left: 100%;
    right: 100px;
    border-bottom: 1px dotted var(--text-secondary);
    margin: 0 0.5rem;
}

.projects-section .card-body ul li span {
    color: var(--text-primary);
    text-align: right;
    flex-shrink: 0;
}

.projects-section .card-footer {
    background-color: transparent;
    border-top: 1px solid var(--bg-secondary);
    padding: 1rem 1.25rem;
}

.projects-section .card-footer p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: right;
}

.projects-section .card-footer .price {
    font-family: 'Roboto Mono', monospace;
    letter-spacing: -0.5px;
}

/* Адаптивность для карточек */
@media (max-width: 991.98px) {
    .projects-section .card-img-top {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .projects-section .card-img-top {
        height: 160px;
    }
    
    .projects-section .card-body {
        padding: 1.25rem;
    }
    
    .projects-section .card-footer {
        padding: 0.75rem 1.25rem;
    }
}

.projects-section .list-group-item {
    background-color: transparent;
    border-color: var(--bg-secondary);
    padding: 0.5rem 0;
}

.projects-section .list-group-item span:first-child {
    color: var(--text-secondary);
}

.projects-section .list-group-item span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

.project-card .list-group {
    background: transparent;
    border: none;
}

.project-card .list-group-item {
    background: transparent;
    border: none;
    padding: 0.5rem 0;
    color: var(--bs-body-color);
}

.project-card .list-group-item span:first-child {
    font-weight: 500;
}

.project-card .list-group-item span:last-child {
    color: var(--bs-secondary);
} 
        .price {
            font-family: 'Roboto Mono', monospace;
            font-size: 1.1rem;
            letter-spacing: -0.5px;
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
            font-weight: 500;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 1px;
        }
        .price .fa {
            font-size: 0.9em;
            vertical-align: -0.1em;
        }
        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
        }
        .card-footer p {
            font-size: 1rem;
            margin: 0;
            padding: 0;
        }
        .card-footer .btn-details {
            font-size: 0.9rem;
            padding: 0.375rem 0.75rem;
            color: var(--bs-primary);
            text-decoration: none;
            transition: color 0.2s;
        }
        .card-footer .btn-details:hover {
            color: var(--bs-primary-dark);
        }
        .card {
            position: relative;
        }
        .card-badges {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            z-index: 1;
        }
        .card-badge {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 500;
            color: white;
        }
        .badge-sale {
            background-color: #dc3545;
        }
        .badge-hit {
            background-color: #198754;
        }
        .badge-promo {
            background-color: #fd7e14;
        }
        .card-body {
            margin-bottom: 0;
        }
        .stats-section {
            background-color: rgba(var(--bs-primary-rgb), 0.1);
            color: var(--bs-primary);
        }
        .stat-item {
            padding: 2rem 1rem;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Roboto Mono', monospace;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        /* Стили для секции технологий */
        .tech-card {
            background: var(--bs-card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--bs-border-color);
        }
        [data-bs-theme="dark"] .tech-card {
            background: rgba(255, 255, 255, 0.05);
        }
        [data-bs-theme="dark"] .card {
            background: rgba(255, 255, 255, 0.05);
        }
        .tech-card:hover {
            transform: translateY(-5px);
        }
        .tech-image {
            position: relative;
            padding-top: 75%; /* Соотношение сторон 4:3 */
            overflow: hidden;
        }
        .tech-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .tech-body {
            padding: 1rem;
            text-align: center;
        }
        .tech-body h5 {
            margin: 0;
            font-size: 1rem;
            font-weight: 500;
            color: var(--bs-body-color);
        }
        .tech-footer {
            padding: 1rem;
            text-align: center;
            color: var(--bs-body-color);
            border-top: 1px solid var(--bs-border-color);
        }
        .tech-price {
            font-family: 'Roboto Mono', monospace;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--bs-primary);
        }
        .tech-badge {
            display: inline-block;
            background: var(--bs-primary);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 500;
            font-size: 0.9rem;
        }
        /* Стили для карточки проекта */
        .project-card {
            background: linear-gradient(135deg, #7fc321 0%, #6ba31c 100%);
            border: 1px solid var(--bs-border-color);
            transition: transform 0.3s ease;
        }
        [data-bs-theme="dark"] .project-card {
            background: linear-gradient(135deg, #7fc321 0%, #6ba31c 100%);
        }
        .project-card:hover {
            transform: translateY(-5px);
        }
        .project-card .card-body {
            padding: 2rem;
        }
        .project-card .card-title {
            font-size: 1.5rem;
            margin: 0;
            color: #ffffff;
        }
        @media (min-width: 992px) {
            .project-card .card-body {
                padding: 3rem;
            }
            .project-card .card-title {
                font-size: 2rem;
            }
        }
        [data-bs-theme="dark"] .project-card .card-title {
            color: #212529;
        }
        .project-card p {
            color: #ffffff;
            margin: 0;
        }
        [data-bs-theme="dark"] .project-card p {
            color: #212529;
        }
        .project-card .btn-primary {
            background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
            border: none;
            padding: 0.8rem 1.5rem;
            font-size: 1.1rem;
            font-weight: 500;
            color: #ffffff;
            transition: all 0.3s ease;
            background-size: 200% 200%;
            animation: gradientFlow 2s ease infinite;
        }
        @keyframes gradientFlow {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        .project-card .btn-primary:hover {
            background: linear-gradient(135deg, #ff4500 0%, #ff0000 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
            animation: none;
        }
        .project-card .btn-primary i {
            margin-left: 0.5rem;
        }
        .hero-button {
            padding: 0.8rem 1.5rem;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .hero-button.btn-primary {
            background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
            border: none;
            color: #ffffff;
            background-size: 200% 200%;
            animation: gradientFlow 2s ease infinite;
        }
        @keyframes gradientFlow {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        .hero-button.btn-primary:hover {
            background: linear-gradient(135deg, #ff4500 0%, #ff0000 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
            animation: none;
        }
        .hero-button.btn-link {
            color: #ffffff;
            text-decoration: none;
        }
        .hero-button.btn-link:hover {
            color: #ffffff;
            opacity: 0.9;
        }
        .theme-switch {
            right: 2rem;
            top: 6rem;
        }
        .mobile-phone-button {
            display: none;
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
            background-size: 200% 200%;
            animation: gradientFlow 2s ease infinite;
            text-decoration: none;
        }
        .mobile-phone-button:hover {
            background: linear-gradient(135deg, #ff4500 0%, #ff0000 100%);
            transform: translateX(-50%) translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 69, 0, 0.4);
            animation: none;
        }
        @media (max-width: 991.98px) {
            .mobile-phone-button {
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }
                .price {
            font-family: 'Roboto Mono', monospace;
            font-size: 0.9rem;
            letter-spacing: -0.5px;
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
            font-weight: 500;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 1px;
        }
        .price .fa {
            font-size: 0.85em;
            vertical-align: -0.1em;
        }
        .card-footer p {
            font-size: 0.9rem;
            margin: 0;
            padding: 0;
        }
        .hero-button {
            padding: 0.8rem 1.5rem;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .hero-button.btn-primary {
            background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
            border: none;
            color: #ffffff;
            background-size: 200% 200%;
            animation: gradientFlow 2s ease infinite;
        }
        @keyframes gradientFlow {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        .hero-button.btn-primary:hover {
            background: linear-gradient(135deg, #ff4500 0%, #ff0000 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
            animation: none;
        }
        .hero-button.btn-link {
            color: #ffffff;
            text-decoration: none;
        }
        .hero-button.btn-link:hover {
            color: #ffffff;
            opacity: 0.9;
        }
        .theme-switch {
            right: 2rem;
            top: 6rem;
        }
        .mobile-phone-button {
            display: none;
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
            background-size: 200% 200%;
            animation: gradientFlow 2s ease infinite;
            text-decoration: none;
        }
        .mobile-phone-button:hover {
            background: linear-gradient(135deg, #ff4500 0%, #ff0000 100%);
            transform: translateX(-50%) translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 69, 0, 0.4);
            animation: none;
        }
        @media (max-width: 991.98px) {
            .mobile-phone-button {
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }
               .price {
            font-family: 'Roboto Mono', monospace;
            font-size: 1.1rem;
            letter-spacing: -0.5px;
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
            font-weight: 500;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 1px;
        }
        .price .fa {
            font-size: 0.9em;
            vertical-align: -0.1em;
        }
        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
        }
        .card-footer p {
            font-size: 1rem;
            margin: 0;
            padding: 0;
        }
        .card-footer .btn-details {
            font-size: 0.9rem;
            padding: 0.375rem 0.75rem;
            color: var(--bs-primary);
            text-decoration: none;
            transition: color 0.2s;
        }
        .card-footer .btn-details:hover {
            color: var(--bs-primary-dark);
        }
        .card {
            position: relative;
        }
        .card-badges {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            flex-direction: column;
            gap: 5px;
            z-index: 1;
        }
        .card-badge {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 500;
            color: white;
        }
        .badge-sale {
            background-color: #dc3545;
        }
        .badge-hit {
            background-color: #198754;
        }
        .badge-promo {
            background-color: #fd7e14;
        }
        .card-body {
            margin-bottom: 0;
        }
        .stats-section {
            background-color: rgba(var(--bs-primary-rgb), 0.1);
            color: var(--bs-primary);
        }
        .stat-item {
            padding: 2rem 1rem;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Roboto Mono', monospace;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        /* Стили для секции технологий */
        .tech-card {
            background: var(--bs-card-bg);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--bs-border-color);
        }
        [data-bs-theme="dark"] .tech-card {
            background: rgba(255, 255, 255, 0.05);
        }
        [data-bs-theme="dark"] .card {
            background: rgba(255, 255, 255, 0.05);
        }
        .tech-card:hover {
            transform: translateY(-5px);
        }
        .tech-image {
            position: relative;
            padding-top: 75%; /* Соотношение сторон 4:3 */
            overflow: hidden;
        }
        .tech-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .tech-body {
            padding: 1rem;
            text-align: center;
        }
        .tech-body h5 {
            margin: 0;
            font-size: 1rem;
            font-weight: 500;
            color: var(--bs-body-color);
        }
        .tech-footer {
            padding: 1rem;
            text-align: center;
            color: var(--bs-body-color);
            border-top: 1px solid var(--bs-border-color);
        }
        .tech-price {
            font-family: 'Roboto Mono', monospace;
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--bs-primary);
        }
        .tech-badge {
            display: inline-block;
            background: var(--bs-primary);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 500;
            font-size: 0.9rem;
        }
        /* Стили для карточки проекта */
        .project-card {
            background: linear-gradient(135deg, #7fc321 0%, #6ba31c 100%);
            border: 1px solid var(--bs-border-color);
            transition: transform 0.3s ease;
        }
        [data-bs-theme="dark"] .project-card {
            background: linear-gradient(135deg, #7fc321 0%, #6ba31c 100%);
        }
        .project-card:hover {
            transform: translateY(-5px);
        }
        .project-card .card-body {
            padding: 2rem;
        }
        .project-card .card-title {
            font-size: 1.5rem;
            margin: 0;
            color: #ffffff;
        }
        @media (min-width: 992px) {
            .project-card .card-body {
                padding: 3rem;
            }
            .project-card .card-title {
                font-size: 2rem;
            }
        }
        [data-bs-theme="dark"] .project-card .card-title {
            color: #212529;
        }
        .project-card p {
            color: #ffffff;
            margin: 0;
        }
        [data-bs-theme="dark"] .project-card p {
            color: #212529;
        }
        .project-card .btn-primary {
            background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
            border: none;
            padding: 0.8rem 1.5rem;
            font-size: 1.1rem;
            font-weight: 500;
            color: #ffffff;
            transition: all 0.3s ease;
            background-size: 200% 200%;
            animation: gradientFlow 2s ease infinite;
        }
        @keyframes gradientFlow {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        .project-card .btn-primary:hover {
            background: linear-gradient(135deg, #ff4500 0%, #ff0000 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
            animation: none;
        }
        .project-card .btn-primary i {
            margin-left: 0.5rem;
        }
        .hero-button {
            padding: 0.8rem 1.5rem;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .hero-button.btn-primary {
            background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
            border: none;
            color: #ffffff;
            background-size: 200% 200%;
            animation: gradientFlow 2s ease infinite;
        }
        @keyframes gradientFlow {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        .hero-button.btn-primary:hover {
            background: linear-gradient(135deg, #ff4500 0%, #ff0000 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
            animation: none;
        }
        .hero-button.btn-link {
            color: #ffffff;
            text-decoration: none;
        }
        .hero-button.btn-link:hover {
            color: #ffffff;
            opacity: 0.9;
        }
        .theme-switch {
            right: 2rem;
            top: 6rem;
        }
        .mobile-phone-button {
            display: none;
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
            background-size: 200% 200%;
            animation: gradientFlow 2s ease infinite;
            text-decoration: none;
        }
        .mobile-phone-button:hover {
            background: linear-gradient(135deg, #ff4500 0%, #ff0000 100%);
            transform: translateX(-50%) translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 69, 0, 0.4);
            animation: none;
        }
        @media (max-width: 991.98px) {
            .mobile-phone-button {
                display: flex;
                align-items: center;
                justify-content: center;
            }
        }