/* =====================================================
   Elqo for Enterprise — page-scoped styles
   Loads after globals.css + styles.css. Inherits the
   site's nav, footer, fonts, and FAQ accordion behavior.
   Brand DNA: Montserrat headings + Inter body, sky-blue
   #60ceee, navy ink #0b1b2f, gradient highlight,
   rounded shadowed CTAs, rounded cards.
   ===================================================== */

.ent-page {
    background-color: #ffffff;
    color: #0b1b2f;
    font-family: 'Inter', sans-serif;
}

/* =====================================================
   Type defaults — titles: Montserrat with tight -0.05em
   tracking. Body: Inter (already explicit per-element).
   Page-scoped so other pages are untouched.
   ===================================================== */

.ent-page h1,
.ent-page h2,
.ent-page h3,
.ent-page h4,
.ent-page h5,
.ent-page h6,
.ent-page .faq-title,
.ent-page .faq-question {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.00em;
}

/* =====================================================
   Eyebrows (uppercase mini headings)
   ===================================================== */

.ent-eyebrow {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #60ceee;
}

.ent-eyebrow--center {
    text-align: center;
    color: #0b1b2f;
    opacity: 0.6;
}

.ent-eyebrow--light {
    color: #60ceee;
}

/* =====================================================
   Gradient text (matches index.html's hero accent)
   ===================================================== */

.ent-gradient {
    background: linear-gradient(to right, #00c8ff, #bbe9ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.ent-gradient--dark {
    background: linear-gradient(to right, #0b1b2f, #14304b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* =====================================================
   CTAs (rounded pills with shadow lift — matches the
   site's existing .cta-button1 / .cta-1v1 vocabulary)
   ===================================================== */

.ent-cta {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    text-align: center;
    border: 3px solid transparent;
    letter-spacing: 0.01em;
}

.ent-cta--primary {
    background: #60ceee;
    color: #0b1b2f;
    border-color: #0b1b2f;
    box-shadow: 0 10px 22px rgba(11, 27, 47, 0.25);
}

.ent-cta--primary:hover {
    transform: translateY(-3px);
    background: #4dc7ec;
    box-shadow: 0 16px 30px rgba(11, 27, 47, 0.32);
}

.ent-cta--ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
}

.ent-cta--ghost:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.ent-cta--large {
    padding: 22px 64px;
    font-size: 1.25rem;
    box-shadow: 0 16px 36px rgba(11, 27, 47, 0.3);
}

.ent-cta--large:hover {
    box-shadow: 0 22px 50px rgba(11, 27, 47, 0.38);
}

/* =====================================================
   HERO
   Navy → sky-blue gradient background to read
   "premium energetic" not "consumer hype." Split layout.
   ===================================================== */

.ent-hero {
    position: relative;
    width: 100%;
    padding: 140px 6% 90px;
    overflow: hidden;
    color: #ffffff;
}

.ent-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(96, 206, 238, 0.45) 0%, rgba(96, 206, 238, 0) 55%),
        radial-gradient(circle at 10% 85%, rgba(0, 200, 255, 0.35) 0%, rgba(0, 200, 255, 0) 55%),
        linear-gradient(180deg, #0b1b2f 0%, #14304b 60%, #1a3e5f 100%);
    z-index: 0;
}

.ent-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ent-hero__copy {
    max-width: 600px;
}

.ent-hero__headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    line-height: 1.08;
    color: #ffffff;
    margin: 0 0 22px;
    letter-spacing: -0.05em;
}

.ent-hero__sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.18rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 36px;
    max-width: 560px;
}

.ent-hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.ent-hero__trustline {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

.ent-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =====================================================
   MOCK DASHBOARD CARDS
   Reused for hero-side preview AND the tabbed dashboard
   ===================================================== */

.ent-mock {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 26px 60px rgba(11, 27, 47, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    overflow: hidden;
    width: 100%;
    color: #0b1b2f;
}

.ent-mock--hero {
    max-width: 480px;
    transform: rotate(-1.5deg);
}

.ent-mock--full {
    max-width: 1100px;
    margin: 0 auto;
}

.ent-mock__topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: #f4f6fa;
    border-bottom: 1px solid #e6eaf1;
}

.ent-mock__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9dde5;
    display: inline-block;
}

.ent-mock__dot:first-child { background: #ff6b6b; }
.ent-mock__dot:nth-child(2) { background: #ffd166; }
.ent-mock__dot:nth-child(3) { background: #06d6a0; }

.ent-mock__crumb {
    margin-left: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #4b5565;
    letter-spacing: 0.04em;
}

.ent-mock__body {
    padding: 24px 24px 26px;
}

.ent-mock__row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.ent-mock__row--head {
    margin-bottom: 22px;
}

.ent-mock__eyebrow {
    margin: 0 0 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
}

.ent-mock__bignum {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1;
    color: #0b1b2f;
}

.ent-mock__bignum span {
    font-size: 1.4rem;
    color: #60ceee;
    margin-left: 4px;
}

.ent-mock__delta {
    margin: 8px 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
}

.ent-mock__delta--up {
    color: #058c5b;
}

.ent-mock__spark {
    width: 160px;
    height: 56px;
    flex-shrink: 0;
}

.ent-mock__spark svg { width: 100%; height: 100%; }

.ent-mock__spark--wide {
    width: 100%;
    height: 120px;
    margin-top: 18px;
}

.ent-mock__cohorts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.ent-mock__cohort {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    align-items: center;
    gap: 12px;
}

.ent-mock__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    color: #1f2937;
}

.ent-mock__bar {
    height: 8px;
    border-radius: 999px;
    background: #eef2f7;
    overflow: hidden;
}

.ent-mock__bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #00c8ff, #60ceee);
    border-radius: 999px;
}

.ent-mock__pct {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.92rem;
    color: #0b1b2f;
    min-width: 38px;
    text-align: right;
}

.ent-mock__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ent-mock__chip {
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef9fd;
    color: #0b3b4a;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid #cdedf7;
}

.ent-mock__chip--alt {
    background: #0b1b2f;
    color: #60ceee;
    border-color: #0b1b2f;
}

/* Recommended Action callout (hero mock + dashboard) */
.ent-mock__action {
    margin: 14px 0 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff8e6;
    border: 1.5px solid #f3d27a;
    border-left: 4px solid #e0a800;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ent-mock__action-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #8a5d00;
    text-transform: uppercase;
}

.ent-mock__action-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #463300;
    line-height: 1.4;
}

/* =====================================================
   PILOT STATS STRIP
   ===================================================== */

.ent-pilot {
    background: #60ceee;
    padding: 36px 6%;
    color: #0b1b2f;
}

.ent-pilot__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

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

.ent-pilot__num {
    margin: 0 0 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 3.6vw, 3rem);
    font-weight: 800;
    color: #0b1b2f;
    line-height: 1;
    letter-spacing: -0.01em;
}

.ent-pilot__num span {
    color: #ffffff;
    margin-left: 2px;
    font-size: 0.7em;
}

.ent-pilot__label {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: #0b1b2f;
}

.ent-pilot__label em {
    display: block;
    font-style: normal;
    font-size: 0.72rem;
    opacity: 0.55;
    margin-top: 2px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ent-pilot__divider {
    width: 1px;
    height: 56px;
    background: rgba(11, 27, 47, 0.2);
}

/* =====================================================
   PROBLEM PANEL (echoes .mission)
   ===================================================== */

.ent-problem {
    padding: 90px 8% 70px;
    text-align: center;
    background: #ffffff;
    color: #0b1b2f;
}

.ent-problem h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.25;
    max-width: 920px;
    margin: 0 auto 24px;
    text-shadow: 0 0 18px rgba(96, 206, 238, 0.3);
}

.ent-problem__sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.18rem;
    line-height: 1.65;
    max-width: 780px;
    margin: 0 auto;
    color: #1f2a3d;
    font-weight: 500;
}

.ent-problem__qs {
    margin: 56px auto 0;
    max-width: 1080px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ent-problem__q {
    text-align: left;
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 26px 28px;
    border: 1px solid #ebeff5;
    box-shadow: 0 8px 22px rgba(15, 25, 51, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ent-problem__q:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 25, 51, 0.12);
}

.ent-problem__qnum {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    color: #60ceee;
    margin-bottom: 14px;
}

.ent-problem__qtext {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.18rem;
    line-height: 1.3;
    color: #0b1b2f;
}

/* =====================================================
   DASHBOARD PREVIEW with TABS
   ===================================================== */

.ent-dashboard {
    padding: 80px 6% 100px;
    background: #f8fafc;
    color: #0b1b2f;
}

.ent-dashboard__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.ent-dashboard__head h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin: 0 0 14px;
}

.ent-dashboard__sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.55;
    color: #4b5565;
    margin: 0;
}

.ent-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 32px;
    max-width: 1100px;
}

.ent-tab {
    padding: 12px 26px;
    border-radius: 999px;
    background: #ffffff;
    color: #0b1b2f;
    border: 2px solid #d9e1ec;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ent-tab:hover {
    transform: translateY(-2px);
    border-color: #60ceee;
    box-shadow: 0 8px 20px rgba(11, 27, 47, 0.12);
}

.ent-tab.is-active {
    background: #0b1b2f;
    color: #ffffff;
    border-color: #0b1b2f;
    box-shadow: 0 10px 24px rgba(11, 27, 47, 0.28);
}

.ent-tabpanels {
    max-width: 1100px;
    margin: 0 auto;
}

.ent-tabpanel {
    display: none;
}

.ent-tabpanel.is-active {
    display: block;
}

/* Overview KPIs */
.ent-mock__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 28px 24px 8px;
}

.ent-mock__kpi {
    padding: 18px;
    border-radius: 16px;
    background: #f4f8fb;
    border: 1px solid #e3eaf2;
}

/* Cohort table */
.ent-mock__table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
}

.ent-mock__table thead th {
    text-align: left;
    padding: 16px 20px;
    background: #f4f6fa;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #4b5565;
    font-weight: 800;
    border-bottom: 1px solid #e6eaf1;
}

.ent-mock__table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid #eef1f5;
    font-size: 0.95rem;
    color: #1f2a3d;
}

.ent-mock__table tbody tr:last-child td {
    border-bottom: none;
}

.ent-mock__table tbody tr:hover {
    background: #f9fbfd;
}

.ent-pill-up,
.ent-pill-flat {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.ent-pill-up {
    background: #e1f8ee;
    color: #058c5b;
}

.ent-pill-flat {
    background: #f3f4f6;
    color: #6b7280;
}

/* Recommended Action chips (used in cohorts table + individuals list) */
.ent-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    white-space: nowrap;
}

.ent-action::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
    flex-shrink: 0;
}

.ent-action--promote {
    background: #e1f8ee;
    color: #058c5b;
}

.ent-action--scale {
    background: #eaf6fb;
    color: #0b6d8c;
}

.ent-action--coach {
    background: #fff4d9;
    color: #8a5d00;
}

.ent-action--ontrack {
    background: #eef1f7;
    color: #4b5565;
}

/* Competency heatgrid */
.ent-mock__heatgrid {
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 20px;
    row-gap: 14px;
    padding: 28px 24px;
    align-items: center;
}

.ent-mock__heatlabel {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #1f2a3d;
}

.ent-mock__heatcells {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.ent-cell {
    height: 28px;
    border-radius: 6px;
    background: #e6eef5;
}

/* Heat scale: 1 (cool) → 10 (sky-blue) */
.ent-cell--3 { background: #d6ecf5; }
.ent-cell--4 { background: #c3e3f1; }
.ent-cell--5 { background: #aedaeb; }
.ent-cell--6 { background: #94d1e8; }
.ent-cell--7 { background: #7accea; }
.ent-cell--8 { background: #60ceee; }
.ent-cell--9 { background: #3cc0e6; }
.ent-cell--10 { background: #1aa9d4; }

.ent-mock__heataxis {
    grid-column: 2 / 3;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    color: #6b7280;
    text-align: center;
    margin-top: 4px;
    letter-spacing: 0.04em;
}

/* Individuals list */
.ent-mock__people {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ent-person {
    display: grid;
    grid-template-columns: 48px 1fr auto auto;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #f4f8fb;
    border: 1px solid #e3eaf2;
}

.ent-person__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60ceee, #0b1b2f);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

.ent-person__copy { min-width: 0; }

.ent-person__name {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #0b1b2f;
    font-size: 0.98rem;
}

.ent-person__role {
    margin: 2px 0 0;
    font-family: 'Inter', sans-serif;
    color: #6b7280;
    font-size: 0.85rem;
}

.ent-person__metric {
    text-align: right;
    font-family: 'Inter', sans-serif;
}

.ent-person__metric strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #058c5b;
    font-size: 1.1rem;
}

.ent-person__metric span {
    font-size: 0.78rem;
    color: #6b7280;
    letter-spacing: 0.04em;
}

.ent-person__bar {
    height: 8px;
    border-radius: 999px;
    background: #e6eef5;
    overflow: hidden;
}

.ent-person__bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #00c8ff, #60ceee);
}

/* =====================================================
   COMPARISON TABLE
   ===================================================== */

.ent-compare {
    padding: 90px 6% 90px;
    background: #ffffff;
    color: #0b1b2f;
}

.ent-compare__head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.ent-compare__head h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    line-height: 1.18;
    margin: 0 0 14px;
}

.ent-compare__sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.55;
    color: #4b5565;
    margin: 0;
}

.ent-compare__grid {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e6eaf1;
    box-shadow: 0 16px 36px rgba(15, 25, 51, 0.1);
    background: #ffffff;
}

.ent-compare__col--header,
.ent-compare__row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    align-items: stretch;
}

.ent-compare__col--header {
    background: #0b1b2f;
}

.ent-compare__col--header .ent-compare__cell {
    color: #ffffff;
    padding: 22px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.ent-compare__col--header .ent-compare__cell--rowhead {
    background: #0b1b2f;
}

.ent-compare__col--header .ent-compare__cell--elqo {
    background: #60ceee;
    color: #0b1b2f;
}

.ent-compare__pillar {
    display: inline-block;
}

.ent-compare__row {
    border-top: 1px solid #eef1f5;
}

.ent-compare__cell {
    padding: 20px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    color: #1f2a3d;
    display: flex;
    align-items: center;
    border-left: 1px solid #f0f3f7;
}

.ent-compare__cell--rowhead {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #0b1b2f;
    background: #fafbfd;
    border-left: none;
}

.ent-compare__cell--elqo {
    background: #f1fbff;
    border-left: 1px solid #d8eef7;
}

.ent-compare__row:hover .ent-compare__cell {
    background: #f6f9fd;
}

.ent-compare__row:hover .ent-compare__cell--elqo {
    background: #e6f6fc;
}

.ent-compare__row:hover .ent-compare__cell--rowhead {
    background: #f3f5f9;
}

.ent-mark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.ent-mark--ok {
    background: #e1f8ee;
    color: #058c5b;
}

.ent-mark--ok::before {
    content: '✓';
    font-size: 0.95rem;
}

.ent-mark--no {
    background: #fdecec;
    color: #c5322d;
}

.ent-mark--no::before {
    content: '✕';
    font-size: 0.85rem;
}

.ent-mark--mid {
    background: #fff4d9;
    color: #8a5d00;
}

.ent-mark--mid::before {
    content: '–';
    font-size: 0.95rem;
}

/* =====================================================
   DIFFERENTIATORS (6 cards, 3x2)
   ===================================================== */

.ent-diffs {
    padding: 90px 6% 90px;
    background: #f8fafc;
    color: #0b1b2f;
}

.ent-diffs__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.ent-diffs__head h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    line-height: 1.18;
    margin: 0;
}

.ent-diffs__grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ent-diff-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 10px 28px rgba(15, 25, 51, 0.08);
    border: 1px solid #ebeff5;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ent-diff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(15, 25, 51, 0.14);
}

.ent-diff__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #eaf6fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ent-diff__icon svg {
    width: 32px;
    height: 32px;
}

.ent-diff-card h3 {
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #0b1b2f;
    line-height: 1.25;
}

.ent-diff-card p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    line-height: 1.55;
    color: #4b5565;
}

/* =====================================================
   SECURITY & COMPLIANCE STRIP
   ===================================================== */

.ent-security {
    background: linear-gradient(135deg, #0b1b2f 0%, #14304b 100%);
    padding: 70px 6%;
    color: #ffffff;
}

.ent-security__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.ent-security__copy h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    margin: 0 0 14px;
    color: #ffffff;
    line-height: 1.2;
}

.ent-security__copy p {
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.ent-security__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ent-chip {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(96, 206, 238, 0.55);
    background: rgba(96, 206, 238, 0.08);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.ent-chip em {
    font-style: normal;
    font-weight: 600;
    opacity: 0.7;
    margin-left: 4px;
    font-size: 0.84rem;
}

/* =====================================================
   FAQ TITLE OVERRIDE (reuses .faq-container/item/etc.)
   ===================================================== */

.ent-faq-title {
    font-size: 2.4rem;
    margin-top: 60px;
    color: #0b1b2f;
}

/* =====================================================
   FINAL CTA
   ===================================================== */

.ent-final-cta {
    padding: 90px 6% 100px;
    background: linear-gradient(135deg, #60ceee 0%, #4dc7ec 50%, #00c8ff 100%);
    text-align: center;
    color: #0b1b2f;
}

.ent-final-cta__inner {
    max-width: 880px;
    margin: 0 auto;
}

.ent-final-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height: 1.18;
    margin: 0 0 18px;
    color: #0b1b2f;
}

.ent-final-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 1.18rem;
    line-height: 1.5;
    color: rgba(11, 27, 47, 0.82);
    margin: 0 0 32px;
}

.ent-final-cta__trust {
    margin-top: 22px !important;
    font-size: 0.95rem !important;
    color: rgba(11, 27, 47, 0.65) !important;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
    .ent-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ent-hero__visual {
        order: 2;
    }

    .ent-mock--hero {
        max-width: 460px;
        transform: rotate(0deg);
    }

    .ent-mock__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ent-pilot__inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .ent-pilot__divider {
        display: none;
    }

    .ent-diffs__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ent-security__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ent-mock__heatgrid {
        grid-template-columns: 160px 1fr;
    }

    .ent-person {
        grid-template-columns: 44px 1fr auto;
        row-gap: 10px;
    }

    .ent-person .ent-action {
        grid-column: 2 / -1;
        justify-self: start;
    }

    .ent-problem__qs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ent-hero {
        padding: 120px 6% 70px;
    }

    .ent-hero__headline {
        font-size: clamp(2rem, 7vw, 2.6rem);
    }

    .ent-hero__sub {
        font-size: 1.05rem;
    }

    .ent-hero__ctas {
        flex-direction: column;
        align-items: stretch;
    }

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

    .ent-pilot__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .ent-problem {
        padding: 70px 6% 50px;
    }

    .ent-problem__qs {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 40px;
    }

    .ent-problem__q {
        padding: 22px 22px 24px;
    }

    .ent-problem__qtext {
        font-size: 1.05rem;
    }

    .ent-dashboard {
        padding: 70px 5% 80px;
    }

    .ent-tabs {
        gap: 6px;
    }

    .ent-tab {
        padding: 10px 16px;
        font-size: 0.88rem;
    }

    .ent-mock__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 20px 16px 4px;
    }

    .ent-mock__bignum {
        font-size: 1.9rem;
    }

    .ent-mock__heatgrid {
        grid-template-columns: 1fr;
        row-gap: 8px;
    }

    .ent-mock__heataxis {
        grid-column: 1;
    }

    .ent-mock__table {
        font-size: 0.85rem;
    }

    .ent-mock__table thead th,
    .ent-mock__table tbody td {
        padding: 12px 14px;
    }

    /* Comparison table → stacked card mode */
    .ent-compare {
        padding: 70px 5% 70px;
    }

    .ent-compare__col--header {
        display: none;
    }

    .ent-compare__row {
        grid-template-columns: 1fr;
        padding: 18px 18px 6px;
        gap: 0;
        border-top: none;
        border-bottom: 1px solid #eef1f5;
    }

    .ent-compare__row:last-child {
        border-bottom: none;
    }

    .ent-compare__cell--rowhead {
        background: transparent;
        font-size: 1rem;
        margin-bottom: 8px;
        padding: 0 0 8px;
        border-bottom: 1px solid #eef1f5;
    }

    .ent-compare__cell {
        padding: 8px 0;
        border-left: none;
        justify-content: space-between;
    }

    .ent-compare__cell:not(.ent-compare__cell--rowhead)::before {
        content: attr(data-label);
        font-family: 'Inter', sans-serif;
        font-size: 0.82rem;
        font-weight: 700;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-right: 12px;
    }

    .ent-compare__cell--elqo {
        background: transparent;
        border-left: none;
    }

    .ent-compare__cell--elqo:not(.ent-compare__cell--rowhead)::before {
        color: #0b3b4a;
    }

    .ent-diffs__grid {
        grid-template-columns: 1fr;
    }

    .ent-diff-card {
        padding: 26px 24px;
    }

    .ent-security {
        padding: 60px 6%;
    }

    .ent-security__chips {
        gap: 8px;
    }

    .ent-chip {
        padding: 8px 14px;
        font-size: 0.86rem;
    }

    .ent-final-cta {
        padding: 70px 6% 80px;
    }

    .ent-cta--large {
        padding: 18px 36px;
        font-size: 1.05rem;
        width: 100%;
    }

    .ent-person {
        grid-template-columns: 40px 1fr auto;
        padding: 12px 14px;
    }

    .ent-faq-title {
        font-size: 1.8rem;
        margin-top: 40px;
    }

    /* Nav pill on mobile (inside the hamburger menu) */
    .nav-links ul li a.nav-pill {
        display: inline-block;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .ent-pilot__inner {
        grid-template-columns: 1fr 1fr;
    }

    .ent-mock__topbar {
        padding: 12px 14px;
    }

    .ent-mock__crumb {
        font-size: 0.7rem;
    }
}
