/* ============================================================
   SLAtech Sales — AI Memory for Client Conversations
   Version 1.0 · April 2026
   Emerald theme · mirrors Med Bot structure
   ============================================================ */

:root {
    --cb-primary: #059669;
    --cb-primary-dark: #047857;
    --cb-secondary: #34D399;
    --cb-secondary-lt: #6EE7B7;
    --cb-dark: #022C22;
    --cb-hero-bg: #0F1F1A;
    --cb-light: #ECFDF5;
    --cb-white: #FFFFFF;
    --cb-text: #1E293B;
    --cb-muted: #64748B;
    --cb-border: #E2E8F0;
    --cb-bg: #F8FAFC;
    --cb-radius: 12px;
    --cb-shadow: 0 1px 3px rgba(0,0,0,0.08);
    --cb-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --cb-shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--cb-text); background: var(--cb-bg); }
.he-body { font-family: 'Heebo', 'Inter', sans-serif; font-weight: 400; }
.he-body h1,.he-body h2,.he-body h3,.he-body h4,.he-body strong,.he-body b { font-weight: 700 !important; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-cb {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 10px; font-weight: 600; font-size: .95rem;
    background: var(--cb-primary); color: #fff; border: none; cursor: pointer;
    transition: background .15s, transform .12s, box-shadow .15s;
    text-decoration: none;
}
.btn-cb:hover { background: var(--cb-primary-dark); transform: translateY(-1px); box-shadow: var(--cb-shadow-md); color: #fff; }
.btn-cb-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 28px; border-radius: 10px; font-weight: 600; font-size: .95rem;
    background: transparent; color: var(--cb-primary); border: 2px solid var(--cb-primary);
    cursor: pointer; transition: all .15s; text-decoration: none;
}
.btn-cb-outline:hover { background: var(--cb-primary); color: #fff; }
.btn-cb-outline-dark {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 28px; border-radius: 10px; font-weight: 600; font-size: .95rem;
    background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4);
    cursor: pointer; transition: all .15s; text-decoration: none;
}
.btn-cb-outline-dark:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.7); }

/* ── Navbar ───────────────────────────────────────────────── */
.cb-brand { font-weight: 700; color: var(--cb-primary) !important; }
.cb-brand-img { height: 28px; }
.cb-nav-cta {
    display: inline-block; padding: 8px 20px; border-radius: 8px;
    background: var(--cb-primary); color: #fff !important; font-weight: 600;
    font-size: .88rem; text-decoration: none; transition: background .15s;
    white-space: nowrap;
}
.cb-nav-cta:hover { background: var(--cb-primary-dark); }

/* ── Hero ─────────────────────────────────────────────────── */
.cb-hero {
    background: linear-gradient(135deg, var(--cb-hero-bg) 0%, #0A2E1F 60%, var(--cb-primary-dark) 100%);
    color: #fff; padding: 80px 0 72px; position: relative; overflow: hidden;
}
.cb-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(52,211,153,.15), transparent 70%);
    pointer-events: none;
}
.cb-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.cb-hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,.8); line-height: 1.6; max-width: 540px; }
.cb-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600;
    background: rgba(52,211,153,.15); border: 1px solid rgba(52,211,153,.3);
    color: var(--cb-secondary-lt); letter-spacing: .04em; text-transform: uppercase;
    font-family: 'Inter', sans-serif; margin-bottom: 18px;
}
.cb-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.cb-trust-item {
    display: flex; align-items: center; gap: 6px; font-size: .82rem;
    color: rgba(255,255,255,.7); letter-spacing: .02em;
}
.cb-trust-item::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--cb-secondary); flex-shrink: 0;
}

/* ── Hero Chat Preview ────────────────────────────────────── */
.cb-hero-chat {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px; padding: 0; overflow: hidden; backdrop-filter: blur(8px);
    box-shadow: 0 12px 40px rgba(0,0,0,.35); max-width: 380px; width: 100%;
}
.cb-hero-chat-header {
    background: linear-gradient(135deg, var(--cb-primary), var(--cb-primary-dark));
    padding: 14px 18px; display: flex; align-items: center; gap: 10px;
}
.cb-hero-chat-avatar {
    width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.cb-hero-chat-name { font-weight: 600; font-size: .9rem; color: #fff; }
.cb-hero-chat-status { font-size: .72rem; color: rgba(255,255,255,.7); }
.cb-hero-chat-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }

/* ── Chat Messages ────────────────────────────────────────── */
.cb-msg {
    max-width: 85%; padding: 10px 14px; border-radius: 12px;
    font-size: .84rem; line-height: 1.5; animation: cb-msg-in .4s ease-out both;
}
.cb-msg-user {
    align-self: flex-end; background: linear-gradient(135deg, var(--cb-primary), #047857);
    color: #fff; border-bottom-right-radius: 4px;
}
.cb-msg-bot {
    align-self: flex-start; background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.9);
    border-bottom-left-radius: 4px;
}
.cb-msg-bot .line { display: block; margin-bottom: 4px; }
.cb-msg-bot .line:last-child { margin-bottom: 0; }
.cb-msg-bot .red { color: #FCA5A5; }
.cb-msg-bot .yellow { color: #FCD34D; }
.cb-msg-bot .green { color: var(--cb-secondary); }
@keyframes cb-msg-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ── Sections ─────────────────────────────────────────────── */
.cb-section { padding: 72px 0; }
.cb-section-alt { padding: 72px 0; background: var(--cb-light); }
.cb-section-light { padding: 72px 0; background: #fff; }
.cb-section-eyebrow {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    background: rgba(5,150,105,.1); color: var(--cb-primary); margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}

/* ── Pain Points ──────────────────────────────────────────── */
.cb-pain {
    padding: 20px 24px; border-left: 3px solid var(--cb-primary);
    background: #fff; border-radius: 0 var(--cb-radius) var(--cb-radius) 0;
    box-shadow: var(--cb-shadow); margin-bottom: 16px;
}
.cb-pain-icon { font-size: 1.5rem; margin-bottom: 8px; }
.cb-pain h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.cb-pain p { font-size: .88rem; color: var(--cb-muted); margin: 0; }

/* ── Features ─────────────────────────────────────────────── */
.cb-feat {
    padding: 28px; border-radius: var(--cb-radius); background: #fff;
    border: 1px solid var(--cb-border); box-shadow: var(--cb-shadow);
    transition: transform .2s, box-shadow .2s; height: 100%;
}
.cb-feat:hover { transform: translateY(-2px); box-shadow: var(--cb-shadow-md); }
.cb-feat-icon { font-size: 2rem; margin-bottom: 12px; }
.cb-feat h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -.01em; }
.cb-feat p { font-size: .88rem; color: var(--cb-muted); line-height: 1.55; margin: 0; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.features-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ── Steps ────────────────────────────────────────────────── */
.cb-step {
    display: flex; gap: 18px; margin-bottom: 28px;
}
.cb-step-num {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--cb-primary); color: #fff; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: .95rem;
}
.cb-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.cb-step p { font-size: .88rem; color: var(--cb-muted); margin: 0; }

/* ── Use Cases ────────────────────────────────────────────── */
.cb-usecase {
    padding: 28px; border-radius: var(--cb-radius); background: #fff;
    border: 1px solid var(--cb-border); box-shadow: var(--cb-shadow);
    height: 100%; transition: transform .2s, box-shadow .2s;
}
.cb-usecase:hover { transform: translateY(-2px); box-shadow: var(--cb-shadow-md); }
.cb-usecase-icon { font-size: 2rem; margin-bottom: 12px; }
.cb-usecase h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.cb-usecase p { font-size: .88rem; color: var(--cb-muted); margin: 0; line-height: 1.55; }

/* ── Testimonials ─────────────────────────────────────────── */
.cb-testi {
    padding: 24px; border-radius: var(--cb-radius); background: #fff;
    border: 1px solid var(--cb-border); box-shadow: var(--cb-shadow);
    height: 100%;
}
.cb-testi-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.cb-testi p { font-size: .9rem; color: var(--cb-text); line-height: 1.6; font-style: italic; margin-bottom: 12px; }
.cb-testi-author { font-size: .8rem; color: var(--cb-muted); font-weight: 600; }

/* ── Demo Preview ─────────────────────────────────────────── */
.cb-demo {
    background: #fff; border: 1px solid var(--cb-border); border-radius: 16px;
    overflow: hidden; box-shadow: var(--cb-shadow-md);
}

/* ── Pricing ──────────────────────────────────────────────── */
.cb-pricing {
    padding: 28px; border-radius: var(--cb-radius); background: #fff;
    border: 1px solid var(--cb-border); box-shadow: var(--cb-shadow);
    display: flex; flex-direction: column; height: 100%;
    transition: transform .2s, box-shadow .2s;
}
.cb-pricing:hover { transform: translateY(-2px); box-shadow: var(--cb-shadow-md); }
.cb-pricing-pop {
    border: 2px solid var(--cb-primary); position: relative;
}
.cb-pop-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--cb-primary); color: #fff; padding: 3px 14px;
    border-radius: 999px; font-size: .72rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}
.cb-pricing-name { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--cb-muted); margin-bottom: 8px; }
.cb-pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--cb-text); margin-bottom: 4px; letter-spacing: -.03em; }
.cb-pricing-period { font-size: .85rem; color: var(--cb-muted); margin-bottom: 16px; }
.cb-pricing-list { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.cb-pricing-list li {
    padding: 6px 0; font-size: .86rem; color: var(--cb-text);
    display: flex; align-items: flex-start; gap: 8px;
}
.cb-pricing-list li::before { content: '✓'; color: var(--cb-primary); font-weight: 700; flex-shrink: 0; }
.cb-pricing .btn-cb, .cb-pricing .btn-cb-outline { width: 100%; justify-content: center; }

/* ── CTA Dark ─────────────────────────────────────────────── */
.cb-cta {
    background: linear-gradient(135deg, var(--cb-dark) 0%, #064E3B 100%);
    color: #fff; padding: 64px 0; border-radius: 20px;
}
.cb-cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
.cb-cta p { color: rgba(255,255,255,.75); font-size: 1.05rem; }

/* ── Contact Card ─────────────────────────────────────────── */
.cb-contact-card {
    background: #fff; border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius); padding: 32px; box-shadow: var(--cb-shadow-md);
}

/* ── Form Card + Success ───────────────────────────────────── */
.cb-form-card {
    background: #fff; border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius); padding: 32px; box-shadow: var(--cb-shadow-md);
}
.cb-success {
    background: var(--cb-light); border: 2px solid var(--cb-primary);
    border-radius: var(--cb-radius); padding: 32px; text-align: center;
}
.cb-success h3 { color: var(--cb-primary); }

/* ── Badge ─────────────────────────────────────────────────── */
.cb-badge {
    display: inline-block; padding: 3px 10px; border-radius: 999px;
    font-size: .72rem; font-weight: 600; letter-spacing: .06em;
    text-transform: uppercase; background: var(--cb-light); color: var(--cb-primary);
}

/* ── Compare Table ────────────────────────────────────────── */
.cb-compare { overflow-x: auto; }
.cb-compare table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.cb-compare th, .cb-compare td { padding: 12px 16px; text-align: center; border-bottom: 1px solid var(--cb-border); }
.cb-compare th:first-child, .cb-compare td:first-child { text-align: left; font-weight: 600; }
.cb-compare thead th { background: var(--cb-light); font-weight: 700; color: var(--cb-text); }

/* ── Hebrew text helper ───────────────────────────────────── */
.he-text { font-family: 'Heebo', sans-serif; }

/* ── RTL overrides ────────────────────────────────────────── */
[dir="rtl"] .cb-pain { border-left: none; border-right: 3px solid var(--cb-primary); border-radius: var(--cb-radius) 0 0 var(--cb-radius); }
[dir="rtl"] .cb-msg-user { align-self: flex-start; border-bottom-right-radius: 12px; border-bottom-left-radius: 4px; }
[dir="rtl"] .cb-msg-bot { align-self: flex-end; border-bottom-left-radius: 12px; border-bottom-right-radius: 4px; }
[dir="rtl"] .cb-trust-item { flex-direction: row; }
[dir="rtl"] .cb-step { flex-direction: row; }
[dir="rtl"] .cb-step-num { margin-left: 0; }

/* ── Hebrew letter-spacing resets ─────────────────────────── */
.he-body .cb-hero-badge { letter-spacing: 0; text-transform: none; }
.he-body .cb-pricing-name { letter-spacing: 0; text-transform: none; }
.he-body .cb-section-eyebrow { letter-spacing: 0; text-transform: none; }
.he-body .cb-pop-badge { letter-spacing: 0; text-transform: none; }
.he-body .cb-hero h1 { letter-spacing: 0; }
.he-body .cb-trust-item { letter-spacing: 0; }
.he-body .cb-feat h3 { letter-spacing: 0; }

/* ── Hebrew form placeholders ─────────────────────────────── */
.he-body input[type="email"]::placeholder,
.he-body input[type="url"]::placeholder,
.he-body input[type="tel"]::placeholder,
.he-body .form-control::placeholder { direction: rtl; text-align: right; }

/* ── Section gap fix ──────────────────────────────────────── */
.he-body section { margin-bottom: 0; margin-top: 0; }

/* ── Section center text ──────────────────────────────────── */
.cb-section .text-center p,
.cb-section .text-center .lead,
.cb-section-alt .text-center p,
.cb-section-alt .text-center .lead { max-width: 100%; width: 100%; text-align: center; margin-left: auto; margin-right: auto; }

/* ── Proof bar (hero bottom) ───────────────────────────────── */
.cb-proof {
    display: flex; flex-wrap: wrap; gap: 18px 32px; justify-content: center;
    margin-top: 36px; padding: 18px 24px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
}
.cb-proof-item {
    display: flex; align-items: center; gap: 8px;
    font-size: .85rem; color: rgba(255,255,255,.75);
}
.cb-proof-item .check { color: var(--cb-secondary); font-weight: 700; }

/* ── Badge dot ────────────────────────────────────────────── */
.cb-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--cb-secondary); display: inline-block;
    box-shadow: 0 0 8px var(--cb-secondary);
}

/* ── Gradient button (hero CTA) ───────────────────────────── */
.btn-cb-gradient {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 10px; font-weight: 700; font-size: 1rem;
    background: linear-gradient(135deg, var(--cb-primary), var(--cb-secondary));
    color: #fff; border: none; cursor: pointer; text-decoration: none;
    box-shadow: 0 4px 20px rgba(5,150,105,.4);
    transition: transform .12s, box-shadow .12s;
}
.btn-cb-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(5,150,105,.5); color: #fff; }

/* ── Feature demo snippet ─────────────────────────────────── */
.cb-feat-demo {
    margin-top: 12px; padding: 10px 14px;
    background: var(--cb-light); border-radius: 8px;
    font-size: .82rem; color: var(--cb-primary-dark);
    font-family: 'Inter', sans-serif; border-left: 3px solid var(--cb-primary);
}
[dir="rtl"] .cb-feat-demo { border-left: none; border-right: 3px solid var(--cb-primary); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
    .cb-hero { padding: 56px 0 48px; }
    .cb-hero h1 { font-size: 1.8rem; }
}
@media (max-width: 767px) {
    .features-grid, .features-grid-3 { grid-template-columns: 1fr; }
    .cb-hero-chat { max-width: 100%; }
    .cb-section, .cb-section-alt, .cb-section-light { padding: 48px 0; }
    .cb-pricing { padding: 22px; }
    .cb-cta { padding: 40px 0; border-radius: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   Landing pages (lp-*) — shared layout for /for/{slug} and
   /features/{slug} dynamic pages.
   ═══════════════════════════════════════════════════════════════ */

.lp-breadcrumb {
    background: var(--cb-light);
    border-bottom: 1px solid #e5e7eb;
    font-size: .82rem;
}
.lp-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #6b7280; }
.lp-breadcrumb a { color: var(--cb-primary-dark); text-decoration: none; }
.lp-breadcrumb a:hover { text-decoration: underline; }

.lp-hero {
    background: linear-gradient(135deg, var(--cb-hero-bg) 0%, #022C22 60%, rgba(5,150,105,.14) 100%);
    color: #fff;
    padding: 72px 0 56px;
}
.lp-eyebrow {
    font-size: .75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .12em; color: var(--cb-secondary); 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(--cb-primary); color: #fff !important;
    font-weight: 700; font-size: .92rem; padding: 12px 26px;
    border-radius: 10px; text-decoration: none !important;
    border: none; transition: background .2s, transform .18s;
}
.btn-lp-primary:hover { background: var(--cb-primary-dark); 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: 10px; 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: 10px; 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: #fff; }

.lp-sidebar {
    position: sticky; top: 110px;
    background: var(--cb-light); border: 1px solid #e5e7eb;
    border-radius: 10px; padding: 18px;
}
.lp-sidebar-title {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .09em; color: #6b7280;
    margin-bottom: 10px; padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}
.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: 8px;
    font-size: .83rem; color: #1f2937;
    text-decoration: none; transition: background .14s, color .14s; line-height: 1.4;
}
.lp-sidebar-link:hover { background: rgba(5,150,105,.08); color: var(--cb-primary-dark); }
.lp-sidebar-link.active {
    background: rgba(5,150,105,.12); color: var(--cb-primary-dark);
    font-weight: 600; border-left: 3px solid var(--cb-primary); padding-left: 7px;
}

.lp-section { margin-bottom: 48px; }
.lp-section-light {
    background: var(--cb-light); border-radius: 12px;
    padding: 32px 28px;
}
.lp-section-title {
    font-size: 1.4rem; font-weight: 800; color: #1f2937;
    margin-bottom: 24px; padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.lp-pain-card {
    background: #fff; border: 1px solid #e5e7eb;
    border-left: 3px solid var(--cb-dark); border-radius: 10px;
    padding: 22px 18px; height: 100%; transition: box-shadow .2s;
}
.lp-pain-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.lp-pain-icon { font-size: 1.8rem; margin-bottom: 10px; }
.lp-pain-card h3 { font-size: .92rem; font-weight: 700; margin-bottom: 6px; color: #1f2937; }
.lp-pain-card p { font-size: .84rem; color: #6b7280; margin: 0; line-height: 1.65; }

.lp-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.lp-feat-card {
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 10px; padding: 22px;
    transition: border-color .18s, transform .18s, box-shadow .18s;
}
.lp-feat-card:hover {
    border-color: var(--cb-primary); transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(5,150,105,.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: #1f2937; }
.lp-feat-card p { font-size: .84rem; color: #6b7280; margin: 0; line-height: 1.65; }

.lp-accordion-item {
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    margin-bottom: 6px; overflow: hidden;
}
.lp-accordion-item .accordion-button {
    font-weight: 600; font-size: .9rem; color: #1f2937; background: #fff;
}
.lp-accordion-item .accordion-button:not(.collapsed) {
    color: var(--cb-primary-dark); background: rgba(5,150,105,.05); box-shadow: none;
}
.lp-accordion-item .accordion-body { font-size: .86rem; color: #6b7280; line-height: 1.7; }

.lp-related-card {
    display: flex; flex-direction: column; gap: 3px;
    background: #fff; border: 1px solid #e5e7eb;
    border-radius: 10px; padding: 14px 18px;
    transition: border-color .18s, transform .18s;
}
.lp-related-card:hover { border-color: var(--cb-primary); transform: translateY(-2px); }
.lp-related-type {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--cb-primary-dark);
}
.lp-related-title { font-size: .88rem; font-weight: 600; color: #1f2937; }
.lp-related-arrow { font-size: .82rem; color: var(--cb-primary); }

.lp-cta {
    background: linear-gradient(135deg, var(--cb-hero-bg) 0%, var(--cb-dark) 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; }

/* ── Landing pages RTL overrides ─────────────────────────── */
[dir="rtl"] .lp-h1,
[dir="rtl"] .lp-subtitle { text-align: right; }
[dir="rtl"] .lp-pain-card {
    border-left: 1px solid #e5e7eb; border-right: 3px solid var(--cb-dark);
}
[dir="rtl"] .lp-sidebar-link.active {
    border-left: none; border-right: 3px solid var(--cb-primary);
    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; }

/* ── Landing pages responsive ────────────────────────────── */
@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; }
}


/* Bundle F: Back-link to products hub (dark-text variant for light navbars) */

/* HOTFIX: Heebo font-weight cap at 700 for HE rendering. */
html[lang="he"] .cb-hero h1,
html[lang="he"] .cb-pricing-price,
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; }
