/* Molvox public landing. Standalone: no Bootstrap/KaiAdmin dependency. */

.molvox-landing {
    --ink: #241a15;
    --muted: #7a6a60;
    --paper: #f6f1ea;
    --surface: #fffdfa;
    --line: #e7ddd1;
    --teal: #AC6450;
    --teal-dark: #8A5440;
    --copper-soft: #f2e2d6;
    --coral: #c8654b;
    --amber: #d8a24f;
    --charcoal: #221913;
    --espresso: #1a1310;
    --shadow: 0 30px 70px rgba(52, 33, 22, 0.16);
    --maxw: 1200px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --display: "Fraunces", Georgia, "Times New Roman", serif;

    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.molvox-landing a:not(.l-btn) {
    color: inherit;
    text-decoration: none;
}

.molvox-landing a.l-btn {
    text-decoration: none;
}

.molvox-landing img {
    display: block;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

:where(#producto, #operativa, #control) {
    scroll-margin-top: 88px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

.l-container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.l-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 241, 234, 0.82);
    border-bottom: 1px solid rgba(36, 26, 21, 0.08);
    backdrop-filter: blur(18px);
}

.l-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 22px;
}

.l-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.l-brand img {
    width: 36px;
    height: 36px;
    border-radius: 9px;
}

.l-brand span {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1;
}

.l-nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--muted);
}

.l-nav-links a:hover,
.l-nav-login:hover {
    color: var(--teal);
}

.l-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.l-language-switcher {
    display: inline-flex;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.l-language-switcher a {
    display: grid;
    place-items: center;
    min-width: 38px;
    min-height: 30px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 850;
}

.l-language-switcher a.is-active {
    color: #fff;
    background: var(--charcoal);
}

.l-nav-login {
    font-weight: 760;
    color: var(--ink);
}

.l-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    gap: 9px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.l-btn:hover {
    transform: translateY(-2px);
}

.l-btn-primary {
    color: #fff;
    background: var(--teal);
    box-shadow: 0 14px 32px rgba(138, 84, 64, 0.32);
}

.l-btn-primary:hover {
    background: var(--teal-dark);
    box-shadow: 0 20px 42px rgba(138, 84, 64, 0.4);
}

.l-btn-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.l-btn-ghost:hover {
    color: var(--espresso);
    border-color: #fff;
    background: #fff;
}

.l-btn-lg {
    min-height: 56px;
    padding: 0 30px;
    font-size: 0.86rem;
}

.l-hero {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 90svh;
    max-height: 920px;
    overflow: hidden;
    background-image:
        linear-gradient(88deg, rgba(20, 12, 8, 0.9) 0%, rgba(20, 12, 8, 0.72) 34%, rgba(20, 12, 8, 0.34) 60%, rgba(20, 12, 8, 0.1) 100%),
        var(--hero-img);
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.l-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(251, 250, 247, 0), var(--paper));
    pointer-events: none;
}

.l-hero-inner {
    display: flex;
    align-items: center;
    min-height: inherit;
    padding-top: 44px;
    padding-bottom: 96px;
}

.l-hero-copy {
    position: relative;
    z-index: 1;
    width: min(660px, 100%);
    color: #fff;
}

.l-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f4dcc4;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.l-eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 4px rgba(216, 162, 79, 0.22);
}

.l-hero h1 {
    margin: 26px 0 0;
    font-family: var(--display);
    font-size: clamp(3.4rem, 8vw, 6rem);
    line-height: 0.94;
    font-weight: 500;
    letter-spacing: -0.02em;
    font-optical-sizing: auto;
}

.l-hero-subtitle {
    margin: 22px 0 0;
    max-width: 620px;
    color: #f7ece0;
    font-size: clamp(1.35rem, 2.4vw, 1.7rem);
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.l-hero p.lead {
    margin: 20px 0 0;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.06rem;
    line-height: 1.72;
}

.l-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.l-hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.l-hero-trust svg {
    color: var(--amber);
    flex: none;
}

.l-hero-badge {
    position: absolute;
    right: max(24px, calc((100vw - var(--maxw)) / 2 + 24px));
    bottom: 34px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: min(360px, calc(100vw - 48px));
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(18, 32, 31, 0.78);
    color: #fff;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.l-hero-badge .pulse {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #16211f;
    background: var(--amber);
    flex: none;
}

.l-hero-badge strong {
    display: block;
    font-size: 0.95rem;
}

.l-hero-badge small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.8rem;
}

.l-section {
    padding: 112px 0;
}

.l-section-compact {
    padding-top: 30px;
}

.l-section-split {
    background: var(--copper-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.l-section-head {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.l-section-head-left {
    margin: 0;
    text-align: left;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.kicker::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--teal);
    opacity: 0.55;
}

.l-section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.l-section-head-left {
    align-items: flex-start;
}

.l-section-head h2 {
    margin: 18px 0 0;
    font-family: var(--display);
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.l-section-head p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.l-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.l-card {
    position: relative;
    padding: 40px 34px;
    border-radius: 4px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(52, 33, 22, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.l-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: var(--teal);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s ease;
}

.l-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: var(--shadow);
}

.l-card:hover::before {
    transform: scaleY(1);
}

.l-card-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 26px;
    border-radius: 50%;
    color: var(--teal-dark);
    background: var(--copper-soft);
}

.l-card h3,
.l-step h3 {
    margin: 0 0 12px;
    font-family: var(--display);
    font-size: 1.5rem;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.l-card p,
.l-step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.l-split {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: center;
}

.l-steps {
    display: grid;
    gap: 0;
    counter-reset: step;
}

.l-step {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 26px;
    padding: 30px 0;
    border-top: 1px solid var(--line);
}

.l-step:last-child {
    border-bottom: 1px solid var(--line);
}

.l-step .num {
    counter-increment: step;
    font-family: var(--display);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1;
    color: var(--teal);
    grid-row: span 2;
}

.l-step .num::before {
    content: "0" counter(step);
}

.l-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--line);
}

.l-stat {
    min-height: 168px;
    padding: 40px 28px;
    background: var(--paper);
    text-align: center;
}

.l-stat strong {
    display: block;
    font-family: var(--display);
    color: var(--teal);
    font-size: 3rem;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.l-stat span {
    display: block;
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.5;
}

.l-cta-wrap {
    padding-bottom: 112px;
}

.l-cta {
    position: relative;
    overflow: hidden;
    padding: 88px 40px;
    border-radius: 8px;
    background: var(--espresso);
    color: #fff;
    text-align: center;
}

.l-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 140% at 50% -20%, rgba(172, 100, 80, 0.42), transparent 60%);
    pointer-events: none;
}

.l-cta > * {
    position: relative;
}

.l-cta h2 {
    max-width: 760px;
    margin: 0 auto;
    font-family: var(--display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.l-cta p {
    max-width: 600px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.06rem;
    line-height: 1.7;
}

.l-cta .l-hero-cta {
    justify-content: center;
    margin-top: 38px;
}

.l-showcase {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 64px;
    align-items: center;
}

.l-showcase-media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
}

.l-showcase-media::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(36, 26, 21, 0.08);
    border-radius: inherit;
    pointer-events: none;
}

.l-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.l-showcase:hover .l-showcase-media img {
    transform: scale(1.05);
}

.l-checklist {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.l-checklist li {
    position: relative;
    padding-left: 34px;
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.5;
}

.l-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--copper-soft);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 6 9 17l-5-5' stroke='%238A5440' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.l-photoband {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 62svh;
    padding: 90px 0;
    overflow: hidden;
    background-image:
        linear-gradient(180deg, rgba(20, 12, 8, 0.62), rgba(20, 12, 8, 0.42)),
        var(--band-img);
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
}

.l-photoband-inner {
    max-width: 820px;
}

.l-photoband .kicker {
    color: #f4dcc4;
}

.l-photoband .kicker::before {
    background: #f4dcc4;
    opacity: 0.7;
}

.l-photoband blockquote {
    margin: 22px 0 0;
    color: #fff;
    font-family: var(--display);
    font-size: clamp(1.9rem, 4.2vw, 3.2rem);
    line-height: 1.16;
    font-weight: 500;
    letter-spacing: -0.015em;
}

.l-photoband blockquote em {
    font-style: italic;
    color: #f0cdb2;
}

.l-footer {
    padding: 56px 0 40px;
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.l-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.l-footer .l-brand img {
    width: 30px;
    height: 30px;
}

.l-footer nav {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.l-footer nav a {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.l-footer nav a:hover {
    color: var(--teal);
}

.l-footer .copy {
    flex-basis: 100%;
    margin: 4px 0 0;
    color: var(--muted);
    text-align: center;
    font-size: 0.86rem;
}

.landing-assistant-root {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    color: var(--ink);
}

.landing-assistant-launcher,
.landing-assistant-panel,
.landing-assistant-chip,
.landing-assistant-send,
.landing-assistant-icon-button,
.landing-assistant-input {
    font: inherit;
}

.landing-assistant-launcher {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 188px;
    min-height: 52px;
    padding: 8px 15px 8px 8px;
    border: 4px solid #fff;
    border-radius: 999px;
    background: var(--teal);
    color: #fff;
    box-shadow: 0 18px 45px rgba(18, 32, 31, 0.24);
    cursor: pointer;
    transition: transform 0.22s ease, opacity 0.18s ease, visibility 0.18s ease;
}

.landing-assistant-launcher:hover,
.landing-assistant-launcher:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.landing-assistant-root.is-open .landing-assistant-launcher {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.landing-assistant-launcher-avatar,
.landing-assistant-header-logo {
    display: grid;
    place-items: center;
    background: #fff;
    flex: none;
}

.landing-assistant-launcher-avatar {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.landing-assistant-launcher-avatar::after {
    content: "";
    position: absolute;
    right: 1px;
    bottom: 1px;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--amber);
}

.landing-assistant-launcher-avatar img {
    width: 25px;
    height: 25px;
}

.landing-assistant-launcher-copy {
    display: grid;
    gap: 2px;
    text-align: left;
}

.landing-assistant-launcher-copy strong {
    font-size: 0.84rem;
    line-height: 1.1;
    white-space: nowrap;
}

.landing-assistant-launcher-copy small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.7rem;
    line-height: 1.1;
    white-space: nowrap;
}

.landing-assistant-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto auto;
    width: min(350px, calc(100vw - 28px));
    height: min(520px, calc(100dvh - 92px));
    overflow: hidden;
    border: 1px solid rgba(18, 32, 31, 0.14);
    border-radius: 8px;
    background: #f7f2ea;
    box-shadow: 0 26px 70px rgba(18, 32, 31, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(16px, 18px, 0) scale(0.92);
    transform-origin: bottom right;
    transition: opacity 0.26s ease, transform 0.3s ease;
}

.landing-assistant-root.is-open .landing-assistant-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
}

.landing-assistant-panel[hidden] {
    display: none !important;
}

.landing-assistant-header {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 14px 16px;
    color: #fff;
    background: var(--charcoal);
}

.landing-assistant-header-logo {
    width: 42px;
    height: 42px;
    border-radius: 8px;
}

.landing-assistant-header-logo img {
    width: 32px;
    height: 32px;
}

.landing-assistant-header-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.landing-assistant-header-copy strong {
    font-size: 1rem;
    line-height: 1.15;
}

.landing-assistant-header-copy small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
}

.landing-assistant-icon-button {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    margin-left: auto;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
}

.landing-assistant-icon-button:hover,
.landing-assistant-icon-button:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.landing-assistant-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    padding: 16px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.landing-assistant-message {
    display: flex;
}

.landing-assistant-message-user {
    justify-content: flex-end;
}

.landing-assistant-message-assistant {
    justify-content: flex-start;
}

.landing-assistant-bubble {
    max-width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.45;
    white-space: pre-wrap;
}

.landing-assistant-message-user .landing-assistant-bubble {
    color: #fff;
    background: var(--teal);
}

.landing-assistant-message-assistant .landing-assistant-bubble {
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(18, 32, 31, 0.08);
}

.landing-assistant-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 10px;
}

.landing-assistant-chip {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(15, 118, 110, 0.24);
    border-radius: 999px;
    color: var(--teal-dark);
    background: #fff;
    font-size: 0.82rem;
    font-weight: 760;
    cursor: pointer;
}

.landing-assistant-whatsapp {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 16px;
    border-top: 1px solid rgba(18, 32, 31, 0.08);
    color: var(--muted);
    font-size: 0.82rem;
}

.landing-assistant-whatsapp a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal-dark);
    font-weight: 800;
}

.landing-assistant-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid rgba(18, 32, 31, 0.08);
    background: #fff;
}

.landing-assistant-input {
    width: 100%;
    min-height: 42px;
    max-height: 120px;
    padding: 10px 12px;
    resize: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    outline: none;
}

.landing-assistant-input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.landing-assistant-send {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--teal);
    cursor: pointer;
}

.landing-assistant-send:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

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

.demo-wrap {
    padding-top: 54px;
    padding-bottom: 72px;
}

.demo-head {
    max-width: 720px;
    margin: 0 auto 26px;
    text-align: center;
}

.demo-head .l-eyebrow {
    color: #ffe1bd;
    background: var(--charcoal);
}

.demo-head h1 {
    margin: 18px 0 0;
    font-size: 2.45rem;
    line-height: 1.12;
}

.demo-head .lead {
    margin: 14px auto 0;
    max-width: 620px;
    color: var(--muted);
    line-height: 1.62;
}

.demo-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
}

.demo-unavailable {
    text-align: center;
}

.demo-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0;
    margin: 0 0 20px;
    list-style: none;
}

.demo-steps li {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 780;
}

.demo-steps li.is-active {
    color: var(--teal-dark);
    border-color: rgba(15, 118, 110, 0.3);
    background: #e3f2ef;
}

.demo-step-num {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    color: #fff;
    background: var(--charcoal);
    font-size: 0.78rem;
}

.demo-summary {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.demo-summary-chip,
.demo-back,
.demo-cal-nav {
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    font: inherit;
    font-weight: 760;
    cursor: pointer;
}

.demo-summary-chip {
    min-height: 34px;
    padding: 0 12px;
}

.demo-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.demo-cal-head strong {
    font-size: 1.08rem;
}

.demo-cal-nav {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
}

.demo-cal-weekdays,
.demo-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.demo-cal-weekdays {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.demo-cal-day {
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    font: inherit;
    font-weight: 820;
    cursor: pointer;
}

.demo-cal-day:hover,
.demo-cal-day.is-selected {
    border-color: rgba(15, 118, 110, 0.34);
    background: #e3f2ef;
}

.demo-cal-day.is-muted {
    color: #a3aaa7;
    background: #f5f4f0;
}

.demo-cal-day:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.demo-step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.demo-back {
    min-height: 36px;
    padding: 0 12px;
}

.demo-panel-title {
    margin: 0;
    font-size: 1.25rem;
}

.demo-slots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.demo-slot {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 820;
    cursor: pointer;
}

.demo-slot:hover,
.demo-slot.is-selected {
    color: #fff;
    border-color: var(--teal);
    background: var(--teal);
}

.demo-form-hint {
    margin: 0 0 16px;
    color: var(--muted);
}

.demo-form {
    display: grid;
    gap: 14px;
}

.demo-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 760;
}

.demo-form input {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font: inherit;
    outline: none;
}

.demo-form input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.demo-form-error {
    margin: 0;
    color: #a33a2f;
    font-weight: 760;
}

.demo-confirm {
    text-align: center;
}

.demo-confirm-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 8px;
    color: var(--teal);
    background: #e3f2ef;
}

.demo-confirm h2 {
    margin: 0;
}

.demo-confirm p {
    color: var(--muted);
}

@media (max-width: 980px) {
    .l-nav-links {
        display: none;
    }

    .l-nav-inner {
        min-height: 66px;
    }

    .l-hero {
        min-height: 82svh;
        background-image:
            linear-gradient(180deg, rgba(20, 12, 8, 0.84) 0%, rgba(20, 12, 8, 0.66) 58%, rgba(20, 12, 8, 0.4) 100%),
            var(--hero-img);
        background-position: 58% center;
    }

    .l-grid-3,
    .l-stats,
    .l-split,
    .l-showcase {
        grid-template-columns: 1fr;
    }

    .l-split {
        gap: 40px;
    }

    .l-showcase {
        gap: 34px;
    }

    .l-showcase-media {
        order: -1;
        aspect-ratio: 16 / 10;
    }

    .l-photoband {
        background-attachment: scroll;
    }

    .l-section-head-left {
        text-align: center;
        align-items: center;
        margin: 0 auto 40px;
    }

    .l-section-head-left .kicker {
        justify-content: center;
    }

    .demo-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .l-container {
        padding: 0 18px;
    }

    .l-nav-actions .l-btn,
    .l-nav-login {
        display: none;
    }

    .l-hero {
        min-height: 76svh;
        max-height: none;
    }

    .l-hero-inner {
        align-items: flex-start;
        padding-top: 58px;
        padding-bottom: 120px;
    }

    .l-hero p.lead {
        font-size: 0.98rem;
    }

    .l-hero-cta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .l-hero-badge {
        right: 18px;
        left: 18px;
        bottom: 24px;
        max-width: none;
    }

    .l-section {
        padding: 74px 0;
    }

    .l-cta {
        padding: 60px 26px;
    }

    .l-card {
        padding: 20px;
    }

    .l-step {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 18px;
    }

    .l-step .num {
        width: 36px;
        height: 36px;
    }

    .l-stat {
        min-height: 108px;
    }

    .l-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .l-footer .copy {
        text-align: left;
    }

    .landing-assistant-root {
        right: 14px;
        bottom: 14px;
    }

    .demo-wrap {
        padding-top: 36px;
    }

    .demo-head h1 {
        font-size: 1.8rem;
    }

    .demo-card {
        padding: 16px;
    }

    .demo-steps {
        grid-template-columns: 1fr;
    }

    .demo-cal-weekdays,
    .demo-cal-grid {
        gap: 5px;
    }

    .demo-cal-day {
        min-height: 42px;
    }

    .demo-slots {
        grid-template-columns: 1fr;
    }
}
