:root {
    --ai-blue: #00D4FF;
    --ai-purple: #FF6B9D;
    --ai-pink: #FF3E5D;
    --ai-orange: #FF8A00;
    --ai-red: #FF2D2D;
    --ai-gradient-subtle: linear-gradient(135deg, rgba(255,138,0,0.9), rgba(255,62,93,0.9), rgba(255,107,157,0.9), rgba(0,212,255,0.9));
    --ai-gradient-bright: linear-gradient(135deg, #FF8A00, #FF3E5D, #FF6B9D, #00D4FF);
    --ai-gradient-soft: linear-gradient(135deg, rgba(255,138,0,0.2), rgba(255,62,93,0.2), rgba(255,107,157,0.2), rgba(0,212,255,0.2));
    --bg-dark: #0D0D0D;
    --bg-card: #1A1A1A;
    --text-main: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-bright: #F8F9FA;
    
    /* Font Variables */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', monospace;
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    font-family: var(--font-primary);
}

body {
    background: var(--bg-dark) !important;
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
}

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

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1, h2 {
    color: #00D4FF;
}

h1.ai-gradient-heading, h2.ai-gradient-heading {
    color: transparent !important;
}

h3, h4, h5, h6 {
    color: #FFFFFF;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Animation for feature cards */
#why-us .gradient-border {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards, infiniteColorFlow 15s linear infinite;
    height: 100%; /* Make all cards same height */
}

.gradient-border-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#why-us .gradient-border:nth-child(1) { animation-delay: 0.1s, 0s; }
#why-us .gradient-border:nth-child(2) { animation-delay: 0.2s, 0s; }
#why-us .gradient-border:nth-child(3) { animation-delay: 0.3s, 0s; }
#why-us .gradient-border:nth-child(4) { animation-delay: 0.4s, 0s; }
#why-us .gradient-border:nth-child(5) { animation-delay: 0.5s, 0s; }
#why-us .gradient-border:nth-child(6) { animation-delay: 0.6s, 0s; }

#contact .gradient-border {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards, infiniteColorFlow 15s linear infinite;
    height: 100%;
}

#contact .gradient-border:nth-child(1) { animation-delay: 0.1s, 0s; }
#contact .gradient-border:nth-child(2) { animation-delay: 0.2s, 0s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero-description {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.7;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.price-amount {
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 0.02em;
}

button, .ai-gradient-btn, .ai-outline-btn {
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.price-table th {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.price-table td {
    font-family: var(--font-secondary);
    font-weight: 400;
}

/* Унифицированные стили шрифтов для всех элементов формы */
.form-input, 
label, 
select, 
textarea, 
option,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="checkbox"] + label,
.checkbox-container label,
.checkbox-container span {
    font-family: var(--font-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Глобальная унификация для form элементов */
form * {
    font-family: var(--font-secondary) !important;
}

/* Исключения для заголовков в формах */
form h1, form h2, form h3, form h4, form h5, form h6 {
    font-family: var(--font-primary) !important;
}

/* Исключения для иконок Font Awesome */
form i,
form .fas,
form .fab,
form .far,
form .fal,
.fa-camera {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900 !important;
}

/* Специальное правило для иконки камеры */
.photo-upload-btn .fa-camera::before {
    content: "\f030";
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.price-category-header {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-link {
    font-family: var(--font-secondary);
    font-weight: 400;
}

.gradient-border {
    position: relative;
    background: linear-gradient(90deg, 
        rgba(255,138,0,0.4) 0%, 
        rgba(255,62,93,0.4) 25%, 
        rgba(255,107,157,0.4) 50%, 
        rgba(0,212,255,0.4) 75%, 
        rgba(255,138,0,0.4) 100%);
    background-size: 500% 100%;
    border-radius: 12px;
    padding: 1px;
}

/* Для обычных карточек без специальных анимаций */
.gradient-border:not(#why-us .gradient-border):not(#contact .gradient-border) {
    animation: infiniteColorFlow 15s linear infinite;
}

/* Градиент для всех карточек без анимации (анимация добавляется отдельно) */



.gradient-border-inner {
    background: var(--bg-card);
    border-radius: 11px;
    padding: 1.5rem;
}

.glow-effect {
    box-shadow: 0 0 30px rgba(255, 138, 0, 0.4), 0 0 20px rgba(255, 62, 93, 0.3), 0 0 15px rgba(0, 212, 255, 0.2);
}

.hover-lift {
    /* Hover effects removed for better user experience */
}

.ai-gradient-text {
    font-weight: 600;
    color: #FFFFFF;
}

.ai-gradient-heading {
    background: linear-gradient(90deg, 
        #FF8A00 0%, 
        #FF3E5D 25%, 
        #FF6B9D 50%, 
        #00D4FF 75%, 
        #FF8A00 100%);
    background-size: 500% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    animation: infiniteColorFlow 15s linear infinite;
}

@keyframes infiniteColorFlow {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 125% 0;
    }
}



/* Fade in animation for section titles */
#why-us h2, #contact h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: titleFadeIn 0.8s ease forwards;
}

#why-us h2 { animation-delay: 0.2s; }
#contact h2 { animation-delay: 0.2s; }

@keyframes titleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Primary button - with infinite color flow gradient */
.ai-gradient-btn {
    background: transparent;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                linear-gradient(90deg, #FF8A00 0%, #FF3E5D 25%, #FF6B9D 50%, #00D4FF 75%, #FF8A00 100%) border-box;
    background-size: 100%, 500% 100%;
    color: var(--text-bright);
    font-weight: 600;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    animation: infiniteColorFlow 15s linear infinite;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.2), 0 2px 8px rgba(255, 62, 93, 0.1);
}

.ai-gradient-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,138,0,0.1), rgba(255,62,93,0.1), rgba(255,107,157,0.1), rgba(0,212,255,0.1));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}



.ai-gradient-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.3), 0 4px 15px rgba(255, 62, 93, 0.2);
    color: var(--text-bright);
}

.ai-gradient-btn:hover::before {
    opacity: 1;
}

/* Secondary button - with infinite color flow gradient */
.ai-outline-btn {
    background: transparent;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                linear-gradient(90deg, #FF8A00 0%, #FF3E5D 25%, #FF6B9D 50%, #00D4FF 75%, #FF8A00 100%) border-box;
    background-size: 100%, 500% 100%;
    color: var(--text-bright);
    font-weight: 600;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    animation: infiniteColorFlow 15s linear infinite;
    box-shadow: 0 2px 8px rgba(255, 138, 0, 0.1), 0 1px 4px rgba(255, 62, 93, 0.05);
}

.ai-outline-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,138,0,0.05), rgba(255,62,93,0.05), rgba(255,107,157,0.05), rgba(0,212,255,0.05));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.ai-outline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 0, 0.2), 0 3px 10px rgba(255, 62, 93, 0.15);
    color: var(--text-bright);
}

.ai-outline-btn:hover::before {
    opacity: 1;
}

/* Back button styling - УДАЛЕНО (не используется) */

/* Price tables styling */
.price-table {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.price-table thead th {
    background: rgba(255, 107, 157, 0.1);
    color: var(--text-bright);
    font-weight: 600;
    padding: 1rem;
    border-bottom: 2px solid rgba(255, 107, 157, 0.2);
}

.price-table tbody tr {
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-table tbody tr:hover {
    background: rgba(255, 107, 157, 0.05);
}

.price-table tbody td {
    padding: 1rem;
    color: var(--text-secondary);
}

.price-table tbody tr:hover td {
    color: var(--text-bright);
}

/* Price amount highlighting */
.price-amount {
    color: var(--ai-blue);
    font-weight: 600;
}

.price-table tbody tr:hover .price-amount {
    color: var(--text-bright);
}

/* Section headers for price page */
.price-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price-section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-bright);
}

.price-section-header i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.price-section-header.iphone i {
    color: var(--ai-blue);
}

.price-section-header.ipad i {
    color: var(--ai-purple);
}

.price-section-header.macbook i {
    color: var(--ai-orange);
}

.price-section-header.apple-watch i {
    color: var(--ai-red);
}

/* Contact section in price page */
.price-contact-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.contact-section-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.contact-section-text {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.section-spacing {
    padding: 4rem 0;
}

/* Hero section enhancements */
.hero-subtitle {
    color: var(--text-bright) !important;
    font-weight: 500;
}

.hero-description {
    color: var(--text-secondary) !important;
    font-weight: 400;
}

/* Footer link hover effects */
.footer-link {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--text-bright);
    transform: translateX(5px);
}

.footer-link-telegram:hover {
    color: #4A90E2 !important;
}

.footer-link-chat:hover {
    color: #8E44AD !important;
}

.footer-link-whatsapp:hover {
    color: #25D366 !important;
}

.footer-link-email:hover {
    color: #3498DB !important;
}

.footer-link-website:hover {
    color: #E74C3C !important;
}

.footer-link-nav:hover {
    color: #F39C12 !important;
}

/* Navigation hover effects */
.nav-link {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        #FF8A00 0%, 
        #FF3E5D 25%, 
        #FF6B9D 50%, 
        #00D4FF 75%, 
        #FF8A00 100%);
    background-size: 500% 100%;
    animation: infiniteColorFlow 15s linear infinite;
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: var(--text-bright) !important;
}

.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(15px);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1.5rem;
    padding: 2rem;
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s ease;
}

.mobile-menu-overlay.show .mobile-menu-content {
    transform: translateY(0) scale(1);
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                linear-gradient(90deg, 
                    #FF8A00 0%, 
                    #FF3E5D 25%, 
                    #FF6B9D 50%, 
                    #00D4FF 75%, 
                    #FF8A00 100%) border-box;
    background-size: 100%, 500% 100%;
    animation: infiniteColorFlow 15s linear infinite;
    border-radius: 12px;
    color: var(--text-bright);
    text-decoration: none;
    font-family: var(--font-secondary) !important;
    font-size: 1rem;
    font-weight: 600;
    min-width: 200px;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,138,0,0.1) 0%, 
        rgba(255,62,93,0.1) 25%, 
        rgba(255,107,157,0.1) 50%, 
        rgba(0,212,255,0.1) 75%, 
        rgba(255,138,0,0.1) 100%);
    background-size: 500% 100%;
    animation: infiniteColorFlow 15s linear infinite;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.mobile-menu-overlay.show .mobile-menu-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-overlay.show .mobile-menu-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.show .mobile-menu-link:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.show .mobile-menu-link:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4), 0 4px 15px rgba(0, 212, 255, 0.2);
}

.mobile-menu-link:hover::before {
    opacity: 0.6;
}

.mobile-menu-link.active {
    color: var(--text-bright);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.mobile-menu-link.active::before {
    opacity: 0.8;
}

/* Стили для кнопки мобильного меню */
#mobile-menu-btn {
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

#mobile-menu-btn:hover {
    background: rgba(255, 107, 157, 0.1);
    border-color: rgba(255, 107, 157, 0.4);
    transform: scale(1.05);
}

#mobile-menu-btn i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    color: #FFFFFF;
}

/* Стили для блока "Как проходит процесс" */
.step-number {
    background: linear-gradient(135deg, 
        var(--ai-orange), 
        var(--ai-pink), 
        var(--ai-purple), 
        var(--ai-blue));
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
}

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

/* Анимация появления для шагов процесса */
.step-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.mobile-menu-link i {
    font-size: 1.3rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
    width: 22px;
    text-align: center;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.mobile-menu-link:hover i {
    color: #FFFFFF;
    transform: scale(1.15);
}

.mobile-menu-link.active i {
    color: #FFFFFF;
    transform: scale(1.05);
}

.mobile-menu-link span {
    font-weight: inherit;
    font-family: var(--font-secondary) !important;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 2rem 0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .price-table thead th,
    .price-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
}

/* Form Input Styles */
.form-input {
    background: var(--bg-card) !important;
    border: 1px solid rgba(255, 107, 157, 0.3) !important;
    transition: all 0.3s ease !important;
}

.form-input:focus {
    border-color: var(--ai-blue) !important;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1) !important;
    outline: none !important;
}

.form-input:hover {
    border-color: rgba(255, 107, 157, 0.5) !important;
}

/* Buyback Page Styles */
.price-category-section {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
}

.price-category-section:hover {
    border-color: rgba(255, 107, 157, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.1);
}

.price-category-header {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
}

.price-category-header:hover {
    color: var(--ai-blue);
}

.price-category-header.active {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ai-blue);
}

.price-category-header i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.price-category-header.iphone i {
    color: var(--ai-blue);
}

.price-category-header.ipad i {
    color: var(--ai-purple);
}

.price-category-header.macbook i {
    color: var(--ai-orange);
}

.price-category-header.apple-watch i {
    color: var(--ai-red);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-list.collapsible-content {
    margin-top: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.price-item:hover {
    background: rgba(255, 107, 157, 0.05);
    border-color: rgba(255, 107, 157, 0.2);
    transform: translateX(2px);
}

.price-item span:first-child {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-weight: 500;
}

.price-amount {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ai-blue);
    white-space: nowrap;
}

/* Form labels and text improvements */
.gradient-border-inner h2 {
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-primary) !important;
}

.gradient-border-inner label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-family: var(--font-secondary) !important;
    font-size: 0.95rem;
}

.gradient-border-inner span {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-secondary) !important;
}

/* Дополнительные стили для селектов */
select.form-input {
    font-family: var(--font-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
}

select.form-input option {
    font-family: var(--font-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    background: var(--bg-card);
    color: rgba(255, 255, 255, 0.9);
}

/* Текстовая область */
textarea.form-input {
    font-family: var(--font-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Placeholder стили */
.form-input::placeholder,
input::placeholder,
textarea::placeholder,
select::placeholder {
    font-family: var(--font-secondary) !important;
    font-weight: 400;
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Счетчик символов и дополнительный текст */
.text-xs, 
.text-sm,
#char-count {
    font-family: var(--font-secondary) !important;
    font-weight: 400;
}

/* Убираем различия в размерах шрифтов у элементов формы */
#buyback-form select,
#buyback-form input,
#buyback-form textarea,
#buyback-form label,
#buyback-form option {
    font-size: 0.95rem !important;
    font-family: var(--font-secondary) !important;
}

/* Buyback info section */
.buyback-info-section {
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.buyback-info-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.buyback-info-text i {
    color: var(--ai-blue);
}

/* Toggle icon animation for collapsible headers - УДАЛЕНО (не используется) */

/* Collapsible content animation - УДАЛЕНО (не используется) */

/* Custom Checkbox Styles */
.checkbox-container {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem 0;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkbox-checkmark {
    position: relative;
    width: 20px;
    height: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 107, 157, 0.2);
    border-radius: 4px;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
}

.checkbox-checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid var(--text-bright);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkbox-container:hover .checkbox-checkmark {
    border-color: rgba(255, 107, 157, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.1);
}

.checkbox-container input:checked + label .checkbox-checkmark {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.15);
}

.checkbox-container input:checked + label .checkbox-checkmark::after {
    opacity: 1;
}

.checkbox-label {
    font-family: var(--font-secondary) !important;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.checkbox-container:hover .checkbox-label {
    color: var(--text-bright);
}

.checkbox-container input:checked + .checkbox-label {
    color: var(--text-bright);
}

.checkbox-container input:checked + label .checkbox-checkmark {
    animation: checkboxPulse 0.3s ease;
}

@keyframes checkboxPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}



/* Mobile Price List Styles - УДАЛЕНО (не используется, дублирует desktop стили) */

/* Desktop Price List Styles */
.desktop-service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.desktop-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.desktop-service-item:hover {
    background: rgba(255, 107, 157, 0.05);
    border-color: rgba(255, 107, 157, 0.2);
    transform: translateX(4px);
}

.desktop-service-item .service-name {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    flex: 1;
    font-weight: 500;
}

.desktop-price {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ai-blue);
    white-space: nowrap;
    margin-left: 1.5rem;
}

.desktop-subsection {
    margin-top: 1.75rem;
    margin-bottom: 1.25rem;
}

.desktop-subsection-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(186, 85, 211, 0.2);
}

.desktop-price-note {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    line-height: 1.5;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.25rem;
}

/* Price Section Headers */
.price-section-header {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-section-header h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
}

.price-section-header i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}



/* Coming Soon Services Styles */
.coming-soon {
    opacity: 0.6;
}

.coming-soon .service-name {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
    background: none !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.5) !important;
}

/* Mobile icon colors - УДАЛЕНО (не используется) */



/* Mobile responsive behavior - УДАЛЕНО (не используется) */ 

/* Photo Upload Styles */
.photo-upload-area {
    border: 2px dashed rgba(255, 107, 157, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 107, 157, 0.02);
}

.photo-upload-area:hover {
    border-color: rgba(255, 107, 157, 0.5);
    background: rgba(255, 107, 157, 0.05);
    transform: translateY(-1px);
}

.photo-upload-btn {
    color: var(--ai-purple);
    font-family: var(--font-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.photo-upload-btn:hover {
    color: var(--ai-blue);
    transform: translateY(-2px);
}

.photo-upload-btn i {
    color: inherit;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 2rem;
    transition: all 0.3s ease;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.photo-upload-btn:hover i {
    transform: scale(1.1);
}

/* Desktop responsive adjustments */
@media (min-width: 769px) {
    .desktop-service-item {
        padding: 1.25rem 1.5rem;
    }
    
    .desktop-service-item .service-name {
        font-size: 1.05rem;
    }
    
    .desktop-price {
        font-size: 1.05rem;
        margin-left: 2rem;
    }
    
    .desktop-subsection-title {
        font-size: 1.25rem;
    }
    
    .desktop-price-note {
        font-size: 0.95rem;
    }
} 

/* Container fixes */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
} 