/* Statistics Section */
.statistics-section {
    padding: 0;
    margin-bottom: 0;
}

.stat-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12) 0%, rgba(0, 204, 102, 0.06) 100%);
    border: 1px solid rgba(0, 255, 136, 0.5);
    border-radius: 4px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease, border 0.2s ease, opacity 0.2s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
    border-color: #00cc66;
}

.stat-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 6px #00ff88;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.6rem;
    color: #00cc66;
    margin-top: 1px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Form Section */

.form-section {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 255, 136, 0.5);
    border-radius: 6px;
    padding: 14px 12px;
    backdrop-filter: blur(10px);
    will-change: backdrop-filter;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease, border 0.2s ease, opacity 0.2s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.form-section.compact {
    padding: 12px;
    margin-bottom: 16px;
}

.form-section.compact .form-title {
    display: none;
}

.form-section.compact .form-description {
    display: none;
}

.form-container {
    width: 100%;
}

.form-title {
    font-size: 1.2rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 6px;
    text-shadow: 0 0 6px #00ff88;
    font-weight: 600;
}

.form-subtitle {
    color: #00cc66;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
}

.form-description {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
    will-change: backdrop-filter;
}

.form-description p {
    color: #00cc66;
    text-align: center;
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.4;
}

.cv-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-height: 0;
    justify-content: flex-start;
}

.form-group label {
    color: #00ff88;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
}

.form-group input,
.form-group select {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 136, 0.6);
    color: #00ff88;
    padding: 5px 7px;
    border-radius: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease, border 0.2s ease, opacity 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 28px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff88' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 7px center;
    background-size: 10px;
    padding-right: 24px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00cc66;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    background: rgba(0, 0, 0, 0.7);
}

.form-group input::placeholder {
    color: #666;
}

