html { scroll-behavior: smooth; }
body { background: #faf9f6; color: #1a1a1a; font-family: 'Inter', sans-serif; }

.site-header { background: rgba(250, 249, 246, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0, 0, 0, 0.05); }

.language-pill { background: rgba(255, 255, 255, 0.8); border-color: rgba(0, 0, 0, 0.1); color: #4a4a4a; }

.gold-button {
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: transparent;
    color: #b8860b;
    transition: all 0.3s ease;
}
.gold-button:hover {
    background: #d4af37;
    color: #fff;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

.luxury-panel {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border-radius: 12px;
}

.site-footer {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-title { letter-spacing: 0.15em; color: #666; }
.footer-link { color: #888; transition: color 0.2s ease; }
.footer-link:hover { color: #d4af37; }

.contact-input {
    background: #fff;
    border: 1px solid #e5e5e5;
    color: #1a1a1a;
}
.contact-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(230,225,215,0.4) 0%, rgba(250,249,246,1) 100%);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(212,175,55,0.2);
}
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(212,175,55,0.1);
    color: #b8860b;
}

.banking-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
    padding: 1.1rem 1.1rem 1.25rem;
}
.banking-card--copyable {
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.banking-card--copyable:hover {
    transform: translateY(-3px);
    border-color: var(--bank-accent, #0f172a);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
}
.banking-card--copyable:focus-visible {
    outline: 2px solid var(--bank-accent, #0f172a);
    outline-offset: 2px;
}
.banking-card.is-copied {
    border-color: var(--bank-accent, #0f172a);
    box-shadow: 0 0 0 2px var(--bank-soft, rgba(15, 23, 42, 0.16)), 0 16px 40px rgba(15, 23, 42, 0.16);
}
.banking-card.is-copy-failed {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.14), 0 14px 30px rgba(239, 68, 68, 0.12);
}
.banking-card::before {
    content: '';
    display: block;
    height: 6px;
    border-radius: 999px;
    background: var(--bank-accent, #0f172a);
    margin-bottom: 1rem;
}
.banking-card::after {
    content: '';
    position: absolute;
    top: -38px;
    right: -38px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--bank-soft, rgba(15, 23, 42, 0.08));
}
.banking-card__head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.banking-card__chip {
    width: 1.9rem;
    height: 1.35rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    flex-shrink: 0;
}
.banking-card__name {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f172a;
}
.banking-card__meta {
    margin: 0.9rem 0 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
}
.banking-card__value {
    margin: 0.55rem 0 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.96rem;
    line-height: 1.65;
    font-weight: 600;
    color: #0f172a;
    word-break: break-word;
    white-space: pre-line;
}
.banking-card__copy-hint {
    margin: 0.75rem 0 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}
.banking-card__copy-badge {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 1;
    border-radius: 999px;
    background: #14532d;
    color: #dcfce7;
    font-family: 'Manrope', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.32rem 0.58rem;
    opacity: 0;
    transform: translateY(-5px) scale(0.94);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}
.banking-card.is-copy-failed .banking-card__copy-badge {
    background: #b91c1c;
    color: #fee2e2;
}
.banking-card.is-copied .banking-card__copy-badge,
.banking-card.is-copy-failed .banking-card__copy-badge {
    opacity: 1;
    transform: translateY(0) scale(1);
}
