/* ================================================================
   Innovancy Simulator — Public CSS
   Shared across landing page and wizard
   ================================================================ */

/* --- Design Tokens -------------------------------------------- */
:root {
    --sim-accent: #E52322;
    --sim-accent-dark: #c41e1d;
    --sim-text: #12151d;
    --sim-muted: #6b7280;
    --sim-line: #e5e7eb;
    --sim-bg: #f9fafb;
    --sim-white: #fff;
    --sim-card-r: 14px;
    --sim-btn-r: 10px;
    --sim-font: Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--sim-font);
    color: var(--sim-text);
    background: var(--sim-bg);
    -webkit-font-smoothing: antialiased;
}

/* --- Utilities ------------------------------------------------- */
.sim-wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.sim-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sim-hidden { display: none !important; }

/* --- Badge ----------------------------------------------------- */
.sim-badge {
    display: inline-block;
    color: var(--sim-accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 4px 12px;
    border: 1px solid currentColor;
    border-radius: 999px;
    margin-bottom: 16px;
}

/* --- Buttons --------------------------------------------------- */
.sim-btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: var(--sim-font);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--sim-btn-r);
    padding: 13px 24px;
    text-decoration: none;
    line-height: 1;
    transition: background .15s, box-shadow .15s, transform .1s;
}
.sim-btn:hover { transform: translateY(-1px); }
.sim-btn--primary { background: var(--sim-accent); color: #fff; }
.sim-btn--primary:hover { background: var(--sim-accent-dark); box-shadow: 0 4px 16px rgba(229,35,34,.3); }
.sim-btn--light { background: #eef2f7; color: #111827; }
.sim-btn--light:hover { background: #e2e8f0; }
.sim-btn--ghost { background: transparent; border: 2px solid var(--sim-line); color: var(--sim-text); }
.sim-btn--ghost:hover { border-color: var(--sim-accent); color: var(--sim-accent); }
.sim-btn--sm { padding: 9px 16px; font-size: 13px; }
.sim-btn--lg { padding: 16px 32px; font-size: 16px; }
.sim-btn--block { display: block; width: 100%; text-align: center; }
.sim-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ================================================================
   LANDING PAGE
   ================================================================ */

/* --- Hero ----------------------------------------------------- */
.sim-lp-hero {
    background: #fff;
    border-bottom: 1px solid var(--sim-line);
    padding: 64px 0 56px;
}
.sim-lp-hero__inner {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 48px;
    align-items: center;
}
.sim-lp-hero__title {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -.025em;
}
.sim-lp-hero__sub {
    margin: 0 0 30px;
    font-size: 17px;
    color: var(--sim-muted);
    line-height: 1.7;
    max-width: 560px;
}
.sim-lp-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.sim-lp-hero__reassure {
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--sim-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.sim-lp-hero__stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--sim-bg);
    border: 1px solid var(--sim-line);
    border-radius: 16px;
    overflow: hidden;
}
.sim-stat {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--sim-line);
}
.sim-stat:last-child { border-bottom: none; }
.sim-stat strong { display: block; font-size: 30px; font-weight: 800; color: var(--sim-accent); line-height: 1; margin-bottom: 4px; }
.sim-stat span { font-size: 12px; color: var(--sim-muted); }

/* --- How it works -------------------------------------------- */
.sim-lp-how {
    padding: 64px 0;
    background: var(--sim-bg);
}
.sim-lp-section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -.015em;
}
.sim-lp-section-sub {
    text-align: center;
    color: var(--sim-muted);
    margin: 0 0 40px;
    font-size: 16px;
}
.sim-lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sim-lp-step {
    background: #fff;
    border: 1px solid var(--sim-line);
    border-radius: var(--sim-card-r);
    padding: 28px 22px;
    text-align: center;
    position: relative;
}
.sim-lp-step__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sim-accent);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.sim-lp-step h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.sim-lp-step p { margin: 0; font-size: 14px; color: var(--sim-muted); line-height: 1.6; }

/* --- Service cards ------------------------------------------- */
.sim-lp-services {
    padding: 64px 0;
    background: #fff;
}
.sim-lp-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.sim-lp-service-card {
    border: 1px solid var(--sim-line);
    border-radius: var(--sim-card-r);
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    transition: border-color .15s, box-shadow .15s, transform .15s;
}
.sim-lp-service-card:hover {
    border-color: rgba(229,35,34,.5);
    box-shadow: 0 4px 20px rgba(229,35,34,.08);
    transform: translateY(-2px);
}
.sim-lp-service-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(229,35,34,.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--sim-accent);
}
.sim-lp-service-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.sim-lp-service-card p { margin: 0 0 12px; font-size: 13px; color: var(--sim-muted); line-height: 1.6; }
.sim-lp-service-card ul { margin: 0 0 16px; padding: 0 0 0 16px; font-size: 12px; color: #374151; }
.sim-lp-service-card li { margin-bottom: 4px; }
.sim-lp-service-card__link {
    margin-top: auto;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--sim-accent);
    text-decoration: none;
}
.sim-lp-service-card__link:hover { text-decoration: underline; }

/* --- Social proof strip -------------------------------------- */
.sim-lp-proof {
    padding: 40px 0;
    background: var(--sim-bg);
    border-top: 1px solid var(--sim-line);
    border-bottom: 1px solid var(--sim-line);
}
.sim-lp-proof__inner {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.sim-proof-item { text-align: center; }
.sim-proof-item strong { display: block; font-size: 26px; font-weight: 800; color: var(--sim-accent); }
.sim-proof-item span { font-size: 13px; color: var(--sim-muted); }

/* --- FAQ ----------------------------------------------------- */
.sim-lp-faq { padding: 64px 0; background: var(--sim-bg); }
.sim-lp-faq-list { max-width: 720px; margin: 0 auto; }
.sim-faq-item {
    background: #fff;
    border: 1px solid var(--sim-line);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
}
.sim-faq-item summary {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    list-style: none;
    user-select: none;
}
.sim-faq-item summary::-webkit-details-marker { display: none; }
.sim-faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--sim-muted);
    flex-shrink: 0;
    line-height: 1;
}
.sim-faq-item[open] summary::after { content: '−'; }
.sim-faq-item__body {
    padding: 4px 20px 16px;
    font-size: 14px;
    color: var(--sim-muted);
    line-height: 1.75;
}

/* --- Final CTA ----------------------------------------------- */
.sim-lp-cta {
    padding: 72px 0;
    background: #fff;
    border-top: 1px solid var(--sim-line);
    text-align: center;
}
.sim-lp-cta h2 { margin: 0 0 12px; font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.sim-lp-cta p { margin: 0 0 32px; font-size: 16px; color: var(--sim-muted); }


/* ================================================================
   WIZARD PAGE
   ================================================================ */

/* Header */
.sim-wz-header {
    background: #fff;
    border-bottom: 1px solid var(--sim-line);
    padding: 14px 0;
}
.sim-wz-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
}
.sim-wz-header__title { text-align: center; }
.sim-wz-header__back {
    color: var(--sim-muted);
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.sim-wz-header__back:hover { color: var(--sim-text); }
.sim-wz-header__title { font-size: 15px; font-weight: 700; margin: 0; }

/* Layout */
.sim-wz-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 24px 48px;
    display: grid;
    grid-template-columns: 1fr 296px;
    gap: 24px;
    align-items: start;
}

/* Progress bar */
.sim-wz-progress {
    margin-bottom: 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid var(--sim-line);
    border-radius: 12px;
    padding: 10px 12px 8px;
}
.sim-wz-progress.is-stuck {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
}
.sim-wz-progress__segs {
    display: flex;
    gap: 4px;
    margin-bottom: 7px;
}
.sim-wz-progress__seg {
    flex: 1;
    height: 5px;
    border-radius: 999px;
    background: var(--sim-line);
    transition: background .3s;
}
.sim-wz-progress__seg.is-done { background: var(--sim-accent); }
.sim-wz-progress__seg.is-current { background: rgba(229,35,34,.45); }
.sim-wz-progress__text { font-size: 12px; color: var(--sim-muted); margin: 0; }

/* Fallback: browsers without sticky support */
@supports not ((position: sticky) or (position: -webkit-sticky)) {
    .sim-wz-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        border-radius: 0 !important;
        border-left: 0;
        border-right: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    }

    .sim-wz-layout {
        padding-top: 88px;
    }
}

/* Main card */
.sim-wz-card {
    background: #fff;
    border: 1px solid var(--sim-line);
    border-radius: var(--sim-card-r);
    padding: 28px;
}

/* Step animation */
.sim-wz-step-enter { animation: simStepIn .22s ease; }
@keyframes simStepIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sim-step-title { margin: 0 0 6px; font-size: 20px; font-weight: 700; }
.sim-step-subtitle { margin: 0 0 22px; font-size: 14px; color: var(--sim-muted); }

/* Service type cards */
.sim-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 4px;
}
.sim-type-card {
    border: 2px solid var(--sim-line);
    border-radius: var(--sim-card-r);
    padding: 18px 14px;
    cursor: pointer;
    text-align: center;
    transition: border-color .15s, background .15s, box-shadow .15s;
    display: block;
    user-select: none;
}
.sim-type-card:hover { border-color: rgba(229,35,34,.45); box-shadow: 0 2px 12px rgba(229,35,34,.07); }
.sim-type-card.is-selected { border-color: var(--sim-accent); background: rgba(229,35,34,.04); }
.sim-type-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(229,35,34,.08);
    color: var(--sim-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.sim-type-card__label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.sim-type-card__desc { font-size: 11px; color: var(--sim-muted); margin: 0; line-height: 1.5; }

/* Question block */
.sim-wz-q { margin-bottom: 20px; }
.sim-wz-q__label { font-size: 15px; font-weight: 700; margin: 0 0 5px; display: block; }
.sim-wz-q__help { font-size: 13px; color: var(--sim-muted); margin: 0 0 12px; }

/* Option cards */
.sim-opt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 10px;
}
.sim-opt-card {
    position: relative;
    border: 2px solid var(--sim-line);
    border-radius: 12px;
    padding: 14px 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: border-color .15s, background .15s;
    user-select: none;
}
.sim-opt-card:hover { border-color: rgba(229,35,34,.4); }
.sim-opt-card.is-selected { border-color: var(--sim-accent); background: rgba(229,35,34,.04); }
.sim-opt-card__icon { font-size: 20px; line-height: 1; }
.sim-opt-card__label { font-weight: 600; font-size: 13px; }
.sim-opt-card__desc { font-size: 12px; color: var(--sim-muted); margin: 0; line-height: 1.5; }
.sim-opt-card__check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: var(--sim-accent);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sim-opt-card__check svg { width: 10px; height: 10px; color: #fff; }
.sim-opt-card.is-selected .sim-opt-card__check { display: flex; }

/* Nav */
.sim-wz-nav { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 22px; }
.sim-wz-error { color: #b91c1c; font-size: 13px; margin-top: 8px; min-height: 20px; }

/* Lead form */
.sim-lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.sim-lead-field { display: flex; flex-direction: column; }
.sim-lead-field label { font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.sim-lead-field input {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: var(--sim-font);
    transition: border-color .15s, box-shadow .15s;
    background: #fff;
}
.sim-lead-field input:focus { outline: none; border-color: var(--sim-accent); box-shadow: 0 0 0 3px rgba(229,35,34,.08); }
.sim-lead-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 14px;
    font-size: 13px;
    color: var(--sim-muted);
    line-height: 1.6;
}
.sim-lead-consent input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }

/* Sidebar */
.sim-wz-sidebar {
    position: sticky;
    top: 20px;
    background: #fff;
    border: 1px solid var(--sim-line);
    border-radius: var(--sim-card-r);
    padding: 22px;
}
.sim-wz-sidebar h3 { margin: 0 0 18px; font-size: 15px; font-weight: 700; }
.sim-sb-block {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sim-line);
}
.sim-sb-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sim-sb-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 700;
    color: var(--sim-muted);
    margin-bottom: 4px;
    display: block;
}
.sim-sb-value { font-size: 20px; font-weight: 800; color: var(--sim-accent); }

/* Complexity */
.sim-complexity__segs { display: flex; gap: 4px; margin-bottom: 5px; }
.sim-complexity__seg {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: var(--sim-line);
    transition: background .3s;
}
.sim-complexity--1 .sim-complexity__seg:nth-child(1) { background: #16a34a; }
.sim-complexity--2 .sim-complexity__seg:nth-child(-n+2) { background: #d97706; }
.sim-complexity--3 .sim-complexity__seg { background: var(--sim-accent); }
.sim-complexity__label { font-size: 12px; color: var(--sim-muted); }

/* Chips */
.sim-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.sim-chip {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    cursor: default;
    border: 1px solid transparent;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sim-chip--empty { color: var(--sim-muted); font-style: italic; background: none; }

/* Gate message */
.sim-sb-gate {
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    font-size: 12px;
    color: var(--sim-muted);
    line-height: 1.6;
}
.sim-sb-gate svg { display: block; margin: 0 auto 6px; opacity: .5; }

/* ================================================================
   SITE NAV (shared header)
   ================================================================ */
.sim-nav {
    background: #fff;
    border-bottom: 1px solid var(--sim-line);
    padding: 0;
}
.sim-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.sim-nav__logo { display: flex; align-items: center; text-decoration: none; }
.sim-nav__logo-text { font-size: 20px; font-weight: 800; color: var(--sim-text); }
.sim-nav__right { display: flex; align-items: center; gap: 16px; }

/* ================================================================
   SITE FOOTER (shared footer)
   ================================================================ */
.sim-site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 0 28px;
    margin-top: 0;
}
.sim-site-footer__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 24px 48px;
    align-items: center;
}
.sim-site-footer__brand p {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.6;
    max-width: 300px;
}
.sim-site-footer__logo-text { color: #fff; font-size: 18px; font-weight: 800; }
.sim-site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sim-site-footer__links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color .15s;
}
.sim-site-footer__links a:hover { color: #fff; }
.sim-site-footer__copy {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    text-align: right;
}

/* ================================================================
   THANK-YOU PAGE
   ================================================================ */
.sim-ty-wrap { max-width: 760px; margin: 0 auto; padding: 40px 24px 64px; }
.sim-ty-hero {
    text-align: center;
    padding: 40px 0 32px;
}
.sim-ty-hero__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(22,163,74,.1);
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.sim-ty-hero h1 { margin: 0 0 10px; font-size: 28px; font-weight: 800; }
.sim-ty-hero p { margin: 0; font-size: 16px; color: var(--sim-muted); }
.sim-ty-card {
    background: #fff;
    border: 1px solid var(--sim-line);
    border-radius: var(--sim-card-r);
    padding: 24px;
    margin-bottom: 16px;
}
.sim-ty-card h2 { margin: 0 0 18px; font-size: 17px; font-weight: 700; }
.sim-ty-budget {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 4px;
}
.sim-ty-budget__item { text-align: center; }
.sim-ty-budget__item strong { display: block; font-size: 22px; font-weight: 800; color: var(--sim-text); }
.sim-ty-budget__item.is-recommended strong { color: var(--sim-accent); font-size: 26px; }
.sim-ty-budget__item span { font-size: 12px; color: var(--sim-muted); }
.sim-ty-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--sim-line); }
.sim-ty-meta__item strong { display: block; font-size: 15px; font-weight: 700; }
.sim-ty-meta__item span { font-size: 12px; color: var(--sim-muted); }
.sim-ty-phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.sim-ty-phase {
    background: var(--sim-bg);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}
.sim-ty-phase strong { display: block; font-size: 18px; font-weight: 800; color: var(--sim-accent); }
.sim-ty-phase span { font-size: 12px; color: var(--sim-muted); display: block; margin-top: 2px; }
.sim-ty-steps { counter-reset: steps; display: flex; flex-direction: column; gap: 12px; }
.sim-ty-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid var(--sim-line);
    border-radius: 10px;
}
.sim-ty-step::before {
    counter-increment: steps;
    content: counter(steps);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sim-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sim-ty-step p { margin: 0; font-size: 14px; }
.sim-ty-step strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.sim-ty-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.sim-ty-ref { font-size: 12px; color: var(--sim-muted); margin-top: 8px; }

/* ================================================================
   LEAD STEP — WHAT YOU RECEIVE
   ================================================================ */
.sim-lead-receive {
    background: linear-gradient(135deg, rgba(229,35,34,.04), rgba(229,35,34,.02));
    border: 1px solid rgba(229,35,34,.15);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 22px;
}

.sim-lead-receive__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--sim-accent);
    margin: 0 0 10px;
}

.sim-lead-receive__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sim-lead-receive__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--sim-text);
}

.sim-lead-receive__list li svg {
    flex-shrink: 0;
    stroke: #16a34a;
}

/* ================================================================
   STEP EXPLANATION & TIP
   ================================================================ */
.sim-wz-q__desc {
    font-size: 13px;
    color: var(--sim-muted);
    margin: 0 0 10px;
    line-height: 1.55;
}

.sim-step-explain {
    background: #f0f4ff;
    border-left: 3px solid #6366f1;
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    font-size: 13px;
    color: #374151;
    margin: 0 0 20px;
}

.sim-wz-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fff9e6;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    color: #92400e;
    margin-top: 14px;
    line-height: 1.5;
}

.sim-wz-tip svg {
    flex-shrink: 0;
    margin-top: 1px;
    stroke: #d97706;
}

/* ================================================================
   OPTION BADGE
   ================================================================ */
.sim-opt-badge {
    position: absolute;
    top: -1px;
    right: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 2px 8px;
    border-radius: 0 0 6px 6px;
    background: var(--sim-accent);
    color: #fff;
    line-height: 1.6;
    pointer-events: none;
}

/* ================================================================
   OPTION LEARN MORE (expandable)
   ================================================================ */
.sim-opt-learn {
    margin-top: 8px;
    font-size: 12px;
}

.sim-opt-learn summary {
    cursor: pointer;
    color: var(--sim-accent);
    font-weight: 600;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    user-select: none;
}

.sim-opt-learn summary::-webkit-details-marker { display: none; }

.sim-opt-learn summary::after {
    content: '▾';
    font-size: 10px;
    transition: transform .2s;
}

.sim-opt-learn[open] summary::after {
    transform: rotate(-180deg);
}

.sim-opt-learn__list {
    margin: 6px 0 0 0;
    padding: 0 0 0 16px;
    color: var(--sim-muted);
    line-height: 1.6;
}

.sim-opt-learn__list li { margin-bottom: 2px; }

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

@media (max-width: 1024px) {
    .sim-lp-service-grid { grid-template-columns: repeat(2, 1fr); }
    .sim-type-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .sim-wz-layout { grid-template-columns: 1fr; }
    .sim-wz-sidebar { position: static; }
}

@media (max-width: 768px) {
    .sim-lp-hero__inner { grid-template-columns: 1fr; }
    .sim-lp-hero__stats { flex-direction: row; flex-wrap: wrap; justify-content: space-around; border-radius: 12px; }
    .sim-stat { flex: 1; min-width: 80px; border-right: 1px solid var(--sim-line); border-bottom: none; }
    .sim-stat:last-child { border-right: none; }
    .sim-lp-steps { grid-template-columns: 1fr; }
    .sim-lp-service-grid { grid-template-columns: 1fr; }
    .sim-lead-grid { grid-template-columns: 1fr; }
    .sim-lp-proof__inner { gap: 24px; }
    .sim-site-footer__inner { grid-template-columns: 1fr; gap: 16px; }
    .sim-site-footer__links { flex-direction: row; gap: 16px; }
    .sim-site-footer__copy { text-align: left; }
    .sim-ty-budget { grid-template-columns: 1fr; }
    .sim-ty-phases { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
    .sim-type-grid { grid-template-columns: 1fr 1fr; }
    .sim-opt-grid { grid-template-columns: 1fr; }
    .sim-wz-card { padding: 18px; }
    .sim-lp-hero__actions { flex-direction: column; align-items: flex-start; }
}
