/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    direction: rtl;
    text-align: right;
    background-color: #020617;
    color: #f9fafb;
}

/* Header + Navigation */
.site-header {
    background: rgba(3, 7, 18, 0.92);
    padding: 10px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 6px;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(148, 163, 255, 0.25);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    color: #e5e7eb;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.main-nav a {
    color: #c7d2fe;
    text-decoration: none;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(129, 140, 248, 0.22);
    color: #f9fafb;
}

/* Hero banner */
.hero-banner {
    background-image:
        linear-gradient(to left, rgba(15, 23, 42, 0.25), rgba(15, 23, 42, 0.9)),
        url('header-hero.png');
    background-size: cover;
    background-position: center center;
    color: #f9fafb;
    padding: 80px 24px 90px;
    min-height: 280px;
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-kicker {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 8px;
}

.hero-title {
    font-size: 28px;
    margin-bottom: 12px;
}

.hero-subtitle {
    max-width: 640px;
    line-height: 1.9;
    font-size: 15px;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    color: #022c22;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
}

.btn-primary:hover {
    filter: brightness(1.05);
}

/* Page hero (inner pages) */
.page-hero {
    background-image:
        linear-gradient(to left, rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.9)),
        url('header-hero.png');
    background-size: cover;
    background-position: center center;
    color: #f9fafb;
    padding: 56px 24px 70px;
    min-height: 220px;
}

.page-hero-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: 24px;
    margin-bottom: 8px;
}

.page-hero-subtitle {
    font-size: 14px;
    color: #e5e7eb;
    max-width: 640px;
}

/* Sections */
.section {
    padding: 32px 24px 40px;
}

.section-alt {
    background: #020817;
}

.section-quiet {
    background: #020617;
}

.section-contact {
    background: #020617;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #e5e7eb;
}

h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #e5e7eb;
}

.section p {
    font-size: 14px;
    line-height: 1.9;
    color: #e5e7eb;
    margin-bottom: 10px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.card {
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.96));
    border-radius: 14px;
    padding: 14px 14px 16px;
    border: 1px solid rgba(148, 163, 255, 0.25);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.9);
}

.card p,
.card li {
    font-size: 13px;
    color: #e5e7eb;
}

.card ul {
    padding-right: 18px;
    margin: 0;
    list-style: disc;
}

/* Bullet list */
.bullet-list {
    padding-right: 18px;
    margin-top: 8px;
}

.bullet-list li {
    font-size: 14px;
    line-height: 1.9;
}

/* Contact */
.section-contact p {
    color: #e5e7eb;
}

.contact-box {
    margin-top: 16px;
    padding: 16px;
    border-radius: 16px;
    background: radial-gradient(circle at top, rgba(34, 197, 94, 0.18), rgba(15, 23, 42, 0.96));
    border: 1px solid rgba(74, 222, 128, 0.4);
    max-width: 430px;
}

.contact-email {
    font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono";
    font-size: 14px;
    direction: ltr;
    text-align: left;
    margin-top: 8px;
}

/* Footer */
.site-footer {
    background: #020617;
    padding: 14px 24px;
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 255, 0.2);
}

/* Responsive */
@media (min-width: 768px) {
    .site-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
