.card-panel {
    position: relative;
    background: linear-gradient(180deg, rgba(28,31,34,0.96), rgba(15,17,19,0.96));
    border: 1px solid rgba(226,160,34,0.18);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.28);
    backdrop-filter: blur(14px);
}

.eyebrow {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.page-title,
.section-title {
    color: #f4e8ce;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: bold;
    line-height: 1.05;
}

.page-title {
    font-size: clamp(34px, 8vw, 64px);
    margin-top: 14px;
}

.section-title {
    font-size: clamp(24px, 4vw, 34px);
}

.page-copy {
    color: #aeb4b9;
    font-size: 16px;
    line-height: 1.7;
}

.page-copy--compact {
    font-size: 15px;
}

.btn-main,
.btn-ghost {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.btn-main {
    background: linear-gradient(135deg, #e2a022, #f4c14f);
    border: none;
    color: #140d00;
}

.btn-main:hover,
.btn-ghost:hover {
    transform: translateY(-1px);
}

.btn-main:disabled,
.btn-ghost:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    transform: none;
}

.btn-ghost {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: #e0e5e8;
}

.btn-main--small,
.btn-ghost--small {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 11px;
}

.stack-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-error {
    min-height: 18px;
    color: #ff8c78;
    font-size: 12px;
}

.f-label {
    display: block;
    font-size: 10px;
    color: #555;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.f-input,
.f-select {
    width: 100%;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 3px;
    color: #ccc;
    font-family: inherit;
    font-size: 14px;
    padding: 9px 10px;
    outline: none;
    transition: border-color 0.2s;
}

.f-input:focus,
.f-select:focus { border-color: var(--accent); }

.f-select option { background: #111; }

.tiny-note {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.info-pill {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(226,160,34,0.08);
    border: 1px solid rgba(226,160,34,0.14);
    color: #ebddb9;
    font-size: 11px;
    letter-spacing: 0.4px;
}

.empty-state {
    padding: 40px 18px;
    text-align: center;
    color: #8f969b;
    border: 1px dashed rgba(255,255,255,0.14);
    border-radius: 14px;
}
/* ── Language Switcher ─────────────────────────────── */
.lang-switcher {
    display: inline-flex;
    gap: 2px;
    align-items: center;
}
.lang-btn {
    padding: 3px 9px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.lang-btn:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.35); }
.lang-btn--active { color: #fff; border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.08); }
