/* ═══════════════════════════════════════════════════════════════════════════
   Skymoon Infotech - Blog Lead Magnet Components
   External file: /assets/sk-lead-magnets.css
   Enqueued via:  sk-lead-magnets.php on is_singular()
   Version:       4.0.0

   CHANGELOG v4.0.0 - CRITICAL FIX
   ─────────────────────────────────
   Screenshots showed the end-of-article headline and subtext rendering in
   black on the blue gradient, and the primary button rendering as a full
   pill instead of an 8px radius. Root cause: the theme's
     .blog-post-main-css p { color: #121212; ... }
   has specificity (0,0,2,0)=20. Every text color in this file was a single
   class selector at (0,0,1,0)=10, so the theme rule always won on any
   element that happens to be a <p> tag (which is most of them). This bug
   was invisible on white/glass cards because #121212 happened to look
   correct there by coincidence, but broke visibly on gradient cards and
   silently overrode every muted-gray subtext to black everywhere else.

   FIX: every color declaration on card text elements now carries
   !important, and border-radius on buttons is now !important as well
   rather than relying on selector specificity against a stylesheet this
   file does not control. This trades a small amount of elegance for
   guaranteed correctness - the pragmatic choice after two rounds of the
   specificity approach not holding up in production.

   ALSO IN v4.0.0
   ────────────────
   • Button overflow fix: box-sizing:border-box + responsive font clamp on
     the large "Get a Free Digital Audit" button so text never spills past
     the pill edge on narrow screens, and never wraps either.
   • Removed nothing structurally - sticky bar stays removed from v3.0.0.

   SECTIONS
   ─────────
   1.  Shared tokens + content bleed resets
   2.  Shared button system (.sk-lm-btn)          [HARDENED v4.0.0]
   3.  Badge system (.sk-lm-badge)
   4.  Screen reader utility
   5.  LM-01 Content Upgrade (.sk-lm-cu)           [color fix]
   6.  LM-02 Audit Strip (.sk-lm-strip)            [color fix]
   7.  LM-03 Consultation CTA (.sk-lm-consult)     [color fix]
   8.  LM-04 End-of-Article (.sk-lm-end)           [color fix - screenshot bug]
   9.  LM-05 Newsletter (.sk-lm-newsletter)        [color fix]
   10. LM-06 Sidebar Consult (.sk-sb-consult)      [color fix]
   11. Custom inline SVG graphic hooks
   12. Responsive overrides
   ═══════════════════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────────────────
   1. SHARED TOKENS + CONTENT BLEED RESETS
   ───────────────────────────────────────────────────────────────────────── */

.sk-lm-card {
    --lm-blue:        #006CFF;
    --lm-purple:      #745EFF;
    --lm-dark:        #121212;
    --lm-white:       #FFFFFF;
    --lm-surface:     #F5F7FB;
    --lm-border:      rgba(147, 178, 255, .45);
    --lm-muted:       #6B7280;
    --lm-radius-sm:   8px;
    --lm-radius-lg:   16px;
    --lm-radius-full: 999px;
    --lm-glass-bg:    rgba(255, 255, 255, .78);
    --lm-glass-bdr:   rgba(147, 178, 255, .40);
    --lm-shadow:
        0 1px 0 rgba(255,255,255,.5) inset,
        0 2px 4px rgba(16,24,40,.04),
        0 12px 28px rgba(2,33,89,.08);
    --lm-shadow-hov:
        0 1px 0 rgba(255,255,255,.5) inset,
        0 6px 14px rgba(2,33,89,.10),
        0 22px 48px rgba(2,33,89,.12);
    margin:     30px 0;
    box-sizing: border-box;
}

.blog-post-main-css .sk-lm-card p {
    margin: 0;
}
.blog-post-main-css .sk-lm-card h2,
.blog-post-main-css .sk-lm-card h3,
.blog-post-main-css .sk-lm-card h4,
.blog-post-main-css .sk-lm-card h5 {
    margin: 0;
}
.blog-post-main-css .sk-lm-card ul,
.blog-post-main-css .sk-lm-card ol {
    padding-left: 0;
    margin-left:  0;
    margin-right: 0;
    color:        inherit;
}
.blog-post-main-css .sk-lm-card ul li,
.blog-post-main-css .sk-lm-card ol li {
    list-style-type: none;
    padding-bottom:  0;
}
.sk-sb-consult ul,
.sk-sb-consult ul li {
    padding-left:    0;
    margin-left:     0;
    list-style-type: none;
    padding-bottom:  0;
}

.sk-lm-glass-texture { position: relative; }
.sk-lm-glass-texture::after {
    content:          "";
    position:         absolute;
    inset:            0;
    pointer-events:   none;
    opacity:          .5;
    background-image: radial-gradient(circle, rgba(0,108,255,.06) 1px, transparent 1px);
    background-size:  16px 16px;
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 65%);
    mask-image:       linear-gradient(to bottom, black, transparent 65%);
}


/* ─────────────────────────────────────────────────────────────────────────
   2. SHARED BUTTON SYSTEM [HARDENED v4.0.0]

   Every color and border-radius declaration below carries !important.
   This is deliberate: two prior rounds relied on selector specificity to
   beat theme rules, and screenshots showed that approach still losing in
   production (pill-shaped button, black-on-blue text). !important removes
   the ambiguity entirely, regardless of theme CSS load order or caching.
   ───────────────────────────────────────────────────────────────────────── */

.sk-lm-btn {
    display:                    inline-flex;
    align-items:                center;
    justify-content:            center;
    gap:                        7px;
    font-family:                "REM", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size:                  .84rem;
    font-weight:                600;
    line-height:                1;
    white-space:                nowrap;
    text-decoration:            none !important;
    border:                     none;
    background:                 none;
    cursor:                     pointer;
    border-radius:              8px !important;   /* hard guarantee, see changelog */
    box-sizing:                 border-box;
    max-width:                  100%;
    overflow:                   hidden;
    text-overflow:              ellipsis;          /* safety net only, should never trigger */
    transition:                 transform .15s ease-out,
                                box-shadow .15s ease-out,
                                background .15s ease-out,
                                filter .15s ease-out,
                                border-color .15s ease-out,
                                color .15s ease-out;
    -webkit-tap-highlight-color: transparent;
    user-select:                none;
    -webkit-appearance:         none;
    appearance:                 none;
}

.sk-lm-btn:focus-visible {
    outline:        2px solid rgba(0, 108, 255, .40);
    outline-offset: 3px;
}

.sk-lm-btn svg { flex-shrink: 0; transition: transform .18s ease-out; }
.sk-lm-btn:hover svg { transform: translateX(2px); }

/* ── PRIMARY ────────────────────────────────────────────────────────────── */
.sk-lm-btn--primary {
    height:     44px;
    padding:    0 22px;
    background: linear-gradient(120deg, #006CFF 0%, #745EFF 100%);
    color:      #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(0, 108, 255, .30);
}
.sk-lm-btn--primary:hover {
    color:      #FFFFFF !important;
    filter:     brightness(1.08);
    transform:  translateY(-1px);
    box-shadow: 0 8px 22px rgba(0, 108, 255, .40);
}
.sk-lm-btn--primary:focus-visible {
    color:      #FFFFFF !important;
    box-shadow: 0 0 0 3px rgba(0, 108, 255, .35);
}
.sk-lm-btn--primary:active {
    color: #FFFFFF !important; transform: translateY(0); filter: brightness(1.02);
}

/* ── WHITE ──────────────────────────────────────────────────────────────── */
.sk-lm-btn--white {
    height:     44px;
    padding:    0 22px;
    background: #FFFFFF;
    color:      #121212 !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .16);
}
.sk-lm-btn--white:hover {
    color:      #006CFF !important;
    background: #f0f6ff;
    transform:  translateY(-1px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, .20);
}
.sk-lm-btn--white:focus-visible {
    color: #006CFF !important; background: #f0f6ff;
    box-shadow: 0 0 0 3px rgba(0, 108, 255, .25), 0 2px 8px rgba(15, 23, 42, .14);
}
.sk-lm-btn--white:active {
    color: #006CFF !important; transform: translateY(0); background: #e8f0fe;
}

/* ── GHOST ──────────────────────────────────────────────────────────────── */
.sk-lm-btn--ghost {
    height:              44px;
    padding:             0 22px;
    background:          rgba(255, 255, 255, .12);
    color:               #FFFFFF !important;
    border:              1.5px solid rgba(255, 255, 255, .45);
    backdrop-filter:     blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.sk-lm-btn--ghost:hover {
    color: #FFFFFF !important; background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .72); transform: translateY(-1px);
}
.sk-lm-btn--ghost:focus-visible {
    color: #FFFFFF !important; border-color: rgba(255, 255, 255, .80);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}
.sk-lm-btn--ghost:active {
    color: #FFFFFF !important; transform: translateY(0); background: rgba(255, 255, 255, .15);
}

.sk-lm-btn--sm  { height: 38px; padding: 0 16px; font-size: .80rem; }
.sk-lm-btn--lg  { height: 50px; padding: 0 28px; font-size: .90rem; }
.sk-lm-btn--full { width: 100%; justify-content: center; }

/* Narrow-screen padding reduction */
@media (max-width: 375px) {
    .sk-lm-btn--primary,
    .sk-lm-btn--white,
    .sk-lm-btn--ghost { padding: 0 16px; font-size: .80rem; }
    .sk-lm-btn--lg    { height: 46px; padding: 0 18px; font-size: .82rem; }
}

/* ── Overflow fix for long CTA text on very narrow screens ─────────────────
   Requirement: text must never wrap AND never overflow. Since those two
   constraints only both hold if the font shrinks to fit, --lg (used for the
   longest CTA, "Get a Free Digital Audit") gets a responsive clamp so it
   scales down smoothly instead of jumping between fixed breakpoints. */
.sk-lm-end__actions .sk-lm-btn--lg {
    font-size: clamp(.74rem, 3.6vw, .90rem);
    padding-left:  clamp(14px, 5vw, 28px);
    padding-right: clamp(14px, 5vw, 28px);
}

@media (max-width: 340px) {
    .sk-lm-btn--lg { height: 44px; }
}


/* ─────────────────────────────────────────────────────────────────────────
   3. BADGE SYSTEM
   ───────────────────────────────────────────────────────────────────────── */

.sk-lm-badge {
    display:        inline-flex;
    align-items:    center;
    gap:            5px;
    height:         25px;
    padding:        0 11px;
    border-radius:  999px !important;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(120deg, rgba(0,108,255,.55), rgba(116,94,255,.35)) border-box;
    border:         1px solid transparent;
    color:          #006CFF !important;
    font-family:    "REM", system-ui, -apple-system, sans-serif;
    font-size:      .70rem;
    font-weight:    700;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space:    nowrap;
    margin:         0 0 12px !important;
}

.sk-lm-badge--light {
    background:
        linear-gradient(rgba(255,255,255,.14), rgba(255,255,255,.14)) padding-box,
        linear-gradient(120deg, rgba(255,255,255,.65), rgba(255,255,255,.30)) border-box;
    color: #FFFFFF !important;
}


/* ─────────────────────────────────────────────────────────────────────────
   4. SCREEN READER UTILITY
   ───────────────────────────────────────────────────────────────────────── */

.sk-lm-sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ─────────────────────────────────────────────────────────────────────────
   5. LM-01 - CONTENT UPGRADE CARD (.sk-lm-cu)
   ───────────────────────────────────────────────────────────────────────── */

.sk-lm-cu {
    position:            relative;
    background:          var(--lm-glass-bg);
    border:              1px solid var(--lm-glass-bdr);
    border-left:         4px solid #006CFF;
    border-radius:       var(--lm-radius-lg);
    box-shadow:          var(--lm-shadow);
    backdrop-filter:     blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    overflow:            hidden;
    transition:          box-shadow .2s ease-out, transform .2s ease-out;
}
.sk-lm-cu:hover { box-shadow: var(--lm-shadow-hov); transform: translateY(-3px); }

.sk-lm-cu__inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: 20px; padding: 22px 24px;
}

.sk-lm-cu__icon {
    flex-shrink: 0; width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(0,108,255,.14), rgba(116,94,255,.10));
    box-shadow: 0 0 0 1px rgba(0,108,255,.18) inset, 0 2px 6px rgba(0,108,255,.12);
    color: #006CFF !important;
}

.sk-lm-cu__body   { flex: 1; min-width: 0; }
.sk-lm-cu__action { flex-shrink: 0; }

.sk-lm-cu__headline {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: 1.02rem; font-weight: 700;
    color: #121212 !important;
    line-height: 1.28; margin: 4px 0 6px !important;
}
.sk-lm-cu__subtext {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .83rem; font-weight: 400;
    color: #6B7280 !important;
    line-height: 1.55; margin: 0 !important;
}


/* ─────────────────────────────────────────────────────────────────────────
   6. LM-02 - AUDIT STRIP BANNER (.sk-lm-strip)
   ───────────────────────────────────────────────────────────────────────── */

.sk-lm-strip {
    position:      relative;
    border-radius: var(--lm-radius-lg);
    background:    linear-gradient(125deg, #0062F0 0%, #006CFF 45%, #745EFF 100%);
    border:        none;
    overflow:      hidden;
    box-shadow:    0 10px 32px rgba(0, 108, 255, .26);
}

.sk-lm-strip::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.sk-lm-strip::after {
    content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.10), transparent 70%);
    right: -90px; top: -120px; pointer-events: none;
}

.sk-lm-strip__inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between;
    gap: 28px; padding: 30px 32px;
}

.sk-lm-strip__graphic {
    flex-shrink: 0; width: 128px; height: 128px;
    display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.sk-lm-strip__graphic svg { width: 100%; height: 100%; }

.sk-lm-strip__text { flex: 1; min-width: 0; }

.sk-lm-strip__headline {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: 1.22rem; font-weight: 700;
    color: #FFFFFF !important;                 /* SCREENSHOT BUG FIX */
    line-height: 1.28; margin: 4px 0 8px !important;
}
.sk-lm-strip__subtext {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .85rem; font-weight: 400;
    color: rgba(255, 255, 255, .85) !important; /* SCREENSHOT BUG FIX */
    line-height: 1.58; margin: 0 !important;
}

.sk-lm-strip__action {
    flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.sk-lm-strip__note {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .72rem;
    color: rgba(255, 255, 255, .68) !important;
    text-align: center; margin: 0 !important;
}


/* ─────────────────────────────────────────────────────────────────────────
   7. LM-03 - CONSULTATION CTA (.sk-lm-consult)
   ───────────────────────────────────────────────────────────────────────── */

.sk-lm-consult {
    position:            relative;
    background:          var(--lm-glass-bg);
    border:              1px solid var(--lm-glass-bdr);
    border-radius:       var(--lm-radius-lg);
    box-shadow:          var(--lm-shadow);
    backdrop-filter:     blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    overflow:            hidden;
    transition:          box-shadow .2s ease-out;
}
.sk-lm-consult:hover { box-shadow: var(--lm-shadow-hov); }

.sk-lm-consult__inner {
    display: grid; grid-template-columns: 1fr 250px; gap: 0;
}

.sk-lm-consult__left {
    position: relative; z-index: 1;
    padding: 28px 30px;
    border-right: 1px solid rgba(147, 178, 255, .28);
}

.sk-lm-consult__headline {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: 1.12rem; font-weight: 700;
    color: #121212 !important;
    line-height: 1.32; margin: 4px 0 9px !important;
}
.sk-lm-consult__subtext {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .85rem; font-weight: 400;
    color: #6B7280 !important;
    line-height: 1.58; margin: 0 0 18px !important;
}

.sk-lm-consult__list { display: flex; flex-direction: column; gap: 9px; padding: 0; margin: 0; }
.sk-lm-consult__list li {
    display: flex; align-items: center; gap: 9px;
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .83rem; font-weight: 500;
    color: #374151 !important;
    line-height: 1.3;
}
.sk-lm-consult__list li svg {
    flex-shrink: 0; color: #FFFFFF !important;
    background: linear-gradient(120deg, #006CFF, #745EFF);
    border-radius: 50%; padding: 3px; width: 17px; height: 17px; box-sizing: border-box;
}

.sk-lm-consult__right {
    position: relative;
    padding: 26px 22px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
    background: linear-gradient(160deg, rgba(0,108,255,.06), rgba(116,94,255,.04));
    text-align: center;
    overflow: hidden;
}

.sk-lm-consult__graphic { width: 132px; height: 100px; flex-shrink: 0; }
.sk-lm-consult__graphic svg { width: 100%; height: 100%; }

.sk-lm-consult__trust {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .73rem; font-weight: 600;
    color: #4B5563 !important;
    letter-spacing: .03em; margin: 0 !important;
}

.sk-lm-consult__link {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .78rem; font-weight: 500;
    color: #6B7280 !important;
    text-decoration: none; transition: color .15s;
}
.sk-lm-consult__link:hover { color: #006CFF !important; }


/* ─────────────────────────────────────────────────────────────────────────
   8. LM-04 - END-OF-ARTICLE CTA BLOCK (.sk-lm-end)
   This is the exact component shown broken in Screenshot 1.
   ───────────────────────────────────────────────────────────────────────── */

.sk-lm-end {
    position:      relative;
    border-radius: var(--lm-radius-lg);
    background:    linear-gradient(125deg, #0062F0 0%, #006CFF 40%, #745EFF 100%);
    overflow:      hidden;
    border:        none;
    box-shadow:    0 16px 48px rgba(0, 108, 255, .30);
}

.sk-lm-end::before {
    content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
    right: -100px; top: -130px; pointer-events: none;
}
.sk-lm-end::after {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.sk-lm-end__inner   { position: relative; z-index: 1; padding: 44px 38px; }
.sk-lm-end__content { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }

.sk-lm-end__headline {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: 1.65rem; font-weight: 700;
    color: #FFFFFF !important;                 /* SCREENSHOT BUG FIX */
    line-height: 1.22; max-width: 580px; margin: 0 !important;
}
.sk-lm-end__subtext {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .90rem; font-weight: 400;
    color: rgba(255, 255, 255, .85) !important; /* SCREENSHOT BUG FIX */
    line-height: 1.62; max-width: 540px; margin: 0 !important;
}

.sk-lm-end__stats {
    display: flex; align-items: center; gap: 20px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px; padding: 11px 24px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.sk-lm-end__stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.sk-lm-end__stat strong {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .98rem; font-weight: 700; color: #FFFFFF !important; line-height: 1;
}
.sk-lm-end__stat span {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .70rem; font-weight: 400; color: rgba(255,255,255,.72) !important; line-height: 1;
}
.sk-lm-end__stat-divider { width: 1px; height: 28px; background: rgba(255,255,255,.28); flex-shrink: 0; }

.sk-lm-end__actions {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center;
    width: 100%;
}


/* ─────────────────────────────────────────────────────────────────────────
   9. LM-05 - NEWSLETTER (.sk-lm-newsletter)
   ───────────────────────────────────────────────────────────────────────── */

.sk-lm-newsletter {
    position:            relative;
    background:          var(--lm-glass-bg);
    border:              1px solid var(--lm-glass-bdr);
    border-radius:       var(--lm-radius-lg);
    box-shadow:          var(--lm-shadow);
    backdrop-filter:     blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    transition:          box-shadow .2s ease-out;
}
.sk-lm-newsletter:hover { box-shadow: var(--lm-shadow-hov); }

.sk-lm-newsletter__inner {
    position: relative; z-index: 1;
    display: flex; align-items: flex-start; gap: 20px; padding: 26px 28px;
}

.sk-lm-newsletter__icon {
    flex-shrink: 0; width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(116,94,255,.16), rgba(0,108,255,.08));
    box-shadow: 0 0 0 1px rgba(116,94,255,.20) inset, 0 2px 6px rgba(116,94,255,.14);
    color: #745EFF !important;
}

.sk-lm-newsletter__body { flex: 1; min-width: 0; }

.sk-lm-newsletter__headline {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: 1.02rem; font-weight: 700;
    color: #121212 !important;
    line-height: 1.28; margin: 0 0 6px !important;
}
.sk-lm-newsletter__subtext {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .83rem; font-weight: 400;
    color: #6B7280 !important;
    line-height: 1.55; margin: 0 0 15px !important;
}

.sk-lm-newsletter__form { width: 100%; }
.sk-lm-newsletter__row  { display: flex; gap: 8px; align-items: stretch; }

.sk-lm-newsletter__input {
    flex: 1; height: 44px; padding: 0 16px; border-radius: 8px !important;
    border: 1.5px solid #E0E4F0; background: #FFFFFF;
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .84rem; color: #121212 !important; outline: none;
    transition: border-color .15s, box-shadow .15s;
    min-width: 0; box-sizing: border-box;
    -webkit-appearance: none; appearance: none;
}
.sk-lm-newsletter__input::placeholder { color: #9CA3AF; }
.sk-lm-newsletter__input:focus {
    border-color: #006CFF; box-shadow: 0 0 0 3px rgba(0, 108, 255, .12);
}

.sk-lm-newsletter__submit { flex-shrink: 0; position: relative; overflow: hidden; }
.sk-lm-newsletter__spinner { display: none; animation: sk-lm-spin .7s linear infinite; }
.sk-lm-newsletter__form.is-loading .sk-lm-newsletter__submit-label { display: none; }
.sk-lm-newsletter__form.is-loading .sk-lm-newsletter__spinner      { display: block; }
.sk-lm-newsletter__form.is-done    .sk-lm-newsletter__row           { display: none; }

.sk-lm-newsletter__msg {
    display: none; font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .80rem; font-weight: 500; line-height: 1.4;
    margin: 10px 0 0 !important; padding: 8px 14px; border-radius: 8px;
}
.sk-lm-newsletter__msg.is-success { display: block; background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.25); color: #065F46 !important; }
.sk-lm-newsletter__msg.is-error   { display: block; background: rgba(239,68,68,.07);  border: 1px solid rgba(239,68,68,.22);  color: #991B1B !important; }
.sk-lm-newsletter__form.is-done .sk-lm-newsletter__msg { display: block; }

@keyframes sk-lm-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }


/* ─────────────────────────────────────────────────────────────────────────
   10. LM-06 - SIDEBAR CONSULT CARD (.sk-sb-consult)
   ───────────────────────────────────────────────────────────────────────── */

.sk-sb-consult__header {
    display: flex; align-items: center; gap: 8px; padding: 11px 14px;
    background: linear-gradient(120deg, #006CFF 0%, #745EFF 100%);
    border-radius: 12px 12px 0 0;
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .80rem; font-weight: 600; color: #FFFFFF !important; letter-spacing: .04em;
}
.sk-sb-consult__body { padding: 17px 16px 20px; display: flex; flex-direction: column; gap: 11px; }
.sk-sb-consult__headline {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .94rem; font-weight: 700; color: #121212 !important; line-height: 1.3; margin: 0 !important;
}
.sk-sb-consult__text {
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .80rem; font-weight: 400; color: #6B7280 !important; line-height: 1.55; margin: 0 !important;
}
.sk-sb-consult__list { display: flex; flex-direction: column; gap: 8px; padding: 0; margin: 0; }
.sk-sb-consult__list li {
    display: flex; align-items: center; gap: 8px;
    font-family: "REM", system-ui, -apple-system, sans-serif;
    font-size: .78rem; font-weight: 500; color: #374151 !important; line-height: 1.3;
}
.sk-sb-consult__list li svg {
    flex-shrink: 0; color: #FFFFFF !important;
    background: linear-gradient(120deg, #006CFF, #745EFF);
    border-radius: 50%; padding: 3px; width: 16px; height: 16px; box-sizing: border-box;
}


/* ─────────────────────────────────────────────────────────────────────────
   11. CUSTOM INLINE SVG GRAPHIC HOOKS
   ───────────────────────────────────────────────────────────────────────── */

.sk-lm-svg-graphic { display: block; }
.sk-lm-svg-graphic * { vector-effect: non-scaling-stroke; }


/* ─────────────────────────────────────────────────────────────────────────
   12. RESPONSIVE OVERRIDES
   ───────────────────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
    .sk-lm-cu__inner  { flex-direction: column; align-items: flex-start; }
    .sk-lm-cu__action { width: 100%; }
    .sk-lm-cu__action .sk-lm-btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
    .sk-lm-strip__inner    { flex-direction: column; align-items: flex-start; padding: 24px 22px; }
    .sk-lm-strip__graphic  { display: none; }
    .sk-lm-strip__action   { width: 100%; align-items: stretch; }
    .sk-lm-strip__action .sk-lm-btn { width: 100%; justify-content: center; }
    .sk-lm-strip__note     { text-align: left; }
}

@media (max-width: 640px) {
    .sk-lm-consult__inner  { grid-template-columns: 1fr; }
    .sk-lm-consult__left   { border-right: none; border-bottom: 1px solid rgba(147,178,255,.28); padding: 24px 22px 22px; }
    .sk-lm-consult__right  { padding: 22px; }
    .sk-lm-consult__graphic { width: 110px; height: 84px; }
    .sk-lm-consult__right .sk-lm-btn--full { width: 100%; }
}

@media (max-width: 640px) {
    .sk-lm-end__inner        { padding: 30px 22px; }
    .sk-lm-end__headline     { font-size: 1.32rem; }
    .sk-lm-end__stats        { gap: 14px; padding: 9px 18px; border-radius: 12px; flex-wrap: wrap; justify-content: center; }
    .sk-lm-end__stat-divider { display: none; }
    .sk-lm-end__actions      { flex-direction: column; width: 100%; }
    .sk-lm-end__actions .sk-lm-btn { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
    .sk-lm-newsletter__inner  { flex-direction: column; padding: 22px; }
    .sk-lm-newsletter__row    { flex-direction: column; gap: 10px; }
    .sk-lm-newsletter__input  { width: 100%; }
    .sk-lm-newsletter__submit { width: 100%; justify-content: center; }
}

@media (max-width: 360px) {
    .sk-lm-cu__inner,
    .sk-lm-newsletter__inner { padding: 18px; }
    .sk-lm-strip__inner      { padding: 20px 16px; }
    .sk-lm-end__inner        { padding: 24px 16px; }
}