:root {
    --esire-black: #0f0f0e;
    --esire-primary: #deded3;
    --esire-light: #fbf9f2;
    --esire-gray: #5d6060;
    --esire-muted: #9a9a95;
    --esire-border: #d7dcd8;
    --esire-olive: #777646;
    --esire-gold: #d2b155;
    --esire-blue: #a6cddd;
    --esire-red: #b6312a;
    --esire-rose: #ba454f;
    --esire-steel: #7aa9c9;
    --esire-white: #ffffff;
    --esire-font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --esire-font-mono: 'JetBrains Mono', Consolas, 'Liberation Mono', monospace;
    --esire-shadow: 0 22px 70px rgba(15, 15, 14, .12);
    --esire-shadow-soft: 0 14px 42px rgba(15, 15, 14, .08);
    --esire-radius: 1.1rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--esire-black);
    background: var(--esire-light);
    font-family: var(--esire-font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

    a:hover {
        color: var(--esire-olive);
    }

img {
    max-width: 100%;
}

::selection {
    background: rgba(119, 118, 70, .22);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1030;
    transition: background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .site-header.is-scrolled {
        box-shadow: 0 16px 42px rgba(15, 15, 14, .18);
    }

.site-nav {
    min-height: 76px;
    background: rgba(15, 15, 14, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
}

.brand-lockup, .footer-brand {
    color: var(--esire-light);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    width: 90px;
    height: auto;
    color: currentColor;
    display: block;
}

.site-nav .brand-logo {
    color: var(--esire-light);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(251, 249, 242, .68);
    font-size: .91rem;
    font-weight: 700;
    letter-spacing: .01em;
    padding: .55rem .75rem;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: var(--esire-light);
    }

.nav-link-utility {
    color: rgba(251, 249, 242, .54) !important;
}

.btn-esire {
    /* Primary eSire CTA */
    color: #fff !important;
    background-color: #b94245 !important;
    border-color: #b94245 !important;
    /* Bootstrap 5 variable support */
    --bs-btn-color: #fff;
    --bs-btn-bg: #b94245;
    --bs-btn-border-color: #b94245;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #9f3639;
    --bs-btn-hover-border-color: #9f3639;
    --bs-btn-focus-shadow-rgb: 185, 66, 69;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #8c3033;
    --bs-btn-active-border-color: #8c3033;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #b94245;
    --bs-btn-disabled-border-color: #b94245;
    border-radius: .35rem;
    font-weight: 800;
    letter-spacing: .01em;
    padding: .7rem 1rem;
}

    .btn-esire:hover,
    .btn-esire:focus,
    .btn-esire:focus-visible {
        color: #fff !important;
        background-color: #9f3639 !important;
        border-color: #9f3639 !important;
    }

    .btn-esire:active,
    .btn-esire.active,
    .btn-esire.show,
    .btn-esire:first-child:active {
        color: #fff !important;
        background-color: #8c3033 !important;
        border-color: #8c3033 !important;
    }

.btn-esire-light {
    --bs-btn-color: var(--esire-black);
    --bs-btn-bg: var(--esire-light);
    --bs-btn-border-color: var(--esire-light);
    --bs-btn-hover-color: var(--esire-light);
    --bs-btn-hover-bg: var(--esire-olive);
    --bs-btn-hover-border-color: var(--esire-olive);
    border-radius: .35rem;
    font-weight: 800;
    padding: .82rem 1.2rem;
}

.btn-esire-outline {
    color: var(--esire-light);
    border: 1px solid rgba(251, 249, 242, .24);
    background: rgba(255, 255, 255, .06);
    border-radius: .35rem;
    font-weight: 800;
    padding: .82rem 1.2rem;
}

    .btn-esire-outline:hover {
        color: var(--esire-light);
        background: rgba(255, 255, 255, .11);
        border-color: rgba(251,249,242,.38);
    }

.section-dark {
    background: var(--esire-black);
    color: var(--esire-light);
}

.section-light {
    background: var(--esire-light);
}

.section-white {
    background: var(--esire-white);
}

.grid-bg, .dark-grid-bg {
    position: relative;
}

    .grid-bg::before, .dark-grid-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: linear-gradient(rgba(119,118,70,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(119,118,70,.08) 1px, transparent 1px);
        background-size: 42px 42px;
    }

    .dark-grid-bg::before {
        background-image: linear-gradient(rgba(251,249,242,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(251,249,242,.055) 1px, transparent 1px);
    }

.hero {
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8.2rem 0 5.4rem;
}

    .hero .container-xl, .cta .container-xl {
        position: relative;
        z-index: 2;
        padding-top: 25px;
    }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    border: 1px solid rgba(251, 249, 242, .14);
    background: rgba(255,255,255,.055);
    color: rgba(251, 249, 242, .72);
    border-radius: 999px;
    padding: .45rem .75rem;
    font-family: var(--esire-font-mono);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

    .eyebrow .dot {
        width: .48rem;
        height: .48rem;
        border-radius: 999px;
        background: var(--esire-olive);
        box-shadow: 0 0 0 5px rgba(119,118,70,.16);
    }

.hero-title {
    margin: 1.45rem 0 1.25rem;
    color: var(--esire-light);
    font-size: clamp(3rem, 7vw, 5.9rem);
    line-height: .95;
    letter-spacing: .01em;
    font-weight: 900;
}

    .hero-title span {
        color: var(--esire-primary);
    }

.hero-copy {
    max-width: 590px;
    color: rgba(251, 249, 242, .66);
    font-size: 1.08rem;
    line-height: 1.78;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding-top: 1.6rem;
    margin-top: 1.75rem;
    border-top: 1px solid rgba(251,249,242,.12);
}

.hero-stat {
    min-width: 110px;
}

    .hero-stat strong {
        display: block;
        color: var(--esire-light);
        font-family: var(--esire-font-mono);
        font-size: 1.1rem;
    }

    .hero-stat span {
        /*color: rgba(251,249,242,.45);*/
        font-size: .78rem;
        font-weight: 700;
    }

.app-window {
    position: relative;
    border: 1px solid rgba(215, 220, 216, .7);
    background: var(--esire-white);
    border-radius: 1rem;
    box-shadow: var(--esire-shadow);
    overflow: hidden;
}

    .app-window::before {
        content: '';
        position: absolute;
        inset: -24px;
        background: radial-gradient(circle at 30% 20%, rgba(166,205,221,.23), transparent 35%), radial-gradient(circle at 90% 10%, rgba(119,118,70,.18), transparent 35%);
        z-index: -1;
    }

.window-bar {
    display: flex;
    gap: .45rem;
    align-items: center;
    padding: .82rem 1rem;
    background: var(--esire-light);
    border-bottom: 1px solid var(--esire-border);
}

.window-dot {
    width: .72rem;
    height: .72rem;
    border-radius: 50%;
    background: var(--esire-rose);
}

    .window-dot:nth-child(2) {
        background: var(--esire-gold);
    }

    .window-dot:nth-child(3) {
        background: var(--esire-olive);
    }

.window-url {
    margin-left: .75rem;
    flex: 1;
    text-align: center;
    font-family: var(--esire-font-mono);
    color: var(--esire-muted);
    font-size: .75rem;
    background: white;
    border: 1px solid var(--esire-border);
    border-radius: .35rem;
    padding: .28rem;
}

.app-shell {
    display: grid;
    grid-template-columns: 62px 1fr;
    min-height: 515px;
}

.app-sidebar {
    background: var(--esire-light);
    border-right: 1px solid var(--esire-border);
    padding: 1rem .65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .85rem;
}

.app-side-icon {
    width: 36px;
    height: 36px;
    border-radius: .65rem;
    display: grid;
    place-items: center;
    color: var(--esire-muted);
}

    .app-side-icon.active {
        color: var(--esire-olive);
        background: rgba(119,118,70,.1);
        border: 1px solid rgba(119,118,70,.18);
    }

.app-content {
    padding: 1.25rem;
    overflow: hidden;
}

.app-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.app-title {
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: .01em;
}

.mono {
    font-family: var(--esire-font-mono);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}

.kpi-card, .mini-record, .feature-card, .module-card, .pricing-card, .integration-card {
    border: 1px solid var(--esire-border);
    background: var(--esire-white);
    border-radius: .9rem;
}

.kpi-card {
    background: var(--esire-light);
    padding: .9rem;
}

    .kpi-card span {
        display: block;
        color: var(--esire-gray);
        font-size: .72rem;
        font-weight: 800;
    }

    .kpi-card strong {
        display: block;
        font-family: var(--esire-font-mono);
        font-size: 1.35rem;
        margin-top: .2rem;
    }

.preview-table {
    margin-top: 1rem;
    border: 1px solid var(--esire-border);
    border-radius: .8rem;
    overflow: hidden;
}

.preview-table-header {
    display: flex;
    justify-content: space-between;
    background: var(--esire-light);
    border-bottom: 1px solid var(--esire-border);
    padding: .78rem 1rem;
    color: var(--esire-gray);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.preview-row {
    display: grid;
    grid-template-columns: 12px 1fr auto auto;
    align-items: center;
    gap: .8rem;
    padding: .78rem 1rem;
    border-bottom: 1px solid var(--esire-border);
    font-size: .78rem;
}

    .preview-row:last-child {
        border-bottom: 0;
    }

.status-dot {
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: var(--esire-olive);
    box-shadow: 0 0 0 4px rgba(119,118,70,.12);
}

    .status-dot.blue {
        background: var(--esire-steel);
        box-shadow: 0 0 0 4px rgba(122,169,201,.12);
    }

.badge-esire {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(119,118,70,.18);
    background: rgba(119,118,70,.1);
    color: var(--esire-olive);
    border-radius: 999px;
    padding: .28rem .55rem;
    font-size: .68rem;
    font-weight: 900;
    font-family: var(--esire-font-mono);
}

.credibility {
    border-bottom: 1px solid var(--esire-border);
    background: #f2f1e9;
    padding: 1.5rem 0;
}

.cred-label {
    text-align: center;
    color: var(--esire-muted);
    font-family: var(--esire-font-mono);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.cred-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.2rem;
}

.cred-item {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--esire-gray);
    font-weight: 800;
    font-size: .9rem;
}

    .cred-item i {
        color: var(--esire-olive);
        background: rgba(119,118,70,.1);
        border-radius: .45rem;
        width: 1.85rem;
        height: 1.85rem;
        display: inline-grid;
        place-items: center;
    }

.section-pad {
    padding: 5.3rem 0;
}

.accent-line {
    width: 44px;
    height: 3px;
    background: var(--esire-olive);
    border-radius: 999px;
    margin-bottom: 1.1rem;
}

.section-kicker {
    color: var(--esire-olive);
    font-family: var(--esire-font-mono);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .85rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 1.75rem);
    line-height: 1.05;
    letter-spacing: .01em;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-copy {
    color: var(--esire-gray);
    line-height: 1.78;
    font-weight: 500;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.1rem;
    /*transition: transform .2s ease, box-shadow .2s ease;*/
}

/*.feature-card:hover, .module-card:hover, .pricing-card:hover, .integration-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--esire-shadow-soft);
    }*/

.feature-icon, .module-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: .8rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--esire-border);
    background: var(--esire-light);
    color: var(--esire-olive);
}

.feature-card h3, .module-card h3 {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .01em;
    margin-bottom: .25rem;
}

.feature-card p, .module-card p {
    color: var(--esire-gray);
    font-size: .84rem;
    line-height: 1.55;
    margin: 0;
    font-weight: 500;
}

.record-panel {
    border: 1px solid var(--esire-border);
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--esire-shadow);
}

.record-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: var(--esire-light);
    border-bottom: 1px solid var(--esire-border);
}

.record-head-title {
    font-weight: 900;
}

.record-head-sub {
    color: var(--esire-gray);
    font-size: .76rem;
    font-family: var(--esire-font-mono);
}

.record-body {
    padding: 1.25rem;
}

.record-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: .85rem;
    margin-bottom: 1rem;
}

.record-stat {
    text-align: center;
    border: 1px solid var(--esire-border);
    background: var(--esire-light);
    border-radius: .8rem;
    padding: .95rem .6rem;
}

    .record-stat strong {
        display: block;
        font-family: var(--esire-font-mono);
        font-size: 1.45rem;
    }

    .record-stat span {
        color: var(--esire-gray);
        font-size: .72rem;
        font-weight: 800;
    }

.mini-record {
    background: var(--esire-light);
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem;
    margin-top: .6rem;
}

    .mini-record .mini-dot {
        width: .5rem;
        height: .5rem;
        border-radius: 50%;
        background: var(--esire-olive);
        flex: 0 0 auto;
    }

    .mini-record strong {
        display: block;
        font-size: .82rem;
    }

    .mini-record span {
        display: block;
        color: var(--esire-gray);
        font-family: var(--esire-font-mono);
        font-size: .7rem;
    }

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.module-card {
    background: var(--esire-light);
    padding: 1.4rem;
    border-left: 4px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

/*.module-card:hover {
        border-left-color: var(--esire-olive);
    }*/

.module-card-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.module-price {
    font-family: var(--esire-font-mono);
    font-size: .72rem;
    font-weight: 900;
    border: 1px solid var(--esire-border);
    background: white;
    padding: .34rem .55rem;
    border-radius: .35rem;
    white-space: nowrap;
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: .42rem;
}

    .module-list li {
        color: var(--esire-black);
        font-size: .82rem;
        font-weight: 700;
    }

    .module-list i {
        color: var(--esire-olive);
        margin-right: .4rem;
    }

.cta {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: var(--esire-black);
    color: var(--esire-light);
    text-align: center;
}

    .cta::after {
        content: '';
        position: absolute;
        width: 420px;
        height: 420px;
        right: -100px;
        top: -130px;
        background: radial-gradient(circle, rgba(166,205,221,.18), transparent 65%);
    }

    .cta .section-title {
        color: var(--esire-light);
    }

    .cta p {
        color: rgba(251,249,242,.62);
        max-width: 630px;
        margin: 0 auto 1.7rem;
        line-height: 1.75;
    }

.page-hero {
    padding: 9.6rem 0 4.2rem;
    background: var(--esire-black);
    color: var(--esire-light);
    position: relative;
    overflow: hidden;
}

    .page-hero .container-xl {
        position: relative;
        z-index: 2;
    }

.page-title {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 900;
    letter-spacing: .01em;
    line-height: .98;
}

.page-copy {
    color: rgba(251,249,242,.66);
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-top: 1rem;
}

.pricing-card, .integration-card {
    padding: 1.4rem;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .pricing-card.featured {
        border-color: rgba(119,118,70,.42);
        box-shadow: 0 0 0 4px rgba(119,118,70,.08);
    }

.price {
    font-family: var(--esire-font-mono);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: .01em;
    margin: 1rem 0;
}

.integration-card i {
    color: var(--esire-olive);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.site-footer {
    background: var(--esire-black);
    color: var(--esire-light);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(251,249,242,.1);
}

    .site-footer .brand-logo {
        color: var(--esire-light);
    }

.footer-copy {
    color: rgba(251,249,242,.58);
    line-height: 1.75;
    max-width: 520px;
}

.footer-heading {
    color: var(--esire-light);
    font-size: .85rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .65rem;
}

    .footer-links a {
        color: rgba(251,249,242,.58);
        text-decoration: none;
        font-size: .88rem;
        font-weight: 600;
    }

        .footer-links a:hover {
            color: var(--esire-light);
        }

.footer-socials {
    display: flex;
    gap: .75rem;
}

    .footer-socials a {
        width: 40px;
        height: 40px;
        border-radius: .7rem;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: rgba(251,249,242,.62);
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.1);
    }

        .footer-socials a:hover {
            background: var(--esire-olive);
            color: var(--esire-light);
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(251,249,242,.38);
    font-size: .78rem;
    margin-top: 3rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(251,249,242,.1);
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .5s ease;
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 991.98px) {
    .site-nav {
        min-height: 70px;
    }

    .navbar-collapse {
        padding: 1rem 0;
    }

    .hero {
        min-height: auto;
        padding-top: 7.8rem;
    }

    .app-window {
        margin-top: 2.5rem;
    }

    .feature-grid, .modules-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .brand-logo {
        width: 90px;
    }

    .hero-title {
        font-size: 3.1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .app-shell {
        grid-template-columns: 1fr;
    }

    .app-sidebar {
        display: none;
    }

    .kpi-grid, .record-stats {
        grid-template-columns: 1fr;
    }

    .preview-row {
        grid-template-columns: 12px 1fr;
    }

        .preview-row > :nth-child(3), .preview-row > :nth-child(4) {
            display: none;
        }

    .section-pad {
        padding: 4rem 0;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* ============================================================
   Public Site Compact Pass
   Inspired by the eSire member operations shell and brand book.
   Keeps the public site in one CSS file while tightening scale,
   spacing, colors, and UI density.
   ============================================================ */

:root {
    --esire-black: #0f0f0e;
    --esire-primary: #deded3;
    --esire-light: #f7f6ef;
    --esire-panel: #ffffff;
    --esire-panel-muted: #f2f1ea;
    --esire-gray: #5d6060;
    --esire-muted: #8b8d87;
    --esire-border: #e2e0d8;
    --esire-border-strong: #cbc8bb;
    --esire-olive: #777646;
    --esire-gold: #d2b155;
    --esire-blue: #a6cddd;
    --esire-steel: #7aa9c9;
    --esire-font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
    --esire-font-heading: 'DM Sans', 'Roboto', 'Segoe UI', Arial, sans-serif;
    --esire-font-mono: 'JetBrains Mono', Consolas, 'Courier New', monospace;
    --esire-radius: .82rem;
    --esire-shadow: 0 16px 44px rgba(15, 15, 14, .10);
    --esire-shadow-soft: 0 8px 24px rgba(15, 15, 14, .07);
}

html {
    font-size: 15px;
}

body {
    background: var(--esire-light);
    font-family: var(--esire-font-body);
    font-size: .92rem;
    line-height: 1.55;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.page-title,
.app-title,
.record-head-title,
.footer-heading {
    font-family: var(--esire-font-heading);
}

.container-xl {
    max-width: 1180px;
}

.site-nav {
    min-height: 58px;
    background: rgba(15, 15, 14, .97);
    border-bottom-color: rgba(255,255,255,.075);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 26px rgba(15, 15, 14, .20);
}

.brand-logo {
    width: 90px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(247, 246, 239, .56);
    font-size: .85rem;
    font-weight: 400;
    letter-spacing: .005em;
    padding: .42rem .62rem;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: rgba(247,246,239,.94);
    }

.nav-link-utility {
    font-size: .74rem !important;
}

.btn-esire,
.btn-esire-light,
.btn-esire-outline {
    min-height: 34px;
    border-radius: .42rem;
    font-size: .76rem;
    font-weight: 700;
    line-height: 1;
    padding: .58rem .82rem;
    box-shadow: none;
}

.btn-esire {
    color: #fff !important;
    background-color: #b94245 !important;
    border-color: #b94245 !important;
    --bs-btn-color: #fff;
    --bs-btn-bg: #b94245;
    --bs-btn-border-color: #b94245;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #9f3639;
    --bs-btn-hover-border-color: #9f3639;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #8c3033;
    --bs-btn-active-border-color: #8c3033;
}

    .btn-esire:hover,
    .btn-esire:focus,
    .btn-esire:focus-visible {
        color: #fff !important;
        background-color: #9f3639 !important;
        border-color: #9f3639 !important;
    }

    .btn-esire:active,
    .btn-esire.active,
    .btn-esire.show,
    .btn-esire:first-child:active {
        color: #fff !important;
        background-color: #8c3033 !important;
        border-color: #8c3033 !important;
    }

.btn-esire-light {
    padding: .64rem .95rem;
}

.btn-esire-outline {
    padding: .64rem .95rem;
}

.hero {
    min-height: 520px;
    padding: 6.2rem 0 4.1rem;
}

.hero-title {
    max-width: 680px;
    margin: 1rem 0 .9rem;
    font-size: clamp(2.05rem, 4.8vw, 3.7rem);
    line-height: 1.02;
    letter-spacing: .01em;
    font-weight: 800;
}

.hero-copy {
    max-width: 560px;
    color: rgba(247,246,239,.58);
    font-size: .95rem;
    line-height: 1.65;
    font-weight: 400;
}

.eyebrow {
    border-radius: .38rem;
    padding: .28rem .46rem;
    font-size: .75rem;
    letter-spacing: .08em;
    color: rgba(210,177,85,.82);
    background: rgba(210,177,85,.10);
    border-color: rgba(210,177,85,.14);
}

    .eyebrow .dot {
        width: .38rem;
        height: .38rem;
        box-shadow: 0 0 0 3px rgba(119,118,70,.16);
    }

.hero-actions {
    gap: .55rem;
    margin-top: 1.55rem;
}

.hero-stats {
    gap: 1rem;
    padding-top: 1.15rem;
    margin-top: 1.35rem;
}

.hero-stat {
    min-width: 92px;
}

    .hero-stat strong {
        font-size: 1.1rem;
        font-weight: 700;
    }

    .hero-stat span {
        font-size: .75rem;
        font-weight: 200;
    }

.app-window {
    border-radius: .85rem;
    box-shadow: 0 16px 50px rgba(0,0,0,.18);
}

.window-bar {
    padding: .62rem .8rem;
}

.window-dot {
    width: .56rem;
    height: .56rem;
}

.window-url {
    font-size: .61rem;
    padding: .22rem;
}

.app-shell {
    grid-template-columns: 52px 1fr;
    min-height: 390px;
}

.app-sidebar {
    padding: .8rem .45rem;
    gap: .55rem;
}

.app-side-icon {
    width: 30px;
    height: 30px;
    border-radius: .55rem;
    font-size: .76rem;
}

.app-content {
    padding: 1rem;
}

.app-title {
    font-size: .96rem;
    font-weight: 800;
}

.kpi-grid {
    gap: .55rem;
}

.kpi-card {
    padding: .68rem;
    border-radius: .68rem;
}

    .kpi-card span {
        font-size: .61rem;
        font-weight: 700;
    }

    .kpi-card strong {
        font-size: 1.05rem;
    }

.preview-table {
    margin-top: .75rem;
    border-radius: .65rem;
}

.preview-table-header {
    padding: .58rem .75rem;
    font-size: .6rem;
    letter-spacing: .07em;
}

.preview-row {
    gap: .55rem;
    padding: .58rem .75rem;
    font-size: .68rem;
}

.badge-esire {
    padding: .2rem .42rem;
    font-size: .58rem;
    font-weight: 800;
}

.credibility {
    padding: 1.05rem 0;
    background: var(--esire-panel-muted);
}

.cred-label {
    font-size: .78rem;
    margin-bottom: .8rem;
    letter-spacing: .12em;
}

.cred-items {
    gap: .8rem 1.7rem;
}

.cred-item {
    font-size: .86rem;
    font-weight: 500;
}

    .cred-item i {
        width: 1.5rem;
        height: 1.5rem;
        font-size: .72rem;
        border-radius: .4rem;
    }

.section-pad {
    padding: 3.75rem 0;
}

.accent-line {
    width: 34px;
    height: 2px;
    margin-bottom: .85rem;
}

.section-kicker {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    margin-bottom: .58rem;
}

.section-title {
    font-size: clamp(1.55rem, 3.2vw, 1.75rem);
    line-height: 1.25;
    letter-spacing: .01em;
    font-weight: 800;
    margin-bottom: .8rem;
}

.section-copy,
.cta p,
.page-copy,
.footer-copy {
    font-size: .95rem;
    line-height: 1.25;
    font-weight: 400;
}

.feature-grid,
.modules-grid {
    gap: .8rem;
    margin-top: 1.45rem;
}

.feature-card,
.module-card,
.pricing-card,
.integration-card {
    border-radius: .75rem;
    box-shadow: 0 1px 2px rgba(16,24,40,.035);
}

.feature-card {
    gap: .78rem;
    padding: .9rem;
}

.feature-icon,
.module-icon {
    width: 36px;
    height: 36px;
    border-radius: .62rem;
    font-size: .84rem;
}

.feature-card h3,
.module-card h3 {
    font-size: .86rem;
    font-weight: 800;
}

.feature-card p,
.module-card p {
    font-size: .86rem;
    line-height: 1.48;
}

.record-panel {
    border-radius: .85rem;
    box-shadow: var(--esire-shadow-soft);
}

.record-head {
    padding: .85rem 1rem;
}

.record-head-title {
    font-size: .88rem;
    font-weight: 800;
}

.record-head-sub {
    font-size: .64rem;
}

.record-body {
    padding: 1rem;
}

.record-stats {
    gap: .6rem;
}

.record-stat {
    border-radius: .65rem;
    padding: .7rem .5rem;
}

    .record-stat strong {
        font-size: 1.05rem;
    }

    .record-stat span {
        font-size: .62rem;
    }

.mini-record {
    padding: .65rem;
    margin-top: .5rem;
    border-radius: .65rem;
}

    .mini-record strong {
        font-size: .72rem;
    }

    .mini-record span {
        font-size: .6rem;
    }

.module-card {
    padding: 1.05rem;
    border-left-width: 3px;
}

.module-card-head {
    margin-bottom: .8rem;
}

.module-price {
    font-size: .6rem;
    padding: .26rem .44rem;
}

.module-list {
    gap: .34rem;
    margin-top: .75rem;
}

    .module-list li {
        font-size: .83rem;
        font-weight: 600;
    }

.cta {
    padding: 3.75rem 0;
}

.page-hero {
    padding: 7.1rem 0 3.25rem;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: .01em;
    line-height: 1.04;
}

.page-copy {
    font-size: .88rem;
    max-width: 660px;
}

.pricing-card,
.integration-card {
    padding: 1.05rem;
}

.price {
    font-size: 1.55rem;
}

.integration-card i {
    font-size: 1.18rem;
    margin-bottom: .75rem;
}

.site-footer {
    padding: 3rem 0 1.2rem;
}

    .site-footer .brand-logo {
        width: 32px;
    }

.footer-copy {
    max-width: 430px;
    color: rgba(247,246,239,.52);
}

.footer-heading {
    font-size: .64rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(210,177,85,.86);
}

.footer-links {
    gap: .45rem;
}

    .footer-links a {
        font-size: .76rem;
        font-weight: 500;
    }

.footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: .55rem;
    font-size: .78rem;
}

.footer-bottom {
    font-size: .68rem;
    margin-top: 2.4rem;
}

.reveal {
    transform: translateY(8px);
}

@media (max-width: 991.98px) {
    .site-nav {
        min-height: 58px;
    }

    .navbar-collapse {
        padding: .75rem 0 1rem;
    }

    .hero {
        min-height: auto;
        padding: 6.1rem 0 3.25rem;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .app-window {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    html {
        font-size: 14px;
    }

    .brand-logo {
        width: 90px;
    }

    .section-pad {
        padding: 2.8rem 0;
    }

    .feature-grid,
    .modules-grid,
    .record-stats,
    .kpi-grid {
        grid-template-columns: 1fr;
    }

    .preview-row {
        grid-template-columns: 10px 1fr;
    }

        .preview-row > :nth-child(3),
        .preview-row > :nth-child(4) {
            grid-column: 2;
        }

    .footer-bottom {
        flex-direction: column;
    }
}

/* ============================================================
   Product Tour Buildout
   Extends the compact public site style with placeholder app
   screenshots that can be replaced later with real captures.
   ============================================================ */

.product-tour-hero .page-copy {
    max-width: 760px;
}

.product-tour-actions {
    margin-top: 1.4rem;
}

.tour-hero-card {
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: var(--esire-radius);
    padding: 1.1rem;
    color: var(--esire-light);
    box-shadow: 0 12px 32px rgba(0,0,0,.18);
}

.tour-hero-card-label {
    color: rgba(247,246,239,.48);
    font-family: var(--esire-font-mono);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.tour-hero-card-value {
    font-family: var(--esire-font-mono);
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 900;
    margin-top: .55rem;
}

.tour-hero-card-help {
    color: rgba(247,246,239,.62);
    font-size: .78rem;
    line-height: 1.55;
    margin-top: .5rem;
}

.tour-mini-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}

    .tour-mini-pills span {
        display: inline-flex;
        align-items: center;
        min-height: 20px;
        padding: .16rem .42rem;
        border-radius: 999px;
        background: rgba(119,118,70,.12);
        border: 1px solid rgba(119,118,70,.18);
        color: var(--esire-olive);
        font-family: var(--esire-font-mono);
        font-size: .56rem;
        font-weight: 800;
    }

.tour-hero-card .tour-mini-pills span {
    color: rgba(247,246,239,.75);
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.10);
}

.tour-subnav {
    position: sticky;
    top: 58px;
    z-index: 1010;
    background: rgba(247, 246, 239, .96);
    border-bottom: 1px solid var(--esire-border);
    backdrop-filter: blur(14px);
}

.tour-subnav-scroll {
    display: flex;
    align-items: center;
    gap: .32rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding: .55rem 0;
}

    .tour-subnav-scroll::-webkit-scrollbar {
        display: none;
    }

.tour-subnav-link {
    white-space: nowrap;
    color: var(--esire-muted);
    text-decoration: none;
    border-radius: .48rem;
    padding: .42rem .58rem;
    font-size: .72rem;
    font-weight: 700;
    transition: background-color .15s ease, color .15s ease;
}

    .tour-subnav-link:hover {
        color: var(--esire-black);
        background: rgba(15,15,14,.045);
    }

    .tour-subnav-link.active {
        color: var(--esire-black);
        background: var(--esire-panel);
        box-shadow: 0 1px 2px rgba(16,24,40,.06);
    }

.product-tour-overview {
    border-bottom: 1px solid var(--esire-border);
}

.tour-module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
}

@media (max-width: 991.98px) {
    .tour-module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .tour-module-grid {
        grid-template-columns: 1fr;
    }
}

.tour-module-card-featured {
    border-color: rgba(185, 66, 69, .24);
    background: linear-gradient( 135deg, rgba(185, 66, 69, .035), var(--esire-panel) 55% );
}

    .tour-module-card-featured i {
        color: #b94245;
        background: rgba(185, 66, 69, .08);
    }

.tour-module-card {
    background: var(--esire-panel);
    border: 1px solid var(--esire-border);
    border-radius: .78rem;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(16,24,40,.035);
    /*transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;*/
}

    /*.tour-module-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--esire-shadow-soft);
        border-color: var(--esire-border-strong);
    }*/

    .tour-module-card i {
        width: 34px;
        height: 34px;
        display: inline-grid;
        place-items: center;
        /*        border-radius: .6rem;
        background: rgba(119,118,70,.09);
        color: var(--esire-olive);*/
        margin-bottom: .8rem;
    }

    .tour-module-card h3 {
        font-size: 1.0rem;
        font-weight: 850;
        margin-bottom: .35rem;
    }

    .tour-module-card p {
        color: var(--esire-gray);
        font-size: .95rem;
        line-height: 1.48;
        margin: 0 0 15px 0;
    }

    .tour-module-card a {
        color: var(--esire-red);
        text-decoration: none;
    }

.tour-section {
    padding: 4rem 0;
    scroll-margin-top: 118px;
    border-bottom: 1px solid var(--esire-border);
}

    .tour-section.section-dark {
        border-bottom-color: rgba(255,255,255,.08);
    }

.tour-badge {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    margin-bottom: .85rem;
    color: var(--esire-olive);
    background: rgba(119,118,70,.08);
    border: 1px solid rgba(119,118,70,.14);
    border-radius: 999px;
    padding: .28rem .55rem;
    font-family: var(--esire-font-mono);
    font-size: .58rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

    .tour-badge.dark {
        color: rgba(210,177,85,.92);
        background: rgba(210,177,85,.10);
        border-color: rgba(210,177,85,.16);
    }

.tour-check-list {
    list-style: none;
    margin: 1.2rem 0 0;
    padding: 0;
    display: grid;
    gap: .55rem;
}

    .tour-check-list li {
        display: flex;
        align-items: flex-start;
        gap: .55rem;
        color: var(--esire-black);
        font-size: .8rem;
        font-weight: 600;
        line-height: 1.45;
    }

    .tour-check-list i {
        color: var(--esire-olive);
        margin-top: .18rem;
        font-size: .72rem;
    }

    .tour-check-list.dark li {
        color: rgba(247,246,239,.76);
    }

    .tour-check-list.dark i {
        color: var(--esire-gold);
    }

.text-light-emphasis {
    color: rgba(247,246,239,.62) !important;
}

.tour-preview-card {
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
    color: inherit;
    border: 0;
    background: transparent;
    cursor: pointer;
}

    .tour-preview-card:focus-visible .tour-window {
        outline: 3px solid rgba(122,169,201,.35);
        outline-offset: 4px;
    }

    .tour-preview-card.dark {
        color: var(--esire-light);
    }

.tour-window {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid var(--esire-border);
    border-radius: .9rem;
    background: var(--esire-panel);
    box-shadow: var(--esire-shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tour-preview-card:hover .tour-window {
    transform: translateY(-3px);
    box-shadow: 0 18px 54px rgba(15,15,14,.14);
    border-color: var(--esire-border-strong);
}

.tour-window.dark-window {
    border-color: rgba(255,255,255,.10);
    box-shadow: 0 18px 54px rgba(0,0,0,.30);
}

.tour-window.small {
    border-radius: .78rem;
    box-shadow: var(--esire-shadow-soft);
}

.tour-window-bar {
    display: flex;
    align-items: center;
    gap: .42rem;
    min-height: 38px;
    padding: .55rem .75rem;
    background: var(--esire-light);
    border-bottom: 1px solid var(--esire-border);
}

.tour-window.dark-window .tour-window-bar {
    background: #151511;
    border-bottom-color: rgba(255,255,255,.08);
}

.tour-window-bar span {
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    background: var(--esire-rose);
}

    .tour-window-bar span:nth-child(2) {
        background: var(--esire-gold);
    }

    .tour-window-bar span:nth-child(3) {
        background: var(--esire-olive);
    }

.tour-window-bar em {
    flex: 1;
    margin-left: .35rem;
    color: var(--esire-muted);
    font-family: var(--esire-font-mono);
    font-size: .58rem;
    font-style: normal;
    text-align: center;
}

.tour-window.dark-window .tour-window-bar em {
    color: rgba(247,246,239,.42);
}

.tour-screen {
    display: block;
    min-height: 350px;
    padding: 1rem;
    background: linear-gradient(135deg, #fff, var(--esire-light));
}

.tour-window.small .tour-screen {
    min-height: 232px;
}

.tour-window.dark-window .tour-screen {
    background: linear-gradient(135deg, #191915, #11110f);
}

.tour-preview-caption {
    display: block;
    margin-top: .7rem;
    color: var(--esire-muted);
    font-size: .74rem;
    font-weight: 500;
    text-align: center;
}

.tour-preview-card.dark .tour-preview-caption {
    color: rgba(247,246,239,.48);
}


.tour-screen-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .85rem;
}

    .tour-screen-header strong {
        color: var(--esire-black);
        font-size: .96rem;
        font-weight: 850;
    }

    .tour-screen-header small {
        color: var(--esire-muted);
        font-family: var(--esire-font-mono);
        font-size: .6rem;
    }

.tour-screen-grid {
    display: grid;
    gap: .7rem;
}

    .tour-screen-grid.two-one {
        grid-template-columns: 2fr 1fr;
    }

    .tour-screen-grid.three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

.tour-screen-panel {
    display: block;
    border: 1px solid var(--esire-border);
    background: rgba(255,255,255,.82);
    border-radius: .72rem;
    padding: .8rem;
    min-height: 94px;
}

    .tour-screen-panel.muted {
        background: var(--esire-panel-muted);
    }

    .tour-screen-panel small {
        color: var(--esire-muted);
        font-size: .62rem;
        font-weight: 800;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .tour-screen-panel b {
        display: block;
        font-family: var(--esire-font-mono);
        font-size: 1.25rem;
        line-height: 1.1;
        margin-top: .25rem;
    }

.tour-line {
    display: block;
    height: 9px;
    border-radius: 999px;
    background: var(--esire-border);
    margin-bottom: .62rem;
}

    .tour-line.w-50 {
        width: 50%;
    }

    .tour-line.w-75 {
        width: 75%;
    }

    .tour-line.w-90 {
        width: 90%;
    }

.tour-avatar-row {
    display: flex;
    margin-top: 1rem;
}

    .tour-avatar-row b {
        width: 28px;
        height: 28px;
        margin-left: -6px;
        border: 2px solid #fff;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--esire-panel-muted);
        color: var(--esire-gray);
        font-size: .58rem;
        font-weight: 900;
    }

        .tour-avatar-row b:first-child {
            margin-left: 0;
        }

.tour-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .36rem 0;
    border-bottom: 1px solid rgba(15,15,14,.07);
}

    .tour-stat-row:last-child {
        border-bottom: 0;
    }

    .tour-stat-row b {
        font-family: var(--esire-font-mono);
        font-size: .92rem;
    }

    .tour-stat-row small {
        color: var(--esire-muted);
        font-size: .6rem;
    }

.tour-table-lines {
    display: grid;
    gap: .48rem;
    margin-top: .85rem;
}

    .tour-table-lines span {
        height: 28px;
        border: 1px solid var(--esire-border);
        border-radius: .52rem;
        background: rgba(255,255,255,.75);
    }

    .tour-table-lines.compact span {
        height: 24px;
    }

.tour-profile-head {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .9rem;
}

    .tour-profile-head strong {
        display: block;
        font-size: .9rem;
        font-weight: 850;
    }

    .tour-profile-head small {
        display: block;
        color: var(--esire-muted);
        font-family: var(--esire-font-mono);
        font-size: .58rem;
        margin: .15rem 0 .4rem;
    }

.tour-photo-placeholder {
    width: 74px;
    height: 74px;
    flex: 0 0 auto;
    border-radius: .72rem;
    display: grid;
    place-items: center;
    color: rgba(15,15,14,.32);
    background: linear-gradient(135deg, var(--esire-panel-muted), #fff);
    border: 1px solid var(--esire-border);
    font-size: 1.6rem;
}

.tour-tabs {
    display: flex;
    gap: .36rem;
    padding-bottom: .62rem;
    border-bottom: 1px solid var(--esire-border);
    margin-bottom: .8rem;
}

    .tour-tabs b {
        color: var(--esire-muted);
        background: var(--esire-panel-muted);
        border-radius: .45rem;
        padding: .32rem .48rem;
        font-size: .58rem;
    }

        .tour-tabs b:first-child {
            color: var(--esire-black);
            background: #fff;
            box-shadow: 0 1px 2px rgba(16,24,40,.05);
        }

.tour-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    height: 42px;
    margin-bottom: .65rem;
}

    .tour-kanban b {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--esire-border);
        background: rgba(255,255,255,.70);
        border-radius: .55rem;
        color: var(--esire-gray);
        font-size: .58rem;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .tour-kanban.wide {
        height: 48px;
    }

.tour-window.dark-window .tour-kanban b {
    border-color: rgba(255,255,255,.09);
    background: rgba(255,255,255,.045);
    color: rgba(247,246,239,.60);
}

.tour-card-stack {
    display: grid;
    gap: .48rem;
}

    .tour-card-stack i {
        display: block;
        height: 46px;
        border-radius: .62rem;
        background: #fff;
        border: 1px solid var(--esire-border);
    }

.tour-pen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    height: 170px;
}

    .tour-pen-grid i {
        border: 1px solid var(--esire-border);
        border-radius: .58rem;
        background: var(--esire-panel-muted);
    }

        .tour-pen-grid i:nth-child(2), .tour-pen-grid i:nth-child(5) {
            background: rgba(119,118,70,.10);
            border-color: rgba(119,118,70,.20);
        }

.tour-day-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .45rem;
    margin-bottom: .7rem;
}

    .tour-day-strip b {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 38px;
        border-radius: .55rem;
        background: rgba(255,255,255,.045);
        border: 1px solid rgba(255,255,255,.08);
        color: rgba(247,246,239,.48);
        font-family: var(--esire-font-mono);
        font-size: .58rem;
    }

        .tour-day-strip b.selected {
            color: var(--esire-gold);
            background: rgba(210,177,85,.11);
            border-color: rgba(210,177,85,.18);
        }

.tour-lane-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
}

    .tour-lane-cards i {
        display: block;
        min-height: 54px;
        border-radius: .62rem;
        border: 1px solid rgba(255,255,255,.08);
        background: rgba(255,255,255,.065);
    }

.tour-storage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
    margin-bottom: .8rem;
}

    .tour-storage-grid .tank {
        min-height: 92px;
        display: grid;
        place-items: center;
        gap: .35rem;
        border: 1px solid var(--esire-border);
        border-radius: .7rem;
        background: #fff;
        color: var(--esire-muted);
    }

        .tour-storage-grid .tank.active {
            color: var(--esire-olive);
            background: rgba(119,118,70,.08);
            border-color: rgba(119,118,70,.22);
        }

        .tour-storage-grid .tank i {
            font-size: 1.2rem;
        }

        .tour-storage-grid .tank b {
            font-family: var(--esire-font-mono);
            font-size: .62rem;
        }

.tour-shipment-card {
    display: flex;
    align-items: center;
    gap: .8rem;
    border: 1px solid var(--esire-border);
    background: #fff;
    border-radius: .72rem;
    padding: .85rem;
    margin-bottom: .9rem;
}

    .tour-shipment-card i {
        width: 40px;
        height: 40px;
        border-radius: .65rem;
        background: rgba(119,118,70,.09);
        color: var(--esire-olive);
        display: grid;
        place-items: center;
    }

    .tour-shipment-card b {
        display: block;
        font-size: .84rem;
    }

    .tour-shipment-card small {
        display: block;
        color: var(--esire-muted);
        font-size: .66rem;
    }

.tour-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .45rem;
    margin-bottom: .85rem;
}

    .tour-progress i {
        display: block;
        height: 8px;
        border-radius: 999px;
        background: var(--esire-border);
    }

        .tour-progress i.done {
            background: var(--esire-olive);
        }

        .tour-progress i.active {
            background: var(--esire-gold);
        }

.tour-sync-row {
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: .65rem;
    min-height: 44px;
    border: 1px solid var(--esire-border);
    background: #fff;
    border-radius: .62rem;
    padding: .5rem .7rem;
    margin-top: .55rem;
}

    .tour-sync-row i {
        color: var(--esire-olive);
    }

    .tour-sync-row span {
        height: 9px;
        border-radius: 999px;
        background: var(--esire-border);
    }

    .tour-sync-row b {
        font-family: var(--esire-font-mono);
        color: var(--esire-muted);
        font-size: .6rem;
    }

.tour-chart-row {
    display: flex;
    align-items: flex-end;
    gap: .42rem;
    height: 110px;
    padding: .75rem;
    border: 1px solid var(--esire-border);
    background: #fff;
    border-radius: .72rem;
    margin-bottom: .8rem;
}

    .tour-chart-row i {
        flex: 1;
        border-radius: .3rem .3rem 0 0;
        background: rgba(119,118,70,.20);
    }

        .tour-chart-row i:nth-child(1) {
            height: 38%;
        }

        .tour-chart-row i:nth-child(2) {
            height: 72%;
        }

        .tour-chart-row i:nth-child(3) {
            height: 56%;
        }

        .tour-chart-row i:nth-child(4) {
            height: 88%;
            background: rgba(119,118,70,.35);
        }

        .tour-chart-row i:nth-child(5) {
            height: 64%;
        }

.tour-preview-modal .modal-content {
    border: 0;
    border-radius: .9rem;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(15,15,14,.22);
}

.tour-preview-modal .modal-header {
    border-bottom: 1px solid var(--esire-border);
    background: var(--esire-light);
    align-items: flex-start;
}

.tour-preview-modal .modal-title {
    font-size: 1rem;
    font-weight: 850;
}

.tour-preview-modal .modal-caption {
    color: var(--esire-muted);
    font-size: .78rem;
    line-height: 1.45;
}

.tour-preview-modal .modal-body {
    background: var(--esire-panel-muted);
    padding: 1rem;
}

.tour-preview-modal .tour-window {
    box-shadow: none;
}

.tour-preview-modal .tour-preview-hover,
.tour-preview-modal .tour-preview-caption {
    display: none;
}

@media (max-width: 991.98px) {
    .tour-subnav {
        top: 58px;
    }

    .tour-module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tour-section {
        padding: 3.25rem 0;
    }

    .tour-screen {
        min-height: 310px;
    }
}

@media (max-width: 767.98px) {
    .tour-module-grid {
        grid-template-columns: 1fr;
    }

    .tour-subnav-link {
        font-size: .68rem;
    }

    .tour-screen-grid.two-one,
    .tour-screen-grid.three,
    .tour-storage-grid,
    .tour-lane-cards {
        grid-template-columns: 1fr;
    }

    .tour-day-strip {
        grid-template-columns: repeat(5, 78px);
        overflow-x: auto;
    }

    .tour-kanban {
        grid-template-columns: 1fr;
        height: auto;
    }

        .tour-kanban b {
            min-height: 34px;
        }

    .tour-screen {
        min-height: 280px;
    }

    .tour-window.small .tour-screen {
        min-height: 210px;
    }

    .tour-preview-modal .modal-body {
        padding: .65rem;
    }
}

/* ============================================================
   Pricing Page Buildout
   Extends the compact public site styles with pricing-specific
   cards, estimator controls, and FAQ treatment.
   ============================================================ */

.pricing-hero .page-title {
    max-width: 780px;
}

.pricing-hero-summary {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: .85rem;
    padding: 1rem;
    box-shadow: 0 16px 42px rgba(0,0,0,.18);
}

    .pricing-hero-summary span,
    .pricing-hero-summary em {
        color: rgba(247,246,239,.56);
        font-size: .7rem;
        font-weight: 700;
    }

    .pricing-hero-summary strong {
        display: inline-block;
        color: var(--esire-light);
        font-family: var(--esire-font-mono);
        font-size: 2.15rem;
        line-height: 1;
        margin: .25rem .2rem .5rem 0;
        letter-spacing: .01em;
    }

    .pricing-hero-summary p {
        margin: 0;
        color: rgba(247,246,239,.55);
        font-size: .78rem;
        line-height: 1.55;
    }

.pricing-structure {
    padding: 4rem 0;
    border-bottom: 1px solid var(--esire-border);
}

.pricing-foundation-card {
    position: sticky;
    top: 82px;
    background: var(--esire-panel);
    border: 1px solid var(--esire-border);
    border-radius: .9rem;
    padding: 1.15rem;
    box-shadow: var(--esire-shadow-soft);
}

    .pricing-foundation-card h2,
    .pricing-module-card h3,
    .pricing-faq-item h3 {
        color: var(--esire-black);
        font-family: var(--esire-font-heading);
        font-weight: 850;
        letter-spacing: .01em;
    }

    .pricing-foundation-card h2 {
        margin: 0 0 .25rem;
        font-size: 1.35rem;
    }

    .pricing-foundation-card p,
    .pricing-module-card p {
        color: var(--esire-gray);
        font-size: .82rem;
        line-height: 1.55;
    }

.pricing-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    margin-bottom: .8rem;
    color: var(--esire-olive);
    background: rgba(119,118,70,.08);
    border: 1px solid rgba(119,118,70,.14);
    border-radius: 999px;
    padding: .25rem .52rem;
    font-family: var(--esire-font-mono);
    font-size: .57rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

    .pricing-card-kicker.dark {
        color: var(--esire-gray);
        background: rgba(15,15,14,.035);
        border-color: rgba(15,15,14,.08);
    }

.pricing-price-lockup strong {
    display: block;
    color: var(--esire-black);
    font-family: var(--esire-font-mono);
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: .01em;
}

.pricing-price-lockup span,
.pricing-price-lockup em {
    color: var(--esire-muted);
    font-size: .7rem;
    font-style: normal;
    font-weight: 700;
}

.pricing-price-lockup.small strong {
    font-size: 1.35rem;
}

.pricing-included-panel {
    display: grid;
    gap: .65rem;
    padding-top: .9rem;
    border-top: 1px solid var(--esire-border);
}

.pricing-included-row {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: .7rem;
    align-items: flex-start;
    border: 1px solid var(--esire-border);
    background: var(--esire-light);
    border-radius: .72rem;
    padding: .72rem;
}

    .pricing-included-row i {
        width: 34px;
        height: 34px;
        display: inline-grid;
        place-items: center;
        border-radius: .58rem;
        color: var(--esire-olive);
        background: rgba(119,118,70,.09);
    }

    .pricing-included-row strong {
        display: block;
        color: var(--esire-black);
        font-size: .78rem;
        font-weight: 850;
    }

    .pricing-included-row span {
        display: block;
        color: var(--esire-gray);
        font-size: .72rem;
        line-height: 1.45;
        margin-top: .1rem;
    }

.pricing-footnote {
    color: var(--esire-muted);
    font-size: .68rem;
    line-height: 1.5;
}

    .pricing-footnote.dark {
        color: rgba(247,246,239,.43);
        text-align: center;
        margin-top: 1rem;
    }

.pricing-module-stack {
    display: grid;
    gap: .95rem;
}

.pricing-module-card {
    background: var(--esire-panel);
    border: 1px solid var(--esire-border);
    border-radius: .9rem;
    padding: 1.15rem;
    box-shadow: 0 1px 2px rgba(16,24,40,.035);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .pricing-module-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--esire-shadow-soft);
        border-color: var(--esire-border-strong);
    }

.pricing-module-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 1rem;
    margin-bottom: .9rem;
}

    .pricing-module-head.compact {
        margin-bottom: .7rem;
    }

.pricing-module-card h3 {
    font-size: 1.05rem;
    margin: 0 0 .35rem;
}

.pricing-tier-table-wrap {
    overflow: hidden;
    border: 1px solid var(--esire-border);
    border-radius: .72rem;
}

.pricing-tier-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    font-size: .78rem;
}

    .pricing-tier-table thead th {
        background: var(--esire-light);
        color: var(--esire-muted);
        font-size: .62rem;
        font-weight: 850;
        letter-spacing: .08em;
        text-transform: uppercase;
        padding: .68rem .82rem;
        border-bottom: 1px solid var(--esire-border);
    }

    .pricing-tier-table tbody td {
        color: var(--esire-black);
        padding: .66rem .82rem;
        border-bottom: 1px solid var(--esire-border);
        font-weight: 650;
    }

    .pricing-tier-table tbody tr:last-child td {
        border-bottom: 0;
    }

    .pricing-tier-table tbody tr:hover td {
        background: var(--esire-light);
    }

.pricing-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

    .pricing-pill-row span {
        display: inline-flex;
        align-items: center;
        min-height: 24px;
        padding: .2rem .5rem;
        border-radius: 999px;
        color: var(--esire-gray);
        background: var(--esire-light);
        border: 1px solid var(--esire-border);
        font-family: var(--esire-font-mono);
        font-size: .6rem;
        font-weight: 800;
    }

.pricing-info-box {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: .65rem;
    align-items: flex-start;
    padding: .75rem;
    border: 1px solid rgba(122,169,201,.20);
    border-radius: .72rem;
    background: rgba(166,205,221,.12);
}

    .pricing-info-box i {
        color: var(--esire-steel);
        margin-top: .15rem;
    }

    .pricing-info-box p {
        margin: 0;
        font-size: .74rem;
    }

    .pricing-info-box strong {
        color: var(--esire-black);
    }

.pricing-estimator {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

    .pricing-estimator .container-xl {
        z-index: 2;
    }

.pricing-estimator-card {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: .95rem;
    box-shadow: 0 20px 70px rgba(0,0,0,.24);
    overflow: hidden;
}

.estimator-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .95rem 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

    .estimator-row.has-slider {
        display: block;
    }

.estimator-row-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.estimator-row strong {
    display: block;
    color: var(--esire-light);
    font-size: .9rem;
    font-weight: 800;
}

.estimator-row span {
    display: block;
    color: rgba(247,246,239,.48);
    font-size: .74rem;
    margin-top: .12rem;
}

.estimator-row b {
    color: var(--esire-light);
    font-family: var(--esire-font-mono);
    font-size: 1.05rem;
}

.estimator-slider {
    margin-top: .9rem;
    padding: .72rem .75rem .6rem;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: .72rem;
    background: rgba(0,0,0,.14);
    transition: opacity .18s ease;
}

    .estimator-slider small,
    .estimator-range-labels span {
        color: rgba(247,246,239,.38);
        font-family: var(--esire-font-mono);
        font-size: .6rem;
        font-weight: 750;
    }

    .estimator-slider strong {
        color: var(--esire-gold);
        font-family: var(--esire-font-mono);
        font-size: .68rem;
        text-transform: uppercase;
        letter-spacing: .04em;
    }

.estimator-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: .45rem;
}

.pricing-range {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
}

    .pricing-range::-webkit-slider-runnable-track {
        height: 4px;
        border-radius: 999px;
        background: rgba(247,246,239,.18);
    }

    .pricing-range::-moz-range-track {
        height: 4px;
        border-radius: 999px;
        background: rgba(247,246,239,.18);
    }

    .pricing-range::-webkit-slider-thumb {
        appearance: none;
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        margin-top: -7px;
        border-radius: 999px;
        border: 2px solid var(--esire-light);
        background: var(--esire-gold);
        box-shadow: 0 4px 12px rgba(0,0,0,.26);
        cursor: pointer;
    }

    .pricing-range::-moz-range-thumb {
        width: 18px;
        height: 18px;
        border-radius: 999px;
        border: 2px solid var(--esire-light);
        background: var(--esire-gold);
        cursor: pointer;
    }

.esire-switch {
    position: relative;
    display: inline-flex;
    width: 44px;
    height: 24px;
    flex: 0 0 auto;
}

    .esire-switch input {
        position: absolute;
        opacity: 0;
        width: 1px;
        height: 1px;
    }

    .esire-switch span {
        position: absolute;
        inset: 0;
        cursor: pointer;
        border-radius: 999px;
        background: rgba(247,246,239,.20);
        transition: background-color .18s ease;
    }

        .esire-switch span::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 18px;
            height: 18px;
            border-radius: 999px;
            background: var(--esire-light);
            transition: transform .18s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,.22);
        }

    .esire-switch input:checked + span {
        background: var(--esire-olive);
    }

        .esire-switch input:checked + span::after {
            transform: translateX(20px);
        }

    .esire-switch input:focus-visible + span {
        outline: 3px solid rgba(166,205,221,.32);
        outline-offset: 3px;
    }

.estimator-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem;
}

    .estimator-total span {
        display: block;
        color: rgba(247,246,239,.48);
        font-size: .7rem;
        font-weight: 700;
    }

    .estimator-total strong {
        display: flex;
        align-items: baseline;
        gap: .18rem;
        color: var(--esire-gold);
        font-family: var(--esire-font-mono);
        font-size: 2.05rem;
        line-height: 1;
    }

        .estimator-total strong b {
            font-size: inherit;
        }

    .estimator-total em {
        color: rgba(247,246,239,.48);
        font-size: .78rem;
        font-style: normal;
    }

.pricing-faq-list {
    display: grid;
    gap: .75rem;
}

.pricing-faq-item {
    background: var(--esire-panel);
    border: 1px solid var(--esire-border);
    border-radius: .82rem;
    padding: 1rem;
    box-shadow: 0 1px 2px rgba(16,24,40,.035);
}

    .pricing-faq-item h3 {
        margin: 0 0 .35rem;
        font-size: .92rem;
    }

    .pricing-faq-item p {
        margin: 0;
        color: var(--esire-gray);
        font-size: .8rem;
        line-height: 1.58;
    }

@media (max-width: 991.98px) {
    .pricing-foundation-card {
        position: static;
    }

    .pricing-structure,
    .pricing-estimator {
        padding: 3.25rem 0;
    }
}

@media (max-width: 767.98px) {
    .pricing-module-head,
    .estimator-total {
        display: block;
    }

    .pricing-price-lockup,
    .pricing-price-lockup.small {
        text-align: left !important;
        margin-top: .7rem;
    }

    .estimator-total .btn {
        width: 100%;
        margin-top: 1rem;
    }

    .estimator-row {
        align-items: flex-start;
    }
}

/* ============================================================
   Integrations Page Buildout
   ============================================================ */

.integrations-hero .page-title {
    max-width: 820px;
}

.integrations-hero .page-copy {
    max-width: 740px;
}

.integrations-overview-section {
    overflow: hidden;
}

.integration-note {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    padding: .85rem;
    border: 1px solid rgba(119, 118, 70, .18);
    background: rgba(119, 118, 70, .06);
    border-radius: var(--esire-radius);
}

    .integration-note i {
        color: var(--esire-olive);
        margin-top: .12rem;
    }

    .integration-note strong {
        display: block;
        color: var(--esire-black);
        font-size: .82rem;
        font-weight: 800;
        margin-bottom: .15rem;
    }

    .integration-note span {
        display: block;
        color: var(--esire-gray);
        font-size: .76rem;
        line-height: 1.5;
    }

.integration-map-card {
    position: relative;
    min-height: 430px;
    border: 1px solid var(--esire-border);
    background: radial-gradient(circle at 50% 50%, rgba(119,118,70,.12), transparent 34%), linear-gradient(135deg, rgba(255,255,255,.92), rgba(242,241,234,.78));
    border-radius: 1rem;
    box-shadow: var(--esire-shadow-soft);
    overflow: hidden;
}

    .integration-map-card::before,
    .integration-map-card::after {
        content: "";
        position: absolute;
        inset: 50% 8% auto 8%;
        height: 1px;
        border-top: 1px dashed rgba(93,96,96,.28);
    }

    .integration-map-card::after {
        inset: 8% auto 8% 50%;
        width: 1px;
        height: auto;
        border-top: 0;
        border-left: 1px dashed rgba(93,96,96,.28);
    }

.integration-map-center {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 140px;
    min-height: 112px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,.16);
    background: var(--esire-black);
    color: var(--esire-light);
    border-radius: .95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    box-shadow: 0 20px 54px rgba(15,15,14,.22);
}

    .integration-map-center img {
        width: 78px;
        filter: brightness(0) invert(1);
    }

    .integration-map-center span {
        color: rgba(247,246,239,.58);
        font-family: var(--esire-font-mono);
        font-size: .58rem;
        text-transform: uppercase;
        letter-spacing: .12em;
    }

.integration-node {
    position: absolute;
    z-index: 2;
    width: 178px;
    padding: .9rem;
    border: 1px solid var(--esire-border);
    background: rgba(255,255,255,.94);
    border-radius: .85rem;
    box-shadow: 0 10px 24px rgba(15,15,14,.07);
    text-align: center;
}

    .integration-node strong {
        display: block;
        color: var(--esire-black);
        font-size: .82rem;
        font-weight: 850;
        margin-top: .45rem;
    }

    .integration-node span {
        display: block;
        color: var(--esire-muted);
        font-size: .68rem;
        margin-top: .12rem;
    }

.integration-node-icon {
    width: 42px;
    height: 42px;
    border-radius: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .28rem;
    font-size: 1.02rem;
}

    .integration-node-icon.carriers,
    .integration-brand-badge.carriers {
        background: rgba(15,15,14,.06);
        color: var(--esire-black);
    }

    .integration-node-icon.qbo,
    .integration-brand-badge.qbo {
        background: rgba(44,160,28,.10);
        color: #2ca01c;
    }

    .integration-node-icon.stripe,
    .integration-brand-badge.stripe {
        background: rgba(99,91,255,.10);
        color: #635bff;
    }

    .integration-node-icon.edonor,
    .integration-brand-badge.edonor {
        background: rgba(119,118,70,.12);
        color: var(--esire-olive);
    }

.integration-node-shipping {
    left: 8%;
    top: 13%;
}

.integration-node-qbo {
    right: 8%;
    top: 13%;
}

.integration-node-stripe {
    left: 8%;
    bottom: 13%;
}

.integration-node-edonor {
    right: 8%;
    bottom: 13%;
}

.integration-detail-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--esire-border);
    background: var(--esire-white);
    border-radius: .95rem;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(16,24,40,.035);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .integration-detail-card::after {
        content: "";
        position: absolute;
        left: 1.25rem;
        right: 1.25rem;
        bottom: 0;
        height: 3px;
        border-radius: 999px 999px 0 0;
        background: var(--esire-border);
    }

    .integration-detail-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--esire-shadow-soft);
    }

.integration-detail-card-featured {
    border-color: rgba(119,118,70,.28);
}

    .integration-detail-card-featured::after {
        background: var(--esire-olive);
    }

.integration-detail-head {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.integration-brand-badge {
    width: 44px;
    height: 44px;
    border-radius: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    flex: 0 0 auto;
    font-size: 1.05rem;
}

.integration-detail-card h3 {
    margin: .28rem 0 0;
    color: var(--esire-black);
    font-size: 1.08rem;
    line-height: 1.18;
    font-weight: 850;
    letter-spacing: .01em;
}

.integration-detail-card p {
    color: var(--esire-gray);
    font-size: .82rem;
    line-height: 1.62;
    margin-bottom: 1rem;
}

.integration-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
}

    .integration-mini-grid div {
        border: 1px solid var(--esire-border);
        background: var(--esire-light);
        border-radius: .72rem;
        padding: .75rem;
    }

    .integration-mini-grid strong {
        display: block;
        color: var(--esire-black);
        font-family: var(--esire-font-mono);
        font-size: .68rem;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-bottom: .25rem;
    }

    .integration-mini-grid span {
        display: block;
        color: var(--esire-gray);
        font-size: .72rem;
        line-height: 1.42;
    }

.integration-check-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: .5rem;
}

    .integration-check-list li {
        color: var(--esire-black);
        font-size: .8rem;
        font-weight: 600;
        line-height: 1.45;
        display: flex;
        gap: .5rem;
        align-items: flex-start;
    }

    .integration-check-list i {
        color: var(--esire-olive);
        font-size: .74rem;
        margin-top: .18rem;
    }

.integration-flow-list {
    display: grid;
    gap: .55rem;
}

    .integration-flow-list div {
        display: flex;
        gap: .7rem;
        align-items: flex-start;
        border: 1px solid var(--esire-border);
        background: var(--esire-light);
        border-radius: .72rem;
        padding: .7rem;
    }

    .integration-flow-list span {
        width: 26px;
        height: 26px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        background: rgba(119,118,70,.12);
        color: var(--esire-olive);
        font-family: var(--esire-font-mono);
        font-size: .64rem;
        font-weight: 900;
    }

    .integration-flow-list p {
        margin: .08rem 0 0;
        font-size: .75rem;
        line-height: 1.45;
    }

.integration-inline-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: 1rem;
    color: var(--esire-black);
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid var(--esire-black);
    padding-bottom: .1rem;
}

    .integration-inline-link:hover {
        color: var(--esire-olive);
        border-bottom-color: var(--esire-olive);
    }

.workflow-timeline {
    border: 1px solid var(--esire-border);
    background: var(--esire-white);
    border-radius: .95rem;
    overflow: hidden;
    box-shadow: var(--esire-shadow-soft);
}

.workflow-item {
    display: flex;
    gap: .9rem;
    padding: 1.05rem;
    border-bottom: 1px solid var(--esire-border);
}

    .workflow-item:last-child {
        border-bottom: 0;
    }

.workflow-number {
    width: 34px;
    height: 34px;
    border-radius: .7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: var(--esire-black);
    color: var(--esire-light);
    font-family: var(--esire-font-mono);
    font-size: .72rem;
    font-weight: 900;
}

.workflow-item h3 {
    margin: 0 0 .25rem;
    font-size: .92rem;
    font-weight: 850;
    color: var(--esire-black);
}

.workflow-item p {
    margin: 0;
    color: var(--esire-gray);
    font-size: .8rem;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .integration-map-card {
        min-height: 560px;
    }

    .integration-node-shipping {
        left: 50%;
        top: 5%;
        transform: translateX(-50%);
    }

    .integration-node-qbo {
        right: auto;
        left: 50%;
        top: 25%;
        transform: translateX(-50%);
    }

    .integration-node-stripe {
        left: 50%;
        bottom: 25%;
        transform: translateX(-50%);
    }

    .integration-node-edonor {
        right: auto;
        left: 50%;
        bottom: 5%;
        transform: translateX(-50%);
    }

    .integration-map-card::before {
        inset: 5% auto 5% 50%;
        width: 1px;
        height: auto;
        border-top: 0;
        border-left: 1px dashed rgba(93,96,96,.28);
    }

    .integration-map-card::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .integration-mini-grid {
        grid-template-columns: 1fr;
    }

    .workflow-item {
        padding: .9rem;
    }

    .integration-detail-card {
        padding: 1rem;
    }

        .integration-detail-card::after {
            left: 1rem;
            right: 1rem;
        }
}

/* ============================================================
   About Page Buildout
   ============================================================ */

.about-hero .page-copy {
    max-width: 700px;
}

.about-difference-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
    margin-top: 2rem;
}

.about-value-card,
.about-philosophy-card,
.about-mission-card {
    border: 1px solid var(--esire-border);
    background: var(--esire-white);
    border-radius: .85rem;
    box-shadow: 0 1px 2px rgba(16,24,40,.035);
}

.about-value-card {
    padding: 1.05rem;
    /*transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;*/
}

    /*.about-value-card:hover {
        transform: translateY(-2px);
        border-color: rgba(119,118,70,.26);
        box-shadow: var(--esire-shadow-soft);
    }*/

.about-icon {
    width: 36px;
    height: 36px;
    border-radius: .62rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--esire-light);
    border: 1px solid var(--esire-border);
    color: var(--esire-olive);
    font-size: .88rem;
    margin-bottom: .85rem;
}

.about-value-card h3,
.about-philosophy-card h3 {
    margin: 0 0 .35rem;
    color: var(--esire-black);
    font-size: .9rem;
    font-weight: 850;
    letter-spacing: .01em;
}

.about-value-card p,
.about-philosophy-card p {
    margin: 0;
    color: var(--esire-gray);
    font-size: .76rem;
    line-height: 1.5;
}

.about-roots-section {
    border-top: 1px solid var(--esire-border);
    border-bottom: 1px solid var(--esire-border);
}

.about-visual-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--esire-border);
    background: var(--esire-white);
    border-radius: .95rem;
    box-shadow: var(--esire-shadow);
}

.about-visual-toolbar {
    display: flex;
    align-items: center;
    gap: .38rem;
    padding: .7rem .85rem;
    background: var(--esire-light);
    border-bottom: 1px solid var(--esire-border);
}

    .about-visual-toolbar span {
        width: .55rem;
        height: .55rem;
        border-radius: 999px;
        background: var(--esire-rose, #ba454f);
    }

        .about-visual-toolbar span:nth-child(2) {
            background: var(--esire-gold);
        }

        .about-visual-toolbar span:nth-child(3) {
            background: var(--esire-olive);
        }

    .about-visual-toolbar strong {
        margin-left: .65rem;
        color: var(--esire-muted);
        font-family: var(--esire-font-mono);
        font-size: .62rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

.about-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
    padding: 1rem;
    background: linear-gradient(rgba(119,118,70,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(119,118,70,.055) 1px, transparent 1px), var(--esire-panel-muted);
    background-size: 38px 38px;
}

.about-photo-tile {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: .35rem;
    padding: .8rem;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: .8rem;
    background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.64));
    color: var(--esire-gray);
    box-shadow: 0 8px 18px rgba(15,15,14,.055);
}

    .about-photo-tile i {
        font-size: 1.15rem;
        color: var(--esire-olive);
    }

    .about-photo-tile span {
        font-size: .68rem;
        font-weight: 800;
        color: var(--esire-black);
    }

    .about-photo-tile.tile-dark {
        background: linear-gradient(135deg, #171714, #32332e);
        color: var(--esire-light);
    }

        .about-photo-tile.tile-dark i,
        .about-photo-tile.tile-dark span {
            color: var(--esire-light);
        }

    .about-photo-tile.tile-accent {
        background: linear-gradient(135deg, rgba(119,118,70,.26), rgba(119,118,70,.08));
    }

    .about-photo-tile.tile-blue {
        background: linear-gradient(135deg, rgba(166,205,221,.45), rgba(255,255,255,.76));
    }

.about-cred-card {
    margin: 0 1rem 1rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .9rem;
    border: 1px solid var(--esire-border);
    border-radius: .85rem;
    background: rgba(255,255,255,.95);
}

.about-cred-mark {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--esire-light);
    background: var(--esire-olive);
}

.about-cred-card strong,
.about-cred-card span {
    display: block;
}

.about-cred-card strong {
    color: var(--esire-black);
    font-size: .84rem;
    font-weight: 850;
}

.about-cred-card span {
    color: var(--esire-gray);
    font-size: .72rem;
    line-height: 1.45;
    margin-top: .1rem;
}

.about-proof-list {
    display: grid;
    gap: .8rem;
}

.about-proof-item {
    display: flex;
    gap: .75rem;
    padding: .85rem;
    border: 1px solid var(--esire-border);
    background: var(--esire-white);
    border-radius: .78rem;
}

    .about-proof-item > span {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        background: rgba(119,118,70,.11);
        color: var(--esire-olive);
        font-size: .72rem;
    }

    .about-proof-item strong {
        display: block;
        color: var(--esire-black);
        font-size: .84rem;
        font-weight: 850;
        margin-bottom: .16rem;
    }

    .about-proof-item p {
        margin: 0;
        color: var(--esire-gray);
        font-size: .76rem;
        line-height: 1.48;
    }

.about-philosophy-section .section-title {
    color: var(--esire-light);
}

.about-philosophy-card {
    height: 100%;
    padding: 1.15rem;
    background: rgba(255,255,255,.055);
    border-color: rgba(255,255,255,.11);
    backdrop-filter: blur(8px);
}

.about-philosophy-icon {
    width: 42px;
    height: 42px;
    border-radius: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .9rem;
    background: rgba(119,118,70,.18);
    color: var(--esire-primary);
    border: 1px solid rgba(222,222,211,.14);
}

.about-philosophy-card h3 {
    color: var(--esire-light);
}

.about-philosophy-card p {
    color: rgba(247,246,239,.6);
}

.about-mission-card {
    padding: 1.35rem;
    background: var(--esire-light);
    border-color: rgba(119,118,70,.18);
    box-shadow: var(--esire-shadow-soft);
}

.about-mission-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

    .about-mission-pills span {
        display: inline-flex;
        align-items: center;
        gap: .42rem;
        border: 1px solid var(--esire-border);
        background: var(--esire-white);
        color: var(--esire-black);
        border-radius: 999px;
        padding: .38rem .62rem;
        font-size: .72rem;
        font-weight: 750;
    }

    .about-mission-pills i {
        color: var(--esire-olive);
        font-size: .68rem;
    }

.about-cta {
    border-top: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 991.98px) {
    .about-difference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .about-difference-grid,
    .about-photo-grid {
        grid-template-columns: 1fr;
    }

    .about-photo-tile {
        min-height: 96px;
    }

    .about-mission-card {
        padding: 1rem;
    }
}

/* ============================================================
   Subscriber Onboarding + Internal Subscription Admin
   ============================================================ */

.btn-esire-outline-dark {
    color: var(--esire-black);
    border: 1px solid var(--esire-border-strong);
    background: var(--esire-white);
    border-radius: .42rem;
    font-size: .76rem;
    font-weight: 700;
    line-height: 1;
    padding: .58rem .82rem;
}

    .btn-esire-outline-dark:hover {
        color: var(--esire-black);
        border-color: var(--esire-muted);
        background: var(--esire-panel-muted);
    }

.onboarding-shell {
    min-height: 100vh;
    padding-top: 58px;
    background: var(--esire-light);
    display: flex;
}

.onboarding-progress {
    position: fixed;
    top: 58px;
    bottom: 0;
    left: 0;
    z-index: 4;
    width: 282px;
    background: var(--esire-white);
    border-right: 1px solid var(--esire-border);
    display: flex;
    flex-direction: column;
}

.onboarding-progress-inner {
    padding: 1.25rem;
}

.onboarding-brand-mini img {
    width: 104px;
    display: block;
    margin-bottom: 1.15rem;
}

.onboarding-progress h1 {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .01em;
    margin: 0 0 .35rem;
}

.onboarding-progress p {
    color: var(--esire-gray);
    font-size: .78rem;
    line-height: 1.55;
    margin: 0 0 1.35rem;
}

.onboarding-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .75rem;
}

    .onboarding-steps li {
        position: relative;
        display: flex;
        gap: .75rem;
        align-items: flex-start;
        color: var(--esire-muted);
    }

        .onboarding-steps li + li::before {
            content: "";
            position: absolute;
            left: 14px;
            top: -20px;
            width: 1px;
            height: 18px;
            background: var(--esire-border);
        }

    .onboarding-steps span {
        width: 28px;
        height: 28px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        border: 1px solid var(--esire-border);
        background: var(--esire-white);
        color: var(--esire-muted);
        font-family: var(--esire-font-mono);
        font-size: .68rem;
        font-weight: 800;
    }

    .onboarding-steps strong {
        display: block;
        color: inherit;
        font-size: .78rem;
        font-weight: 800;
    }

    .onboarding-steps small {
        color: var(--esire-muted);
        font-size: .68rem;
    }

    .onboarding-steps .active span,
    .onboarding-steps .done span {
        background: var(--esire-olive);
        border-color: var(--esire-olive);
        color: var(--esire-light);
    }

    .onboarding-steps .active strong,
    .onboarding-steps .done strong {
        color: var(--esire-black);
    }

.onboarding-help,
.onboarding-estimate-card {
    margin-top: auto;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--esire-border);
    background: var(--esire-panel-muted);
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

    .onboarding-help i {
        color: var(--esire-olive);
        margin-top: .15rem;
    }

    .onboarding-help strong,
    .onboarding-help span {
        display: block;
    }

    .onboarding-help strong {
        font-size: .78rem;
        font-weight: 800;
    }

    .onboarding-help span {
        color: var(--esire-gray);
        font-size: .72rem;
        line-height: 1.45;
    }

.onboarding-estimate-card {
    display: block;
}

    .onboarding-estimate-card span {
        color: var(--esire-muted);
        font-size: .66rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .08em;
    }

    .onboarding-estimate-card strong {
        display: block;
        color: var(--esire-black);
        font-family: var(--esire-font-mono);
        font-size: 1.55rem;
        line-height: 1.1;
        margin-top: .25rem;
    }

    .onboarding-estimate-card small {
        font-size: .78rem;
        color: var(--esire-gray);
    }

    .onboarding-estimate-card p {
        margin: .35rem 0 0;
        color: var(--esire-gray);
        font-size: .72rem;
    }

.onboarding-main {
    flex: 1;
    margin-left: 282px;
    min-width: 0;
}

.onboarding-form {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    padding: 2rem 1.5rem 6.25rem;
}

.onboarding-header-block {
    margin-bottom: 1.35rem;
}

    .onboarding-header-block h2 {
        margin: .25rem 0 .45rem;
        color: var(--esire-black);
        font-size: clamp(1.45rem, 2.4vw, 2.1rem);
        line-height: 1.1;
        font-weight: 850;
        letter-spacing: .01em;
    }

    .onboarding-header-block p {
        max-width: 700px;
        color: var(--esire-gray);
        font-size: .86rem;
        line-height: 1.6;
        margin: 0;
    }

.onboarding-card,
.admin-card,
.admin-side-card,
.onboarding-summary-card,
.complete-panel,
.terms-document-card {
    background: var(--esire-white);
    border: 1px solid var(--esire-border);
    border-radius: var(--esire-radius);
    box-shadow: 0 1px 2px rgba(16, 24, 40, .035);
}

.onboarding-card {
    padding: 1.1rem;
    margin-bottom: 1rem;
}

.onboarding-card-head {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    border-bottom: 1px solid var(--esire-border);
    padding-bottom: .85rem;
    margin-bottom: 1rem;
}

    .onboarding-card-head > i {
        width: 34px;
        height: 34px;
        border-radius: .65rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        color: var(--esire-olive);
        background: rgba(119,118,70,.1);
        border: 1px solid rgba(119,118,70,.14);
    }

.onboarding-card h3,
.admin-card h2,
.admin-side-card h3,
.onboarding-summary-card h3 {
    color: var(--esire-black);
    font-size: .95rem;
    font-weight: 850;
    letter-spacing: .01em;
    margin: 0;
}

.onboarding-card-head p {
    color: var(--esire-gray);
    font-size: .76rem;
    line-height: 1.45;
    margin: .18rem 0 0;
}

.onboarding-card .form-label,
.admin-shell .form-label {
    color: var(--esire-gray);
    font-size: .68rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .35rem;
}

    .onboarding-card .form-label span {
        color: var(--esire-rose, #ba454f);
    }

.onboarding-card .form-control,
.onboarding-card .form-select,
.admin-shell .form-control,
.admin-shell .form-select {
    min-height: 38px;
    border-color: var(--esire-border-strong);
    border-radius: .55rem;
    color: var(--esire-black);
    font-size: .86rem;
    box-shadow: none;
}

    .onboarding-card .form-control:focus,
    .onboarding-card .form-select:focus,
    .admin-shell .form-control:focus,
    .admin-shell .form-select:focus {
        border-color: var(--esire-olive);
        box-shadow: 0 0 0 .18rem rgba(119,118,70,.12);
    }

.onboarding-card .input-group-text {
    color: var(--esire-gray);
    font-size: .78rem;
    background: var(--esire-panel-muted);
    border-color: var(--esire-border-strong);
}

.onboarding-action-bar {
    position: fixed;
    left: 282px;
    right: 0;
    bottom: 0;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    padding: .85rem 1.5rem;
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--esire-border);
    backdrop-filter: blur(8px);
}

.onboarding-invite-note,
.onboarding-info {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
    border: 1px solid rgba(63,127,164,.18);
    background: #eef7fb;
    color: #3f7fa4;
    border-radius: .7rem;
    padding: .8rem;
    font-size: .78rem;
    line-height: 1.48;
    margin-bottom: 1rem;
}

.included-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(119,118,70,.20);
}

.included-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--esire-olive);
    color: var(--esire-light);
    font-family: var(--esire-font-mono);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .55rem;
    border-radius: 0 0 0 .55rem;
}

.included-card p {
    color: var(--esire-gray);
    font-size: .82rem;
    margin: .3rem 0 0;
}

.module-price-large {
    font-family: var(--esire-font-mono);
    color: var(--esire-black);
    font-size: 1.2rem;
    font-weight: 850;
    white-space: nowrap;
}

    .module-price-large span {
        color: var(--esire-gray);
        font-size: .68rem;
        font-weight: 600;
    }

.module-select-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
    margin-bottom: 1rem;
}

.onboarding-module-card {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 1rem;
    min-height: 174px;
    background: var(--esire-white);
    border: 1px solid var(--esire-border);
    border-radius: var(--esire-radius);
    box-shadow: 0 1px 2px rgba(16,24,40,.035);
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

    .onboarding-module-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--esire-shadow-soft);
    }

    .onboarding-module-card input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .onboarding-module-card:has(input:checked) {
        border-color: rgba(119,118,70,.45);
        box-shadow: 0 0 0 4px rgba(119,118,70,.08);
    }

.module-check {
    position: absolute;
    right: .75rem;
    top: .75rem;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--esire-panel-muted);
    color: transparent;
    border: 1px solid var(--esire-border);
    font-size: .68rem;
}

.onboarding-module-card:has(input:checked) .module-check {
    color: var(--esire-light);
    background: var(--esire-olive);
    border-color: var(--esire-olive);
}

.onboarding-module-card .module-icon {
    width: 36px;
    height: 36px;
    border-radius: .65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--esire-olive);
    background: rgba(119,118,70,.09);
    border: 1px solid rgba(119,118,70,.14);
    margin-bottom: .7rem;
}

.onboarding-module-card strong,
.onboarding-module-card small,
.onboarding-module-card em {
    display: block;
}

.onboarding-module-card strong {
    color: var(--esire-black);
    font-size: .88rem;
    font-weight: 850;
    margin-bottom: .3rem;
}

.onboarding-module-card small {
    color: var(--esire-gray);
    font-size: .73rem;
    line-height: 1.42;
}

.onboarding-module-card em {
    color: var(--esire-olive);
    font-style: normal;
    font-size: .68rem;
    font-weight: 850;
    margin-top: .65rem;
}

.check-list,
.pill-check-grid,
.seed-options {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.check-list {
    display: grid;
    gap: .35rem;
}

    .check-list label,
    .pill-check-grid label,
    .seed-options label,
    .admin-module-builder label,
    .terms-check {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        color: var(--esire-black);
        font-size: .78rem;
        font-weight: 700;
    }

.pill-check-grid label,
.seed-options label {
    padding: .42rem .62rem;
    border: 1px solid var(--esire-border);
    background: var(--esire-panel-muted);
    border-radius: 999px;
}

.stripe-placeholder {
    border: 1px solid rgba(99,91,255,.18);
    background: linear-gradient(135deg, rgba(99,91,255,.08), rgba(255,255,255,1));
    border-radius: .85rem;
    padding: 1rem;
}

.stripe-card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

    .stripe-card-top span:first-child {
        width: 48px;
        height: 32px;
        border-radius: .42rem;
        background: rgba(99,91,255,.2);
    }

    .stripe-card-top span:last-child {
        width: 60px;
        height: 18px;
        border-radius: 999px;
        background: rgba(99,91,255,.18);
    }

.stripe-placeholder label {
    display: block;
    color: var(--esire-gray);
    font-size: .62rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .25rem;
}

.stripe-field {
    min-height: 38px;
    border: 1px solid var(--esire-border-strong);
    background: var(--esire-white);
    border-radius: .5rem;
    padding: .55rem .7rem;
    color: var(--esire-black);
    font-family: var(--esire-font-mono);
    font-size: .82rem;
}

.terms-box {
    max-height: 178px;
    overflow-y: auto;
    border: 1px solid var(--esire-border);
    background: var(--esire-panel-muted);
    border-radius: .7rem;
    padding: .85rem;
    color: var(--esire-gray);
    font-size: .78rem;
    line-height: 1.55;
}

.terms-check {
    align-items: flex-start;
    padding: .7rem;
    border: 1px solid rgba(119,118,70,.18);
    background: rgba(119,118,70,.07);
    border-radius: .7rem;
}

.onboarding-summary-card,
.admin-side-card {
    padding: 1rem;
    top: 82px;
}

.summary-line,
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .6rem 0;
    border-bottom: 1px solid var(--esire-border);
    color: var(--esire-gray);
    font-size: .78rem;
}

    .summary-line strong,
    .summary-total strong {
        color: var(--esire-black);
        text-align: right;
    }

    .summary-line.muted strong {
        color: var(--esire-muted);
        font-weight: 600;
    }

.summary-total {
    align-items: baseline;
    border-bottom: 0;
    margin-top: .2rem;
    color: var(--esire-black);
    font-weight: 800;
}

    .summary-total strong {
        color: var(--esire-olive);
        font-family: var(--esire-font-mono);
        font-size: 1.08rem;
    }

.provision-list,
.timeline-list {
    list-style: none;
    padding: 0;
    margin: .7rem 0 0;
    display: grid;
    gap: .55rem;
}

    .provision-list li {
        display: flex;
        gap: .45rem;
        align-items: flex-start;
        color: var(--esire-gray);
        font-size: .75rem;
        line-height: 1.35;
    }

    .provision-list i {
        color: var(--esire-muted);
        margin-top: .15rem;
    }

.complete-panel {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.onboarding-complete {
    padding: 7.5rem 0 4rem;
}

.complete-icon {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--esire-olive);
    color: var(--esire-light);
    margin-bottom: 1rem;
}

.complete-panel h1 {
    color: var(--esire-black);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 850;
    letter-spacing: .01em;
}

.complete-panel p {
    color: var(--esire-gray);
    max-width: 680px;
    margin: 0 auto 1.4rem;
    font-size: .88rem;
    line-height: 1.62;
}

.complete-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1.25rem;
}

    .complete-grid div {
        padding: .85rem;
        border: 1px solid var(--esire-border);
        background: var(--esire-light);
        border-radius: .75rem;
    }

    .complete-grid i {
        color: var(--esire-olive);
        margin-bottom: .45rem;
    }

    .complete-grid strong,
    .complete-grid span {
        display: block;
    }

    .complete-grid strong {
        font-size: .78rem;
        font-weight: 850;
    }

    .complete-grid span {
        color: var(--esire-gray);
        font-size: .68rem;
        line-height: 1.35;
        margin-top: .2rem;
    }

.terms-document {
    max-width: 900px;
}

.terms-document-card {
    padding: 1.5rem;
}

    .terms-document-card h2 {
        font-size: 1rem;
        font-weight: 850;
        margin: 1.2rem 0 .4rem;
    }

        .terms-document-card h2:first-child {
            margin-top: 0;
        }

    .terms-document-card p {
        color: var(--esire-gray);
        font-size: .88rem;
        line-height: 1.68;
    }

/* Admin */
.admin-shell {
    padding: 7.3rem 0 4rem;
}

.admin-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

    .admin-page-head.compact {
        align-items: center;
    }

    .admin-page-head h1 {
        color: var(--esire-black);
        font-size: clamp(1.55rem, 3vw, 2.35rem);
        line-height: 1.1;
        font-weight: 850;
        letter-spacing: .01em;
        margin: .25rem 0 .35rem;
    }

    .admin-page-head p {
        color: var(--esire-gray);
        font-size: .86rem;
        margin: 0;
    }

.admin-kpi-grid,
.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
    margin-bottom: 1rem;
}

    .admin-kpi,
    .admin-detail-grid div {
        padding: 1rem;
        background: var(--esire-white);
        border: 1px solid var(--esire-border);
        border-radius: var(--esire-radius);
        box-shadow: 0 1px 2px rgba(16,24,40,.035);
    }

        .admin-kpi span,
        .admin-detail-grid span {
            color: var(--esire-muted);
            font-size: .66rem;
            font-weight: 850;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        .admin-kpi strong,
        .admin-detail-grid strong {
            display: block;
            color: var(--esire-black);
            font-size: 1.5rem;
            font-weight: 850;
            letter-spacing: .01em;
            margin-top: .25rem;
        }

    .admin-detail-grid strong {
        font-size: .95rem;
        letter-spacing: 0;
    }

    .admin-kpi small,
    .admin-detail-grid small {
        display: block;
        color: var(--esire-gray);
        font-size: .72rem;
        margin-top: .2rem;
    }

.admin-card {
    overflow: hidden;
}

.admin-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .95rem 1rem;
    border-bottom: 1px solid var(--esire-border);
}

.admin-filter {
    display: flex;
    align-items: center;
    gap: .45rem;
    border: 1px solid var(--esire-border);
    border-radius: .55rem;
    padding: .35rem .55rem;
    background: var(--esire-light);
    color: var(--esire-muted);
}

    .admin-filter input {
        border: 0;
        background: transparent;
        outline: none;
        font-size: .78rem;
    }

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: .82rem;
}

    .admin-table th {
        background: var(--esire-panel-muted);
        color: var(--esire-muted);
        font-size: .65rem;
        text-transform: uppercase;
        letter-spacing: .08em;
        padding: .78rem .9rem;
        border-bottom: 1px solid var(--esire-border);
    }

    .admin-table td {
        padding: .82rem .9rem;
        border-bottom: 1px solid var(--esire-border);
        vertical-align: middle;
    }

        .admin-table td strong,
        .admin-table td span {
            display: block;
        }

        .admin-table td > span {
            color: var(--esire-gray);
            font-size: .72rem;
            margin-top: .12rem;
        }

.admin-pill,
.status-pill {
    display: inline-flex !important;
    align-items: center;
    border-radius: 999px;
    padding: .24rem .5rem;
    margin: .12rem .16rem .12rem 0;
    font-size: .66rem !important;
    font-weight: 850;
    line-height: 1;
    border: 1px solid var(--esire-border);
    background: var(--esire-panel-muted);
    color: var(--esire-gray) !important;
}

    .status-pill.success {
        color: #2f7d50 !important;
        background: #edf7f1;
        border-color: rgba(47,125,80,.18);
    }

    .status-pill.warning {
        color: #a26f16 !important;
        background: #fff8e6;
        border-color: rgba(162,111,22,.22);
    }

    .status-pill.danger {
        color: #a63229 !important;
        background: #fff0ef;
        border-color: rgba(166,50,41,.20);
    }

.admin-form-section {
    padding: 1rem;
}

    .admin-form-section h2 {
        font-size: .95rem;
        font-weight: 850;
        margin-bottom: .85rem;
    }

.admin-module-builder {
    display: grid;
    gap: .55rem;
}

    .admin-module-builder label {
        justify-content: space-between;
        border: 1px solid var(--esire-border);
        border-radius: .7rem;
        padding: .75rem;
        background: var(--esire-light);
    }

        .admin-module-builder label span {
            color: var(--esire-olive);
            font-family: var(--esire-font-mono);
            font-size: .72rem;
            margin-left: auto;
        }

.copy-field {
    display: flex;
    gap: .35rem;
}

.small-muted {
    color: var(--esire-gray);
    font-size: .74rem;
    line-height: 1.45;
}

.timeline-list li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--esire-gray);
    font-size: .78rem;
}

    .timeline-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: .4rem;
        width: .45rem;
        height: .45rem;
        border-radius: 999px;
        background: var(--esire-olive);
    }

.timeline-list strong {
    display: block;
    color: var(--esire-black);
    font-size: .82rem;
}

.timeline-list span {
    display: block;
}

@media (max-width: 1199.98px) {
    .module-select-grid,
    .admin-kpi-grid,
    .admin-detail-grid,
    .complete-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .onboarding-shell {
        display: block;
    }

    .onboarding-progress {
        display: none;
    }

    .onboarding-main {
        margin-left: 0;
    }

    .onboarding-action-bar {
        left: 0;
    }

    .onboarding-mobile-step {
        display: block;
        padding: .85rem 1rem;
        background: var(--esire-white);
        border-bottom: 1px solid var(--esire-border);
    }

        .onboarding-mobile-step span {
            display: block;
            color: var(--esire-olive);
            font-size: .68rem;
            font-weight: 850;
            text-transform: uppercase;
            letter-spacing: .08em;
            margin-bottom: .45rem;
        }

        .onboarding-mobile-step div {
            height: 5px;
            border-radius: 999px;
            background: var(--esire-border);
            overflow: hidden;
        }

        .onboarding-mobile-step i {
            display: block;
            height: 100%;
            border-radius: 999px;
            background: var(--esire-olive);
        }

    .admin-page-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (min-width: 992px) {
    .onboarding-mobile-step {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .onboarding-form {
        padding: 1.35rem 1rem 6.25rem;
    }

    .onboarding-card {
        padding: .9rem;
    }

    .module-select-grid,
    .admin-kpi-grid,
    .admin-detail-grid,
    .complete-grid {
        grid-template-columns: 1fr;
    }

    .onboarding-action-bar {
        flex-direction: column-reverse;
        align-items: stretch;
        padding: .75rem 1rem;
    }

    .admin-shell {
        padding-top: 6.4rem;
    }
}
/* ============================================================
   HOME HERO - REAL PRODUCT SCREENSHOT
   ============================================================ */

.hero-screenshot-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
}


/* Soft background glow */
.hero-screenshot-glow {
    position: absolute;
    z-index: 0;
    width: 82%;
    height: 82%;
    top: 9%;
    left: 9%;
    background: radial-gradient( circle, rgba(166, 205, 221, .15) 0%, rgba(119, 118, 70, .07) 45%, transparent 72% );
    filter: blur(34px);
    pointer-events: none;
}


/* Screenshot container */
.hero-screenshot-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: .85rem;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .34), 0 7px 20px rgba(0, 0, 0, .16);
}


/* Actual screenshot */
.hero-screenshot {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: contain;
}


/* Tablet */
@media (max-width: 991.98px) {

    .hero-screenshot-wrap {
        width: 100%;
        max-width: 850px;
        margin: 2rem auto 0;
    }
}


/* Mobile */
@media (max-width: 767.98px) {

    .hero-screenshot-wrap {
        margin-top: 1.5rem;
    }

    .hero-screenshot-frame {
        border-radius: .65rem;
    }
}

/* ============================================================
   Section feature screenshot
   Used in the 50/50 content sections
   ============================================================ */

.feature-screenshot-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.feature-screenshot-glow {
    position: absolute;
    z-index: 0;
    width: 82%;
    height: 82%;
    top: 9%;
    left: 9%;
    background: radial-gradient( circle, rgba(166, 205, 221, .14) 0%, rgba(119, 118, 70, .07) 45%, transparent 74% );
    filter: blur(34px);
    pointer-events: none;
}

.feature-screenshot-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--esire-border);
    border-radius: .9rem;
    overflow: hidden;
    /*box-shadow: 0 20px 52px rgba(15, 15, 14, .10), 0 8px 22px rgba(15, 15, 14, .08);*/
}

.feature-screenshot {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* Optional: keeps very tall screenshots from overpowering the section */
@media (min-width: 992px) {
    .feature-screenshot {
        max-height: 880px;
    }
}

@media (max-width: 991.98px) {
    .feature-screenshot-wrap {
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .feature-screenshot-frame {
        border-radius: .7rem;
    }
}


/* ============================================================
   eSire Heading Typography
   Match Member.Web visual language
   ============================================================ */

/* Main heading font */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.page-title,
.section-title,
.record-head-title,
.footer-heading {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 500;
}


/* ============================================================
   H1 / Major Page Headlines
   ============================================================ */

/*h1,
.hero-title,
.page-title {
    font-weight: 950;
    line-height: .98;
    letter-spacing: -.01em;
}*/


/* Home hero */
.hero-title {
    max-width: 680px;
    margin: 1rem 0 .9rem;
    font-size: clamp(2.4rem, 4.25vw, 4.35rem);
    color: var(--esire-light);
}


/* Internal/public page hero */
.page-title {
    font-size: clamp(2.25rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -.012em;
}


/* ============================================================
   H2 / Section Headlines
   ============================================================ */

h2,
.section-title {
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -.012em;
}

.section-title {
    font-size: clamp(1.7rem, 3.1vw, 1.55rem);
}


/* ============================================================
   H3 / Card and Feature Headlines
   ============================================================ */

h3 {
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.008em;
}


/* ============================================================
   Small-screen heading adjustments
   ============================================================ */

@media (max-width: 991.98px) {

    .hero-title {
        font-size: clamp(2.35rem, 7vw, 3.5rem);
    }

    .page-title {
        font-size: clamp(2.15rem, 6vw, 3.15rem);
    }
}


@media (max-width: 575.98px) {

    .hero-title {
        font-size: clamp(2.15rem, 11vw, 3rem);
        line-height: 1;
    }

    .page-title {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }

    .section-title {
        font-size: clamp(1.55rem, 7vw, 2.2rem);
    }
}

/* Active link indicator */
.navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--color-primary);
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 100%;
    }

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add padding to account for fixed navbar */
html {
    scroll-padding-top: 70px;
}

.module-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--color-primary);
}

.logo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.logo-item {
    text-align: center;
}

.logo-img {
    max-width: 100%;
    height: auto;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

    .logo-img:hover {
        filter: grayscale(20%);
    }

.demo-perks {
    margin-top: 2rem;
}

    .demo-perks .perk {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }

        .demo-perks .perk i {
            color: var(--color-success);
            flex-shrink: 0;
        }

.contact-form-wrapper {
    background: rgba(255,255,255,0.5);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
    }


/* Align sections to top */
.section-pad .row {
    align-items: flex-start !important;
}

/* White background for About section */
/*.section-pad.section-light {
    background-color: var(--esire-white);
}*/


/* ============================================================
   HERO TITLE FIX - Simplified, no conflicts
   ============================================================ */

.hero-title,
.hero-title h1 {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 500 !important;
    font-size: 3rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 1.5rem !important;
}

/* Mobile size */
@media (max-width: 768px) {
    .hero-title,
    .hero-title h1 {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title,
    .hero-title h1 {
        font-size: 1.5rem !important;
    }
}

/* ============================================================
   FEATURE GRID SECTION STYLES - Enhanced Visual Design
   ============================================================ */

.feature-grid-section {
    padding: 4rem 0;
}

.feature-grid-category {
    margin-bottom: 4rem;
    position: relative;
}

    .feature-grid-category::after {
        content: '';
        position: absolute;
        bottom: -2rem;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, var(--esire-border) 0%, transparent 50%, var(--esire-border) 100%);
    }

    .feature-grid-category:last-child::after {
        display: none;
    }

/* Category Headers - Enhanced */
.feature-category-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--esire-black);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--esire-olive);
}

    .feature-category-title i {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(119, 118, 70, 0.1), rgba(119, 118, 70, 0.05));
        border-radius: 0.5rem;
        font-size: 1.25rem;
        color: var(--esire-olive);
    }

/* Feature Grid Layout */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* ============================================================
   FEATURE GRID CARD - Primary Version
   ============================================================ */

.feature-grid-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: var(--esire-white);
    border: 1px solid var(--esire-border);
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 15, 14, 0.06);
}

    .feature-grid-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--esire-olive);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feature-grid-card:hover {
        border-color: var(--esire-olive);
        box-shadow: 0 20px 48px rgba(119, 118, 70, 0.16);
        transform: translateY(-8px);
    }

        .feature-grid-card:hover::before {
            transform: scaleX(1);
        }

        .feature-grid-card:hover .feature-grid-icon {
            transform: scale(1.15) rotate(-5deg);
            background: linear-gradient(135deg, var(--esire-olive), rgba(119, 118, 70, 0.8));
            color: var(--esire-white);
        }

        .feature-grid-card:hover .learn-more {
            color: var(--esire-red);
            transform: translateX(4px);
        }

/* Differentiator Badge */
.feature-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    background: var(--esire-red);
    color: var(--esire-white);
    border-radius: 0.35rem;
    margin-bottom: 1rem;
}

.feature-grid-card.feature-grid-card-differentiator::before {
    background: var(--esire-red);
}

.feature-grid-card.feature-grid-card-differentiator:hover .feature-grid-icon {
    background: linear-gradient(135deg, var(--esire-red), rgba(182, 49, 42, 0.8));
}

/* Icon Styling - Enhanced */
.feature-grid-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(119, 118, 70, 0.12), rgba(119, 118, 70, 0.06));
    border-radius: 0.75rem;
    font-size: 1.75rem;
    color: var(--esire-olive);
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography */
.feature-grid-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--esire-black);
    line-height: 1.3;
}

.feature-grid-card p {
    font-size: 0.95rem;
    color: var(--esire-muted);
    margin-bottom: 1.25rem;
    flex-grow: 1;
    line-height: 1.6;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--esire-olive);
    transition: all 0.25s ease;
}

    .learn-more i {
        transition: transform 0.25s ease;
    }

/* ============================================================
   SECONDARY FEATURE CARDS
   ============================================================ */

.feature-grid-card-secondary {
    cursor: default;
    background: rgba(119, 118, 70, 0.03);
    border-color: rgba(119, 118, 70, 0.1);
}

    .feature-grid-card-secondary:hover {
        border-color: rgba(119, 118, 70, 0.1);
        box-shadow: 0 2px 8px rgba(15, 15, 14, 0.06);
        transform: none;
    }

    .feature-grid-card-secondary::before {
        display: none;
    }

    .feature-grid-card-secondary .learn-more {
        display: none;
    }

    .feature-grid-card-secondary .feature-grid-icon {
        background: rgba(119, 118, 70, 0.08);
        color: var(--esire-muted);
    }

/* ============================================================
   BUTTON STYLES
   ============================================================ */

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.btn-outline-dark {
    background: transparent;
    color: var(--esire-black);
    border: 1.5px solid var(--esire-border);
    transition: all 0.25s ease;
}

    .btn-outline-dark:hover {
        background: var(--esire-black);
        color: var(--esire-white);
        border-color: var(--esire-black);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(15, 15, 14, 0.15);
    }

/* ============================================================
   SECTION HEADER ENHANCEMENTS
   ============================================================ */

.feature-grid-section .section-kicker {
    color: var(--esire-red);
    font-weight: 700;
}

.feature-grid-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.75rem;
    }

    .feature-grid-card {
        padding: 1.75rem;
    }

    .feature-category-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-grid-category {
        margin-bottom: 3rem;
    }

    .feature-grid-card {
        padding: 1.5rem;
    }

    .feature-category-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .feature-grid-section {
        padding: 3rem 0;
    }

        .feature-grid-section .section-title {
            font-size: 1.75rem;
        }
}

@media (max-width: 576px) {
    .feature-grid-card {
        padding: 1.25rem;
    }

        .feature-grid-card h4 {
            font-size: 1.05rem;
        }

        .feature-grid-card p {
            font-size: 0.9rem;
        }

    .feature-category-title {
        font-size: 1rem;
        gap: 0.75rem;
    }

        .feature-category-title i {
            width: 28px;
            height: 28px;
            font-size: 1.1rem;
        }
}

/* ============================================================
   TOUR SECTION ENHANCEMENTS
   ============================================================ */

.tour-section .btn-sm {
    margin-top: 1.5rem;
}

.tour-section {
    scroll-margin-top: 80px;
}

/* Product mockup styling */
.tour-mockup-container {
    position: relative;
    perspective: 1200px;
}

.tour-mockup-image {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-section:hover .tour-mockup-image {
    transform: rotateY(-8deg) rotateX(2deg) scale(1.02);
}

/* Testimonial styling */
.tour-testimonial {
    font-size: 1rem;
    font-style: italic;
    color: var(--esire-black);
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--esire-red);
    line-height: 1.8;
}

.tour-testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.75rem;
    color: var(--esire-muted);
}

/* Logo row styling */
.trusted-by-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.trusted-by-logo {
    height: 32px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

    .trusted-by-logo:hover {
        opacity: 1;
    }
/* ============================================================
   PRODUCT TABS SECTION STYLES
   ============================================================ */

.product-tabs-section {
    padding: 4rem 0;
}

.tabs-intro {
    text-align: center;
    margin-bottom: 3rem;
}

    .tabs-intro .section-title {
        margin-bottom: 1rem;
    }

/* ============================================================
   TAB NAVIGATION - True Tab Style
   ============================================================ */

.product-tabs-nav {
    display: flex;
    gap: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 0;
    border-bottom: 2px solid var(--esire-border);
}

.product-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: transparent;
    color: var(--esire-muted);
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-bottom: -2px;
}

    .product-tab-btn i {
        font-size: 1.1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .product-tab-btn:hover {
        color: var(--esire-black);
        background: rgba(119, 118, 70, 0.05);
    }

        .product-tab-btn:hover i {
            color: var(--esire-olive);
        }

    .product-tab-btn.active {
        color: var(--esire-black);
        background: var(--esire-white);
        border-bottom-color: var(--esire-red);
    }

        .product-tab-btn.active i {
            color: var(--esire-red);
        }

/* ============================================================
   TAB CONTENT AREA
   ============================================================ */

.product-tabs-content {
    position: relative;
    min-height: 400px;
    background: var(--esire-white);
    border: 2px solid var(--esire-border);
    border-top: none;
    border-radius: 0 0 0.75rem 0.75rem;
    padding: 2rem;
}

.product-tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: fadeIn 0.4s ease forwards;
}

    .product-tab-pane.active {
        display: block;
        opacity: 1;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ============================================================
   CRM FOUNDATION - SECTIONS & NAVIGATION
   ============================================================ */

.crm-subnav {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--esire-border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0;
}

    .crm-subnav::-webkit-scrollbar {
        display: none;
    }

.crm-subnav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--esire-gray);
    border-bottom: 2px solid transparent;
    padding-bottom: 0.5rem;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .crm-subnav-link:hover {
        color: var(--esire-black);
        border-bottom-color: var(--esire-red);
    }

    .crm-subnav-link.active {
        color: var(--esire-black);
        border-bottom-color: var(--esire-red);
    }

.crm-sections {
    padding-top: 2rem;
}

.crm-section {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--esire-border);
    scroll-margin-top: 150px;
}

    .crm-section:last-child {
        border-bottom: none;
    }

.crm-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.crm-section-reverse {
    direction: rtl;
}

    .crm-section-reverse > * {
        direction: ltr;
    }

.crm-text-col {
    padding-right: 1rem;
}

.crm-section-reverse .crm-text-col {
    padding-right: 0;
    padding-left: 1rem;
}

.crm-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    background: rgba(182, 49, 42, 0.08);
    color: var(--esire-red);
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

.crm-section-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--esire-black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.crm-description {
    font-size: 1rem;
    color: var(--esire-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.crm-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .crm-benefits li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        font-size: 0.95rem;
        color: var(--esire-gray);
        line-height: 1.6;
    }

    .crm-benefits i {
        color: var(--esire-olive);
        font-size: 1rem;
        margin-top: 0.15rem;
        flex-shrink: 0;
    }

/* Image Wrapper with Hover Overlay */

.crm-image-wrapper {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--esire-white);
    aspect-ratio: 5/4;
}

    .crm-image-wrapper img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.crm-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 14, 0);
    transition: background-color 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crm-image-wrapper:hover .crm-image-overlay {
    background: rgba(15, 15, 14, 0.15);
}

.crm-overlay-btn {
    background: var(--esire-white);
    color: var(--esire-black);
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(15, 15, 14, 0.15);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
    white-space: nowrap;
}

.crm-image-wrapper:hover .crm-overlay-btn {
    opacity: 1;
    transform: translateY(0);
}

.crm-overlay-btn:hover {
    background: var(--esire-light);
    box-shadow: 0 12px 28px rgba(15, 15, 14, 0.2);
}

.feature-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: space-between;
}

    .feature-block-header h3 {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1.4rem;
        font-weight: 700;
        margin: 0;
        color: var(--esire-black);
        flex: 1;
    }

    .feature-block-header i {
        color: var(--esire-red);
        font-size: 1.3rem;
    }

.feature-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    background: rgba(182, 49, 42, 0.08);
    color: var(--esire-red);
    border-radius: 0.35rem;
    white-space: nowrap;
}

.feature-block-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--esire-black);
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.feature-block-copy {
    font-size: 1rem;
    color: var(--esire-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Feature Lists */
.feature-block-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

    .feature-block-list li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 0.75rem 0;
        font-size: 0.95rem;
        color: var(--esire-gray);
        line-height: 1.6;
    }

    .feature-block-list i {
        color: var(--esire-olive);
        font-size: 1rem;
        margin-top: 0.1rem;
        flex-shrink: 0;
    }

/* Testimonials */
.feature-block-testimonial {
    background: rgba(119, 118, 70, 0.04);
    border-left: 3px solid var(--esire-red);
    padding: 1.25rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

    .feature-block-testimonial p {
        font-size: 1rem;
        font-style: italic;
        color: var(--esire-black);
        line-height: 1.7;
        margin: 0 0 0.75rem 0;
    }

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--esire-muted);
    font-style: normal;
}

/* Buttons */
.product-feature-block .btn {
    margin-top: 1rem;
}

.btn-outline-dark {
    background: transparent;
    color: var(--esire-black);
    border: 1.5px solid var(--esire-border);
    font-weight: 600;
    transition: all 0.25s ease;
}

    .btn-outline-dark:hover {
        background: var(--esire-black);
        color: var(--esire-white);
        border-color: var(--esire-black);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(15, 15, 14, 0.15);
    }

/* ============================================================
   MODAL STYLES
   ============================================================ */

.modal-content {
    border: none;
    border-radius: 1rem;
}

.modal-header {
    border-bottom: 1px solid var(--esire-border);
    padding: 1.5rem;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--esire-black);
}

.modal-body {
    padding: 2rem;
}

.btn-close {
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

    .btn-close:hover {
        opacity: 1;
    }

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 992px) {
    .product-tabs-nav {
        gap: 0;
    }

    .product-tab-btn {
        padding: 0.9rem 1.25rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }

        .product-tab-btn span {
            display: none;
        }

        .product-tab-btn i {
            font-size: 1.25rem;
        }

    .crm-section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .crm-section-reverse {
        direction: ltr;
    }

        .crm-section-reverse > * {
            direction: ltr;
        }

    .crm-text-col {
        padding-right: 0;
        padding-left: 0;
    }

    .crm-section-reverse .crm-text-col {
        padding-left: 0;
    }

    .crm-section-heading {
        font-size: 1.4rem;
    }

    .crm-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .product-tabs-section {
        padding: 3rem 0;
    }

    .tabs-intro {
        margin-bottom: 2.5rem;
    }

    .product-tabs-nav {
        gap: 0;
        margin-bottom: 0;
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-bottom: 2px solid var(--esire-border);
    }

    .product-tab-btn {
        flex: 0 0 auto;
        padding: 0.85rem 1.15rem;
        font-size: 0.75rem;
        gap: 0.5rem;
        margin-bottom: -2px;
    }

        .product-tab-btn span {
            display: inline;
        }

    .product-tabs-content {
        min-height: 300px;
        padding: 1.5rem;
        border-radius: 0 0 0.5rem 0.5rem;
    }

    .product-feature-block {
        padding: 1.5rem;
    }

    .feature-block-header {
        flex-direction: column;
        align-items: flex-start;
    }

        .feature-block-header h3 {
            font-size: 1.2rem;
        }

    .feature-block-title {
        font-size: 1.15rem;
    }

    .feature-block-copy {
        font-size: 0.95rem;
    }

    .feature-block-list li {
        font-size: 0.9rem;
    }

    .feature-block-testimonial {
        padding: 1rem;
    }

        .feature-block-testimonial p {
            font-size: 0.95rem;
        }

    .crm-section {
        padding: 1.75rem 0;
    }

    .crm-subnav {
        gap: 1.5rem;
        padding: 1.25rem 0;
    }

    .crm-subnav-link {
        font-size: 0.85rem;
    }

    .crm-section-heading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .crm-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .crm-benefits li {
        font-size: 0.85rem;
        gap: 0.75rem;
    }

    .crm-image-wrapper {
        aspect-ratio: 4/3;
    }

    @media (max-width: 576px) {
        .product-tabs-section {
            padding: 2rem 0;
        }

        .product-tabs-nav {
            gap: 0;
            margin-bottom: 0;
        }

        .product-tab-btn {
            padding: 0.75rem 1rem;
            font-size: 0.7rem;
        }

            .product-tab-btn i {
                font-size: 1rem;
            }

        .product-tabs-content {
            min-height: 250px;
            padding: 1.25rem;
        }

        .crm-feature-section {
            padding: 1.25rem 0;
        }

        .crm-feature-heading {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .crm-feature-description {
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .crm-feature-list li {
            padding: 0.65rem 0;
            font-size: 0.85rem;
        }

        .product-feature-block {
            padding: 1.25rem;
        }

        .feature-block-title {
            font-size: 1rem;
        }

        .feature-block-copy {
            font-size: 0.9rem;
        }

        .feature-block-header h3 {
            font-size: 1.1rem;
        }

        .feature-block-list li {
            gap: 0.75rem;
        }

        .tab-content-inner {
            gap: 1.5rem;
        }

        .crm-feature-heading {
            font-size: 1.2rem;
        }

        .crm-feature-description {
            font-size: 0.9rem;
        }

        .crm-feature-image-wrapper {
            margin-bottom: 1.5rem;
        }
    }

    /* ============================================================
   UTILITY CLASSES
   ============================================================ */

    .reveal {
        animation: fadeIn 0.6s ease-out;
    }

    /* CTA Section */
    .cta {
        text-align: center;
        padding: 4rem 0;
    }

        .cta .section-kicker {
            color: var(--esire-red);
        }

        .cta .section-title {
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.1rem;
            color: rgba(251, 249, 242, 0.8);
            margin-bottom: 2rem;
        }

    @media (max-width: 768px) {
        .cta {
            padding: 3rem 0;
        }

            .cta .section-title {
                font-size: 1.75rem;
            }

            .cta p {
                font-size: 1rem;
            }
    }

    /* ============================================================
   PRODUCT TABS SECTION STYLES
   ============================================================ */

    .product-tabs-section {
        padding: 4rem 0;
    }

    .tabs-intro {
        text-align: center;
        margin-bottom: 3rem;
    }

        .tabs-intro .section-title {
            margin-bottom: 1rem;
        }

    /* ============================================================
   TAB NAVIGATION
   ============================================================ */

    .product-tabs-nav {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 3rem;
        padding: 0;
    }

    .product-tab-btn {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.9rem 1.75rem;
        background: rgba(119, 118, 70, 0.08);
        color: var(--esire-muted);
        border: 1.5px solid var(--esire-border);
        border-radius: 2rem;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

        .product-tab-btn i {
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .product-tab-btn:hover {
            color: var(--esire-black);
            background: rgba(119, 118, 70, 0.12);
            border-color: var(--esire-olive);
            transform: translateY(-2px);
        }

            .product-tab-btn:hover i {
                color: var(--esire-olive);
            }

        .product-tab-btn.active {
            background: var(--esire-red);
            color: var(--esire-white);
            border-color: var(--esire-red);
            box-shadow: 0 8px 20px rgba(182, 49, 42, 0.25);
        }

            .product-tab-btn.active i {
                color: var(--esire-white);
            }

    /* ============================================================
   TAB CONTENT AREA
   ============================================================ */

    .product-tabs-content {
        position: relative;
        min-height: 400px;
    }

    .product-tab-pane {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        animation: fadeIn 0.4s ease forwards;
    }

        .product-tab-pane.active {
            display: block;
            opacity: 1;
        }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .tab-content-inner {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    /* ============================================================
   FEATURE BLOCKS
   ============================================================ */

    .product-feature-block {
        padding: 2rem;
        background: var(--esire-white);
        border: 1px solid var(--esire-border);
        border-radius: 1rem;
        transition: all 0.3s ease;
    }

        .product-feature-block:hover {
            border-color: var(--esire-olive);
            box-shadow: 0 8px 24px rgba(15, 15, 14, 0.08);
        }

    .feature-block-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        justify-content: space-between;
    }

        .feature-block-header h3 {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0;
            color: var(--esire-black);
            flex: 1;
        }

        .feature-block-header i {
            color: var(--esire-red);
            font-size: 1.3rem;
        }

    .feature-badge {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 900;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.4rem 1rem;
        background: rgba(182, 49, 42, 0.08);
        color: var(--esire-red);
        border-radius: 0.35rem;
        white-space: nowrap;
    }

    .feature-block-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--esire-black);
        margin: 0 0 1rem 0;
        line-height: 1.3;
    }

    .feature-block-copy {
        font-size: 1rem;
        color: var(--esire-gray);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    /* Feature Lists */
    .feature-block-list {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0;
    }

        .feature-block-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 0.75rem 0;
            font-size: 0.95rem;
            color: var(--esire-gray);
            line-height: 1.6;
        }

        .feature-block-list i {
            color: var(--esire-olive);
            font-size: 1rem;
            margin-top: 0.1rem;
            flex-shrink: 0;
        }

    /* Testimonials */
    .feature-block-testimonial {
        background: rgba(119, 118, 70, 0.04);
        border-left: 3px solid var(--esire-red);
        padding: 1.25rem;
        border-radius: 0.5rem;
        margin: 1.5rem 0;
    }

        .feature-block-testimonial p {
            font-size: 1rem;
            font-style: italic;
            color: var(--esire-black);
            line-height: 1.7;
            margin: 0 0 0.75rem 0;
        }

    .testimonial-author {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--esire-muted);
        font-style: normal;
    }

    /* Buttons */
    .product-feature-block .btn {
        margin-top: 1rem;
    }

    .btn-outline-dark {
        background: transparent;
        color: var(--esire-black);
        border: 1.5px solid var(--esire-border);
        font-weight: 600;
        transition: all 0.25s ease;
    }

        .btn-outline-dark:hover {
            background: var(--esire-black);
            color: var(--esire-white);
            border-color: var(--esire-black);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(15, 15, 14, 0.15);
        }

    /* ============================================================
   MODAL STYLES
   ============================================================ */

    .modal-content {
        border: none;
        border-radius: 1rem;
    }

    .modal-header {
        border-bottom: 1px solid var(--esire-border);
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--esire-black);
    }

    .modal-body {
        padding: 2rem;
    }

    .btn-close {
        opacity: 0.5;
        transition: opacity 0.2s ease;
    }

        .btn-close:hover {
            opacity: 1;
        }

    /* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

    @media (max-width: 992px) {
        .product-tabs-nav {
            gap: 0.75rem;
        }

        .product-tab-btn {
            padding: 0.85rem 1.25rem;
            font-size: 0.8rem;
            gap: 0.5rem;
        }

            .product-tab-btn span {
                display: none;
            }

            .product-tab-btn i {
                font-size: 1.25rem;
            }
    }

    @media (max-width: 768px) {
        .product-tabs-section {
            padding: 3rem 0;
        }

        .tabs-intro {
            margin-bottom: 2.5rem;
        }

        .product-tabs-nav {
            gap: 0.75rem;
            margin-bottom: 2rem;
            flex-direction: row;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding: 0 1rem 0.5rem 1rem;
            justify-content: flex-start;
        }

        .product-tab-btn {
            flex: 0 0 auto;
            padding: 0.75rem 1.25rem;
            font-size: 0.75rem;
            gap: 0.5rem;
        }

            .product-tab-btn span {
                display: inline;
            }

        .product-feature-block {
            padding: 1.5rem;
        }

        .feature-block-header {
            flex-direction: column;
            align-items: flex-start;
        }

            .feature-block-header h3 {
                font-size: 1.2rem;
            }

        .feature-block-title {
            font-size: 1.15rem;
        }

        .feature-block-copy {
            font-size: 0.95rem;
        }

        .feature-block-list li {
            font-size: 0.9rem;
        }

        .feature-block-testimonial {
            padding: 1rem;
        }

            .feature-block-testimonial p {
                font-size: 0.95rem;
            }
    }

    @media (max-width: 576px) {
        .product-tabs-section {
            padding: 2rem 0;
        }

        .product-tabs-nav {
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            padding: 0 0.75rem 0.5rem 0.75rem;
        }

        .product-tab-btn {
            padding: 0.7rem 1rem;
            font-size: 0.7rem;
        }

            .product-tab-btn i {
                font-size: 1rem;
            }

        .product-feature-block {
            padding: 1.25rem;
        }

        .feature-block-title {
            font-size: 1rem;
        }

        .feature-block-copy {
            font-size: 0.9rem;
        }

        .feature-block-header h3 {
            font-size: 1.1rem;
        }

        .feature-block-list li {
            gap: 0.75rem;
        }

        .tab-content-inner {
            gap: 1.5rem;
        }
    }

    /* ============================================================
   UTILITY CLASSES
   ============================================================ */

    .reveal {
        animation: fadeIn 0.6s ease-out;
    }

    /* CTA Section */
    .cta {
        text-align: center;
        padding: 4rem 0;
    }

        .cta .section-kicker {
            color: var(--esire-red);
        }

        .cta .section-title {
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.1rem;
            color: rgba(251, 249, 242, 0.8);
            margin-bottom: 2rem;
        }

    @media (max-width: 768px) {
        .cta {
            padding: 3rem 0;
        }

            .cta .section-title {
                font-size: 1.75rem;
            }

            .cta p {
                font-size: 1rem;
            }
    }

    /* ============================================================
   TOUR CARD LINKS - "Learn more..." buttons
   ============================================================ */

    .tour-card-link {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        margin-top: 1rem;
        color: var(--esire-red, #b6312a);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.85rem;
        transition: gap 0.3s ease;
    }

        .tour-card-link:hover {
            color: var(--esire-black, #0f0f0e);
            gap: 0.5rem;
        }

        .tour-card-link i {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .tour-card-link:hover i {
            transform: translateX(2px);
        }

    /* ============================================================
   TOUR BACK LINKS - "Back to features" buttons
   ============================================================ */

    .tour-back-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 2rem;
        padding: 0.75rem 1.5rem;
        background: rgba(182, 49, 42, 0.08);
        color: var(--esire-red, #b6312a);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

        .tour-back-link:hover {
            background: var(--esire-red, #b6312a);
            color: white;
            border-color: var(--esire-red, #b6312a);
            gap: 0.75rem;
        }

        .tour-back-link i {
            transition: transform 0.3s ease;
        }

        .tour-back-link:hover i {
            transform: translateX(-4px);
        }

    /* ============================================================
   SCREENSHOT MODAL CAPTION
   ============================================================ */

    #screenshotCaption {
        font-style: italic;
        color: #6b7280;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

    @media (max-width: 768px) {
        .tour-card-link {
            margin-top: 0.75rem;
            font-size: 0.8rem;
        }

        .tour-back-link {
            margin-top: 1.5rem;
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
        }
    }



    /* ============================================================
   HIDE SCREENSHOT HOVER EFFECTS
   ============================================================ */

    /* ============================================================
   LENS MAGNIFIER MODAL STYLES
   ============================================================ */

    .modal-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

        .modal-header .modal-title {
            flex: 1;
            margin: 0;
        }

    /* ============================================================
   SCREENSHOT MAGNIFIER CONTAINER
   ============================================================ */

    .screenshot-magnifier-container {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f9fafb;
        padding: 2rem;
        min-height: 400px;
        max-height: 70vh;
        overflow: auto;
        position: relative;
    }

    /* ============================================================
   BASE IMAGE - FULL SIZE, UNZOOMED
   ============================================================ */

    .screenshot-base-image {
        max-width: 100%;
        max-height: 100%;
        height: auto;
        width: auto;
        display: block;
        user-select: none;
        cursor: crosshair;
    }

    /* ============================================================
   LENS MAGNIFIER - CIRCULAR ZOOM LENS
   ============================================================ */

    .magnifier-lens {
        /* Sized by JavaScript: 120px circle */
        /* Positioned by JavaScript: follows mouse */
        /* Background image: zoomed version of screenshot */
        /* Background position: calculated to align with cursor */

        box-shadow: inset 0 0 8px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.3);
        background-color: rgba(255, 255, 255, 0.1);
    }

    /* ============================================================
   MODAL FOOTER
   ============================================================ */

    .modal-footer {
        border-top: 1px solid #e5e7eb;
        padding: 1rem;
        background: #f9fafb;
    }

    .screenshot-caption {
        font-style: italic;
        color: #6b7280;
        font-size: 0.85rem;
        line-height: 1.5;
        margin: 0;
        text-align: center;
    }

    /* ============================================================
   RESPONSIVE
   ============================================================ */

    @media (max-width: 768px) {
        .screenshot-magnifier-container {
            padding: 1rem;
            min-height: 300px;
            max-height: 50vh;
        }

        .screenshot-base-image {
            max-width: 100%;
        }
    }

    @media (max-width: 480px) {
        .screenshot-magnifier-container {
            padding: 0.75rem;
            min-height: 250px;
            max-height: 45vh;
        }
    }

    /* ============================================================
   PRINT STYLES
   ============================================================ */

    @media print {
        .magnifier-lens {
            display: none !important;
        }

        .screenshot-magnifier-container {
            max-height: none;
            overflow: visible;
        }
    }



    /* Simple Screenshot Modal Styles - No Magnifier */

    .screenshot-container {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f9fafb;
        padding: 2rem;
        min-height: 400px;
        max-height: 70vh;
        overflow: auto;
    }

    .screenshot-image {
        max-width: 100%;
        max-height: 100%;
        height: auto;
        width: auto;
        display: block;
    }

    .modal-footer {
        border-top: 1px solid #e5e7eb;
        padding: 1rem;
        background: #f9fafb;
    }

    .screenshot-caption {
        font-style: italic;
        color: #6b7280;
        font-size: 0.85rem;
        text-align: center;
        margin: 0;
    }
