/* ============================================ */
/* PREPICEN — FINAL CONSULTING-GRADE STYLE */
/* ============================================ */

:root {
    --bg-dark: #0a0f14;
    --bg-soft: #111820;
    --card-bg: #141d26;

    --gold: #c9a53b;
    --gold-soft: #e0c878;

    --text-primary: #ffffff;
    --text-secondary: #c7d0d9;

    --border: rgba(201,165,59,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #0a0f14, #0d141b);
    color: var(--text-primary);
    line-height: 1.75;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
}

h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    margin-bottom: 28px;
    max-width: 600px;
}

p {
    color: var(--text-secondary);
    max-width: 65ch;
    margin-bottom: 18px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    position: sticky;
    top: 0;
    background: rgba(10,15,20,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.logo img {
    max-width: 140px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.hero {
    padding: 140px 20px;
}

.hero-layout {
    display: grid;
    gap: 50px;
}

@media (min-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-cred {
    margin-top: 18px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.hero-space {
    border-left: 1px solid rgba(201,165,59,0.2);
}

@media (max-width: 1024px) {
    .hero-space {
        display: none;
    }
}

.contact-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 13px 28px;
    background: var(--gold);
    color: #0a0f14;
    text-decoration: none;
    border-radius: 6px;
}

.contact-btn:hover {
    background: var(--gold-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.focus-grid {
    display: grid;
    gap: 26px;
}

@media (min-width: 768px) {
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .focus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.gold-list {
    list-style: none;
    margin: 30px 0;
}

.gold-list li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
}

.gold-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--gold);
}

footer {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-secondary);
}