:root {
    --bg: #0a0e14;
    --bg-alt: #111823;
    --bg-card: #141d29;
    --border: #223044;
    --text: #e6edf3;
    --text-muted: #9aa7b6;
    --accent: #22c55e;
    --accent-dark: #16a34a;
    --gold: #e5b567;
    --radius: 12px;
    --max-width: 1100px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0e14;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
}

/* Hero */
.hero {
    padding: 96px 24px 80px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero .role {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero p.tagline {
    max-width: 620px;
    margin: 0 auto 36px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--accent);
    color: #06210f;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.15s ease, background 0.2s ease;
}

.btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 72px 24px;
}

.section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}

.section-head .eyebrow {
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    margin: 0 0 12px;
    font-weight: 800;
}

.section-head p {
    color: var(--text-muted);
    margin: 0;
}

/* Services */
.services-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.service-card h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.service-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact */
.contact-wrap {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-row textarea {
    resize: vertical;
    min-height: 120px;
}

/* honeypot field, hidden from real users */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

#form-msg {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

#form-msg.success {
    display: block;
    background: rgba(34, 197, 94, 0.12);
    color: var(--accent);
    border: 1px solid rgba(34, 197, 94, 0.35);
}

#form-msg.error {
    display: block;
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.35);
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.socials {
    display: flex;
    gap: 16px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.socials a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
