/* ===================== CONVERTER SELECTOR ===================== */
.converter-selector {
    padding: 40px 10%;
}

.selector-grid button {
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.selector-grid button:hover,
.selector-grid button.active {
    border-color: #9b5cff;
    box-shadow: 0 0 10px rgba(155,92,255,0.6);
}

/* ===================== SERVICE HIGHLIGHT ===================== */
.service-card.highlight {
    border: 1px solid #9b5cff;
    box-shadow: 0 0 18px rgba(155,92,255,0.5);
}

/* ===================== PROCESS STEPS ===================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

/* ===================== FEATURE GRID ===================== */
.features-grid .feature {
    text-align: center;
}

/* ===================== TECH STACK ===================== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
}

.tech-card {
    font-weight: 600;
}

/* ===================== CONTACT COMPONENTS ===================== */
.contact-section {
    padding: 80px 10%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info ul {
    margin-top: 20px;
    list-style: none;
}

.contact-info ul li {
    margin-bottom: 10px;
    opacity: 0.85;
}

.form-status,
.auth-status {
    margin-top: 15px;
    font-size: 13px;
}

/* ===================== AUTH LINKS ===================== */
.auth-links {
    margin-top: 20px;
    font-size: 13px;
    opacity: 0.8;
}

.auth-links a:hover {
    color: #9b5cff;
}

/* ===================== CTA ===================== */
.cta {
    text-align: center;
    padding: 80px 10%;
}

.cta p {
    opacity: 0.85;
    margin: 20px 0 30px;
}

/* ===================== BADGES ===================== */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    background: rgba(155,92,255,0.15);
    color: #9b5cff;
}

/* ===================== STATUS COLORS ===================== */
.success {
    color: #4caf50;
}

.error {
    color: #f44336;
}

/* ===================== SLIDER (BASIC STRUCTURE) ===================== */
.slider {
    position: relative;
    overflow: hidden;
}

.slide {
    min-height: 300px;
    display: none;
}

.slide.active {
    display: block;
}
