﻿:root {
    --bg: #0f172a;
    --bg-soft: #f8fafc;
    --text: #0f172a;
    --muted: #475569;
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #0ea5e9;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #16a34a;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 18px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px;
}

.topbar {
    background: var(--bg);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
}

    .logo img {
        height: 42px;
        width: auto;
        display: block;
    }

.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
}

    .nav-links a {
        color: rgba(255,255,255,0.92);
        font-size: 15px;
    }

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

    .btn-primary:hover {
        background: var(--primary-dark);
    }

.btn-outline {
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    background: transparent;
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.08);
    }

.hero {
    background: linear-gradient(135deg, #0f172a 0%, #111827 55%, #1e3a8a 100%);
    color: var(--white);
    padding: 76px 0 86px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    color: #cbd5e1;
    font-size: 13px;
    margin-bottom: 16px;
}

h1 {
    font-size: 52px;
    line-height: 1.08;
    margin: 0 0 18px;
}

.hero p.lead {
    font-size: 19px;
    color: #cbd5e1;
    margin: 0 0 28px;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

    .hero-points div {
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 14px;
        padding: 14px 16px;
        color: #e2e8f0;
        font-size: 14px;
    }

.hero-card {
    background: var(--white);
    color: var(--text);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 26px;
}

    .hero-card h3 {
        margin-top: 0;
        font-size: 24px;
    }

.mini-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

    .mini-stat:last-child {
        border-bottom: none;
    }

.badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.section {
    padding: 82px 0;
}

    .section.alt {
        background: var(--bg-soft);
    }

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 46px;
}

    .section-heading h2 {
        font-size: 38px;
        line-height: 1.15;
        margin: 0 0 14px;
    }

    .section-heading p {
        margin: 0;
        color: var(--muted);
        font-size: 18px;
    }

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.trust-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    font-weight: 700;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}

    .feature-card h3 {
        margin: 0 0 12px;
        font-size: 22px;
    }

    .feature-card p {
        margin: 0;
        color: var(--muted);
    }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #dbeafe;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 14px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.audience-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.price-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    background: var(--white);
    box-shadow: var(--shadow);
    position: relative;
}

    .price-card.featured {
        border: 2px solid var(--primary);
        transform: translateY(-4px);
    }

    .price-card h3 {
        margin: 0 0 8px;
        font-size: 24px;
    }

.price {
    font-size: 40px;
    font-weight: 700;
    margin: 8px 0 14px;
}

    .price small {
        font-size: 15px;
        color: var(--muted);
        font-weight: 400;
    }

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
}

.price-card li {
    margin: 10px 0;
    color: var(--muted);
}

.faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.seo-copy {
    max-width: 900px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
}

.cta-band {
    background: linear-gradient(135deg, #1d4ed8, #0f172a);
    color: var(--white);
    border-radius: 28px;
    padding: 54px 34px;
    text-align: center;
}

    .cta-band h2 {
        margin: 0 0 12px;
        font-size: 38px;
    }

    .cta-band p {
        max-width: 760px;
        margin: 0 auto 24px;
        color: #dbeafe;
        font-size: 18px;
    }

footer {
    background: #020617;
    color: #cbd5e1;
    padding: 28px 0;
    margin-top: 80px;
}

    footer .footer-wrap {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        align-items: center;
        flex-wrap: wrap;
    }

    footer a {
        color: #93c5fd;
    }

@media (max-width: 1080px) {
    .hero-grid,
    .features,
    .pricing,
    .trust-strip,
    .steps,
    .audience-grid,
    .faq {
        grid-template-columns: 1fr 1fr;
    }

    h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 14px;
        padding: 14px 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-grid,
    .features,
    .pricing,
    .trust-strip,
    .steps,
    .audience-grid,
    .faq,
    .hero-points {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    h1 {
        font-size: 36px;
    }

    .section-heading h2,
    .cta-band h2 {
        font-size: 30px;
    }

    .hero {
        padding-top: 54px;
    }
}

/* ?? Section titles (standalone) ??????????????????????????? */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg);
    line-height: 1.15;
    margin-bottom: .75rem;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* ?? Hero checklist ???????????????????????????????????????? */
.hero-checks {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.5rem;
    justify-content: center;
}

    .hero-checks li {
        color: rgba(255,255,255,.85);
        font-size: .9rem;
        padding-left: 1.25rem;
        position: relative;
    }

    .hero-checks li::before {
        content: '\2713';
        position: absolute;
        left: 0;
        color: #34d399;
        font-weight: 700;
    }

/* ?? Step number (centered) ???????????????????????????????? */
.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto .75rem;
}

/* ?? Why / Team cards ?????????????????????????????????????? */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.why-item {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
}

.why-title { font-weight: 700; color: var(--bg); }
.why-sub   { font-size: .85rem; color: var(--muted); }

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
    height: 100%;
}

.no-list { list-style: none; padding: 0; margin: 0; }

    .no-list li {
        padding: .4rem 0 .4rem 1.5rem;
        position: relative;
        color: var(--muted);
    }

    .no-list li::before {
        content: '\2717';
        position: absolute;
        left: 0;
        color: #ef4444;
        font-weight: 700;
    }

/* ?? Pricing extras ???????????????????????????????????????? */
.price-desc {
    font-size: .9rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

    .price-features li {
        padding: .35rem 0 .35rem 1.5rem;
        position: relative;
        color: var(--muted);
        font-size: .9rem;
    }

    .price-features li::before {
        content: '\2713';
        position: absolute;
        left: 0;
        color: var(--success);
        font-weight: 700;
    }

/* ?? SEO block ????????????????????????????????????????????? */
.seo-block {
    padding: 4rem 0 3rem;
    background: var(--bg-soft);
}

/* ?? Job Board ????????????????????????????????????????????? */
.job-search .form-control,
.job-search .form-select {
    border-color: rgba(255,255,255,.3);
    background: rgba(255,255,255,.12);
    color: #fff;
}

    .job-search .form-control::placeholder { color: rgba(255,255,255,.6); }

    .job-search .form-control:focus,
    .job-search .form-select:focus {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.6);
        color: #fff;
        box-shadow: 0 0 0 3px rgba(255,255,255,.15);
    }

    .job-search .form-select option { color: var(--text); background: #fff; }

.job-list { display: flex; flex-direction: column; gap: .75rem; }

.job-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: box-shadow .2s, border-color .2s;
}

    .job-card:hover {
        box-shadow: 0 6px 20px rgba(15,23,42,.12);
        border-color: var(--primary);
    }

.job-card-actions { display: flex; gap: .5rem; flex-shrink: 0; }

.job-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bg);
    text-decoration: none;
    display: block;
}

    .job-title:hover { color: var(--primary); }

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .85rem;
    margin-top: .35rem;
    font-size: .85rem;
    color: var(--muted);
    align-items: center;
}

.job-salary { font-weight: 600; color: var(--success); font-size: .85rem; }

/* ?? Job Detail ???????????????????????????????????????????? */
.job-description h2,
.job-description h3 { color: var(--bg); margin-top: 1.5rem; }

.job-description ul { padding-left: 1.5rem; }
.job-description li { margin-bottom: .35rem; }

.job-sidebar {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
}

.job-dl dt {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted);
    font-weight: 600;
    margin-top: .85rem;
}

.job-dl dt:first-child { margin-top: 0; }
.job-dl dd { margin: .15rem 0 0; color: var(--bg); font-weight: 500; }

/* ?? Signup form ??????????????????????????????????????????? */
.signup-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-error {
    font-size: .8rem;
    color: #dc2626;
    display: block;
    margin-top: .2rem;
}

.form-hint {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .2rem;
}

.signup-benefits {
    background: var(--bg);
    border-radius: 18px;
    padding: 2rem;
    color: #fff;
    position: sticky;
    top: 1.5rem;
}

    .signup-benefits h4 { font-weight: 700; margin-bottom: 1.25rem; }

.signup-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .signup-benefits-list li {
        padding: .5rem 0 .5rem 1.75rem;
        position: relative;
        font-size: .92rem;
        opacity: .92;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .signup-benefits-list li::before {
        content: '\2713';
        position: absolute;
        left: 0;
        color: #34d399;
        font-weight: 700;
    }

/* ?? Footer extras ????????????????????????????????????????? */
.footer-brand {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    margin-right: .5rem;
}

.footer-copy {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
}

.footer-link {
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    transition: color .2s;
}

    .footer-link:hover { color: #fff; }

/* ?? Navbar overrides ?????????????????????????????????????? */
/* Bootstrap's data-bs-theme="dark" handles link/toggler colours.
   These rules refine sizing, spacing and button styles. */

.topbar {
    padding-top: .6rem;
    padding-bottom: .6rem;
}

.topbar .navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .3px;
}

    .topbar .navbar-brand img {
        height: 36px;
        width: auto;
        filter: brightness(0) invert(1);
    }

.topbar .nav-link {
    font-size: .9rem;
    padding: .4rem .65rem !important;
    color: rgba(255,255,255,.82) !important;
    transition: color .15s;
}

    .topbar .nav-link:hover,
    .topbar .nav-link:focus {
        color: #fff !important;
    }

/* Log In button � ghost style on dark bg */
.topbar .btn-outline-secondary {
    color: rgba(255,255,255,.85);
    border-color: rgba(255,255,255,.3);
    background: transparent;
    font-size: .82rem;
}

    .topbar .btn-outline-secondary:hover {
        background: rgba(255,255,255,.1);
        border-color: rgba(255,255,255,.55);
        color: #fff;
    }

/* Start Free � solid primary */
.topbar .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
}

    .topbar .btn-primary:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        color: #fff;
    }

/* Schedule Demo � teal outline */
.topbar .btn-outline-primary {
    color: #38bdf8;
    border-color: #38bdf8;
    background: transparent;
    font-size: .82rem;
}

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

/* Mobile collapsed menu */
@media (max-width: 991.98px) {
    .topbar .navbar-collapse {
        border-top: 1px solid rgba(255,255,255,.1);
        margin-top: .5rem;
        padding-top: .75rem;
        padding-bottom: .5rem;
    }

    .topbar .navbar-nav {
        gap: .15rem;
        margin-bottom: .75rem !important;
    }

    .topbar .nav-link {
        padding: .5rem .25rem !important;
    }

    .topbar .d-flex {
        flex-wrap: wrap;
        gap: .5rem !important;
    }
}


