﻿:root {
    --bg: #0b0e14;
    --bg-alt: #121726;
    --text: #e6e8ee;
    --muted: #9aa3b2;
    --accent: #5b7cff;
    --border: #1f2537;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

    .container.narrow {
        max-width: 800px;
    }

.center {
    text-align: center;
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11,14,20,0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}
.logo:hover,
.logo:focus,
.logo:active {
    color: inherit;
    text-decoration: none;
}

.logo-text {
    color: inherit; /* ensures the text stays the same color */
}
.logo {
    font-weight: 700;
    color: inherit;
    text-decoration: none;
}

.logo-img {
    height: 32px; /* adjust as needed */
    margin-right: 8px;
}

nav a {
    margin-left: 20px;
    font-size: 14px;
}

/* HERO */
.hero {
    padding: 120px 0 100px;
    text-align: center;
}

    .hero h1 {
        font-size: 48px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

.hero-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.hero-footnote {
    font-size: 13px;
    color: var(--muted);
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.section-sub {
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 40px;
}

/* GRID */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 12px;
}

    .card h3 {
        margin-top: 0;
    }

/* PRICING */
.pricing {
    display: flex;
    gap: 40px; /* spacing between cards */
    justify-content: center;
    align-items: stretch; /* ensures equal height */
}

.price-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    /* Add these for equal-height cards */
    display: flex;
    flex-direction: column;
}

    .price-box .btn {
        margin-top: auto;
    }

.price {
    font-size: 36px;
    font-weight: 700;
}

    .price span {
        font-size: 16px;
        color: var(--muted);
    }

.cancel {
    color: var(--muted);
    margin-bottom: 30px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .features li {
        margin-bottom: 12px;
    }

/* BUTTONS */
.btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-secondary {
    border: 1px solid var(--border);
}

.btn-outline {
    border: 1px solid var(--border);
    padding: 8px 14px;
    font-size: 13px;
}

.btn.full {
    width: 100%;
    text-align: center;
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border);
    padding: 30px 0;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    margin-left: 20px;
    color: var(--muted);
}


.hero-small {
    padding: 80px 0 60px;
}

.expectations {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

    .expectations li {
        margin-bottom: 14px;
        padding-left: 20px;
        position: relative;
    }

        .expectations li::before {
            content: "–";
            position: absolute;
            left: 0;
            color: var(--muted);
        }

.application-form h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.application-form label {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
}

.application-form input,
.application-form textarea,
.application-form select {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
}

.application-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-footnote {
    margin-top: 20px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}

.price-box.featured {
    border: 2px solid var(--accent);
    transform: scale(1.03);
}

    .price-box.featured h3 {
        color: var(--accent);
    }

form label {
    display: block;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

form input,
form textarea,
form select {
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
}

    form input:focus,
    form textarea:focus,
    form select:focus {
        outline: none;
        border-color: var(--accent);
    }

textarea {
    resize: vertical;
}

.form-footnote {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing.compact {
    margin-top: 1.5rem;
}

.price-box.selectable {
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

    .price-box.selectable input {
        display: none;
    }

    .price-box.selectable:hover {
        transform: translateY(-2px);
    }

    .price-box.selectable input:checked + h3,
    .price-box.selectable input:checked {
        border-color: var(--accent);
    }

.stripe-placeholder {
    height: 48px;
    border: 1px dashed var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}




/* =========================
   CHECKOUT / WIZARD
   ========================= */

.checkout {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
}

.checkout-card {
    width: 100%;
    max-width: 520px;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* Header */
.checkout-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .checkout-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.25rem;
    }

    .checkout-header .plan {
        color: var(--accent);
        font-weight: 600;
    }

    /* Step indicator */
    .checkout-header .muted {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

/* Steps */
.step {
    display: none;
}

    .step.active {
        display: block;
    }

    /* Make step labels look like your other forms */
    .step label {
        display: block;
        font-weight: 500;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* Inputs consistent with rest of site */
    .step input,
    .step select,
    .step textarea {
        width: 100%;
        margin-top: 0.4rem;
        padding: 0.7rem 0.8rem;
        border: 1px solid var(--border);
        border-radius: 8px;
        font-size: 0.95rem;
        font-family: inherit;
        background: #fff;
    }

        .step input:focus,
        .step select:focus,
        .step textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

.prev-btn {
    border: 1px solid var(--border);
    padding: 8px 14px;
    color: white;
    border-color: white;
    font-size: 13px;
}

/* Stripe placeholder */
.stripe-box {
    height: 56px;
    border: 1px dashed var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    background: var(--bg-muted);
}

/* Navigation */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

    /* Ensure buttons match global buttons */
    .wizard-nav .btn {
        min-width: 110px;
    }

.alert {
    border: 1px solid var(--border);
    background: var(--bg-muted);
    padding: 12px 14px;
    border-radius: 10px;
    margin: 16px 0;
}

    .alert.success {
        border-color: var(--accent);
    }
.calendly-wrap {
    margin-top: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.03); /* subtle, matches your dark theme */
}
