/* ================= GLOBAL RESET ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    background-color: #0A1A2F;
    color: #FFFFFF;
    line-height: 1.7;
}
.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}
header {
    background: rgba(10, 26, 47, 0.96);
    padding: 18px 0;
    border-bottom: 1px solid #142840;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { height: 48px; }
nav a {
    margin-left: 28px;
    color: #D6A740;
    font-weight: 600;
    transition: 0.3s ease;
}
nav a:hover { color: #FFFFFF; }
.hero {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(180deg, #0A1A2F 0%, #112945 50%, #0A1A2F 100%);
}
.hero-title {
    font-size: 40px;
    color: #D6A740;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 20px;
    max-width: 800px;
    margin: auto;
    color: #E8E8E8;
    margin-bottom: 40px;
}
.cta-btn {
    padding: 14px 34px;
    background: #D6A740;
    color: #0A1A2F;
    font-size: 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}
.cta-btn:hover { background: #b68c35; }
.section { padding: 100px 0; background: #0A1A2F; }
.section.alt { background: #112945; }
.section-title {
    text-align: center;
    font-size: 32px;
    color: #D6A740;
    margin-bottom: 16px;
}
.section-desc {
    text-align: center;
    max-width: 920px;
    margin: auto;
    font-size: 18px;
    color: #E0E0E0;
    margin-bottom: 40px;
}
.card-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}
.card {
    width: 30%;
    min-width: 280px;
    background: #122740;
    border: 1px solid #1c3b57;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    text-align: center;
    transition: 0.3s;
}
.card:hover { transform: translateY(-4px); }
.card h3 { color: #D6A740; margin-bottom: 14px; font-size: 22px; }
.card p { color: #E8E8E8; }
.feature-list {
    list-style: none;
    max-width: 700px;
    margin: 40px auto 0;
}
.feature-list li {
    font-size: 18px;
    padding: 14px 0;
    color: #E0E0E0;
    border-bottom: 1px solid #1d3b59;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: auto;
}
.value-item {
    background: #122740;
    border: 1px solid #1c3b57;
    padding: 20px;
    border-radius: 8px;
    color: #D6A740;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}
footer {
    padding: 46px 0;
    border-top: 1px solid #1c3b57;
    text-align: center;
}
footer p { color: #999999; font-size: 15px; }
