#hc-harita-tipi {
    max-width: 740px;
    margin: 24px auto;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1e293b;
}

#hc-harita-tipi .hc-header {
    text-align: center;
    margin-bottom: 22px;
}

#hc-harita-tipi .hc-header h3 {
    margin: 0 0 6px 0;
    color: #0f172a;
    font-size: 22px;
    font-weight: 800;
}

#hc-harita-tipi .hc-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.hc-form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

#hc-ht-result {
    display: none;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px dashed #cbd5e1;
}

#hc-ht-result.visible {
    display: block;
    animation: hcFadeIn 0.3s ease-out;
}

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

.hc-ht-hero-card {
    background: linear-gradient(180deg, #fdf4ff 0%, #fae8ff 100%);
    border: 2px solid #f0abfc;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 18px;
}

.hc-ht-hero-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #86198f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 8px;
}

.hc-ht-hero-title {
    font-size: 22px;
    font-weight: 800;
    color: #701a75;
    margin-bottom: 8px;
}

.hc-ht-hero-sub {
    margin: 0;
    font-size: 13px;
    color: #86198f;
    line-height: 1.5;
}

.hc-ht-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 18px;
}

.hc-ht-sec-title {
    margin: 0 0 14px 0;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.hc-ht-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.hc-ht-table th, .hc-ht-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.hc-ht-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
}

.hc-ht-strat-box h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #0f172a;
}

.hc-ht-strat-box p {
    margin: 0 0 8px 0;
    font-size: 13px;
    line-height: 1.6;
    color: #334155;
}

.hc-ht-strat-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 650px) {
    .hc-form-grid-3 {
        grid-template-columns: 1fr;
    }
}

