/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #0a0e17;
    color: #d0d0d0;
    line-height: 1.65;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.accent { color: #f59e0b; }
strong { color: #fff; }

/* === HEADER === */
#header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    transition: background 0.3s;
}
.nav-container {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.logo { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: 2px; }
.logo span { color: #f59e0b; }
#nav a {
    margin-left: 24px; font-size: 0.9rem; color: #aaa;
    transition: color 0.2s; white-space: nowrap;
}
#nav a:hover { color: #f59e0b; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* === HERO === */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    filter: brightness(0.4);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,14,23,0.5) 0%, rgba(10,14,23,0.95) 100%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2; text-align: center;
    padding: 0 24px; max-width: 760px;
}
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800; color: #fff; margin-bottom: 20px;
    line-height: 1.15;
}
.hero-sub { font-size: 1.05rem; color: #bbb; margin-bottom: 36px; line-height: 1.7; }

/* === BUTTONS === */
.btn {
    display: inline-block; padding: 13px 28px; border-radius: 8px;
    font-size: 0.95rem; font-weight: 600; cursor: pointer;
    transition: all 0.25s; border: none; margin: 6px;
}
.btn-primary { background: linear-gradient(135deg, #f59e0b, #d97706); color: #0a0e17; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.3); }
.btn-outline { background: transparent; color: #f59e0b; border: 2px solid #f59e0b; }
.btn-outline:hover { background: rgba(245,158,11,0.1); }
.btn-full { width: 100%; }

/* === SECTIONS === */
.section { padding: 90px 0; }
.section-dark { background: #0f1320; }
.section-title {
    font-size: 2rem; font-weight: 700; text-align: center;
    margin-bottom: 16px; color: #fff;
}
.section-desc {
    text-align: center; max-width: 700px; margin: 0 auto 40px;
    color: #999; font-size: 1rem;
}

/* === FACTS (About) === */
.facts {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; margin-top: 40px;
}
.fact {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 24px 20px; text-align: center;
}
.fact-label { color: #888; font-size: 0.85rem; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.fact-value { color: #f59e0b; font-size: 1.2rem; font-weight: 700; }

/* === CARDS (Services) === */
.cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 32px 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(245,158,11,0.1);
    border-color: rgba(245,158,11,0.2);
}
.card-icon { font-size: 2.2rem; margin-bottom: 12px; }
.card-kbli { font-size: 0.75rem; color: #666; margin-bottom: 10px; letter-spacing: 0.5px; }
.card h3 { color: #fff; margin-bottom: 10px; font-size: 1.1rem; }
.card p { color: #999; font-size: 0.92rem; }

/* === TABLE (Licenses) === */
.table-wrap { overflow-x: auto; margin-top: 20px; }
table {
    width: 100%; border-collapse: collapse;
    background: rgba(255,255,255,0.02);
    border-radius: 12px; overflow: hidden;
}
th, td { padding: 14px 18px; text-align: left; font-size: 0.92rem; }
th { background: rgba(245,158,11,0.1); color: #f59e0b; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
td { border-bottom: 1px solid rgba(255,255,255,0.04); }
tr:last-child td { border-bottom: none; }
.badge { padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.badge-green { background: rgba(34,197,94,0.15); color: #22c55e; }
.table-note { text-align: center; color: #666; font-size: 0.85rem; margin-top: 16px; }

/* === COMPLIANCE === */
.compliance-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.compliance-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; padding: 28px 24px;
}
.compliance-block h3 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.compliance-block ul { list-style: none; }
.compliance-block li {
    position: relative; padding-left: 18px; margin-bottom: 8px;
    color: #aaa; font-size: 0.9rem;
}
.compliance-block li::before {
    content: '•'; position: absolute; left: 0; color: #f59e0b;
}

/* === REQUISITES === */
.req-main {
    max-width: 700px; margin: 0 auto 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; padding: 28px 28px 12px; overflow: hidden;
}
.req-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
    gap: 20px;
}
.req-row:last-child { border-bottom: none; }
.req-row span { color: #888; font-size: 0.9rem; white-space: nowrap; min-width: 100px; }
.req-row strong { text-align: right; font-size: 0.9rem; word-break: break-word; }

.bank-heading { text-align: center; color: #fff; font-size: 1.3rem; margin-bottom: 24px; }
.banks {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.bank-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; padding: 24px;
}
.bank-card h4 { color: #f59e0b; margin-bottom: 16px; font-size: 1.05rem; }
.bank-detail {
    display: flex; justify-content: space-between;
    padding: 6px 0; font-size: 0.85rem;
}
.bank-detail span { color: #777; }
.bank-detail strong { color: #ddd; font-size: 0.85rem; }

/* === CONTACT === */
.contact-section { max-width: 900px; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: start;
}
.contact-info h3 { color: #fff; margin-bottom: 24px; font-size: 1.15rem; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; font-size: 0.95rem; color: #aaa; }
.contact-item a { color: #f59e0b; }
.contact-item a:hover { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 13px 16px;
    color: #fff; font-size: 0.95rem; font-family: inherit;
    transition: border 0.2s;
}
.contact-form select { appearance: auto; }
.contact-form select option { background: #1a1f30; color: #fff; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { outline: none; border-color: #f59e0b; }
.contact-form textarea { resize: vertical; }

/* === FOOTER === */
footer {
    padding: 36px 0; border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center; color: #555; font-size: 0.85rem;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-logo { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: 2px; }
.footer-logo span { color: #f59e0b; }
.footer-links a { margin: 0 12px; color: #666; transition: color 0.2s; }
.footer-links a:hover { color: #f59e0b; }

/* === ANIMATIONS === */
.fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* === MOBILE === */
@media (max-width: 768px) {
    #nav { display: none; }
    .menu-toggle { display: block; }
    #nav.open {
        display: flex; flex-direction: column;
        position: absolute; top: 64px; left: 0; right: 0;
        background: rgba(10,14,23,0.97);
        padding: 20px; gap: 14px;
    }
    #nav.open a { margin-left: 0; font-size: 1.05rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .req-row { flex-direction: column; gap: 4px; }
    .req-row strong { text-align: left; }
}
