/* ===========================================================
   Cafmy — Marketing site styles (Bootstrap 5 overlay)
   Palette derived from the logo's "y" gradient:
     - Primary:  green → teal gradient (used everywhere accents go)
     - Ink:      near-black for body & headings
     - Blue:     minimal — only used as a faint dot accent
   =========================================================== */

:root {
    /* Brand gradient (from the "y" in the logo) */
    --c-green:       #2BD96B;
    --c-green-2:     #2EE0A1;
    --c-teal:        #17C2B5;
    --c-teal-2:      #1AAEB8;

    --c-grad:        linear-gradient(135deg, var(--c-green) 0%, var(--c-teal) 100%);
    --c-grad-soft:   linear-gradient(135deg, rgba(43, 217, 107, 0.10) 0%, rgba(23, 194, 181, 0.10) 100%);
    --c-grad-strong: linear-gradient(135deg, #1ECF65 0%, #14B5A8 100%);

    /* Neutrals */
    --c-ink:         #0E1A33;
    --c-ink-2:       #344158;
    --c-muted:       #5B6477;
    --c-line:        #E5EAF2;
    --c-line-2:      #EEF1F7;
    --c-bg:          #FFFFFF;
    --c-bg-soft:     #F6F8FC;
    --c-bg-dark:     #0F1B36;

    /* Reserved minimal-use blue */
    --c-blue:        #2547B5;
    --c-blue-soft:   #E8EEFB;

    /* Status */
    --c-amber:       #F59E0B;
    --c-red:         #EF4444;

    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 22px;

    --shadow-sm: 0 1px 2px rgba(14, 26, 51, 0.06);
    --shadow:    0 8px 24px rgba(14, 26, 51, 0.08);
    --shadow-lg: 0 24px 60px rgba(14, 26, 51, 0.14);

    --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

    /* Bootstrap variable overrides — keep BS in sync with our palette */
    --bs-body-font-family: var(--font-sans);
    --bs-body-color: var(--c-ink);
    --bs-link-color: var(--c-teal-2);
    --bs-link-hover-color: var(--c-ink);
    --bs-border-color: var(--c-line);
    --bs-border-radius: var(--radius-sm);
}

html, body {
    background: var(--c-bg);
    color: var(--c-ink);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; }

a { color: var(--c-teal-2); text-decoration: none; transition: color 160ms ease; }
a:hover { color: var(--c-ink); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--c-ink);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem;   font-weight: 600; }

p { color: var(--c-ink-2); }

/* ----------- Brand button (gradient) ----------- */
.btn-brand {
    background: var(--c-grad);
    color: #fff;
    border: 0;
    padding: .8rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(23, 194, 181, 0.32);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}
.btn-brand:hover, .btn-brand:focus {
    background: var(--c-grad-strong);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(23, 194, 181, 0.40);
}
.btn-brand.btn-sm  { padding: .55rem 1rem; font-size: .85rem; }
.btn-brand.btn-lg  { padding: 1rem 1.6rem; font-size: 1rem; }

.btn-outline-dark {
    border-radius: 999px;
    border: 1px solid var(--c-line);
    color: var(--c-ink);
    background: #fff;
    padding: .8rem 1.4rem;
    font-weight: 600;
}
.btn-outline-dark:hover, .btn-outline-dark:focus {
    background: var(--c-bg-soft);
    color: var(--c-ink);
    border-color: var(--c-line);
}
.btn-light, .btn-outline-light {
    border-radius: 999px;
    padding: .8rem 1.4rem;
    font-weight: 600;
}
.btn-outline-light { border-color: rgba(255,255,255,0.3); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.10); color: #fff; }

/* ----------- Top utility bar ----------- */
.topbar {
    background: #0B1730;
    color: rgba(255, 255, 255, 0.85);
    font-size: .82rem;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar .container { min-height: 28px; }
.topbar-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 160ms ease;
}
.topbar-link:hover { color: #fff; }
.topbar-link i {
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: .9rem;
}
.topbar-meta {
    color: rgba(255, 255, 255, 0.65);
    display: inline-flex;
    align-items: center;
}
.topbar-meta i {
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.topbar-tag {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
    background: rgba(23, 194, 181, 0.14);
    border: 1px solid rgba(23, 194, 181, 0.28);
    padding: .15rem .65rem;
    border-radius: 999px;
    font-size: .76rem;
    letter-spacing: .02em;
}
.topbar-tag i {
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ----------- Navbar ----------- */
.site-header {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--c-line);
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.brand-logo { height: 40px; width: auto; display: block; }

.navbar-nav .nav-link {
    color: var(--c-ink-2) !important;
    font-weight: 500;
    font-size: .94rem;
    padding: .55rem .85rem !important;
    border-radius: 8px;
    margin: 0 .15rem;
    transition: background 160ms ease, color 160ms ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--c-ink) !important;
    background: var(--c-grad-soft);
}
.navbar-nav .dropdown-toggle::after {
    margin-left: .35rem;
    vertical-align: .15em;
    border-top-color: currentColor;
}
.dropdown-menu {
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: .5rem;
    min-width: 240px;
}
.dropdown-item {
    border-radius: 8px;
    padding: .55rem .75rem;
    font-size: .92rem;
    color: var(--c-ink-2);
}
.dropdown-item:hover, .dropdown-item:focus {
    background: var(--c-grad-soft);
    color: var(--c-ink);
}

/* ----------- Mega menu ----------- */
.mega-dropdown { position: static; }
.mega-menu {
    left: 0 !important;
    right: 0 !important;
    margin-top: 0 !important;
    background: #fff;
    border: 1px solid var(--c-line);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    transform: translateY(0) !important;
}
.mega-grid {
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
}
.mega-feature {
    background: linear-gradient(155deg, rgba(43, 217, 107, 0.08) 0%, rgba(23, 194, 181, 0.08) 100%);
    padding: 28px 28px 24px;
    border-right: 1px solid var(--c-line-2);
}
.mega-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .68rem;
    font-weight: 700;
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: .55rem;
}
.mega-feature h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 .5rem;
    color: var(--c-ink);
}
.mega-feature p {
    color: var(--c-ink-2);
    font-size: .88rem;
    margin-bottom: .75rem;
}
.mega-items { padding: 24px 28px; }
.mega-items-bordered { border-right: 1px solid var(--c-line-2); }
.mega-section-link { display: inline-block; text-decoration: none; }
.mega-section-link:hover .mega-section-title {
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.mega-section-title {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .72rem;
    font-weight: 700;
    color: var(--c-ink);
    transition: color 160ms ease;
}
.mega-link-compact {
    padding: .45rem .6rem;
    align-items: center;
}
.mega-link-compact i {
    font-size: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 8px;
}
.mega-link-compact strong {
    font-size: .85rem;
    font-weight: 600;
}
.mega-readmore {
    display: flex;
    justify-content: flex-end;
    margin-top: .75rem;
    padding-top: .65rem;
    border-top: 1px dashed var(--c-line-2);
}
.mega-readmore a {
    display: inline-flex;
    align-items: center;
    font-size: .82rem;
    font-weight: 700;
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: gap 160ms ease;
}
.mega-readmore a i {
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.mega-readmore a:hover { letter-spacing: .015em; }
.mega-link {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .65rem .75rem;
    border-radius: var(--radius-sm);
    color: var(--c-ink);
    transition: background 160ms ease, transform 160ms ease;
    text-decoration: none;
}
.mega-link:hover {
    background: var(--c-grad-soft);
    color: var(--c-ink);
    transform: translateX(2px);
}
.mega-link i {
    flex-shrink: 0;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c-grad);
    color: #fff;
    box-shadow: 0 6px 12px rgba(23, 194, 181, 0.25);
}
.mega-link span {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    min-width: 0;
}
.mega-link strong {
    font-size: .92rem;
    font-weight: 700;
    color: var(--c-ink);
    line-height: 1.25;
}
.mega-link small {
    font-size: .76rem;
    color: var(--c-muted);
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .mega-menu {
        position: static !important;
        border: 0;
        box-shadow: none;
        border-radius: 0;
        background: var(--c-bg-soft);
        margin-top: .25rem !important;
    }
    .mega-feature, .mega-items, .mega-items-bordered { padding: 16px; border-right: none; }
    .mega-feature {
        background: rgba(23, 194, 181, 0.06);
        border-radius: var(--radius-sm);
    }
}

/* ----------- Sector cards ----------- */
.sector-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.sector-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(23, 194, 181, 0.40);
}
.sector-card h3 {
    font-size: 1.1rem;
    margin: 0 0 .5rem;
    color: var(--c-ink);
}
.sector-card p {
    font-size: .94rem;
    color: var(--c-ink-2);
    margin-bottom: .85rem;
}
.sector-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--c-grad);
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 18px rgba(23, 194, 181, 0.30);
}
.sector-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.sector-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: .88rem;
    color: var(--c-ink-2);
}
.sector-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--c-grad);
}

/* Compact variant for /sectors all-30 grid */
.sector-card-compact {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.sector-card-compact .sector-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    border-radius: 12px;
    margin-bottom: .65rem;
    box-shadow: 0 6px 14px rgba(23, 194, 181, 0.25);
}
.sector-card-compact h3 {
    font-size: 1rem;
    margin: 0 0 .25rem;
}
.sector-card-compact p {
    margin: 0;
    font-size: .88rem;
    color: var(--c-ink-2);
}

/* ----------- Sections ----------- */
.section { padding: 88px 0; }
.section-light { background: var(--c-bg-soft); }
.section-dark  { background: linear-gradient(180deg, #0F1B36 0%, #142446 100%); color: #fff; }
.section-dark p { color: rgba(255,255,255,0.78); }
.section-dark h2, .section-dark h4 { color: #fff; }

.section-head { margin-bottom: 56px; }
.section-head-left { text-align: left; }
.section-head p { font-size: 1.06rem; }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .76rem;
    font-weight: 700;
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: .35rem 0;
    margin-bottom: 1rem;
}
.eyebrow-light {
    color: rgba(255,255,255,0.85);
    background: none;
    -webkit-text-fill-color: rgba(255,255,255,0.85);
}

.lead { font-size: 1.12rem; color: var(--c-ink-2); max-width: 720px; }

.text-amber  { color: var(--c-amber); font-weight: 600; }
.text-brand  {
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}


/* ===========================================================
   Hero — multi-slide, native-design
   Inspired by the promo: kicker pill, big bold headline with
   gradient accent, gradient divider, role/word/feature chips.
   But no boxed "stage" frame — it lives inline with the page.
   =========================================================== */
.hero {
    position: relative;
    padding: 80px 0 64px;
    background:
        /* warm brand glow on top */
        radial-gradient(900px 420px at 95% -10%, rgba(43, 217, 107, 0.18) 0%, rgba(43, 217, 107, 0) 60%),
        radial-gradient(800px 380px at -5% 0%,  rgba(23, 194, 181, 0.20) 0%, rgba(23, 194, 181, 0) 60%),
        /* solid navy fallback (sits behind the swappable backdrop image) */
        #0d2340;
    border-bottom: 1px solid rgba(23, 194, 181, 0.25);
    overflow: hidden;
    color: #fff;
}

/* swappable photo backdrop layers — JS crossfades between A and B */
.hero-backdrop {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 700ms ease;
    z-index: 0;
    pointer-events: none;
}
.hero-backdrop.is-visible { opacity: 1; }

/* dark gradient + dot pattern that always sits above the photo so text stays readable */
.hero-backdrop-tint {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(135deg, rgba(13, 35, 64, 0.82) 0%, rgba(15, 27, 54, 0.62) 60%, rgba(15, 168, 156, 0.45) 100%);
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: .35;
    z-index: 1;
}
.hero-blob-1 { width: 380px; height: 380px; background: #17C2B5; top: -120px; right: -100px; }
.hero-blob-2 { width: 300px; height: 300px; background: #2BD96B; bottom: -120px; left: -120px; }
.hero .container { position: relative; z-index: 2; }

/* readability shifts for hero text on the dark photo backdrop */
.hero .kicker {
    color: #ffffff;
    background: rgba(23, 194, 181, 0.20);
    border-color: rgba(255, 255, 255, 0.30);
}
.hero .kicker i { color: #5de8de; }
.hero .hero-headline { color: #ffffff; }
.hero .hero-headline .acc {
    background: linear-gradient(135deg, #2BD96B 0%, #5de8de 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero .lead { color: rgba(255, 255, 255, 0.88); }
.hero .lead strong { color: #fff; }
.hero .hero-divider {
    background: linear-gradient(90deg, #2BD96B, #5de8de);
}
.hero .hero-trust { border-top-color: rgba(255, 255, 255, 0.20) !important; }
.hero .hero-trust span { color: rgba(255, 255, 255, 0.75); }
.hero .three-words .wchip {
    background: rgba(23, 194, 181, 0.18);
    border-color: rgba(255, 255, 255, 0.30);
    color: #ffffff;
}
.hero .readmore-link {
    background: linear-gradient(135deg, #2BD96B 0%, #5de8de 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero .readmore-link i {
    background: linear-gradient(135deg, #2BD96B 0%, #5de8de 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero .btn-outline-dark {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.50);
    background: rgba(255, 255, 255, 0.06);
}
.hero .btn-outline-dark:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border-color: #fff;
}

/* slider controls — inverted for dark backdrop */
.hero-arrow {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.30);
    color: #fff;
}
.hero-arrow:hover {
    background: var(--c-grad);
    border-color: transparent;
    color: #fff;
}
.hero-dot { background: rgba(255, 255, 255, 0.30); }
.hero-dot.is-active { background: #5de8de; }
.hero-toggle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.30);
    color: #fff;
}
.hero-toggle:hover { background: rgba(255, 255, 255, 0.22); }
.hero-progress { background: rgba(255, 255, 255, 0.12); }

/* slider track */
.hero-slider {
    position: relative;
    min-height: 460px;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 480ms ease, transform 480ms ease, visibility 0s linear 480ms;
    transform: translateY(8px);
}
.hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 480ms ease, transform 480ms ease, visibility 0s linear 0s;
}
.hero-slide.is-active .kicker        { animation: heroFadeDown .5s .00s ease both; }
.hero-slide.is-active .hero-headline { animation: heroFadeUp   .5s .08s ease both; }
.hero-slide.is-active .hero-divider  { animation: heroFadeIn   .5s .14s ease both; }
.hero-slide.is-active .lead          { animation: heroFadeUp   .5s .18s ease both; }
.hero-slide.is-active .hero-actions,
.hero-slide.is-active .three-words,
.hero-slide.is-active .readmore-link { animation: heroFadeUp   .5s .26s ease both; }
.hero-slide.is-active .hero-trust    { animation: heroFadeUp   .5s .34s ease both; }
.hero-slide.is-active .hero-visual   { animation: heroFadeUp   .55s .12s ease both; }

@keyframes heroFadeUp   { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes heroFadeDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
@keyframes heroFadeIn   { from { opacity: 0; } to { opacity: 1; } }

.kicker {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 700;
    color: #0fa89c;
    background: rgba(23, 194, 181, 0.10);
    border: 1px solid rgba(23, 194, 181, 0.22);
    padding: .4rem .85rem;
    border-radius: 999px;
    margin-bottom: 1.1rem;
}
.kicker i { color: #17C2B5; }
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4.2vw, 3.1rem);
    line-height: 1.1;
    letter-spacing: -.015em;
    font-weight: 800;
    color: #0d2340;
    margin: 0 0 .5rem;
}
.hero-headline .acc {
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-divider {
    display: block;
    width: 56px; height: 3px;
    margin: .85rem 0 1rem;
    border-radius: 4px;
    background: linear-gradient(90deg, #0fa89c, #17C2B5);
}
.hero-actions { margin: 0; }
.hero-trust strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-trust span { color: var(--c-muted); font-size: .85rem; }

/* ----------- Unified hero-card (right side of every slide) -----------
   Same shell across all slides: head (eyebrow + title + status pill)
   → KPI strip → body (chart / feed / chips / ticks) → footer legend.
*/
.hero-visual { position: relative; min-height: 280px; }
.hero-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 220ms ease, box-shadow 220ms ease;
}
.hero-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0fa89c, #17C2B5, #5de8de);
}
.hero-card:hover { transform: translateY(-3px); box-shadow: 0 28px 70px rgba(14, 26, 51, .18); }

/* head */
.hero-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: .75rem;
    flex-wrap: wrap;
}
.hero-card-eyebrow {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .68rem;
    font-weight: 700;
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-card-eyebrow i {
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-card-title {
    margin: .25rem 0 0;
    font-size: 1.05rem;
    color: var(--c-ink);
    font-weight: 700;
    font-family: var(--font-display);
}
.hero-card-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: .25rem .55rem;
    border-radius: 999px;
    white-space: nowrap;
}
.hero-card-pill-brand {
    background: rgba(23, 194, 181, 0.10);
    border: 1px solid rgba(23, 194, 181, 0.25);
    color: #0F8F86;
}
.hero-card-pill-green {
    background: #E5F8EE;
    border: 1px solid #B6EDCC;
    color: #0E8F4F;
}
.hero-live-dot {
    width: 7px; height: 7px;
    border-radius: 999px;
    background: #2BD96B;
    box-shadow: 0 0 0 4px rgba(43, 217, 107, 0.20);
    animation: heroLivePulse 1.6s ease-out infinite;
    display: inline-block;
}
@keyframes heroLivePulse {
    0%   { box-shadow: 0 0 0 0 rgba(43, 217, 107, 0.45); }
    70%  { box-shadow: 0 0 0 8px rgba(43, 217, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(43, 217, 107, 0); }
}

/* KPI strip */
.hero-card-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
    padding: .75rem;
    background: var(--c-bg-soft);
    border-radius: var(--radius-sm);
}
.hero-card-kpi { display: flex; flex-direction: column; gap: .15rem; }
.hero-card-kpi span {
    font-size: .68rem;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.hero-card-kpi strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--c-ink);
    font-weight: 800;
    line-height: 1;
}
.hero-card-kpi strong small { font-size: .72rem; color: var(--c-muted); font-weight: 600; }
.hero-card-kpi strong.text-brand {
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* body (chart / feed / chip grid / feature ticks) */
.hero-card-body { display: flex; flex-direction: column; gap: .5rem; }
.hero-card-chart svg { width: 100%; height: auto; display: block; }

/* live feed rows (S1) */
.hero-feed-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .55rem;
    padding: .5rem .65rem;
    background: var(--c-bg-soft);
    border-radius: var(--radius-sm);
    font-size: .82rem;
}
.hero-feed-id {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--c-ink);
    font-size: .76rem;
}
.hero-feed-text {
    color: var(--c-ink-2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* footer legend */
.hero-card-foot {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    padding-top: 8px;
    border-top: 1px solid var(--c-line-2);
    color: var(--c-muted);
    font-size: .76rem;
}
.hero-card-foot i { font-size: .55rem; margin-right: .15rem; vertical-align: middle; }

/* role chips (slide 3) */
.roles {
    display: flex; flex-wrap: wrap; gap: .55rem;
}
.rtag {
    display: inline-flex;
    align-items: center;
    background: rgba(23, 194, 181, 0.10);
    border: 1px solid rgba(23, 194, 181, 0.22);
    color: #0fa89c;
    padding: .5rem 1rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .02em;
}
.rtag i { color: #17C2B5; }

/* three word chips (slide 2) */
.three-words { display: flex; gap: .55rem; flex-wrap: wrap; }
.wchip {
    background: rgba(23, 194, 181, 0.10);
    border: 1.5px solid rgba(23, 194, 181, 0.25);
    border-radius: 8px;
    padding: .5rem 1.1rem;
    font-size: .76rem; font-weight: 700; letter-spacing: .14em;
    color: #0fa89c; text-transform: uppercase;
}

/* industry image grid (slide 4) */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
}
.ind-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(23, 194, 181, 0.18);
    box-shadow: 0 2px 10px rgba(23, 194, 181, 0.10);
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}
.ind-card:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(23, 194, 181, 0.20); }
.ind-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(.7) saturate(.95);
    display: block;
}
.ind-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.4rem .6rem .55rem;
    background: linear-gradient(transparent, rgba(13, 35, 64, .85));
    font-size: .68rem; font-weight: 800; letter-spacing: .12em;
    text-transform: uppercase; color: #fff;
}

/* feature ticks (slide 5) */
.feat-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem 1.4rem;
}
.feat-item {
    display: flex; align-items: center; gap: .65rem;
    font-size: .92rem; color: var(--c-ink); font-weight: 500;
}
.tick {
    width: 22px; height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0fa89c, #17C2B5);
    color: #fff; font-size: .72rem; font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(23, 194, 181, 0.30);
}

/* "Read more" inline link */
.readmore-link {
    display: inline-flex;
    align-items: center;
    font-size: .92rem;
    font-weight: 700;
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: gap 160ms ease;
}
.readmore-link i {
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.readmore-link:hover { gap: .35rem; }

/* slider controls */
.hero-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    margin-top: 2rem;
}
.hero-arrow {
    width: 40px; height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(23, 194, 181, 0.22);
    background: rgba(255, 255, 255, 0.85);
    color: #0fa89c;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: background 160ms ease, transform 160ms ease, color 160ms ease;
}
.hero-arrow:hover {
    background: var(--c-grad);
    color: #fff;
    transform: scale(1.06);
}
.hero-dots { display: inline-flex; gap: .35rem; padding: 0 .25rem; }
.hero-dot {
    width: 8px; height: 8px;
    border-radius: 4px;
    background: rgba(23, 194, 181, 0.25);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: width 220ms ease, background 220ms ease;
}
.hero-dot.is-active { background: #17C2B5; width: 24px; }
.hero-toggle {
    width: 32px; height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(23, 194, 181, 0.22);
    background: rgba(23, 194, 181, 0.08);
    color: #0fa89c;
    cursor: pointer;
    font-size: .82rem;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 160ms ease;
}
.hero-toggle:hover { background: rgba(23, 194, 181, 0.18); }

/* progress bar */
.hero-progress {
    margin-top: .85rem;
    width: 100%;
    height: 3px;
    background: rgba(23, 194, 181, 0.10);
    border-radius: 999px;
    overflow: hidden;
}
.hero-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0fa89c, #17C2B5, #5de8de);
    transition: width 80ms linear;
}

/* responsive */
@media (max-width: 991.98px) {
    .hero-slider { min-height: 620px; }
    .ind-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767.98px) {
    .hero { padding: 40px 0; }
    .hero-slider { min-height: 720px; }
    .hero-headline { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .ind-grid { grid-template-columns: repeat(2, 1fr); }
    .feat-wrap { grid-template-columns: 1fr; }
}

/* ----------- Cards ----------- */
.card {
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    background: #fff;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.card-feature h3 { margin-bottom: .35rem; }
.card-feature p  { font-size: .95rem; color: var(--c-ink-2); }
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #D7DFEF;
}
.card-icon {
    display: inline-flex;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    background: var(--c-grad);
    color: #fff;
    border-radius: 12px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 14px rgba(23, 194, 181, 0.30);
}

.link-arrow {
    display: inline-flex; align-items: center; gap: .35rem;
    font-weight: 600; font-size: .92rem;
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: .75rem;
}
.link-arrow::after {
    content: "→";
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: transform 160ms ease;
}
.link-arrow:hover::after { transform: translateX(3px); }

.capability {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 22px;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.capability:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: #D7DFEF;
}
.capability h3 {
    margin-bottom: .35rem;
    font-size: 1.02rem;
    color: var(--c-ink);
    display: flex; align-items: center;
}
.capability h3 i {
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.25rem;
}
.capability p { margin: 0; font-size: .92rem; color: var(--c-ink-2); }

/* ----------- Breadcrumb ----------- */
.breadcrumb {
    font-size: .85rem;
    background: transparent;
    padding: 0;
}
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-ink); }
.breadcrumb-item.active { color: var(--c-ink); font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--c-muted); }

/* ----------- FAQ accordion ----------- */
.accordion-flush .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--c-line);
    background: transparent;
}
.accordion-flush .accordion-button {
    background: transparent;
    color: var(--c-ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1.1rem 0;
    box-shadow: none;
}
.accordion-flush .accordion-button:not(.collapsed) {
    color: var(--c-ink);
    background: transparent;
}
.accordion-flush .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}
.accordion-flush .accordion-body {
    padding: 0 0 1.25rem;
    color: var(--c-ink-2);
    font-size: .98rem;
}

/* ----------- Page hero ----------- */
.page-hero {
    padding: 56px 0 56px;
    background:
        radial-gradient(900px 360px at 80% 0%, rgba(43, 217, 107, 0.12) 0%, rgba(43, 217, 107, 0) 60%),
        radial-gradient(800px 320px at 0% 0%, rgba(23, 194, 181, 0.12) 0%, rgba(23, 194, 181, 0) 60%),
        #fff;
    border-bottom: 1px solid var(--c-line);
}
.page-hero h1 { max-width: 820px; }

/* ----------- Feature blocks ----------- */
.feature-block { border-bottom: 1px solid var(--c-line); }
.feature-block:last-child { border-bottom: none; }
.feature-block h2 { margin-bottom: .5rem; }
.feature-block-copy p { font-size: 1.02rem; }

.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: .55rem;
    color: var(--c-ink-2);
    font-size: .98rem;
}
.check-list li::before {
    content: "";
    position: absolute; left: 0; top: .35rem;
    width: 18px; height: 18px;
    border-radius: 999px;
    background: var(--c-grad);
    box-shadow: 0 0 0 3px rgba(23, 194, 181, 0.12);
}
.check-list li::after {
    content: "";
    position: absolute; left: 5px; top: .55rem;
    width: 8px; height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.mini-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}
.mini-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .55rem 0;
    border-bottom: 1px solid var(--c-line-2);
    font-size: .92rem;
    color: var(--c-ink-2);
}
.mini-row:last-child { border-bottom: none; }
.mini-row.mini-head { font-weight: 700; color: var(--c-ink); }
.mini-bar { height: 8px; background: var(--c-line-2); border-radius: 999px; overflow: hidden; margin: .35rem 0 .8rem; }
.mini-bar span { display: block; height: 100%; background: var(--c-grad); border-radius: 999px; }

.badge {
    display: inline-block;
    padding: .22rem .55rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .02em;
}
.badge-good     { background: #E5F8EE; color: #0E8F4F; }
.badge-brand    { background: rgba(23, 194, 181, 0.12); color: #0F8F86; }
.badge-amber    { background: #FFF3DB; color: #92591A; }
.badge-critical { background: #FDE8E8; color: #B42318; }

/* ----------- Dash cards (Live insight bar charts) ----------- */
.dash-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.dash-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #D7DFEF;
}
.dash-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: .75rem;
    flex-wrap: wrap;
}
.dash-card-head h3 {
    font-size: 1rem;
    margin: .25rem 0 0;
    color: var(--c-ink);
}
.dash-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: .25rem .55rem;
    border-radius: 999px;
    white-space: nowrap;
}
.dash-pill-brand {
    background: rgba(23, 194, 181, 0.10);
    border: 1px solid rgba(23, 194, 181, 0.25);
    color: #0F8F86;
}
.dash-pill-green {
    background: #E5F8EE;
    border: 1px solid #B6EDCC;
    color: #0E8F4F;
}
.dash-pill-amber {
    background: #FFF3DB;
    border: 1px solid #F5DDA8;
    color: #92591A;
}

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
    padding: .65rem;
    background: var(--c-bg-soft);
    border-radius: var(--radius-sm);
}
.dash-kpi { display: flex; flex-direction: column; gap: .15rem; }
.dash-kpi span {
    font-size: .68rem;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.dash-kpi strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--c-ink);
    font-weight: 800;
    line-height: 1;
}
.dash-kpi strong small { font-size: .7rem; color: var(--c-muted); font-weight: 600; }

.dash-chart-wrap { width: 100%; }
.dash-chart-wrap svg { width: 100%; height: auto; display: block; }

.dash-card-foot {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    padding-top: 8px;
    border-top: 1px solid var(--c-line-2);
    color: var(--c-muted);
    font-size: .76rem;
}
.dash-card-foot i { font-size: .55rem; margin-right: .15rem; vertical-align: middle; }

/* ----------- AI tiles (dark band) ----------- */
.ai-tile {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 20px;
    transition: background 200ms ease, border-color 200ms ease;
}
.ai-tile:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(43, 217, 107, 0.40);
}
.ai-tile h4 { color: #fff; margin-bottom: .35rem; font-size: 1rem; display: flex; align-items: center; }
.ai-tile h4 i {
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.2rem;
}
.ai-tile p { margin: 0; color: rgba(255,255,255,0.78); font-size: .92rem; }

/* ----------- How it works ----------- */
.flow-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 24px 22px;
    transition: transform 200ms ease, box-shadow 200ms ease;
}
.flow-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.flow-step {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 800; font-size: 1.05rem;
    background: var(--c-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: .15rem .55rem;
    border-radius: 8px;
    border: 1px solid rgba(23, 194, 181, 0.25);
    margin-bottom: 1rem;
}
.flow-card h3 { margin-bottom: .25rem; }
.flow-card p  { margin: 0; font-size: .93rem; color: var(--c-ink-2); }

/* ----------- CTA band ----------- */
.cta-band {
    background: var(--c-grad);
    color: #fff;
    border-radius: 28px;
    padding: 48px 56px;
    box-shadow: 0 24px 50px rgba(23, 194, 181, 0.30);
    position: relative;
    overflow: hidden;
}
.cta-band::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(600px 300px at 100% 0%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: .35rem; }
.cta-band p  { color: rgba(255,255,255,0.92); margin: 0; }

/* ----------- Solution cards ----------- */
.solution-card {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    color: inherit;
}
.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(23, 194, 181, 0.50);
    color: inherit;
}
.solution-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    background: var(--c-grad);
    color: #fff;
    padding: .3rem .6rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.solution-card h2 { margin-bottom: .5rem; }
.solution-card p  { margin-bottom: 1rem; }

/* ----------- Contact ----------- */
.contact-list li {
    display: flex; flex-direction: column;
    padding: .9rem 0;
    border-bottom: 1px solid var(--c-line);
}
.contact-list strong {
    text-transform: uppercase; letter-spacing: .1em;
    font-size: .72rem; color: var(--c-muted);
    margin-bottom: .25rem;
}
.contact-form {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}
.form-control:focus {
    border-color: var(--c-teal);
    box-shadow: 0 0 0 3px rgba(23, 194, 181, 0.18);
}
.form-label { font-weight: 600; color: var(--c-ink); }

.form-select:focus {
    border-color: var(--c-teal);
    box-shadow: 0 0 0 3px rgba(23, 194, 181, 0.18);
}
.form-check-input:focus {
    border-color: var(--c-teal);
    box-shadow: 0 0 0 3px rgba(23, 194, 181, 0.18);
}
.form-check-input:checked {
    background-color: #17C2B5;
    border-color: #17C2B5;
}

/* ============================================================
   Requirements form — minimal design
   Single column flow, slim group dividers, no boxed cards.
   ============================================================ */
.req-page {
    background: #fff;
    padding: 64px 0 96px;
}
.req-page-head {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}
.req-page-head h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--c-ink);
    margin: 0 0 .55rem;
    letter-spacing: -.01em;
}
.req-page-head p {
    color: var(--c-muted);
    font-size: .98rem;
    margin: 0;
}

.req-alert {
    max-width: 720px;
    margin: 0 auto 28px;
    padding: 14px 18px;
    background: #FDE8E8;
    border: 1px solid #F5C2C2;
    border-radius: 10px;
    color: #B42318;
    font-size: .92rem;
}
.req-alert p { margin: 0; }
.req-alert p + p { margin-top: 4px; }

.req-form-min {
    max-width: 720px;
    margin: 0 auto;
}

.req-group {
    padding: 28px 0;
    border-top: 1px solid var(--c-line);
}
.req-group:first-of-type { border-top: 0; padding-top: 0; }
.req-group-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #0fa89c;
    margin-bottom: 18px;
}

.req-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
}

.req-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.req-field:last-child { margin-bottom: 0; }
.req-row .req-field { margin-bottom: 0; }

.req-field > label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-ink-2);
    margin-bottom: 6px;
    letter-spacing: .01em;
}
.req-field > label span {
    color: #ef4444;
    margin-left: 2px;
}

.req-field input[type="text"],
.req-field input[type="email"],
.req-field input[type="tel"],
.req-field input[type="number"],
.req-field select,
.req-field textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: inherit;
    font-size: .94rem;
    color: var(--c-ink);
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 8px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
    box-sizing: border-box;
}
.req-field input:focus,
.req-field select:focus,
.req-field textarea:focus {
    outline: 0;
    border-color: var(--c-teal);
    box-shadow: 0 0 0 3px rgba(23, 194, 181, 0.14);
}
.req-field textarea {
    resize: vertical;
    min-height: 96px;
    line-height: 1.55;
}
.req-field select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235b6477' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

/* Inline radio row (Yes/No) */
.req-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}
.req-inline-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-ink-2);
    margin-bottom: 0;
}
.req-pill-row { display: inline-flex; gap: 8px; }
.req-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid var(--c-line);
    border-radius: 999px;
    font-size: .85rem;
    cursor: pointer;
    transition: all 160ms ease;
    color: var(--c-ink-2);
    background: #fff;
}
.req-pill input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid var(--c-line);
    margin: 0;
    cursor: pointer;
    transition: all 160ms ease;
    position: relative;
    background: #fff;
}
.req-pill input[type="radio"]:checked {
    border-color: #17C2B5;
    background: #17C2B5;
    box-shadow: inset 0 0 0 3px #fff;
}
.req-pill:has(input:checked) {
    border-color: #17C2B5;
    color: #0fa89c;
    background: rgba(23, 194, 181, 0.06);
}

/* Tag-style checkboxes */
.req-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.req-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--c-line);
    border-radius: 999px;
    font-size: .85rem;
    color: var(--c-ink-2);
    cursor: pointer;
    background: #fff;
    transition: all 160ms ease;
}
.req-tag:hover {
    border-color: rgba(23, 194, 181, 0.40);
    color: var(--c-ink);
}
.req-tag input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    border: 1.5px solid var(--c-line);
    margin: 0;
    cursor: pointer;
    transition: all 160ms ease;
    position: relative;
    background: #fff;
}
.req-tag input[type="checkbox"]:checked {
    background: #17C2B5;
    border-color: #17C2B5;
}
.req-tag input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 0;
    width: 4px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}
.req-tag:has(input:checked) {
    border-color: #17C2B5;
    background: rgba(23, 194, 181, 0.06);
    color: #0fa89c;
    font-weight: 600;
}

/* Inline "Other ___" pill — checkbox + label + free text */
.req-tag-other {
    padding: 6px 8px 6px 14px;
}
.req-other-input {
    border: 0;
    border-bottom: 1px dashed var(--c-line);
    border-radius: 0;
    padding: 2px 6px;
    font-family: inherit;
    font-size: .85rem;
    color: var(--c-ink);
    background: transparent;
    width: 140px;
    margin-left: 4px;
    transition: border-color 160ms ease;
    box-sizing: border-box;
}
.req-other-input:focus {
    outline: 0;
    border-bottom-color: #17C2B5;
    box-shadow: none;
}
.req-tag-other:has(input[type="checkbox"]:checked) .req-other-input {
    border-bottom-color: #17C2B5;
}

/* Submit row */
.req-submit-row {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--c-line);
    text-align: center;
}
.req-submit-row .btn-brand { padding-left: 36px; padding-right: 36px; }
.req-submit-note {
    margin: 14px 0 0;
    font-size: .82rem;
    color: var(--c-muted);
}

@media (max-width: 575.98px) {
    .req-page { padding: 40px 0 64px; }
    .req-row  { grid-template-columns: 1fr; gap: 18px; }
    .req-row .req-field { margin-bottom: 0; }
    .req-inline { align-items: flex-start; flex-direction: column; gap: 8px; }
}

/* ----------- Footer ----------- */
.site-footer {
    background: #0B1730;
    color: #C7D1E8;
}
.footer-logo {
    height: 36px; width: auto;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}
.footer-tagline { color: #9DAACB; font-size: .94rem; max-width: 360px; }
.footer-col h4 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .76rem;
    margin-bottom: 1rem;
}
.footer-col ul { padding: 0; margin: 0; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: #C7D1E8; font-size: .92rem; }
.footer-col a:hover { color: #fff; }

.footer-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    color: #8595BA;
    font-size: .85rem;
}
.footer-meta { color: #6E7FA7; }

/* ----------- Responsive tweaks ----------- */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        border-radius: var(--radius);
        margin-top: .5rem;
        padding: .75rem;
        box-shadow: var(--shadow);
    }
    .navbar-nav .nav-link { margin: .15rem 0; }
}
@media (max-width: 767.98px) {
    .section { padding: 64px 0; }
    .cta-band { padding: 32px; }
    .hero-card-side { right: 0; }
}
