* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, sans-serif;
}
body {
    background-color: #0b0e14;
    color: #eaecef;
    line-height: 1.6;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #1f2633;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #f3ba2f;
}
.lang-switcher a {
    color: #848e9c;
    text-decoration: none;
    margin: 0 4px;
    font-size: 13px;
}
.lang-switcher a.active {
    color: #f3ba2f;
    font-weight: bold;
}
.hero {
    text-align: center;
    padding: 50px 0 30px 0;
}
.hero h1 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}
.hero p {
    color: #848e9c;
    font-size: 18px;
}
.kyc-badge {
    background-color: rgba(243, 186, 47, 0.1);
    border: 1px solid #f3ba2f;
    color: #f3ba2f;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    margin-top: 15px;
    font-weight: bold;
}
.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.rate-card {
    background-color: #181a20;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #2b3139;
}
.rate-card h3 {
    font-size: 15px;
    color: #848e9c;
    margin-bottom: 10px;
}
.rate-value {
    font-size: 20px;
    font-weight: bold;
    color: #0ecb81;
}
.services {
    margin: 40px 0;
}
.services h2 {
    margin-bottom: 20px;
    color: #fff;
}
.service-item {
    background-color: #181a20;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #f3ba2f;
}
.service-item h3 {
    color: #ffffff;
    margin-bottom: 8px;
}
.contact-section {
    background: linear-gradient(135deg, #181a20 0%, #0b0e14 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f3ba2f;
    margin-top: 40px;
}
.contact-channels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}
.btn-contact {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.2s;
}
.btn-tg { background-color: #0088cc; color: white; }
.btn-mail { background-color: #ea4335; color: white; }
.btn-contact:hover { opacity: 0.9; transform: translateY(-2px); }

[dir="rtl"] .service-item { border-left: none; border-right: 4px solid #f3ba2f; }
@media (max-width: 600px) {
    .hero h1 { font-size: 26px; }
    header { flex-direction: column; gap: 15px; }
}