.support-page {
    background: #f8fafc;
    min-height: 100vh;
    padding-bottom: 60px;
}

/* === HERO === */
.feedback-hero {
    position: relative;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #2dd4bf 100%);
    padding: 40px 0 80px;
    overflow: hidden;
}

.feedback-hero-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.feedback-hero-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover { color: #fff; }

.breadcrumb-nav > i {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
}

.breadcrumb-nav > span {
    color: #fff;
    font-weight: 500;
}

.feedback-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.feedback-hero-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 6px;
}

.feedback-hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin: 0;
}

.feedback-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.feedback-hero-wave svg {
    display: block;
    width: 100%;
    height: 50px;
}

/* === CONTENT === */
.feedback-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

/* === FORM CARD === */
.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    margin-top: -30px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    position: relative;
    z-index: 10;
}

.form-card + .form-card {
    margin-top: 0;
}

.form-card-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.form-card-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}

.form-card-header p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

/* === FEEDBACK TYPES === */
.feedback-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.type-card {
    cursor: pointer;
}

.type-card input {
    display: none;
}

.type-card-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.type-card:hover .type-card-inner {
    border-color: #14b8a6;
    box-shadow: 0 4px 15px rgba(20,184,166,0.1);
}

.type-card input:checked + .type-card-inner {
    border-color: #14b8a6;
    background: linear-gradient(135deg, #f0fdfa, #ecfeff);
    box-shadow: 0 4px 15px rgba(20,184,166,0.15);
}

/* Иконки с цветным фоном */
.type-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.type-icon.bug {
    background: #fee2e2;
    color: #dc2626;
}

.type-icon.idea {
    background: #fef9c3;
    color: #ca8a04;
}

.type-icon.question {
    background: #dbeafe;
    color: #2563eb;
}

.type-icon.other {
    background: #dcfce7;
    color: #16a34a;
}

.type-name {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.type-arrow {
    color: #d1d5db;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.type-card:hover .type-arrow {
    color: #14b8a6;
    transform: translateX(3px);
}

.type-card input:checked + .type-card-inner .type-arrow {
    color: #14b8a6;
}

/* === FORM GROUP === */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-input {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #111827;
    background: #f9fafb;
    transition: all 0.2s;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: #14b8a6;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(20,184,166,0.1);
}

.form-input.error {
    border-color: #dc2626;
    background: #fef2f2;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    font-size: 0.8rem;
    color: #6b7280;
}

.form-error {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #dc2626;
}

/* === FILE UPLOAD === */
.file-upload-zone {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    background: #f9fafb;
    transition: all 0.3s;
    cursor: pointer;
}

.file-upload-zone:hover,
.file-upload-zone.dragover {
    border-color: #14b8a6;
    background: #f0fdfa;
}

.file-upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 2rem;
    color: #14b8a6;
    margin-bottom: 10px;
}

.file-upload-main {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.file-upload-sub {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
}

.file-upload-hint {
    margin-top: 10px;
    font-size: 0.75rem;
    color: #9ca3af;
}

.file-preview {
    margin-top: 12px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f0fdfa;
    border-radius: 10px;
    border: 1px solid #99f6e4;
}

.file-item-icon {
    font-size: 1.1rem;
}

.file-item-name {
    flex: 1;
    font-size: 0.85rem;
    color: #111827;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-item-size {
    font-size: 0.75rem;
    color: #6b7280;
}

.file-item-remove {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    padding: 4px;
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.file-item-remove:hover {
    opacity: 1;
}

/* === FORM ACTIONS === */
.form-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 24px;
}

.btn-cancel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f1f5f9;
    color: #64748b;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: #e2e8f0;
    color: #475569;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(20,184,166,0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20,184,166,0.4);
}

/* === INFO CARD === */
.info-card {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    background: #eff6ff;
    border-radius: 14px;
    border: 1px solid #bfdbfe;
    align-items: center;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(37,99,235,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2563eb;
    flex-shrink: 0;
}

.info-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #1e40af;
    line-height: 1.5;
}

.info-content a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
}

.info-content a:hover {
    text-decoration: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .feedback-hero { padding: 30px 0 60px; }
    .feedback-hero-title { font-size: 1.5rem; }

    .form-card { padding: 20px; }

    .feedback-types { grid-template-columns: 1fr; }

    .form-actions { flex-direction: column; }
    .btn-cancel, .btn-submit { width: 100%; justify-content: center; }

    .info-card { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .feedback-hero-title { font-size: 1.3rem; }
    .feedback-hero-badge { font-size: 0.8rem; padding: 6px 14px; }
}
