html {
    scroll-behavior: smooth;
}

body {
    padding-top: 64px;
}

/* match your header height */
:target {
    scroll-margin-top: 80px;
}

/* so anchor sections don't hide under header */
:root {
    /* ===== Brand palette (edit these to re‑skin) ===== */
    --brand: #0C2F4D;

    /* primary */
    --brand-ink: #0C2F4D;

    /* dark text accent */
    --ink: #0f172a;

    /* body text */
    --muted: #64748b;

    /* secondary text */
    --bg: #EFF7FE;

    /* page background */
    --surface: #f8fafc;

    /* card background */
    --ring: rgba(12,47,77,.35);
    --maxw: 1200px;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(2,6,23,.07);
}

/* ===== Reset / Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: 20px;
}

.video-container {
    display: flex;
    justify-content: center;

    /* horizontal center */
    align-items: center;

    /* vertical center */
    /* height: 100vh; */
    /* make it full viewport height (optional) */
    background: #EFF7FE;

    /* optional background */
}

.video-container video {
    max-width: 100%;
    height: auto;
    border-radius: 12px;

    /* optional styling */
}

/* ===== Utility ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 999px;
    padding: .9rem 1.25rem;
    font-weight: 600;
    border: 1px solid transparent;
    background: var(--brand);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn:hover {
    filter: brightness(.95);
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(12,47,77,.18);
}

.btn.outline {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.btn.outline:hover {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.badge {
    display: inline-block;
    padding: .25rem .6rem;
    border-radius: 999px;
    background: rgba(12,47,77,.12);
    color: var(--brand-ink);
    font-weight: 600;
    font-size: .85rem;
}

.card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ===== Header / Nav ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: saturate(150%) blur(8px);
    border-bottom: 1px solid #e5e7eb;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    height: 75%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 800;
    letter-spacing: .2px;
}

/* .brand .logo{width:28px;height:28px;border-radius:7px;background:linear-gradient(135deg,var(--brand),#3A6A93);display:inline-block} */
.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: inherit;
    font-size: 1.4em;
}

.brand-link:hover {
    text-decoration: none;
    opacity: .95;
    cursor: pointer;
}

/* Logo image styling */
.logo-img {
    height: 80px;

    /* typical header logo size */
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu a {
    color: var(--muted);
    font-weight: 600;
}

.menu a.active {
    color: var(--brand-ink);
}

.hamburger {
    display: none;
    background: transparent;
    border: 0;
    font-size: 1.35rem;
}

/* Hide mobile menu on desktop by default */
.mobile-menu {
    display: none;
}

.mobile-menu.open {
    display: flex;
}

/* ===== Hero ===== */
.hero {
    padding: 72px 0 40px;
}

.hero .wrap {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    margin-bottom: .8rem;
}

h1 {
    font-size: clamp(1.9rem,3.2vw,3.2rem);
    line-height: 1.15;
    margin: .3rem 0;
}

.lead {
    color: var(--muted);
    font-size: clamp(1rem,1.25vw,1.15rem);
    max-width: 62ch;
}

.cta-row {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.hero .card {
    padding: 18px;
}

/* ===== Logos strip ===== */
.logos {
    padding: 18px 0 6px;
    color: var(--muted);
    font-size: .95rem;
}

.logos .rail {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
    opacity: .8;
    height: fit-content;
}

.logos img {
    height: 50px;
    filter: grayscale(100%);
    opacity: .9;
}

/* ===== Features ===== */
.features {
    padding: 64px 0;
}

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

.feature {
    padding: 22px;
}

.feature h3 {
    margin: .3rem 0 0;
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(12,47,77,.12);
    display: grid;
    place-items: center;
    font-weight: 900;
    color: var(--brand-ink);
}

/* ===== Split section ===== */
.split {
    padding: 32px 0 64px;
}

.split .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.split .card {
    padding: 26px;
}

.list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 1.2rem;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 56px 0;
}

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

blockquote {
    padding: 22px;
    margin: 0;
}

blockquote p {
    margin: 0 0 .8rem;
}

.cite {
    color: var(--muted);
    font-weight: 600;
}

/* ===== Pricing ===== */
.pricing {
    padding: 56px 0;
}

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

.tier {
    padding: 26px;
}

.price {
    font-size: 2rem;
    font-weight: 900;
}

.tick {
    margin-right: .5rem;
}

/* ===== CTA banner ===== */
.cta {
    padding: 64px 0;
}

.cta .band {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 36px;
}

/* ===== Footer ===== */
footer {
    padding: 40px 0;
    color: var(--muted);
    border-top: 1px solid #e5e7eb;
}

/* ===== Responsive ===== */
@media (max-width: 1000px){
    .hero .wrap {
        grid-template-columns: 1fr;
    }

    .split .wrap {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .quotes,
    .tiers {
        grid-template-columns: 1fr 1fr;
    }

    .menu {
        display: none;
    }

    .hamburger {
        display: inline-block;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }

    .mobile-menu.open {
        display: flex;
    }
}

@media (max-width: 680px){
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .quotes,
    .tiers {
        grid-template-columns: 1fr;
    }
}
