/* ========================================
   Index Page Specific Styles
   Главная страница - специфичные стили
   ======================================== */

/* Feature Icons - Background Gradients */
.feature-icon-yellow {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.feature-icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.feature-icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.feature-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.feature-icon-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.feature-icon-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.feature-icon-orange-dark {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Service Icons - Background Gradients */
.service-icon-blue {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.service-icon-violet {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.service-icon-magenta {
    background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
}

.service-icon-teal {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.service-icon-sky {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

.service-icon-amber {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

/* Avatar Background Colors */
.avatar-green {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.avatar-pink {
    background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
}

.avatar-violet {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.avatar-cyan {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

.avatar-rose {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

/* Feature Card Icons Sizes */
.feature-card-icon-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-card-icon-lg svg {
    width: 40px;
    height: 40px;
    color: white;
}

/* How We Work - Step Numbers */
.step-number {
    width: 64px;
    height: 64px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

/* How We Work Grids */
.how-we-work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .how-we-work-grid {
        grid-template-columns: 1fr;
    }
}

.how-we-work-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 3rem auto 0;
}

@media (max-width: 768px) {
    .how-we-work-grid-bottom {
        grid-template-columns: 1fr;
    }
}

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

.step-content h4 {
    margin-bottom: 0.5rem;
}

/* Tabs Section */
.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--color-gray-200);
    padding-bottom: 1rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-gray-200);
    background: white;
    border-radius: var(--radius-lg);
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-fast);
    color: var(--color-gray-600);
}

.tab-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.tab-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

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

.tab-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Questions Section */
.questions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

@media (max-width: 768px) {
    .questions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.question-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.question-block p {
    flex: 1;
    margin: 0;
    color: var(--color-gray-600);
    text-align: right;
}

.question-icon {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.answer-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.answer-icon {
    width: 32px;
    height: 32px;
    color: #10b981;
    flex-shrink: 0;
}

.answer-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--color-gray-900);
}

.answer-content p {
    margin: 0;
    color: var(--color-gray-600);
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.section-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.section-cta .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: #1e293b;
}

.btn-cta-primary:hover {
    background: var(--color-gray-100);
}

.btn-cta-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Button with icon spacing */
.btn-icon-right {
    display: inline-flex;
    align-items: center;
}

.btn-icon-right svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

.btn-icon-left {
    display: inline-flex;
    align-items: center;
}

.btn-icon-left svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Utility Classes */
.text-gray {
    color: var(--color-gray-600);
}

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

.font-weight-600 {
    font-weight: 600;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.gap-lg {
    gap: 4rem;
}

.align-center {
    align-items: center;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.text-large {
    line-height: 1.8;
}

/* Hero Form */
.hero-form-note a {
    color: var(--color-primary);
    font-weight: 600;
}

.hero-form-note a:hover {
    text-decoration: underline;
}

/* What You Need Cards */
.what-need-card {
    text-align: center;
}

.what-need-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.what-need-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.what-need-text {
    color: var(--color-gray-600);
}

/* Icon Sizes */
.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-md {
    width: 20px;
    height: 20px;
}

.icon-lg {
    width: 24px;
    height: 24px;
}

.icon-xl {
    width: 32px;
    height: 32px;
}
