/* IT Support pages - shared styles */

.support-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 50px; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.2); }
.support-hero-badge svg { width: 18px; height: 18px; }
.support-hero-badge span { font-size: 14px; color: var(--gray-300); }

.support-overview { padding: 80px 0; }
.support-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 992px) { .support-overview-grid { grid-template-columns: 1fr; gap: 40px; } }
.support-overview .section-label, .support-overview .section-title { text-align: left; }
.support-overview p { color: #adadad; line-height: 1.7; margin-bottom: 16px; font-size: 1.05rem; }

.support-problems { padding: 80px 0; background: #0f0f0f; }
.support-problems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 768px) { .support-problems-grid { grid-template-columns: 1fr; } }
.support-problem-card { background: #1a1a1a; border: 1px solid #2d2d2d; border-radius: 16px; padding: 28px; }
.support-problem-card h3 { font-size: 1.15rem; font-weight: 700; color: #f0f0f0; margin-bottom: 10px; }
.support-problem-card p { font-size: 0.95rem; color: #adadad; line-height: 1.6; }
.support-problem-icon { width: 44px; height: 44px; background: linear-gradient(135deg, #dc2626, #b91c1c); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.support-problem-icon svg { width: 22px; height: 22px; color: #fff; }
.support-problem-icon-blue { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.support-problem-icon-green { background: linear-gradient(135deg, #059669, #047857); }
.support-problem-icon-orange { background: linear-gradient(135deg, #d97706, #b45309); }

.support-steps { padding: 80px 0; }
.support-steps-list { max-width: 800px; margin: 0 auto; }
.support-step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid #2d2d2d; }
.support-step:last-child { border-bottom: none; }
.support-step-num { width: 44px; height: 44px; min-width: 44px; background: #2563eb; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; }
.support-step h3 { font-size: 1.1rem; font-weight: 700; color: #f0f0f0; margin-bottom: 6px; }
.support-step p { font-size: 0.95rem; color: #adadad; line-height: 1.6; }

.support-checklist { list-style: none; padding: 0; }
.support-checklist li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; font-size: 1rem; color: #cdcdcd; }
.support-checklist li svg { width: 20px; height: 20px; color: #10b981; flex-shrink: 0; margin-top: 3px; }

.support-cta { padding: 80px 0; background: linear-gradient(135deg, #1e3a5f, #0a0a0a); }
.support-cta-content { text-align: center; max-width: 700px; margin: 0 auto; }
.support-cta-content h2 { font-size: 2.2rem; font-weight: 800; color: #f0f0f0; margin-bottom: 16px; }
.support-cta-content p { font-size: 1.1rem; color: #cdcdcd; margin-bottom: 28px; line-height: 1.6; }
.support-cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.support-cta-outline { border-color: rgba(255,255,255,0.4) !important; color: #fff !important; }
.support-cta-outline:hover { background: rgba(255,255,255,0.1) !important; border-color: #fff !important; }

.support-related { padding: 60px 0; background: #0f0f0f; }
.support-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .support-related-grid { grid-template-columns: 1fr; } }
.support-related-card { background: #1a1a1a; border: 1px solid #2d2d2d; border-radius: 12px; padding: 24px; text-decoration: none; color: inherit; transition: all 0.3s; }
.support-related-card:hover { transform: translateY(-3px); border-color: #60a5fa; }
.support-related-card h4 { font-size: 1rem; font-weight: 700; color: #f0f0f0; margin-bottom: 6px; }
.support-related-card p { font-size: 0.85rem; color: #8d8d8d; }

/* LIGHT MODE */
html[data-theme="light"] .support-hero-badge { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.1); }
html[data-theme="light"] .support-hero-badge span { color: var(--gray-700); }
html[data-theme="light"] .support-overview p { color: var(--gray-600); }
html[data-theme="light"] .support-problems { background: #f5f8fc; }
html[data-theme="light"] .support-problem-card { background: #fff; border-color: #e5e7eb; }
html[data-theme="light"] .support-problem-card h3 { color: var(--gray-900); }
html[data-theme="light"] .support-problem-card p { color: var(--gray-600); }
html[data-theme="light"] .support-step { border-bottom-color: #e5e7eb; }
html[data-theme="light"] .support-step h3 { color: var(--gray-900); }
html[data-theme="light"] .support-step p { color: var(--gray-600); }
html[data-theme="light"] .support-checklist li { color: var(--gray-700); }
html[data-theme="light"] .support-cta { background: linear-gradient(135deg, #1e3a5f, #1e40af); }
html[data-theme="light"] .support-cta-content h2 { color: #fff; }
html[data-theme="light"] .support-cta-content p { color: rgba(255,255,255,0.9); }
html[data-theme="light"] .support-related { background: #f5f8fc; }
html[data-theme="light"] .support-related-card { background: #fff; border-color: #e5e7eb; }
html[data-theme="light"] .support-related-card h4 { color: var(--gray-900); }
