/* DESIGN SYSTEM */
:root {
    --navy: #0F172A;
    --blue: #0052FF;
    --slate: #64748B;
    --white: #FFFFFF;
    --light-bg: #F1F5F9;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--blue); }
.hidden { display: none; }

/* NAVIGATION */
.navbar {
    padding: 20px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #E2E8F0;
}

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

.logo { font-weight: 800; font-size: 1.6rem; letter-spacing: -1px; }
.logo span { color: var(--blue); font-weight: 300; }

.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 500; font-size: 0.95rem; }
.portal-link { color: var(--slate) !important; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* HERO */
.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero p { font-size: 1.25rem; max-width: 800px; margin: 0 auto 40px; opacity: 0.9; font-weight: 300; }

/* BUTTONS */
.btn-primary {
    background: var(--blue);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-left: 12px;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3); }

/* VALUE PROP CARDS */
.value-prop { padding: 100px 0; background: var(--white); }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-title p { color: var(--slate); max-width: 700px; margin: 0 auto; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card {
    padding: 40px;
    border-radius: 12px;
    background: var(--light-bg);
    transition: 0.3s;
    border: 1px solid transparent;
}
.card:hover { border-color: var(--blue); background: var(--white); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.card-icon { font-size: 2.5rem; margin-bottom: 20px; }
.card h3 { margin-bottom: 15px; font-size: 1.4rem; }

/* SPLIT SECTION */
.split-section { padding: 100px 0; background: var(--navy); color: var(--white); }
.split-content { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.text-block, .image-block { flex: 1; min-width: 300px; }
.benefit-list { list-style: none; margin-top: 30px; }
.benefit-list li { margin-bottom: 20px; padding-left: 30px; position: relative; }
.benefit-list li::before { content: "→"; position: absolute; left: 0; color: var(--blue); font-weight: bold; }
.image-block img { width: 100%; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

/* CONTACT FORM */
.contact-section { padding: 100px 0; background: var(--light-bg); }
.form-card { background: var(--white); padding: 60px; border-radius: 16px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); max-width: 800px; margin: 0 auto; }
.form-header { text-align: center; margin-bottom: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
input, select { padding: 16px; border: 1px solid #E2E8F0; border-radius: 6px; font-size: 1rem; width: 100%; font-family: inherit; }
.full-width { grid-column: span 2; }

/* FOOTER */
footer { padding: 60px 0; border-top: 1px solid #E2E8F0; text-align: center; }
.footer-logo { font-weight: 800; font-size: 1.4rem; margin-bottom: 15px; }
.footer-logo span { color: var(--blue); }

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .hero h1 { font-size: 2.5rem; }
}