:root {
    --edu-primary: #7C3AED;
    --edu-primary-dark: #6D28D9;
    --edu-primary-darker: #5B21B6;
    --edu-secondary: #0F172A;
    --edu-accent: #10B981;
    --edu-accent-dark: #059669;
    --edu-bg: #F8FAFC;
    --edu-white: #FFFFFF;
    --edu-text: #1E293B;
    --edu-muted: #64748B;
    --edu-border: #E2E8F0;
    --edu-light: #F5F3FF;
    --edu-radius: 12px;
    --edu-shadow: 0 1px 3px rgba(0,0,0,.08);
    --edu-shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --edu-shadow-lg: 0 8px 32px rgba(0,0,0,.10);
    /* Aliases for inline styles in .cshtml templates */
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --edu-primary: #7C3AED;
}

body { font-family: 'Inter', sans-serif; color: var(--edu-text); background: var(--edu-bg); }
.he-body, .he-body * { font-family: 'Heebo', sans-serif; }
/* Heebo ships up to 700 - clamp 800-weighted elements in HE context */
.he-body .edu-brand,
.he-body .edu-hero h1,
.he-body .edu-step-num,
.he-body .edu-pricing-price,
.he-body .edu-cta h2 { font-weight: 700; }

/* Buttons */
.btn-sb { background: var(--edu-accent); color: #fff; border: none; padding: 12px 28px; border-radius: var(--edu-radius); font-weight: 700; font-size: .95rem; text-decoration: none; display: inline-block; transition: background .2s; }
.btn-sb:hover { background: var(--edu-accent-dark); color: #fff; }
.btn-edu-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); padding: 10px 28px; border-radius: var(--edu-radius); font-weight: 600; font-size: .95rem; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-edu-outline:hover { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }
.btn-edu-outline-dark { background: transparent; color: var(--edu-primary); border: 2px solid var(--edu-primary); padding: 10px 28px; border-radius: var(--edu-radius); font-weight: 600; font-size: .95rem; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-edu-outline-dark:hover { background: var(--edu-primary); color: #fff; }

/* Navbar */
.edu-brand { font-size: 1.3rem; font-weight: 800; color: var(--edu-primary) !important; text-decoration: none; }
.edu-nav-cta { background: var(--edu-accent); color: #fff !important; padding: 8px 20px; border-radius: var(--edu-radius); font-weight: 700; font-size: .85rem; text-decoration: none; transition: background .2s; }
.edu-nav-cta:hover { background: var(--edu-accent-dark); }

/* Hero (dark) */
.edu-hero { background: var(--edu-secondary); color: #fff; padding: 80px 0 60px; position: relative; overflow: hidden; }
.edu-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
.edu-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 20px; position: relative; z-index: 1; }
.edu-hero .lead { font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }

/* Widget preview */
.edu-widget-preview { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--edu-radius); padding: 24px; position: relative; z-index: 1; }
.edu-widget-q { background: rgba(124,58,237,.18); border: 1px solid rgba(124,58,237,.30); border-radius: 8px; padding: 10px 16px; font-size: .88rem; color: rgba(255,255,255,.85); margin-bottom: 8px; cursor: pointer; transition: background .2s; }
.edu-widget-q:hover { background: rgba(124,58,237,.30); }
.edu-widget-note { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 14px; text-align: center; }

/* Trust badges row */
.edu-trust { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 32px; position: relative; z-index: 1; }
.edu-trust-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.6); }
.edu-trust-item .check { color: var(--edu-accent); font-weight: 700; }

/* Section */
.edu-section { padding: 80px 0; }
.edu-section-alt { background: var(--edu-white); }
.edu-section-light { background: var(--edu-light); }

/* Pain cards */
.edu-pain { background: var(--edu-white); border: 1px solid var(--edu-border); border-left: 3px solid var(--edu-primary); border-radius: var(--edu-radius); padding: 28px 24px; height: 100%; transition: box-shadow .25s; }
.edu-pain:hover { box-shadow: var(--edu-shadow-md); }
[dir="rtl"] .edu-pain { border-left: 1px solid var(--edu-border); border-right: 3px solid var(--edu-primary); }
.edu-pain-icon { font-size: 2rem; margin-bottom: 12px; }
.edu-pain h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.edu-pain p { font-size: .88rem; color: var(--edu-muted); line-height: 1.65; margin: 0; }

/* Steps */
.edu-step { text-align: center; }
.edu-step-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--edu-light); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 16px; }
.edu-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.edu-step p { font-size: .88rem; color: var(--edu-muted); line-height: 1.6; }
.edu-step-num { display: block; font-size: .72rem; font-weight: 800; color: var(--edu-primary); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }

/* Specialty cards */
.edu-spec { background: var(--edu-white); border: 1px solid var(--edu-border); border-radius: var(--edu-radius); padding: 24px 20px; height: 100%; transition: box-shadow .25s; }
.edu-spec:hover { box-shadow: var(--edu-shadow-md); }
.edu-spec-icon { font-size: 2rem; margin-bottom: 10px; }
.edu-spec h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.edu-spec p { font-size: .85rem; color: var(--edu-muted); line-height: 1.6; margin: 0; }

/* Demo placeholder */
.edu-demo { background: var(--edu-white); border: 2px dashed var(--edu-border); border-radius: 16px; padding: 48px; text-align: center; }

/* Compliance badges */
.edu-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--edu-white); border: 1px solid var(--edu-border); border-radius: 8px; padding: 12px 18px; font-size: .85rem; font-weight: 600; color: var(--edu-text); }
.edu-badge .icon { font-size: 1.1rem; }

/* Pricing cards */
.edu-pricing { background: var(--edu-white); border: 1px solid var(--edu-border); border-radius: var(--edu-radius); overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: box-shadow .25s; }
.edu-pricing:hover { box-shadow: var(--edu-shadow-lg); }
.edu-pricing-pop { border: 2px solid var(--edu-accent); }
.edu-pricing-head { padding: 28px 24px 20px; }
.edu-pricing-name { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--edu-muted); margin-bottom: 4px; }
.edu-pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--edu-text); }
.edu-pricing-price span { font-size: .95rem; font-weight: 500; color: var(--edu-muted); }
.edu-pricing-body { padding: 0 24px 24px; flex: 1; display: flex; flex-direction: column; }
.edu-pricing-body ul { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.edu-pricing-body li { padding: 7px 0; font-size: .88rem; color: var(--edu-text); border-bottom: 1px solid var(--edu-border); }
.edu-pricing-body li:last-child { border: none; }
.edu-pricing-body li .chk { color: var(--edu-accent); font-weight: 700; margin-right: 6px; }
[dir="rtl"] .edu-pricing-body li .chk { margin-right: 0; margin-left: 6px; }
.edu-pricing-body li .no { color: #CBD5E1; }
.edu-pop-badge { background: var(--edu-accent); color: #fff; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 6px 16px; text-align: center; }

/* Feature cards (features page) */
.edu-feat { background: var(--edu-white); border: 1px solid var(--edu-border); border-left: 4px solid var(--edu-primary); border-radius: var(--edu-radius); padding: 28px 24px; margin-bottom: 20px; transition: box-shadow .25s; }
.edu-feat:hover { box-shadow: var(--edu-shadow-md); }
[dir="rtl"] .edu-feat { border-left: 1px solid var(--edu-border); border-right: 4px solid var(--edu-primary); }
.edu-feat-icon { font-size: 2rem; margin-bottom: 12px; }
.edu-feat h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.edu-feat p { font-size: .9rem; color: var(--edu-muted); line-height: 1.65; margin-bottom: 0; }

/* CTA dark */
.edu-cta { background: var(--edu-secondary); padding: 64px 0; text-align: center; color: #fff; position: relative; overflow: hidden; }
.edu-cta::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
.edu-cta h2 { font-weight: 800; margin-bottom: 24px; position: relative; z-index: 1; }

/* Contact */
.edu-contact-card { background: var(--edu-white); border: 1px solid var(--edu-border); border-radius: 16px; padding: 36px; box-shadow: var(--edu-shadow-md); }
.edu-contact-card label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 4px; color: var(--edu-text); }
.edu-contact-card .form-control, .edu-contact-card .form-select { border-radius: 8px; border: 1px solid var(--edu-border); padding: 10px 14px; }

/* Comparison table */
.edu-compare { width: 100%; border-collapse: collapse; font-size: .88rem; }
.edu-compare th { background: var(--edu-secondary); color: #fff; padding: 14px 12px; text-align: center; font-weight: 700; font-size: .82rem; }
.edu-compare th:first-child { text-align: left; }
[dir="rtl"] .edu-compare th:first-child { text-align: right; }
.edu-compare td { padding: 12px; border-bottom: 1px solid var(--edu-border); text-align: center; }
.edu-compare td:first-child { text-align: left; font-weight: 500; }
[dir="rtl"] .edu-compare td:first-child { text-align: right; }
.edu-compare .pop-col { background: rgba(16,185,129,.04); }

/* Hero chat preview */
.hero-chat-preview {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}
.hcp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.hcp-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}
.hcp-online {
    font-size: 0.75rem;
    color: #4ade80;
}
.hcp-questions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.hcp-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 10px 16px;
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    font-family: inherit;
}
.hcp-pill:hover {
    background: rgba(255,255,255,0.15);
}
[dir="rtl"] .hcp-pill { text-align: right; }
.hcp-footer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
}

/* Hebrew text helper */
.he-text { text-align: right; }

/* Features grid (symmetric 2-column layout) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .edu-hero { padding: 60px 0 40px; }
    .edu-trust { gap: 12px; }
    .edu-section { padding: 56px 0; }
}

/* SLAtech Education disclaimer */
.edu-disclaimer { font-size:0.78rem; color:#6B7280; text-align:center; padding:8px 0; }

/* ── Design fixes 2026-04-12 ── */
body { line-height: 1.5; }
h1, h2, h3, h4 { margin-bottom: 12px; }
.edu-section h2, .edu-section h3 { margin-bottom: 24px; }
/*.edu-section p { max-width: 65ch; margin-left: auto; margin-right: auto; }*/
.edu-section p.lead, .edu-hero .lead, .edu-cta p { max-width: none; }

/* Card grids: ensure equal-height children with bottom-aligned actions */
.row > [class*="col-"] > .edu-pain,
.row > [class*="col-"] > .edu-spec,
.row > [class*="col-"] > .edu-feat,
.row > [class*="col-"] > .edu-pricing { height: 100%; }
.edu-pricing-body .btn-sb,
.edu-pricing-body .btn-edu-outline,
.edu-pricing-body .btn-edu-outline-dark { margin-top: auto; }

/* Mobile safety net */
@media (max-width: 768px) {
    body { font-size: 14px; overflow-x: hidden; }
    .container { padding-left: 16px; padding-right: 16px; }
    .btn-sb, .btn-edu-outline, .btn-edu-outline-dark, .edu-nav-cta { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
    .edu-hero h1 { font-size: clamp(1.6rem, 6vw, 2rem); }
    .edu-cta h2 { font-size: clamp(1.4rem, 5.5vw, 1.8rem); }
    .edu-section { margin-bottom: 0; }
    .features-grid { gap: 16px; }
    .edu-trust { margin-top: 24px; }
}
@media (min-width: 769px) {
    .edu-section + .edu-section { padding-top: 60px; }
}

/* RTL: mirror arrow glyphs in CTAs */
[dir="rtl"] .btn-sb .arrow,
[dir="rtl"] .btn-edu-outline .arrow,
[dir="rtl"] [class*="btn-sb"] svg.arrow { transform: scaleX(-1); }

/* ═══════════════════════════════════════════════════════════
   RTL OVERRIDES — Hebrew (.he-body / [dir="rtl"])
   ═══════════════════════════════════════════════════════════ */

[dir="rtl"] .edu-feat {
    text-align: right;
    direction: rtl;
}
[dir="rtl"] .edu-feat h3 { text-align: right; }
[dir="rtl"] .edu-feat p  { text-align: right; }
[dir="rtl"] .edu-feat-icon { text-align: right; }

[dir="rtl"] .edu-pain {
    text-align: right;
    direction: rtl;
    border-left: 1px solid var(--edu-border);
    border-right: 3px solid var(--edu-primary);
}
[dir="rtl"] .edu-pain h3 { text-align: right; }
[dir="rtl"] .edu-pain p  { text-align: right; }

[dir="rtl"] .edu-step {
    text-align: right;
    direction: rtl;
}
[dir="rtl"] .edu-step h3 { text-align: right; }
[dir="rtl"] .edu-step p  { text-align: right; }
[dir="rtl"] .edu-step-num { margin-left: auto; margin-right: 0; }

[dir="rtl"] .edu-pricing {
    direction: rtl;
    text-align: right;
}
[dir="rtl"] .edu-pricing-name  { text-align: right; }
[dir="rtl"] .edu-pricing-price { text-align: right; }
[dir="rtl"] .edu-pricing-head p { text-align: right; }
[dir="rtl"] .edu-pricing-body ul {
    padding-right: 0;
    padding-left: 0;
    text-align: right;
}
[dir="rtl"] .edu-pricing-body ul li {
    direction: rtl;
    text-align: right;
}
[dir="rtl"] .edu-pricing-body ul li .chk,
[dir="rtl"] .edu-pricing-body ul li .no {
    margin-left: 6px;
    margin-right: 0;
}
[dir="rtl"] .edu-pop-badge { text-align: center; }

[dir="rtl"] .edu-contact-card {
    direction: rtl;
    text-align: right;
}
[dir="rtl"] .edu-contact-card .form-label { text-align: right; display: block; }
[dir="rtl"] .edu-contact-card .form-control,
[dir="rtl"] .edu-contact-card .form-select { text-align: right; direction: rtl; }
[dir="rtl"] .edu-contact-card .row { direction: rtl; }

/* Hero chat preview RTL */
[dir="rtl"] .hcp-header { flex-direction: row-reverse; }
[dir="rtl"] .hcp-pill { text-align: right; direction: rtl; }
[dir="rtl"] .hcp-footer { text-align: right; }

/* Social proof / badges */
[dir="rtl"] .edu-badge { direction: rtl; }

/* CTA section */
[dir="rtl"] .edu-cta h2 { direction: rtl; }
[dir="rtl"] .edu-cta p  { direction: rtl; }

/* Disclaimer */
/*[dir="rtl"] .edu-disclaimer { direction: rtl; text-align: right; }
*/
/* ── Stats bar icons ────────────────────────────────────── */
.edu-stat-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
    opacity: 0.8;
    display: block;
}

/* ── Chat preview: user vs bot bubble differentiation ───── */
.hcp-pill.hcp-user {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.18);
    border-radius: 12px 12px 12px 3px;
    margin-right: 24px;
    margin-left: 0;
}
.hcp-pill.hcp-bot {
    background: rgba(124,58,237,0.22);
    border-color: rgba(124,58,237,0.40);
    border-radius: 3px 12px 12px 12px;
    margin-left: 24px;
    margin-right: 0;
}
[dir="rtl"] .hcp-pill.hcp-user {
    margin-right: 0;
    margin-left: 24px;
    border-radius: 12px 12px 3px 12px;
}
[dir="rtl"] .hcp-pill.hcp-bot {
    margin-left: 0;
    margin-right: 24px;
    border-radius: 12px 3px 12px 12px;
}
.hcp-pill .hcp-who-user {
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 2px;
}
.hcp-pill .hcp-who-bot {
    color: rgba(167,139,250,0.9);
    font-weight: 600;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 2px;
}

[dir="rtl"] input[type="email"]::placeholder,
[dir="rtl"] input[type="url"]::placeholder,
[dir="rtl"] input[type="tel"]::placeholder,
.he-body input[type="email"]::placeholder,
.he-body input[type="url"]::placeholder,
.he-body .form-control::placeholder {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] section,
.he-body section {
    margin-bottom: 0;
    margin-top: 0;
}

.logo-img { height:40px; width:auto; display:block; }
.logo-img-footer { height:32px; width:auto; display:block; }

/* ── Resources Dropdown ─────────────────────────────────── */
.nav-resources-toggle { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.resources-dropdown {
    min-width: 230px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    padding: 6px 0;
    font-size: .875rem;
}
.resources-dropdown .dropdown-item {
    padding: 8px 18px;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    transition: background .15s;
    white-space: nowrap;
}
.resources-dropdown .dropdown-item:hover { background: #f3f4f6; color: #111827; }
.resources-dropdown .dropdown-item .ext-icon { font-size: .72rem; opacity: .45; flex-shrink: 0; }
.resources-dropdown .dropdown-divider { margin: 4px 0; border-color: #e5e7eb; }


/* ── Mascot ───────────────────────────────────────────────── */
.hero-mascot-wrap {
    text-align: center;
    margin-bottom: -16px;
    position: relative;
    z-index: 3;
}
.hero-mascot {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 8px 24px rgba(26,175,170,.35));
    animation: mascot-float 3.5s ease-in-out infinite;
}
@keyframes mascot-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}
.chat-head-avatar img,
.cmsg-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.cmsg-avatar.av-bot { font-size: 0; }


/* ── RTL overrides (Hebrew pages) ──────────────────────────── */
[dir="rtl"] .edu-spec    { direction: rtl; text-align: right; }
[dir="rtl"] .edu-spec h3,
[dir="rtl"] .edu-spec p  { text-align: right; }

/* ── Contact page benefits list (prevent row stretching cards) ── */
.edu-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ── Section center text: full width fix ─────────────────── */
.edu-section .text-center p,
.edu-section .text-center .lead,
.edu-section-alt .text-center p,
.edu-section-alt .text-center .lead,
.edu-section-light .text-center p,
.edu-section-light .text-center .lead {
    max-width: 100%;
    width: 100%;
    text-align: center;
}

/* ═══════════════════════════════════════════
   Landing Pages — specialty + feature
   ═══════════════════════════════════════════ */

.lp-breadcrumb {
    background: var(--light);
    border-bottom: 1px solid var(--border);
    font-size: .82rem;
}
.lp-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--muted); }
.lp-breadcrumb a { color: var(--teal-d); text-decoration: none; }
.lp-breadcrumb a:hover { text-decoration: underline; }

.lp-hero {
    background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 60%, rgba(26,175,170,.12) 100%);
    color: #fff;
    padding: 72px 0 56px;
}
.lp-eyebrow {
    font-size: .75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .12em; color: var(--teal); margin-bottom: 14px;
}
.lp-h1 {
    font-size: clamp(1.8rem, 4vw, 2.9rem); font-weight: 800;
    line-height: 1.15; color: #fff; margin-bottom: 18px; letter-spacing: -.02em;
}
.lp-subtitle {
    font-size: 1rem; color: rgba(255,255,255,.7);
    line-height: 1.7; max-width: 520px;
}

.btn-lp-primary {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--teal); color: #fff !important;
    font-weight: 700; font-size: .92rem; padding: 12px 26px;
    border-radius: var(--r-md); text-decoration: none !important;
    border: none; transition: background .2s, transform .18s;
}
.btn-lp-primary:hover { background: var(--teal-d); transform: translateY(-2px); }
.btn-lp-primary.btn-lp-lg { font-size: 1rem; padding: 15px 34px; }
.btn-lp-outline {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; color: rgba(255,255,255,.82) !important;
    font-weight: 600; font-size: .92rem; padding: 11px 22px;
    border-radius: var(--r-md); border: 1.5px solid rgba(255,255,255,.28);
    text-decoration: none !important; transition: all .18s;
}
.btn-lp-outline:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.55);
    color: #fff !important;
}

.lp-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-stat-item {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-md); padding: 18px 16px; text-align: center;
}
.lp-stat-value { font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1.1; }
.lp-stat-label { font-size: .76rem; color: rgba(255,255,255,.52); margin-top: 4px; }

.lp-body { padding: 56px 0; background: var(--white); }

.lp-sidebar {
    position: sticky; top: 110px;
    background: var(--light); border: 1px solid var(--border);
    border-radius: var(--r-md); padding: 18px;
}
.lp-sidebar-title {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .09em; color: var(--muted);
    margin-bottom: 10px; padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.lp-sidebar-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }
.lp-sidebar-link {
    display: block; padding: 7px 10px; border-radius: var(--r-sm);
    font-size: .83rem; color: var(--dark);
    text-decoration: none; transition: background .14s, color .14s; line-height: 1.4;
}
.lp-sidebar-link:hover { background: rgba(26,175,170,.08); color: var(--teal-d); }
.lp-sidebar-link.active {
    background: rgba(26,175,170,.12); color: var(--teal-d);
    font-weight: 600; border-left: 3px solid var(--teal); padding-left: 7px;
}

.lp-section { margin-bottom: 48px; }
.lp-section-light {
    background: var(--light); border-radius: var(--r-lg);
    padding: 32px 28px;
}
.lp-section-title {
    font-size: 1.4rem; font-weight: 800; color: var(--dark);
    margin-bottom: 24px; padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.lp-pain-card {
    background: var(--white); border: 1px solid var(--border);
    border-left: 3px solid var(--navy); border-radius: var(--r-md);
    padding: 22px 18px; height: 100%; transition: box-shadow .2s;
}
.lp-pain-card:hover { box-shadow: var(--shadow-md); }
.lp-pain-icon { font-size: 1.8rem; margin-bottom: 10px; }
.lp-pain-card h3 { font-size: .92rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.lp-pain-card p { font-size: .84rem; color: var(--muted); margin: 0; line-height: 1.65; }

.lp-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.lp-feat-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-md); padding: 22px;
    transition: border-color .18s, transform .18s, box-shadow .18s;
}
.lp-feat-card:hover {
    border-color: var(--teal); transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26,175,170,.11);
}
.lp-feat-icon { font-size: 1.7rem; margin-bottom: 10px; }
.lp-feat-card h3 { font-size: .92rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.lp-feat-card p { font-size: .84rem; color: var(--muted); margin: 0; line-height: 1.65; }

.lp-accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--r-sm) !important;
    margin-bottom: 6px; overflow: hidden;
}
.lp-accordion-item .accordion-button {
    font-weight: 600; font-size: .9rem; color: var(--dark); background: var(--white);
}
.lp-accordion-item .accordion-button:not(.collapsed) {
    color: var(--teal-d); background: rgba(26,175,170,.05); box-shadow: none;
}
.lp-accordion-item .accordion-body { font-size: .86rem; color: var(--muted); line-height: 1.7; }

.lp-related-card {
    display: flex; flex-direction: column; gap: 3px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-md); padding: 14px 18px;
    transition: border-color .18s, transform .18s;
}
.lp-related-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.lp-related-type {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--teal-d);
}
.lp-related-title { font-size: .88rem; font-weight: 600; color: var(--dark); }
.lp-related-arrow { font-size: .82rem; color: var(--teal); }

.lp-cta {
    background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 100%);
    padding: 72px 0; color: #fff;
}
.lp-cta-title { font-size: clamp(1.5rem, 3.5vw, 2.3rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.lp-cta-sub { font-size: .92rem; color: rgba(255,255,255,.62); margin-bottom: 30px; }

[dir="rtl"] .lp-h1,
[dir="rtl"] .lp-subtitle { text-align: right; }
[dir="rtl"] .lp-pain-card {
    border-left: 1px solid var(--border); border-right: 3px solid var(--navy);
}
[dir="rtl"] .lp-sidebar-link.active {
    border-left: none; border-right: 3px solid var(--teal);
    padding-left: 10px; padding-right: 7px;
}
[dir="rtl"] .lp-eyebrow { letter-spacing: 0; }
[dir="rtl"] .lp-related-arrow { transform: scaleX(-1); }
[dir="rtl"] .lp-feat-card,
[dir="rtl"] .lp-pain-card { text-align: right; }

@media (max-width: 767px) {
    .lp-hero { padding: 44px 0 36px; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-stats-grid { grid-template-columns: 1fr 1fr; }
    .lp-section-light { padding: 22px 14px; }
    .lp-cta { padding: 44px 0; }
}

/* ═══ Landing pages — SLAtech Education color overrides ═══ */
.lp-hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 60%, rgba(167,139,250,.12) 100%);
}
.lp-eyebrow { color: #a78bfa; }
.btn-lp-primary { background: #7C3AED; }
.btn-lp-primary:hover { background: #6D28D9; }
.lp-pain-card { border-left-color: #7C3AED; }
[dir="rtl"] .lp-pain-card { border-right-color: #7C3AED; }
.lp-sidebar-link.active {
    color: #6D28D9;
    background: rgba(124,58,237,.1);
    border-left-color: #7C3AED;
}
[dir="rtl"] .lp-sidebar-link.active { border-right-color: #7C3AED; }
.lp-feat-card:hover { border-color: #7C3AED; }
.lp-related-type { color: #6D28D9; }
.lp-related-arrow { color: #7C3AED; }
.lp-cta { background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 100%); }



/* Bundle F: Back-link to products hub (dark-text variant for light navbars) */

/* HOTFIX: Heebo font-weight cap at 700 for HE rendering — Heebo doesn't ship 800/900 weight,
   browsers fake-bold which renders muddy. Scope to HE pages only; EN/RU keep 800. */
html[lang="he"] .edu-brand,
html[lang="he"] .edu-hero h1,
html[lang="he"] .edu-step-num,
html[lang="he"] .edu-pricing-price,
html[lang="he"] .edu-cta h2,
html[lang="he"] .lp-h1,
html[lang="he"] .lp-stat-value,
html[lang="he"] .lp-section-title,
html[lang="he"] .lp-cta-title { font-weight: 700; }
