/**
 * Webinars / events landing — scoped (see html-template/event.md + self_grow_evetns.html reference).
 * Do not leak globals outside .lp-webinar-landing.
 */
.lp-webinar-landing {
    --wb-text: #0d1321;
    --wb-text-accent: #273b09;
    --wb-yellow: #d0e562;
    --wb-orange: #ff7f11;
    --wb-bg: #fbfdf8;
    --wb-white: #ffffff;
    --wb-grey-light: #f0f2ea;
    --wb-grey-mid: #c8ccbf;
    --wb-muted: #5a6555;
    --wb-hero-bg: #0d1321;
    --wb-font: 'DM Sans', system-ui, sans-serif;
    --wb-font-display: 'IBM Plex Sans', system-ui, sans-serif;

    font-family: var(--wb-font);
    color: var(--wb-text);
    background: var(--wb-bg);
    line-height: 1.65;
    overflow-x: clip;
}

.lp-webinar-landing *,
.lp-webinar-landing *::before,
.lp-webinar-landing *::after {
    box-sizing: border-box;
}

.lp-webinar-landing .wb-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 5%;
}

.lp-webinar-landing .wb-section {
    padding: clamp(56px, 8vw, 90px) 0;
}

.lp-webinar-landing .wb-label {
    display: inline-block;
    background: var(--wb-yellow);
    color: var(--wb-text-accent);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1rem;
    font-family: var(--wb-font-display);
}

.lp-webinar-landing .wb-label--orange {
    background: var(--wb-orange);
    color: var(--wb-white);
}

.lp-webinar-landing .wb-label--dark {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
}

.lp-webinar-landing h2.wb-heading {
    font-family: var(--wb-font-display);
    font-size: clamp(1.65rem, 3.5vw, 2.45rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    color: inherit;
}

.lp-webinar-landing .wb-center {
    text-align: center;
}

.lp-webinar-landing .wb-max-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.lp-webinar-landing .wb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.6rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
    text-decoration: none;
    border: 2px solid transparent;
    font-family: var(--wb-font);
}

.lp-webinar-landing .wb-btn--yellow {
    background: var(--wb-yellow);
    color: var(--wb-text-accent);
    border-color: var(--wb-yellow);
}
.lp-webinar-landing .wb-btn--yellow:hover {
    background: #bdd44e;
    transform: translateY(-1px);
    color: var(--wb-text-accent);
}

.lp-webinar-landing .wb-btn--orange {
    background: var(--wb-orange);
    color: var(--wb-white);
    border-color: var(--wb-orange);
}
.lp-webinar-landing .wb-btn--orange:hover {
    background: #e06b00;
    transform: translateY(-1px);
    color: var(--wb-white);
}

.lp-webinar-landing .wb-btn--ghost {
    background: transparent;
    color: var(--wb-white);
    border-color: rgba(255, 255, 255, 0.35);
}
.lp-webinar-landing .wb-btn--ghost:hover {
    border-color: var(--wb-yellow);
    color: var(--wb-yellow);
}

.lp-webinar-landing .wb-btn--ghost-dark {
    background: transparent;
    color: var(--wb-text-accent);
    border-color: var(--wb-text-accent);
}
.lp-webinar-landing .wb-btn--ghost-dark:hover {
    background: var(--wb-text-accent);
    color: var(--wb-white);
}

.lp-webinar-landing .wb-btn--lg {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
    border-radius: 12px;
}

.lp-webinar-landing .wb-btn--block {
    width: 100%;
}

/* ─── HERO ─── */
.lp-webinar-landing .wb-hero {
    background: var(--wb-hero-bg);
    color: var(--wb-white);
    min-height: min(96vh, 920px);
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    padding: clamp(48px, 8vw, 72px) 5% clamp(48px, 6vw, 72px);
    position: relative;
    overflow: hidden;
}

.lp-webinar-landing .wb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 70% 45%, rgba(208, 229, 98, 0.09) 0%, transparent 70%),
        radial-gradient(ellipse 45% 55% at 18% 78%, rgba(255, 127, 17, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.lp-webinar-landing .wb-hero__content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.lp-webinar-landing .wb-hero__content h1 {
    font-family: var(--wb-font-display);
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 900;
    line-height: 1.08;
    margin: 0;
    letter-spacing: -0.02em;
}

.lp-webinar-landing .wb-hero__content h1 em {
    font-style: normal;
    color: var(--wb-yellow);
}

.lp-webinar-landing .wb-hero__sub {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.68);
    margin: 1.35rem 0 1.75rem;
    max-width: 34rem;
    line-height: 1.65;
}

.lp-webinar-landing .wb-hero__btns {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.lp-webinar-landing .wb-hero__tags {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-top: 2.25rem;
}

.lp-webinar-landing .wb-hero__tag {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 5px 13px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.68);
}

.lp-webinar-landing .wb-hero__visual {
    flex: 1;
    max-width: 460px;
    min-width: 260px;
    position: relative;
    z-index: 1;
}

.lp-webinar-landing .wb-widget {
    background: #17202e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.lp-webinar-landing .wb-widget__head {
    background: #1e2a3a;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lp-webinar-landing .wb-widget__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.lp-webinar-landing .wb-widget__dot--r { background: #ff5f56; }
.lp-webinar-landing .wb-widget__dot--y { background: #febc2e; }
.lp-webinar-landing .wb-widget__dot--g { background: #28c840; }

.lp-webinar-landing .wb-widget__bar-title {
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-webinar-landing .wb-live-pill {
    margin-left: auto;
    background: var(--wb-orange);
    color: var(--wb-white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.lp-webinar-landing .wb-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wb-white);
    animation: wb-blink 1s infinite;
}

@keyframes wb-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

.lp-webinar-landing .wb-widget__stage {
    background: linear-gradient(135deg, #1a2640 0%, #0f1825 100%);
    padding: 1.5rem 1.25rem 1.25rem;
}

.lp-webinar-landing .wb-presenter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lp-webinar-landing .wb-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--wb-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--wb-white);
    background: var(--wb-text-accent);
    flex-shrink: 0;
}

.lp-webinar-landing .wb-presenter strong {
    display: block;
    color: var(--wb-white);
    font-size: 0.92rem;
}

.lp-webinar-landing .wb-presenter span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
}

.lp-webinar-landing .wb-widget__title {
    color: var(--wb-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.lp-webinar-landing .wb-widget__stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lp-webinar-landing .wb-wstat {
    text-align: center;
    min-width: 4.5rem;
}

.lp-webinar-landing .wb-wstat strong {
    display: block;
    color: var(--wb-yellow);
    font-size: 1.2rem;
    font-weight: 900;
    font-family: var(--wb-font-display);
}

.lp-webinar-landing .wb-wstat span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
}

.lp-webinar-landing .wb-widget__chat {
    padding: 0 1.25rem 0.75rem;
    max-height: 88px;
    overflow: hidden;
}

.lp-webinar-landing .wb-chat-row {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 5px;
    font-size: 0.74rem;
}

.lp-webinar-landing .wb-chat-name {
    font-weight: 700;
    color: var(--wb-yellow);
    flex-shrink: 0;
}

.lp-webinar-landing .wb-chat-text {
    color: rgba(255, 255, 255, 0.58);
}

.lp-webinar-landing .wb-widget__foot {
    padding: 0.85rem 1.25rem;
    display: flex;
    gap: 0.45rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-webinar-landing .wb-wbtn {
    flex: 1;
    padding: 0.55rem 0.35rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: default;
    font-family: var(--wb-font);
}

.lp-webinar-landing .wb-wbtn--main {
    background: var(--wb-yellow);
    color: var(--wb-text-accent);
}

.lp-webinar-landing .wb-wbtn--ghost {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-webinar-landing .wb-float {
    position: absolute;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.82rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    z-index: 2;
}

.lp-webinar-landing .wb-float--tr {
    top: -12px;
    left: -8px;
    background: var(--wb-orange);
    color: var(--wb-white);
    padding: 0.55rem 0.95rem;
    line-height: 1.35;
    max-width: 160px;
}

.lp-webinar-landing .wb-float--br {
    bottom: -14px;
    right: -10px;
    background: var(--wb-yellow);
    color: var(--wb-text-accent);
    padding: 0.65rem 1rem;
}

.lp-webinar-landing .wb-float--br span {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    font-family: var(--wb-font-display);
    margin-top: 2px;
}

/* Advantages */
.lp-webinar-landing .wb-advantages {
    background: var(--wb-bg);
}

.lp-webinar-landing .wb-adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.35rem;
    margin-top: 2.5rem;
}

.lp-webinar-landing .wb-adv-card {
    background: var(--wb-white);
    border: 1.5px solid var(--wb-grey-light);
    border-radius: 16px;
    padding: 1.65rem;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.lp-webinar-landing .wb-adv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.lp-webinar-landing .wb-adv-card--y::after { background: var(--wb-yellow); }
.lp-webinar-landing .wb-adv-card--o::after { background: var(--wb-orange); }
.lp-webinar-landing .wb-adv-card--g::after { background: var(--wb-text-accent); }

.lp-webinar-landing .wb-adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.lp-webinar-landing .wb-adv-num {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--wb-grey-light);
    line-height: 1;
    font-family: var(--wb-font-display);
}

.lp-webinar-landing .wb-adv-icon {
    font-size: 1.9rem;
    margin-bottom: 0.85rem;
}

.lp-webinar-landing .wb-adv-card h3 {
    font-family: var(--wb-font-display);
    font-size: 1.08rem;
    font-weight: 700;
    margin: 0 0 0.45rem;
    color: var(--wb-text);
}

.lp-webinar-landing .wb-adv-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--wb-muted);
    line-height: 1.6;
}

/* Trust */
.lp-webinar-landing .wb-trust {
    background: var(--wb-text-accent);
    color: var(--wb-white);
    padding: clamp(48px, 7vw, 72px) 5%;
}

.lp-webinar-landing .wb-trust .wb-heading {
    color: var(--wb-white);
}

.lp-webinar-landing .wb-trust-inner {
    display: flex;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.lp-webinar-landing .wb-trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    flex: 1;
    min-width: 260px;
}

.lp-webinar-landing .wb-trust-box {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1.25rem;
}

.lp-webinar-landing .wb-trust-box strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--wb-yellow);
    font-family: var(--wb-font-display);
    line-height: 1.1;
}

.lp-webinar-landing .wb-trust-box span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.62);
}

.lp-webinar-landing .wb-trust-logos {
    flex: 1;
    min-width: 260px;
}

.lp-webinar-landing .wb-trust-logos > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.84rem;
    margin: 0 0 1rem;
}

.lp-webinar-landing .wb-logo-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.lp-webinar-landing .wb-logo-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 0.45rem 1rem;
    font-weight: 700;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.82);
}

.lp-webinar-landing .wb-rating-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.35rem;
    flex-wrap: wrap;
}

.lp-webinar-landing .wb-stars {
    color: var(--wb-yellow);
    font-size: 1.05rem;
    letter-spacing: 1px;
}

/* Features */
.lp-webinar-landing .wb-features {
    background: var(--wb-bg);
}

.lp-webinar-landing .wb-feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    margin-top: 3rem;
}

.lp-webinar-landing .wb-feature-block--flip .wb-fb-visual {
    order: -1;
}

.lp-webinar-landing .wb-fb-text .wb-label {
    margin-bottom: 0.65rem;
}

.lp-webinar-landing .wb-fb-text h3 {
    font-family: var(--wb-font-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.65rem;
    color: var(--wb-text);
}

.lp-webinar-landing .wb-fb-text > p {
    color: var(--wb-muted);
    font-size: 0.95rem;
    margin: 0 0 1.25rem;
    line-height: 1.65;
}

.lp-webinar-landing .wb-feat-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-webinar-landing .wb-feat-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--wb-text);
    border-bottom: 1px solid var(--wb-grey-light);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.lp-webinar-landing .wb-feat-list li:last-child {
    border-bottom: none;
}

.lp-webinar-landing .wb-feat-list li::before {
    content: '✓';
    color: var(--wb-text-accent);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

.lp-webinar-landing .wb-screen {
    background: var(--wb-white);
    border-radius: 16px;
    border: 1.5px solid var(--wb-grey-light);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.lp-webinar-landing .wb-screen-media {
    border: 1px solid #dbe2d6;
    border-radius: 16px;
    background: #f7faee;
    min-height: clamp(240px, 30vw, 340px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(13, 19, 33, 0.06);
    margin: 14px;
}

.lp-webinar-landing .wb-screen-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-webinar-landing .wb-screen-placeholder {
    border: 1px dashed #cdd7c9;
    border-radius: 14px;
    background: #fff;
    width: calc(100% - 28px);
    min-height: clamp(210px, 26vw, 300px);
    margin: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.lp-webinar-landing .wb-screen-placeholder strong {
    color: #273b09;
    font-size: 1rem;
    line-height: 1.35;
}

.lp-webinar-landing .wb-screen-placeholder span {
    color: #5d6a61;
    font-size: 0.9rem;
    line-height: 1.45;
}

/* Scenarios */
.lp-webinar-landing .wb-scenarios {
    background: var(--wb-white);
}

.lp-webinar-landing .wb-scen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.lp-webinar-landing .wb-scen-card {
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}

.lp-webinar-landing .wb-scen-card--dark { background: var(--wb-text); color: var(--wb-white); }
.lp-webinar-landing .wb-scen-card--yellow { background: var(--wb-yellow); color: var(--wb-text-accent); }
.lp-webinar-landing .wb-scen-card--light { background: var(--wb-bg); border: 1.5px solid var(--wb-grey-light); color: var(--wb-text); }
.lp-webinar-landing .wb-scen-card--orange { background: var(--wb-orange); color: var(--wb-white); }
.lp-webinar-landing .wb-scen-card--green { background: var(--wb-text-accent); color: var(--wb-white); }

.lp-webinar-landing .wb-scen-emoji {
    font-size: 2.2rem;
    margin-bottom: 0.85rem;
    display: block;
}

.lp-webinar-landing .wb-scen-card h3 {
    font-family: var(--wb-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.lp-webinar-landing .wb-scen-card p {
    font-size: 0.86rem;
    opacity: 0.88;
    line-height: 1.6;
    margin: 0;
}

.lp-webinar-landing .wb-scen-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 3px 11px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
}

.lp-webinar-landing .wb-scen-card--dark .wb-scen-tag { background: rgba(208, 229, 98, 0.15); color: var(--wb-yellow); }
.lp-webinar-landing .wb-scen-card--yellow .wb-scen-tag { background: rgba(39, 59, 9, 0.12); color: var(--wb-text-accent); }
.lp-webinar-landing .wb-scen-card--light .wb-scen-tag { background: var(--wb-grey-light); color: var(--wb-muted); }
.lp-webinar-landing .wb-scen-card--orange .wb-scen-tag { background: rgba(255, 255, 255, 0.2); color: var(--wb-white); }
.lp-webinar-landing .wb-scen-card--green .wb-scen-tag { background: rgba(208, 229, 98, 0.15); color: var(--wb-yellow); }

.lp-webinar-landing .wb-scen-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--wb-yellow) !important;
    color: var(--wb-text-accent) !important;
}

.lp-webinar-landing .wb-scen-cta p {
    opacity: 0.85;
    color: var(--wb-text-accent);
}

.lp-webinar-landing .wb-scen-cta .wb-btn {
    margin-top: 1rem;
    align-self: flex-start;
}

/* Testimonials */
.lp-webinar-landing .wb-testimonials {
    background: var(--wb-bg);
}

.lp-webinar-landing .wb-test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.lp-webinar-landing .wb-test-card {
    background: var(--wb-white);
    border-radius: 16px;
    padding: 1.65rem;
    border: 1.5px solid var(--wb-grey-light);
    position: relative;
}

.lp-webinar-landing .wb-test-card::before {
    content: '"';
    position: absolute;
    top: 0.65rem;
    right: 1.25rem;
    font-size: 3.5rem;
    color: var(--wb-yellow);
    line-height: 1;
    font-family: Georgia, serif;
    opacity: 0.9;
}

.lp-webinar-landing .wb-result-badge {
    display: inline-block;
    background: var(--wb-yellow);
    color: var(--wb-text-accent);
    border-radius: 100px;
    padding: 3px 11px;
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    position: relative;
    z-index: 1;
}

.lp-webinar-landing .wb-result-badge--o {
    background: var(--wb-orange);
    color: var(--wb-white);
}

.lp-webinar-landing .wb-test-text {
    font-size: 0.91rem;
    color: #4a5340;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.lp-webinar-landing .wb-test-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.lp-webinar-landing .wb-tav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--wb-white);
    flex-shrink: 0;
}

.lp-webinar-landing .wb-tav--1 { background: var(--wb-orange); }
.lp-webinar-landing .wb-tav--2 { background: var(--wb-text-accent); }
.lp-webinar-landing .wb-tav--3 { background: #5b8a1a; }

.lp-webinar-landing .wb-test-author strong {
    display: block;
    font-size: 0.86rem;
    color: var(--wb-text);
    line-height: 1.2;
}

.lp-webinar-landing .wb-test-author span {
    display: block;
    font-size: 0.76rem;
    color: #888;
    line-height: 1.2;
}

.lp-webinar-landing .wb-test-author > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-webinar-landing .wb-test-stars {
    margin-left: auto;
    color: var(--wb-yellow);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Pricing */
.lp-webinar-landing .wb-pricing {
    background: var(--wb-text);
    color: var(--wb-white);
    padding: clamp(56px, 8vw, 88px) 5%;
}

.lp-webinar-landing .wb-pricing .wb-heading {
    color: var(--wb-white);
}

.lp-webinar-landing .wb-pricing .wb-max-700 > p {
    color: rgba(255, 255, 255, 0.55);
    margin: 0.75rem 0 0;
    font-size: 0.98rem;
}

.lp-webinar-landing .wb-price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.lp-webinar-landing .wb-p-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    position: relative;
    transition: background 0.2s;
}

.lp-webinar-landing .wb-p-card:hover {
    background: rgba(255, 255, 255, 0.09);
}

.lp-webinar-landing .wb-p-card:hover .wb-p-name,
.lp-webinar-landing .wb-p-card:hover .wb-p-price {
    color: rgba(255, 255, 255, 0.96);
}

.lp-webinar-landing .wb-p-card:hover .wb-p-period,
.lp-webinar-landing .wb-p-card:hover .wb-p-trial-line {
    color: rgba(255, 255, 255, 0.68);
}

.lp-webinar-landing .wb-p-card--featured {
    background: var(--wb-yellow);
    border-color: var(--wb-yellow);
}

.lp-webinar-landing .wb-p-card--featured:hover {
    background: #d8eb7a;
    border-color: #d8eb7a;
}

.lp-webinar-landing .wb-p-card--featured .wb-p-name,
.lp-webinar-landing .wb-p-card--featured .wb-p-price,
.lp-webinar-landing .wb-p-card--featured .wb-p-period,
.lp-webinar-landing .wb-p-card--featured .wb-p-trial-line,
.lp-webinar-landing .wb-p-card--featured .wb-p-features li,
.lp-webinar-landing .wb-p-card--featured .wb-p-features li::before {
    color: var(--wb-text-accent) !important;
}

.lp-webinar-landing .wb-p-card--featured .wb-p-features li {
    border-color: rgba(39, 59, 9, 0.12);
}

.lp-webinar-landing .wb-p-card--featured .wb-p-features li.no {
    color: rgba(39, 59, 9, 0.35) !important;
}

.lp-webinar-landing .wb-p-card--featured .wb-p-features li.no::before {
    color: rgba(39, 59, 9, 0.25) !important;
}

.lp-webinar-landing .wb-p-pop {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wb-orange);
    color: var(--wb-white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 13px;
    border-radius: 100px;
    white-space: nowrap;
}

.lp-webinar-landing .wb-p-name {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.55rem;
}

.lp-webinar-landing .wb-p-price {
    font-size: 2.65rem;
    font-weight: 900;
    color: var(--wb-white);
    line-height: 1;
    font-family: var(--wb-font-display);
}

.lp-webinar-landing .wb-p-price sup {
    font-size: 1.15rem;
    vertical-align: super;
    margin-right: 2px;
}

.lp-webinar-landing .wb-p-period {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.4rem;
}

.lp-webinar-landing .wb-p-trial-line {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.78rem;
    line-height: 1.45;
}

.lp-webinar-landing .wb-p-features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.lp-webinar-landing .wb-p-features li {
    padding: 0.42rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}

.lp-webinar-landing .wb-p-features li:last-child {
    border-bottom: none;
}

.lp-webinar-landing .wb-p-features li::before {
    content: '✓';
    color: var(--wb-yellow);
    font-weight: 900;
    flex-shrink: 0;
    font-size: 0.82rem;
}

.lp-webinar-landing .wb-p-features li.no {
    color: rgba(255, 255, 255, 0.28);
}

.lp-webinar-landing .wb-p-features li.no::before {
    content: '✗';
    color: rgba(255, 255, 255, 0.15);
}

.lp-webinar-landing .wb-p-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.8rem;
    margin-top: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.lp-webinar-landing .wb-pricing-compare {
    text-align: center;
    margin-top: 1.5rem;
}

.lp-webinar-landing .wb-pricing-compare a {
    color: var(--wb-yellow);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(208, 229, 98, 0.4);
}

.lp-webinar-landing .wb-pricing-compare a:hover {
    border-bottom-color: var(--wb-yellow);
}

/* FAQ */
.lp-webinar-landing .wb-faq {
    background: var(--wb-bg);
}

.lp-webinar-landing .wb-faq-list {
    margin-top: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.lp-webinar-landing .wb-faq .faq-accordion-item {
    border: 1px solid #dbe2d6;
    border-radius: 14px;
    margin-bottom: 10px;
    background: var(--wb-white);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(13, 19, 33, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-webinar-landing .wb-faq .faq-accordion-item:hover {
    border-color: #c9d4c2;
    box-shadow: 0 8px 18px rgba(13, 19, 33, 0.06);
}

.lp-webinar-landing .wb-faq .faq-accordion-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    font-size: 1.05rem;
    color: var(--wb-text);
    font-family: var(--wb-font-display);
}

.lp-webinar-landing .wb-faq .faq-accordion-item summary::-webkit-details-marker {
    display: none;
}

.lp-webinar-landing .wb-faq .wb-faq-summary-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f2f6ed;
    color: #273b09;
}

.lp-webinar-landing .wb-faq .wb-faq-summary-text {
    flex: 1;
    min-width: 0;
}

.lp-webinar-landing .wb-faq .wb-faq-summary-arrow {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #273b09;
    color: #fff;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.lp-webinar-landing .wb-faq .faq-accordion-item[open] .wb-faq-summary-arrow {
    transform: rotate(180deg);
    background-color: #ff7f11;
}

.lp-webinar-landing .wb-faq .faq-accordion-item p {
    margin: 0;
    padding: 0 16px 14px 48px;
    font-size: 0.99rem;
    color: var(--wb-muted);
    line-height: 1.6;
}

.lp-webinar-landing .wb-support {
    margin-top: 2.25rem;
    padding: 1.35rem 1.65rem;
    background: var(--wb-yellow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.lp-webinar-landing .wb-support__emoji {
    font-size: 1.75rem;
}

.lp-webinar-landing .wb-support__text {
    flex: 1;
    min-width: 200px;
}

.lp-webinar-landing .wb-support__text strong {
    display: block;
    color: var(--wb-text-accent);
    font-size: 1.02rem;
    margin-bottom: 0.25rem;
}

.lp-webinar-landing .wb-support__text p {
    margin: 0;
    color: var(--wb-text-accent);
    font-weight: 600;
    font-size: 0.92rem;
    opacity: 0.92;
    line-height: 1.5;
}

/* Final CTA */
.lp-webinar-landing .wb-cta {
    background: var(--wb-text);
    text-align: center;
    padding: clamp(72px, 10vw, 110px) 5%;
    position: relative;
    overflow: hidden;
}

.lp-webinar-landing .wb-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(208, 229, 98, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.lp-webinar-landing .wb-cta .wb-label {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    position: relative;
}

.lp-webinar-landing .wb-cta .wb-heading {
    color: var(--wb-white);
    position: relative;
}

.lp-webinar-landing .wb-cta .wb-heading em {
    font-style: normal;
    color: var(--wb-yellow);
}

.lp-webinar-landing .wb-cta > .wb-container > p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.02rem;
    max-width: 520px;
    margin: 1rem auto 2rem;
    position: relative;
    line-height: 1.6;
}

.lp-webinar-landing .wb-cta-btns {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.lp-webinar-landing .wb-cta-note {
    margin-top: 1.35rem;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.8rem;
    position: relative;
}

@media (max-width: 900px) {
    .lp-webinar-landing .wb-hero {
        flex-direction: column;
        min-height: auto;
        align-items: stretch;
    }
    .lp-webinar-landing .wb-hero__visual {
        max-width: 100%;
    }
    .lp-webinar-landing .wb-float--tr,
    .lp-webinar-landing .wb-float--br {
        display: none;
    }
    .lp-webinar-landing .wb-feature-block {
        grid-template-columns: 1fr;
    }
    .lp-webinar-landing .wb-feature-block--flip .wb-fb-visual {
        order: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-webinar-landing .wb-live-dot {
        animation: none;
    }
    .lp-webinar-landing .wb-adv-card:hover,
    .lp-webinar-landing .wb-btn:hover {
        transform: none;
    }
}

/* Persona UX / cognitive load: simplify hero on mobile */
.lp-webinar-landing .wb-hero__secondary-link {
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 1rem;
  align-self: center;
}
.lp-webinar-landing .wb-hero__btns {
  align-items: center;
  gap: 14px;
}
@media (max-width: 767px) {
  .lp-webinar-landing .wb-hide-mobile { display: none !important; }
  .lp-webinar-landing .wb-hero__btns {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-webinar-landing .wb-hero__secondary-link {
    text-align: center;
    padding: 8px 0;
  }
  .lp-webinar-landing .wb-widget__stats {
    grid-template-columns: 1fr;
  }
}
