﻿/* =========================================================
   AUTENA — SITE THEME (site.css)
   A calm, professional skin for the “digital receptionist”
   ========================================================= */

/* Root tokens */
:root {
    --brand: #7A0CFB;
    --brand-600: #5E05CB;
    --ink: #1F2937; /* slate-ish */
    --muted: #6B7280; /* muted text */
    --footer-ink: #ffffff;
    --bg: #F7F7FB; /* soft lavender-grey */
    --bg-light: #EEEEEE;
    --bg-dark: #21292a; /* grey  or #2e2e2e; */
    --bg-darkest: #000000; /* Black */
    --card: #FFFFFF;
    --ring: rgba(119,7,254,.35);
    --radius: 16px;
    --shadow: 0 10px 30px rgba(31,41,55,.08);
    /* Spacing scale (large sections by default) */
    --space-2xs: 6px;
    --space-xs: 10px;
    --space-sm: 14px;
    --space-md: 20px;
    --space-lg: 28px;
    --space-xl: 48px;
    --space-2xl: 72px; /* generous section spacing */
    --space-3xl: 96px; /* very generous for hero/final bands */
    /* Content width */
    --container: 1232px; /*1180*/
    --nav-container-min: 1400px;
    --control-h: 48px; 
    --font-headline: "Nunito", -apple-system, BlinkMacSystemFont, "avenir next", avenir, "segoe ui", "helvetica neue", helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
    --font-paragraph: "Merriweather", "Iowan Old Style", "Apple Garamond", Baskerville, "Times New Roman", "Droid Serif", Times, "Source Serif Pro", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Base */
* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth; 
    font-size: 14px;
    position: relative;
    min-height: 100%;
}



body {
    margin: 0;
    /*font-family: "Nunito",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;*/
    font-family: var(--font-paragraph);
    font-weight:300;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headlines */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    line-height: 1.25;
    /* tweak weights if you like: */
    /* font-weight: 700; */
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
    align-items: stretch;
}

.grid-2-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: stretch;
}

.grid-2-reversed {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-lg);
    align-items: stretch;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: stretch;
    gap: var(--space-lg);
}

.grid-6-in-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: stretch;
    gap: var(--space-lg);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: var(--space-lg)
}

/* ===== 2 Column with left column being 2 column and 2/3 width style ===== */
.grid-3-made2-and-4 {
    display: grid;
    grid-template-columns: 2fr 1fr; /* two cols for cards, one for the tall panel */
    align-items: stretch;
    gap: var(--space-lg)
}

/* ===== -- Left: 2×2 cards (two columns, two rows) -- ===== */
.grid-2-with-2rows {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: clamp(16px, 2.5vw, 28px);
}

.grid-2.top-align {
    align-items: flex-start;
}

/* Layout helpers */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px
}

.nav-container {
    max-width: var(--nav-container-min);
    margin-inline: auto;
    padding-inline: 20px
}


/* ===== -- Hero Background Color set to darkest -- ===== */
#howi-hero, #ml-hero, #sp-hero,
#sc-hero, #mp-hero, #who-i-help-hero, #who-i-help-hero {
    background-color: var(--bg-darkest);
}
#starter-pass {
    padding-block: var(--space-2xl)
}


/* ===== -- Background Image Setup To Hero -- ===== */
/*.howi-hero-background {
    margin: 0;
    padding: 0;
    display: flex;
    position: relative;
    background: url(/img/pages/how.avif) no-repeat;
    min-height: 100%;
    background-size: cover;
    object-position: center; 
    isolation: isolate;
}*/

.contact__label, .contact__meta {
    font-style: normal;
}

a.contact__link {
    text-decoration: underline;
    color: var(--ink);
}

    a.contact__link:hover, a.contact__link:focus {
        color: var(--brand);
    }
/* Accessible skip */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

    .skip-link:focus {
        left: 10px;
        top: 10px;
        width: auto;
        height: auto;
        padding: 8px 12px;
        background: #fff;
        border-radius: 8px;
        box-shadow: var(--shadow)
    }


/* Cards + images */
.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border, #e4e7ec);
    box-shadow: var(--shadow);
    padding: var(--space-lg);
    margin-bottom: 25px;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

    .card img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .card h3 {
        /*        margin: .25rem 0 .35rem;
        margin: 2rem 0 2rem;*/
        font-weight: 600;
        line-height: 1.3;
        color: var(--text-strong, #111);
        font-size: 1.5rem;
        min-height: 65px;
    }

    .card p {
        flex-grow: 1;
    }

    .card.why p.btm-margin-no-grow {
        flex-grow: 0;
        margin-bottom: 50px;
    }
/* Card footer pinned to bottom */
.card-footer {
    margin-top: auto;
    padding-top: 1rem;
}

    /* Make CTA full width optional (remove if undesired) */
    .card-footer .btn {
        display: inline-flex;
        text-align: center;
    }

#careline-why-title {
    flex-grow: 0;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    padding: 12px 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .21em;
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ink);
    transition: transform .06s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    margin-right: 0.75em;
}

    .btn:hover {
        transform: translateY(-1px)
    }

    .btn:focus-visible {
        outline: 3px solid var(--ring);
        outline-offset: 2px
    }

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

    .btn-primary:is(:hover,:focus) {
        background: #fff;
        color: var(--brand-600)
    }

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

.btn-black {
    background: #000000;
    border-color: #000000;
    color: #fff
}

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

.btn-outline-black {
    background: #fff;
    border-color: #000000;
    color: #000000;
}

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

.btn-ghost {
    background: transparent;
    border-color: transparent;
    color: var(--brand);
    text-decoration: underline
}

.btn-lg {
    padding: 15px 22px;
    font-size: 1rem
}

.btn-sm {
    padding: 10px 16px;
    font-size: .95rem
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    /*background: rgba(255,255,255,.85);*/
    background: rgba(255,255,255);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid #EEE;
    padding-block: 10px;
}

.brand {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
    font-weight: 800;
    font-size: 1.125rem
}

.brand-mark {
    width: 35px;
    height: 35px;
    border-radius: 50%
}

.brand-text {
    letter-spacing: .2px
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.5rem
}


/* Utility to force-hide via JS */
.hidden {
    display: none !important;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4em;
    align-items: center
}

.site-nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 1em;
    padding: .5rem .85rem;
    border: 1px solid var(--border, #e4e7ec);
    border-radius: 999px;
    background: #fff;
}

    .site-nav a:hover, .site-nav a:focus {
        color: var(--brand); 
        background-color: var(--bg);
    }

.site-nav .divider {
    width: 1px;
    height: 22px;
    background: #E5E7EB;
    margin-inline: 4px
}

/* ===== Header: active link style ===== */
.site-nav a.active {
    color: var(--brand);
    position: relative;
    background-color: var(--bg);
}

    .site-nav a.active::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -8px;
        height: 3px;
        background: var(--brand);
        border-radius: 2px;
    }

.site-nav a.cta {
    border-color: var(--brand);
}


/* ===== Section Title With Underline style ===== */
.section-header {
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin: 0 auto 3em auto;
    overflow: hidden;
    min-height: 100px;
}

    .section-header .section-title {
        font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.658), 1.25rem);
        letter-spacing: 0.3125rem;
        color: #272727;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 20px;
        margin: 0 0 20px;
        text-align: center;
    }

        .section-header .section-title:before {
            content: "";
            position: absolute;
            width: 60%;
            bottom: 0;
            left: 50%;
            margin-left: -30%;
            height: 1px;
            background: #C0C0C0;
        }

        .section-header .section-title:after {
            content: "";
            position: absolute;
            width: 6px;
            height: 6px;
            bottom: -8px;
            left: 50%;
            margin-left: -12px;
            border: 5px solid #C0C0C0;
            border-radius: 20px;
            background: #7a0cfb
        }

.section-title.small {
    font-size: clamp(1.125rem,1rem + .4vw,1.35rem);
}

.section-kicker {

}
/* =====  Main spacing =====  */
main {
    display: block
}
    main > section {
        padding-block: var(--space-2xl)
    }





/* =====  Footer  ===== */
.site-footer {
    /*    border-top: 1px solid #EEE;
    margin-top: var(--space-xl);*/
    padding-block: var(--space-2xl);
    background-color: var(--bg-darkest);
    color: #fff;
}

.footer-title {
    margin: 0 0 6px
}

.footer-subtitle {
    margin: 0 0 8px
}

.linklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px
}

.linklist li a {
    color:#fff;
}

.linklist li a:hover, .linklist li a:focus {
        color: var(--brand)
    }

.footer-text {
    color: var(--footer-ink);
}

.muted {
    color: var(--muted);
}

.centered-restrict-width {
    max-width: 65ch;
    margin: 0 auto 15px;
    text-align: center;
}

.small {
    font-size: .92rem;
}


.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 1;
    display: inline-block;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}




/* =====  Keywords (Me at a Glance)  ===== */
.keyword-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem 1rem;
    list-style: none;
    padding: 0;
    margin: clamp(40px, 4vw, 75px) 0;
}

    .keyword-list li {
        padding: .5rem .85rem;
        border: 1px solid var(--border,#e4e7ec);
        border-radius: 999px;
        background: #F2F2F2;
        font-weight: 600;
        font-size: .95rem;
    }


/* =====  Tick list  ===== */
.list-ticks {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: grid;
    gap: 12px;
}

    .list-ticks li {
        position: relative;
        padding-left: 28px;
        line-height: 1.5;
    }

        .list-ticks li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            line-height: 1.5;
            font-weight: 700;
            color: #000;
        }
        
        .list-ticks li a {
            color: var(--ink);
            text-decoration:underline;
        }
        .list-ticks li a:hover, .list-ticks li a:focus {
            color: var(--brand)
        }

/* =====  Cross list  ===== */
.list-crosses {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: grid;
    gap: 12px;
}

    .list-crosses li {
        position: relative;
        padding-left: 28px;
        line-height: 1.5;
    }

        .list-crosses li::before {
            content: "✗";
            position: absolute;
            left: 0;
            top: 0;
            line-height: 1.5;
            font-weight: 700;
            color: #000;
        }

        .list-crosses li a {
            color: var(--ink);
            text-decoration: underline;
        }

            .list-crosses li a:hover, .list-crosses li a:focus {
                color: var(--brand)
            }

.hero--contact {
    color: #fff;
    background-color: var(--bg-dark);
}

.hero.hero--contact .lead-capture .container .card.lead-wrap {
    background-color: var(--bg-dark);
}
    /* =====  Hero Template Left Image Right Headline and Text  ===== */
    .split-media {
        border-radius: var(--radius);
        overflow: hidden;
        background: var(--surface-50,#fafafa);
    }

        .split-media img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover; /* keep portrait crop */
            object-position: center;
            aspect-ratio: 3/4; /* tall portrait feel */
            margin: 0;
            border-radius: 16px;
        }

.split-media-long-portrait img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* keep portrait crop */
    object-position: center;
    aspect-ratio: 4/6; /* tall portrait feel */
    margin: 0;
    border-radius: 16px;
    /*max-height: 60vh;*/
}

.split-media-square img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* keep portrait crop */
    object-position: center;
    aspect-ratio: 4/4; /* tall portrait feel */
    margin: 0;
    border-radius: 16px;
}

.split-copy .section-title {
    margin: 0 0 .5rem;
}

.split-copy .section-header h1 {
    font-size:3em;
    font-weight:1000;
}

.split-copy__body p {
    margin: 0 0 1rem 0;
    font-size: clamp(1rem, .98rem + .3vw, 1.125rem);
    line-height: 1.55;
}
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: .75rem;
}

/* =====  Head blocks  ===== */
.block-head {
    margin-bottom: clamp(25px, 3.5vw, 50px);
}

.block-title {
    font-size: clamp(1.35rem, 1rem + 1.2vw, 1.85rem);
    margin: 0 0 2rem;
}

.block-intro {
    max-width: 65ch;
    opacity: .95;
}

.block-intro-end-margin {
    max-width: 65ch;
    opacity: .95;
    margin: 0 0 2rem;
}
/* =====  Lower section headline, center text and cta button ===== */
.whoi-final {
    padding-block: clamp(2rem, 6vw, 4rem);
    background: var(--surface-50,#fafafa);
    border-top: 1px solid var(--border,#e4e7ec);
}

.whoi-final__body p {
    max-width: 70ch;
    margin-inline: auto;
    font-size: clamp(1rem, .98rem + .3vw, 1.125rem);
    line-height: 1.6;
    opacity: .95;
}

.whoi-final__cta {
    margin-top: clamp(1rem, 3vw, 2rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}


/* =====  What I do  ===== */
.what-i-do .section-title {
    margin-top: 0;
    margin-bottom: var(--space-md)
}

.what-i-do .hero-highlights {
    margin-top: var(--space-sm)
}





/* =====  Three steps  ===== */
.three-steps .section-title {
    margin: 0 0 var(--space-md)
}

.step {
    position: relative;
    padding-top: 26px
}

.step-number {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--brand),var(--brand-600));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: var(--shadow)
}




/* =====  Outcomes (benefits)  ===== */
.outcomes .card h3 {
    margin-top: 0
}






/* =====  Proof strip  ===== */
.proof-strip {
    padding-block: var(--space-xl);
    background: #fff;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE
}

.proof-inner {
    gap: var(--space-lg)
}

.proof-logos {
    display: flex;
    gap: 10px
}

.logo-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #EEE
}





/* =====  Pricing preview  ===== */
/*.pricing-preview .section-title {
    margin: 0 0 var(--space-md)
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: var(--space-lg)
}

.price-row {
    font-size: 1.25rem;
    margin: 8px 0
}

.price-points {
    margin: 10px 0 0 18px;
    display: grid;
    gap: 6px
}*/



/* ===== Pricing: Most popular badge ===== */
/*.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    color: #fff;
    font-weight: 800;
    font-size: .78rem;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.price-head {
    position: relative;
}

    .price-head .badge {
        position: absolute;
        top: -40px;
        left: 0;
    }*/
/* Section */
.pricing {
    background: linear-gradient(180deg, var(--autena-bg), #0e1526);
    color: var(--autena-text);
    padding: clamp(32px, 6vw, 80px) 0;
}

    .pricing .sub {
        color: var(--autena-sub);
        margin-top: 8px;
        margin-bottom: 32px;
    }

/* Plan card */
.plan {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
/*    background: radial-gradient(120% 120% at 0% 0%, rgba(255,255,255,.02), transparent 60%), var(--autena-card);
    border: 1px solid var(--autena-border);*/
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--autena-shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    isolation: isolate;
}

    .plan:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(0,0,0,.3);
        border:1px solid #243047;
    }

    .plan:focus-within {
        outline: 3px solid var(--autena-accent);
        outline-offset: 2px;
    }

/* Popular / Anchor highlights */
.plan--popular {
    /*background: linear-gradient(180deg, rgba(16,185,129,.08), rgba(16,185,129,0) 50%), var(--autena-card);*/
    border: 3px solid rgba(16,185,129,.35);
}

.plan--anchor {
    /*    background: linear-gradient(180deg, rgba(96,165,250,.08), rgba(96,165,250,0) 50%), var(--autena-card); */
    border:3px solid rgba(96,165,250,.35);
}

/* Header */
.plan__header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    align-items: baseline;
}

.plan__title {
    font-size: 1.25rem;
    margin: 2em 0 0 0;
    letter-spacing: .2px;
}

.sub_plan__title {
    grid-column: 1 / -1;
    margin: 0 0 1em 0;
    min-height:50px;
}

.tag {
    justify-self: end;
    font-size: .75rem;
    line-height: 1;
    padding: 10px;
    /*padding: 6px 8px;*/
    /*border-radius: 999px;*/
    border-radius: var(--radius);
    border: 1px solid var(--autena-border);
    color: var(--autena-sub);
    background: var(--autena-muted);
}

.tag--green {
    color: #052e22;
    background: linear-gradient(180deg, #a7f3d0, #6ee7b7);
    border-color: rgba(16,185,129,.4);
    font-weight: 600;
    /*max-width: 40%;*/
    margin: 0;
    position: absolute;
    top: 5px;
    right: 5px;
}

.tag--anchor {
    color: #052e22;
    background-color: rgba(96,165,250,.35);
    border-color: rgba(96,165,250,.35);
    font-weight: 600;
    /*max-width: 40%;*/
    margin: 0;
    position: absolute;
    top: 5px;
    right: 5px;
}

.tag--standard {
    color: var(--ink);
    background-color: var(--bg-light);
    border-color: var(--bg-light);
    font-weight: 600;
    /*max-width: 40%;*/
    margin: 0;
    position: absolute;
    top: 5px;
    right: 5px;
}
/* Price */
.price {
    grid-column: 1 / -1;
    margin: 1em 0 2em;
    font-size: 1rem;
    color: var(--autena-sub);
}

    .price span:first-child {
        font-size: 2rem;
        /*color: #fff;*/
        font-weight: 700;
        margin-right: 2px;
    }

.price__per {
    font-size: .95rem;
    color: var(--autena-sub);
}

/* Meta */
.meta {
    grid-column: 1 / -1;
    font-size: .9rem;
    color: var(--autena-sub);
    margin: 4px 0 0;
}

/* Bullets */
.bullets {
    margin: 8px 0 0;
    padding-left: 20px;
    display: grid;
    gap: 6px;
}

    .bullets li {
        line-height: 1.45;
    }

/* CTA button inside plan */
.plan__cta {
    margin-top: 4px;
}

/* Pass block */
.pass {
    display: grid;
    gap: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
    border: 1px dashed var(--autena-border);
    border-radius: 12px;
    padding: 14px;
}

.pass-title {
    margin: 2em 0;
    font-weight: 700;
}

.credit-note {
    margin: 2em 0 1em 0;
    font-size: .85rem;
    color: var(--autena-sub);
}
/* Trust row */
.trust {
    margin-top: 24px;
    padding-top: 12px;
    border-top: 1px solid var(--autena-border);
    color: var(--autena-sub);
}

    .trust ul {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 24px;
        padding-left: 18px;
        margin: 0 0 6px;
    }

    .trust .link {
        color: var(--autena-accent);
        text-decoration: underline;
    }

.micro-kicker {
    margin-top: .25rem;
    color: #555;
    font-size: .95rem;
}

.pricing-subhead {
    margin-top: 2rem;
    /*font-size: 1.1rem;*/
    font-weight: 600;
}

.when {
    margin: 4rem 0 1em;
    color: #444;
    font-size: .95rem;
    grid-column: 1 / -1;
    min-height:50px;
}

.pass-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #666;
    margin: 1em 0 2rem;
}



/* =====  Confidence links  ===== */
.confidence .section-title {
    margin: 0 0 var(--space-sm)
}

.confidence .confidence-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}



/* =====  CTA bar (global)  ===== */
.cta-bar {
    background: #fff;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    padding-block: var(--space-xl)
}

.cta-title {
    margin: 0 0 6px
}

.cta-sub {
    margin: 0;
    color: var(--muted)
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}




/* =====  Quotes  ===== */
.quote blockquote {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5
}

.quote figcaption {
    margin-top: 6px
}

/* =====  Forms (lead / contact shared skin)  ===== */
.lead-form,
.contact-form {
    display: grid;
    gap: 12px
/*    display: flex;
    gap: 24px;
    align-items: flex-start;*/
}

.lead-row {
    /*    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px*/
    display: block; /* kill previous grid */
    margin-bottom: 12px;
}

/* make the hidden labels visible inside this form only */
.lead-form label.sr-only {
    position: static !important;
    width: auto !important;
    height: auto !important;
    margin: 0 0 6px !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    border: 0 !important;
    display: block;
    font-weight: 600; /* optional: make label clearer */
}


.lead-form input, 
.lead-form select, 
.lead-form textarea,
.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    font: inherit;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--brand);
    border-radius: var(--radius);
    padding: 12px;
    line-height: 1.4;
    transition: border-color .2s ease, box-shadow .2s ease;
    appearance: none
}

    .lead-form input:focus, 
    .lead-form select:focus, 
    .lead-form textarea:focus,
    .contact-form input:focus, 
    .contact-form select:focus, 
    .contact-form textarea:focus {
        outline: 3px solid var(--ring);
        outline-offset: 1px;
        border-color: var(--brand)
    }

.lead-form ::placeholder, 
.contact-form ::placeholder {
    color: var(--muted)
}

/* =====  field heights for tidy rhythm  ===== */
.lead-form input, 
.lead-form select,
.contact-form input, 
.contact-form select {
    height: var(--control-h)
}

.lead-form textarea, 
.contact-form textarea {
    min-height: calc(var(--control-h) * 2 + 8px); 
    resize: vertical;
}

.lead-form 
.lead-row:last-child {
    grid-template-columns: 1fr auto;
    align-items: end
}

.lead-form .btn, 
.contact-form .btn {
    min-height: var(--control-h);
    line-height: 1
}

/* ===== Custom select arrow (small) ===== */
.lead-form select {
    /* hide native arrows cross-browser */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* add space for the arrow */
    padding-right: 36px;
    /* tiny SVG caret */
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' aria-hidden='true'>\
<path d='M1 1l4 4 4-4' fill='none' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/>\
</svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 12px;
}

    /* hide the IE/Edge legacy arrow if ever relevant */
    .lead-form select::-ms-expand {
        display: none;
    }


/* =====  Utilities  ===== */
.pricing-cards {
    grid-template-columns: 1fr
}

/*.lead-row {
    grid-template-columns: 1fr
}*/

/* =====  Accessibility helpers  ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

/* add to your CSS */
.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    white-space: nowrap;
}

.field-error {
    margin: .25rem 0 0;
    font-size: .875rem;
    color: #EF4444;
}

input[aria-invalid="true"], 
select[aria-invalid="true"], 
textarea[aria-invalid="true"] {
    outline: 2px solid #EF4444;
}






.row {
    display: flex;
    gap: var(--space-md)
}

.center {
    text-align: center
}

.between {
    justify-content: space-between
}

.middle {
    align-items: center
}

.top {
    align-items: flex-start;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff !important;
}

.height100 {
    min-height: 100px;
}

.height75 {
    min-height: 75px;
}











