/* WiredLux Shared Design System */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --ink: #0a0f1a;
    --slate: #2a3142;
    --mid: #6b7a94;
    --light: #c4cdd9;
    --ice: #f0f3f7;
    --white: #ffffff;
    --gold: #d4a853;
    --gold-dim: #b8923f;
    --copper: #c87941;
    --warm: #faf6f0;
    --success: #2d8a4e;
    --error: #c0392b;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }

/* ---- NAV ---- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
}

.logo span { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

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

.nav-links a.nav-cta {
    background: var(--gold);
    color: var(--white);
    padding: 0.55rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-links a.nav-cta:hover {
    background: var(--gold-dim);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ---- PAGE HEADER ---- */
.page-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(165deg, var(--ink) 0%, #151d2e 55%, #1a2740 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,83,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,168,83,0.3), transparent);
}

.page-header-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header .section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(212,168,83,0.3);
}

.page-header h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.page-header h1 em {
    font-style: normal;
    color: var(--gold);
}

.page-header p {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--light);
    max-width: 600px;
}

/* ---- SECTION LABEL ---- */
.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 1.25rem;
}

/* ---- FOOTER ---- */
footer {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--ink);
    color: var(--mid);
    font-size: 0.8rem;
}

footer .logo {
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
}

footer p { margin-top: 0.25rem; }

footer .footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

footer .footer-links a {
    color: var(--mid);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

footer .footer-links a:hover {
    color: var(--gold);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.01em;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-dim);
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: rgba(212,168,83,0.08);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ---- FORMS ---- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.form-group label .required {
    color: var(--copper);
    margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--light);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,168,83,0.12);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7a94' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Checkbox group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--ice);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
}

.checkbox-item:hover {
    border-color: var(--gold);
    background: rgba(212,168,83,0.03);
}

.checkbox-item.selected {
    border-color: var(--gold);
    background: rgba(212,168,83,0.06);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
}

.checkbox-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate);
}

/* Radio group */
.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    border: 1.5px solid var(--ice);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--white);
    flex: 1;
    min-width: 180px;
}

.radio-item:hover {
    border-color: var(--gold);
}

.radio-item.selected {
    border-color: var(--gold);
    background: rgba(212,168,83,0.06);
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
}

.radio-item label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate);
    cursor: pointer;
    margin-bottom: 0;
}

.radio-item .radio-desc {
    display: block;
    font-size: 0.78rem;
    color: var(--mid);
    font-weight: 400;
    margin-top: 2px;
}

/* Form status messages */
.form-status {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    display: none;
}

.form-status.success {
    background: #e8f5e9;
    color: var(--success);
    border: 1px solid #a5d6a7;
    display: block;
}

.form-status.error {
    background: #fde8e8;
    color: var(--error);
    border: 1px solid #f5c6cb;
    display: block;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    nav { padding: 1rem 1.25rem; }

    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .nav-hamburger { display: flex; }

    .page-header { padding: 7rem 1.5rem 3rem; }

    .checkbox-group { grid-template-columns: 1fr; }

    .radio-group { flex-direction: column; }
    .radio-item { min-width: unset; }
}
