﻿

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}




/*   From ChatGPT  */

:root {
    --bg: #0f1218;
    --bg-muted: #151924;
    --surface: #181d2a;
    --accent: #5c8dff;
    --accent-soft: rgba(92, 141, 255, 0.15);
    --text: #e7ecf7;
    --text-muted: #a8b3c9;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}



body {
    margin: 0;
    background: linear-gradient(180deg, #2a3242 0%, #343c4a 60%, #3f4653 100%);
    color: var(--text);
}






a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1420px, 92%);
    margin: 0 auto;
}


.container,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1600px; /* default is 1140px in Bootstrap 5 */
}




.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(13, 15, 20, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(160deg, #5c8dff, #7bf3ff);
    box-shadow: 0 0 16px rgba(124, 210, 255, 0.95);
}

.brand-name {
    font-weight: 700;
    letter-spacing: .01em;
}

.menu {
    display: flex;
    gap: 1.1rem;
    align-items: center;
}

    .menu a {
        font-size: 0.9rem;
        color: rgba(231, 236, 247, 0.8);
    }

        .menu a:hover {
            color: #fff;
        }

.btn {
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: none;
    cursor: pointer;
    transition: transform 0.1s ease-out;
    box-shadow: 0 12px 38px rgba(92, 141, 255, 0.25);
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-small {
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
}

.ghost {
    color: var(--text-muted);
    font-weight: 500;
}

.hero {
    padding: 3.5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.hero h1 {
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    margin-bottom: 0.6rem;
}

.lead {
    color: var(--text-muted);
    max-width: 36rem;
}

.hero-actions {
    margin-top: 1.4rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.subnote {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(231, 236, 247, 0.6);
}

.hero-panel {
    display: grid;
    gap: 1rem;
}

.card {
    background: rgba(24, 29, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.1rem 1.1rem;
    backdrop-filter: blur(25px);
    box-shadow: var(--shadow);
}

.metric h3 {
    margin: 0 0 .4rem;
}

.section {
    padding: 3rem 0 3.5rem;
}

.section-muted {
    background: radial-gradient(circle at center, rgba(24, 29, 42, 0.22), rgba(10, 13, 18, 0.3));
}

.section-head {
    text-align: left;
    margin-bottom: 2rem;
}

    .section-head h2 {
        margin-bottom: 0.2rem;
    }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.product h3 {
    margin-top: 0;
}

.product p {
    color: rgba(231, 236, 247, 0.7);
}

.tags {
    list-style: none;
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 1rem 0 0;
}

    .tags li {
        background: rgba(92, 141, 255, 0.1);
        border: 1px solid rgba(92, 141, 255, 0.1);
        padding: 0.3rem 0.6rem;
        border-radius: 999px;
        font-size: 0.7rem;
        color: #e7ecf7;
    }

.two-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: flex-start;
}

.checks {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

    .checks li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.45rem;
        color: var(--text-muted);
    }

        .checks li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0.1rem;
            color: #7bffca;
            font-size: 0.8rem;
        }

.highlight {
    background: radial-gradient(circle at top, rgba(92, 141, 255, 0.2), rgba(24, 29, 42, 0.86));
}

.bullets {
    list-style: disc;
    padding-left: 1.05rem;
    color: var(--text-muted);
}

.cta {
    background: linear-gradient(135deg, rgba(92, 141, 255, 0.35), rgba(10, 12, 17, 0.5));
    padding: 3rem 0 3rem;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(10, 12, 17, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1.5rem 1.2rem 1.5rem 1.2rem;
}

.btn-light {
    background: #fff;
    color: #10131a;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.footer {
    padding: 1.6rem 0 3rem;
    background: rgba(10, 12, 17, 0.15);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(231, 236, 247, 0.5);
    font-size: 0.75rem;
}

.foot-links a {
    margin-left: 1rem;
    color: inherit;
}

@media (max-width: 880px) {
    .hero-grid,
    .two-col,
    .cta-box {
        grid-template-columns: 1fr;
        display: grid;
    }

    .menu {
        gap: 0.75rem;
    }

    .hero {
        padding-top: 2.5rem;
    }

    .cta-box {
        gap: 1.5rem;
    }
}












/* scope to this area so we don't break other forms */
.message-us {
    max-width: 540px; /* adjust as you like */
    margin-left: auto; /* you can remove if you want it centered */
}

/* kill bullets on the actions list */
.message-us .actions {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .message-us .actions li {
        display: inline-block;
    }

/* row with two inputs side by side */
.message-us .inline-fields {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .message-us .inline-fields .field {
        flex: 1;
        min-width: 0;
    }

/* generic field spacing */
.message-us .field {
    margin-bottom: 1rem;
}

/* make textarea full width */
.message-us textarea.form-control {
    width: 100%;
    min-height: 140px;
    resize: vertical;
}

/* button spacing */
.message-us .form-actions {
    margin-top: .5rem;
}

    /* if your global .button alt got messed up by the new css, reassert it here */
    .message-us .form-actions .button,
    .message-us .form-actions input[type="submit"] {
        background: #444;
        color: #fff;
        border: none;
        padding: .6rem 2.4rem;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
    }









/* --- FOOTER --- */
.site-footer {
    background: linear-gradient(145deg, #1a1e2d, #0e1120);
    text-align: center;
    padding: 2.5rem 1rem 1.5rem;
    color: #aaa;
    border-top: 1px solid #2a2f44;
    box-shadow: inset 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-top: 3rem;
}

    /* --- ICON ROW --- */
    .site-footer .icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 1.2rem;
    }

        .site-footer .icons li a {
            font-size: 1.5rem;
            color: #9ca3af;
            transition: color 0.3s ease, transform 0.2s ease;
        }

            .site-footer .icons li a:hover {
                color: #5c7bff;
                transform: translateY(-2px);
            }

    /* --- COPYRIGHT + LINKS --- */
    .site-footer .copyright {
        margin-top: 1.5rem;
        font-size: 0.9rem;
        color: #9ca3af;
        line-height: 1.6;
    }

        .site-footer .copyright span {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.8rem 1.4rem;
            border-radius: 8px;
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
        }

        .site-footer .copyright a {
            color: #5c7bff;
            text-decoration: none;
            transition: color 0.2s ease;
        }

            .site-footer .copyright a:hover {
                color: #9fb4ff;
            }

/* --- Responsive --- */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1rem;
    }

        .site-footer .icons {
            gap: 1rem;
        }

        .site-footer .copyright span {
            display: block;
            margin: 0 auto;
            font-size: 0.85rem;
            line-height: 1.8;
        }
}


#contact {
    background: linear-gradient(135deg, #1c2541 0%, #0b0d14 100%);
    color: #e4e7ef;
}

    #contact h2 {
        color: #fff;
    }

    #contact p {
        color: #a8b0bf;
    }
