:root {
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    
    --text-dark: #1A1F36;       /* Deep charcoal/black */
    --text-body: #3C4257;       /* Professional gray */
    --text-muted: #697386;      /* Compliance text gray */
    
    --accent-blue: #1e40af;     /* Electric blue/slate */
    --accent-blue-hover: #1e3a8a;
    
    --border-light: #E3E8EE;    /* Subtle border */
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-input: 0 1px 2px rgba(0, 0, 0, 0.05);
    
    --transition: all 0.2s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-white);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-blue-hover);
    text-decoration: underline;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

.logo-bold {
    font-weight: 800;
    color: var(--accent-blue);
}

.logo-regular {
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--accent-blue);
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--bg-white);
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(30, 64, 175, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
    color: var(--bg-white);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.3);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.eyebrow {
    display: inline-block;
    background-color: #EFF6FF; /* Very light blue */
    color: var(--accent-blue);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Form Card */
.form-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    box-shadow: var(--shadow-input);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
}

.compliance-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 0;
}

.compliance-text a {
    color: var(--text-muted);
    text-decoration: underline;
}

.compliance-text a:hover {
    color: var(--text-dark);
}

/* Value Proposition Section */
.value-prop {
    background-color: var(--bg-light);
    padding: 6rem 0;
    border-top: 1px solid var(--border-light);
}

.value-prop-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.value-prop-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.value-prop-desc {
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: 0;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
    flex-shrink: 0;
}

/* Footer */
.footer {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 2.5rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-right {
    display: flex;
    gap: 1.5rem;
}

.footer-right a {
    color: var(--text-muted);
}

.footer-right a:hover {
    color: var(--text-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 4rem 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .headline {
        font-size: 3rem;
    }

    .form-card {
        max-width: 540px;
        margin: 0 auto;
    }

    .value-prop-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .value-prop-header {
        text-align: center;
    }
    
    .benefit-list {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .subheadline {
        font-size: 1.125rem;
    }
    
    .value-prop-header h2 {
        font-size: 2rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2.125rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
}
