:root {
    --bg-color: #1a1a1a;
    --panel-bg: #242424;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --accent-muted: #c2185b; /* muted magenta */
    --accent-rose: #e91e63; /* rose */
    --accent-silver: #c0c0c0; /* soft silver */
    --border-color: #333333;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent-rose);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-silver);
}

header {
    padding: 2rem 5%;
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-silver);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav ul li a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--accent-rose);
}

.container {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 5%;
}

h1, h2, h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-silver);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
}

.hero {
    text-align: center;
    padding: 6rem 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-muted);
    color: white;
}

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-silver);
    color: var(--accent-silver);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--accent-silver);
    color: var(--bg-color);
}

.section {
    margin-bottom: 4rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--panel-bg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.card:hover {
    border-color: var(--accent-muted);
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--accent-rose);
}

.footer {
    background: #111;
    padding: 4rem 5%;
    border-top: 1px solid var(--border-color);
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    color: var(--accent-silver);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-silver);
}

input, textarea, select {
    width: 100%;
    padding: 0.8rem;
    background: #2a2a2a;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: inherit;
}

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

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--panel-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-muted);
}

.step-number {
    background: var(--accent-muted);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
    }
}
