:root {
    --primary-blue: #0A192F;
    --accent-gold: #C5A059;
    --deep-black: #020617;
    --text-white: #F8FAFC;
    --text-muted: #94A3B8;
    --accent-gold-gradient: linear-gradient(135deg, #C5A059 0%, #E8C17B 100%);
    --card-bg: rgba(15, 23, 42, 0.7);
    --border-glow: rgba(197, 160, 89, 0.2);
}

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

body {
    background-color: var(--deep-black);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .cta-primary, .cta-submit {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.max-w-600 {
    max-width: 600px;
}

/* Sections */
.section-padding {
    padding: 6rem 0;
}

.bg-dark {
    background-color: #050B1B;
}

.text-center {
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.6)), 
                url('C:/Users/jordy/.gemini/antigravity/brain/2176b6b6-206e-42c4-86ba-a5c3e2d92191/si_now_hero_abstract_1773369156622.png');
    background-size: cover;
    background-position: center;
    padding-top: 4rem;
}

.hero-content {
    max-width: 800px;
}

.badge {
    background: rgba(197, 160, 89, 0.15);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    border: 1px solid var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.subheadline {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.point span {
    width: 12px;
    height: 12px;
    background: var(--accent-gold-gradient);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
}

.cta-primary {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: var(--accent-gold-gradient);
    color: var(--deep-black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.6);
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Pain Points & Solution */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    color: var(--text-muted);
    font-size: 1.125rem;
}

.solution-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(10px);
}

.solution-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.solution-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.h-item {
    background: rgba(148, 163, 184, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
}

.h-item strong {
    color: var(--accent-gold);
}

/* Value Prop Cards */
.card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--accent-gold);
}

.card:hover {
    transform: translateY(-10px);
}

.icon-gold {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Proof Section */
.proof-banner {
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)),
                url('C:/Users/jordy/.gemini/antigravity/brain/2176b6b6-206e-42c4-86ba-a5c3e2d92191/si_now_stats_abstract_1773369195153.png');
    background-size: cover;
    background-position: center;
    padding: 4rem;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--accent-gold);
}

.proof-content {
    max-width: 600px;
}

.proof-content h3 {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.proof-content p {
    font-style: italic;
    font-size: 1.125rem;
    color: var(--text-muted);
}

.proof-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Section */
.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

input, select {
    width: 100%;
    padding: 1rem;
    background: rgba(2, 6, 23, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.cta-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--accent-gold-gradient);
    color: var(--deep-black);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.cta-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-feedback {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

.form-feedback.success {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid #22c55e;
}

.form-feedback.error {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid #ef4444;
}

.hidden {
    display: none;
}

/* Footer */
.legal-footer {
    background: #020617;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.flex-row {
    display: flex;
    gap: 4rem;
}

.legal-block {
    flex: 1;
}

.legal-block h6 {
    color: var(--accent-gold);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.legal-block p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 968px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .proof-banner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 3rem 1.5rem;
    }
    
    .proof-stats {
        width: 100%;
        justify-content: center;
    }
    
    .flex-row {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-points {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    form {
        padding: 2rem 1.5rem;
    }
}
