/* ================================
   GLOBAL RESET
================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================================
   NAVIGATION
================================ */

.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid #1e293b;
}

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

.logo {
    font-weight: 600;
    font-size: 1.2rem;
    color: #38bdf8;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

.nav-cta {
    background-color: #38bdf8;
    color: #0f172a !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: 0.3s;
}

.nav-cta:hover {
    background-color: #0ea5e9 !important;
}

/* ================================
   HEADER / HERO
================================ */

header {
    padding: 80px 0;
    text-align: center;
}

.page-hero {
    padding: 80px 0;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: #38bdf8;
}

p {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.subheadline {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto 40px auto;
    color: #94a3b8;
}

/* ================================
   BUTTONS
================================ */

.cta-buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    margin: 10px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #38bdf8;
    color: #0f172a;
}

.btn-primary:hover {
    background-color: #0ea5e9;
}

.btn-secondary {
    border: 1px solid #38bdf8;
    color: #38bdf8;
    background: transparent;
}

.btn-secondary:hover {
    background-color: #1e293b;
}

/* ================================
   SECTIONS
================================ */

section {
    padding: 80px 0;
}

.section-dark {
    background-color: #111827;
}

/* ================================
   GRID & CARDS
================================ */

.grid {
    display: grid;
    gap: 40px;
}

.two-column {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background-color: #1e293b;
    padding: 30px;
    border-radius: 8px;
}

.card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.card ul li {
    margin-bottom: 8px;
    color: #cbd5e1;
}

/* ================================
   FORMS
================================ */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #e2e8f0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    color: #e2e8f0;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #38bdf8;
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #38bdf8;
}

.form-check label {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-check a {
    color: #38bdf8;
    text-decoration: underline;
}

.form-error {
    color: #f87171;
    font-size: 0.875rem;
    margin-top: 6px;
    display: none;
}

.form-success {
    color: #34d399;
    font-size: 1rem;
    margin-top: 10px;
    display: none;
}

/* ================================
   MISSION & MISC
================================ */

.mission {
    text-align: center;
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto;
    color: #e2e8f0;
}

/* ================================
   FOOTER
================================ */

footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
    color: #64748b;
}
