:root {
    --sl-brand: #203f2b;
    --sl-brand-dark: #162b1d;
    --sl-brand-soft: #eef5ef;
    --sl-green: #213c2b;
    --sl-green-soft: #a1bba2;
    --sl-cream: #f7faf6;
    --sl-warm: #fffdf8;
    --sl-ink: #18231c;
    --sl-muted: #6f7b71;
    --sl-line: rgba(32, 63, 43, .14);
    --sl-shadow: 0 24px 70px rgba(32, 63, 43, .12);
    --sl-green-line: rgba(33, 60, 43, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.system-landing {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--sl-ink);
    background: var(--sl-warm);
}

.sl-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.sl-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 18px clamp(20px, 5vw, 56px);
    background: rgba(255, 253, 248, .92);
    border-bottom: 1px solid var(--sl-line);
    backdrop-filter: blur(16px);
}

.sl-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--sl-ink);
    text-decoration: none;
}

.sl-brand__logo {
    display: inline-flex;
    align-items: center;
    width: 112px;
    min-width: 112px;
}

.sl-brand__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.sl-brand strong,
.sl-brand small { display: block; }

.sl-brand small {
    margin-top: 2px;
    color: var(--sl-muted);
    font-size: 13px;
}

.sl-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.sl-nav a {
    color: var(--sl-muted);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.sl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.sl-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--sl-brand), var(--sl-brand-dark));
    box-shadow: 0 14px 30px rgba(32, 63, 43, .24);
}

.sl-btn--ghost {
    color: var(--sl-brand);
    background: #fff;
    border-color: var(--sl-line);
}

.sl-hero {
    padding: clamp(46px, 7vw, 84px) 0 66px;
    background:
        radial-gradient(circle at 8% 8%, rgba(161, 187, 162, .24), transparent 34%),
        radial-gradient(circle at 84% 20%, rgba(33, 60, 43, .08), transparent 28%),
        linear-gradient(180deg, #fffdf8, var(--sl-cream));
    overflow: hidden;
}

.sl-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
    gap: 48px;
    align-items: center;
}

.sl-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--sl-brand);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.sl-hero h1,
.sl-section h2 {
    margin: 0;
    color: var(--sl-ink);
    font-size: clamp(42px, 4.7vw, 64px);
    line-height: 1;
    letter-spacing: 0;
}

.sl-section h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
}

.sl-hero p,
.sl-section__head p,
.sl-modules__copy p,
.sl-demo p {
    color: var(--sl-muted);
    font-size: 18px;
    line-height: 1.7;
}

.sl-actions,
.sl-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.sl-proof {
    gap: 18px;
    color: var(--sl-muted);
    font-size: 14px;
}

.sl-proof strong {
    color: var(--sl-brand);
}

.sl-product-preview {
    position: relative;
    min-height: auto;
}

.sl-platform-mockup {
    position: relative;
    min-height: 540px;
}

.sl-market-window {
    position: absolute;
    right: 0;
    top: 24px;
    width: min(100%, 760px);
    overflow: hidden;
    border: 1px solid rgba(32, 63, 43, .12);
    border-radius: 34px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--sl-shadow);
}

.sl-market-window__top {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 58px;
    padding: 0 20px;
    border-bottom: 1px solid var(--sl-line);
    background: rgba(255, 253, 248, .9);
}

.sl-market-window__top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e17b68;
}

.sl-market-window__top span:nth-child(2) { background: #d8b86b; }
.sl-market-window__top span:nth-child(3) { background: #7fac82; }

.sl-market-window__top strong {
    flex: 1;
    color: var(--sl-brand);
    font-size: 14px;
    text-align: center;
}

.sl-market-window__body {
    padding: 28px;
    background:
        radial-gradient(circle at 90% 8%, rgba(161, 187, 162, .3), transparent 34%),
        linear-gradient(135deg, #fffdf8, #f2f7f2);
}

.sl-market-search {
    max-width: 440px;
    margin-bottom: 22px;
    padding: 20px;
    border: 1px solid var(--sl-line);
    border-radius: 24px;
    background: #fff;
}

.sl-market-search small,
.sl-market-cards span,
.sl-profile-phone span,
.sl-confirm-card span {
    display: block;
    color: var(--sl-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sl-market-search b {
    display: block;
    margin-top: 6px;
    color: var(--sl-ink);
    font-size: 24px;
}

.sl-market-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.sl-market-cards article {
    overflow: hidden;
    border: 1px solid var(--sl-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(32, 63, 43, .08);
}

.sl-market-cards img {
    display: block;
    width: 100%;
    height: 118px;
    object-fit: cover;
}

.sl-market-cards span,
.sl-market-cards strong,
.sl-market-cards small {
    margin-inline: 16px;
}

.sl-market-cards span { margin-top: 16px; color: var(--sl-brand); }

.sl-market-cards strong {
    display: block;
    margin-top: 6px;
    color: var(--sl-ink);
    font-size: 18px;
    line-height: 1.05;
}

.sl-market-cards small {
    display: block;
    margin-top: 8px;
    margin-bottom: 16px;
    color: var(--sl-muted);
}

.sl-market-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(32, 63, 43, .18);
}

.sl-market-kpis span {
    padding: 20px;
    color: rgba(255, 255, 255, .78);
    background: var(--sl-brand);
}

.sl-market-kpis b {
    display: block;
    color: #fff;
    font-size: 24px;
}

.sl-market-kpis small {
    color: rgba(255, 255, 255, .76);
}

.sl-profile-phone {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 260px;
    overflow: hidden;
    border: 10px solid #111812;
    border-radius: 42px;
    background: #fff;
    box-shadow: 0 28px 60px rgba(32, 63, 43, .22);
}

.sl-profile-phone__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    z-index: 2;
    width: 90px;
    height: 24px;
    border-radius: 999px;
    background: #111812;
    transform: translateX(-50%);
}

.sl-profile-phone img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.sl-profile-phone article {
    margin-top: -36px;
    padding: 28px 20px 22px;
    border-radius: 28px 28px 0 0;
    background: #fff;
    position: relative;
}

.sl-profile-phone span {
    color: var(--sl-brand);
}

.sl-profile-phone strong {
    display: block;
    margin-top: 8px;
    font-size: 25px;
}

.sl-profile-phone small {
    display: block;
    margin: 8px 0 18px;
    color: var(--sl-muted);
}

.sl-profile-phone button {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: var(--sl-brand);
    font-weight: 900;
}

.sl-confirm-card {
    position: absolute;
    right: 58px;
    top: 0;
    min-width: 250px;
    padding: 20px 22px;
    border: 1px solid var(--sl-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(32, 63, 43, .14);
}

.sl-confirm-card strong {
    display: block;
    margin: 5px 0;
    color: var(--sl-brand);
    font-size: 20px;
}

.sl-confirm-card small {
    color: var(--sl-muted);
}

.sl-product-desktop {
    position: absolute;
    right: 0;
    top: 18px;
    width: min(100%, 780px);
    overflow: hidden;
    border: 1px solid rgba(32, 63, 43, .12);
    border-radius: 34px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--sl-shadow);
}

.sl-product-desktop__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 58px;
    padding: 0 20px;
    border-bottom: 1px solid var(--sl-line);
    background: rgba(255, 253, 248, .88);
}

.sl-product-desktop__bar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d77b68;
}

.sl-product-desktop__bar span:nth-child(2) { background: #d8bd69; }
.sl-product-desktop__bar span:nth-child(3) { background: #7fac82; }

.sl-product-desktop__bar strong {
    flex: 1;
    color: var(--sl-brand);
    font-size: 14px;
    text-align: center;
}

.sl-product-desktop__body {
    padding: 24px;
    background:
        radial-gradient(circle at 92% 8%, rgba(161, 187, 162, .28), transparent 32%),
        linear-gradient(135deg, #fffdf8, #f1f7f1);
}

.sl-product-hero-card {
    display: grid;
    grid-template-columns: minmax(220px, .9fr) 1.1fr;
    gap: 22px;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--sl-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(32, 63, 43, .08);
}

.sl-product-hero-card img {
    width: 100%;
    height: 210px;
    border-radius: 22px;
    object-fit: cover;
}

.sl-product-hero-card div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.sl-product-hero-card span,
.sl-place-card span,
.sl-schedule-card > span,
.sl-map-card span,
.sl-business-card span,
.sl-booking-card span,
.sl-reserve-phone__sheet span {
    color: var(--sl-brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sl-product-hero-card strong {
    display: block;
    max-width: 360px;
    margin: 10px 0;
    color: var(--sl-ink);
    font-size: 32px;
    line-height: 1;
}

.sl-product-hero-card small,
.sl-place-card small,
.sl-schedule-card small,
.sl-business-card small,
.sl-booking-card small,
.sl-reserve-phone__sheet small {
    color: var(--sl-muted);
    line-height: 1.45;
}

.sl-product-toolbar {
    display: flex;
    gap: 10px;
    margin: 16px 0;
    overflow: hidden;
}

.sl-product-toolbar span {
    padding: 10px 14px;
    border: 1px solid rgba(32, 63, 43, .12);
    border-radius: 999px;
    color: var(--sl-brand);
    background: #fff;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.sl-product-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr .7fr .8fr;
    gap: 12px;
}

.sl-place-card,
.sl-schedule-card,
.sl-map-card {
    min-height: 158px;
    overflow: hidden;
    border: 1px solid var(--sl-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(32, 63, 43, .07);
}

.sl-place-card img {
    width: 100%;
    height: 74px;
    object-fit: cover;
}

.sl-place-card div,
.sl-schedule-card,
.sl-map-card {
    padding: 14px;
}

.sl-place-card strong {
    display: block;
    margin: 6px 0;
    color: var(--sl-ink);
    font-size: 17px;
    line-height: 1.05;
}

.sl-schedule-card {
    display: grid;
    align-content: start;
    gap: 9px;
}

.sl-schedule-card div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(32, 63, 43, .08);
}

.sl-schedule-card b {
    color: var(--sl-brand);
}

.sl-map-card {
    position: relative;
    min-height: 158px;
    background:
        linear-gradient(90deg, rgba(32, 63, 43, .08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(32, 63, 43, .08) 1px, transparent 1px),
        #f7faf6;
    background-size: 26px 26px;
}

.sl-map-card i {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--sl-brand);
    box-shadow: 0 8px 20px rgba(32, 63, 43, .2);
}

.sl-map-card i:nth-of-type(1) { right: 26px; top: 52px; }
.sl-map-card i:nth-of-type(2) { left: 34px; bottom: 36px; }
.sl-map-card i:nth-of-type(3) { right: 58px; bottom: 24px; }

.sl-map-card strong {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    color: var(--sl-brand);
    font-size: 16px;
    line-height: 1.1;
}

.sl-reserve-phone {
    position: absolute;
    left: 6px;
    bottom: 0;
    width: 282px;
    overflow: hidden;
    border: 10px solid #101811;
    border-radius: 44px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(32, 63, 43, .28);
}

.sl-reserve-phone__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    z-index: 2;
    width: 92px;
    height: 24px;
    border-radius: 999px;
    background: #101811;
    transform: translateX(-50%);
}

.sl-reserve-phone__cover {
    height: 228px;
    overflow: hidden;
}

.sl-reserve-phone__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sl-reserve-phone__sheet {
    position: relative;
    margin-top: -34px;
    padding: 26px 20px 20px;
    border-radius: 28px 28px 0 0;
    background: #fff;
}

.sl-reserve-phone__sheet strong {
    display: block;
    margin: 8px 0 6px;
    color: var(--sl-ink);
    font-size: 25px;
}

.sl-reserve-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 18px 0;
}

.sl-reserve-icons b {
    padding: 9px 6px;
    border-radius: 12px;
    color: var(--sl-brand);
    background: var(--sl-brand-soft);
    font-size: 11px;
    text-align: center;
}

.sl-reserve-phone button {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 15px;
    color: #fff;
    background: var(--sl-brand);
    font-weight: 900;
}

.sl-business-card,
.sl-booking-card {
    position: absolute;
    z-index: 3;
    border: 1px solid var(--sl-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 44px rgba(32, 63, 43, .14);
}

.sl-business-card {
    right: 26px;
    bottom: 4px;
    width: 270px;
    padding: 20px 22px;
}

.sl-business-card strong,
.sl-booking-card strong {
    display: block;
    margin: 6px 0;
    color: var(--sl-brand);
    font-size: 20px;
    line-height: 1.08;
}

.sl-booking-card {
    right: 70px;
    top: 0;
    width: 260px;
    padding: 18px 20px;
}

.sl-hero-product-image {
    display: block;
    width: min(100%, 860px);
    margin-left: auto;
    border-radius: 30px;
    box-shadow: var(--sl-shadow);
}

.sl-wide-product-image {
    display: block;
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--sl-shadow);
}

.sl-system-board {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 34px;
    background:
        radial-gradient(circle at 85% 0, rgba(161, 187, 162, .28), transparent 32%),
        rgba(255, 255, 255, .86);
    box-shadow: var(--sl-shadow);
    backdrop-filter: blur(18px);
}

.sl-system-board::before {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(32, 63, 43, .08);
}

.sl-system-board__top,
.sl-system-board__metrics,
.sl-system-board__grid {
    position: relative;
    z-index: 1;
}

.sl-system-board__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.sl-system-board__top span,
.sl-system-card > span {
    display: block;
    color: var(--sl-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sl-system-board__top strong {
    display: block;
    margin-top: 4px;
    color: var(--sl-brand);
    font-size: 26px;
}

.sl-system-board__top a {
    padding: 12px 16px;
    border-radius: 999px;
    color: #fff;
    background: var(--sl-brand);
    font-weight: 900;
    text-decoration: none;
}

.sl-system-board__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.sl-system-board__metrics article,
.sl-system-card {
    border: 1px solid var(--sl-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(32, 63, 43, .08);
}

.sl-system-board__metrics article {
    padding: 18px;
}

.sl-system-board__metrics span {
    color: var(--sl-muted);
    font-size: 13px;
    font-weight: 800;
}

.sl-system-board__metrics strong {
    display: block;
    margin: 6px 0 2px;
    color: var(--sl-brand);
    font-size: 34px;
    line-height: 1;
}

.sl-system-board__metrics small,
.sl-system-card small,
.sl-system-card p {
    color: var(--sl-muted);
}

.sl-system-board__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 12px;
}

.sl-system-card {
    padding: 18px;
}

.sl-system-card--website {
    min-height: 230px;
}

.sl-system-card--website strong {
    display: block;
    margin: 8px 0 14px;
    color: var(--sl-brand);
    font-size: 21px;
}

.sl-mini-landing {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    min-height: 140px;
    padding: 18px;
    border-radius: 18px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(32, 63, 43, .94), rgba(32, 63, 43, .28)),
        linear-gradient(135deg, #a1bba2, var(--sl-green));
}

.sl-mini-landing small,
.sl-mini-landing b {
    display: block;
}

.sl-mini-landing b {
    max-width: 230px;
    margin-top: 6px;
    font-size: 24px;
    line-height: 1;
}

.sl-mini-landing em {
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--sl-brand);
    background: #fff;
    font-style: normal;
    font-weight: 900;
}

.sl-calendar-list {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 10px 12px;
    margin-top: 16px;
}

.sl-calendar-list b {
    color: var(--sl-brand);
}

.sl-calendar-list p {
    margin: 0;
    font-weight: 900;
}

.sl-calendar-list small {
    display: block;
    margin-top: 2px;
}

.sl-system-card--mobile {
    color: #fff;
    background: var(--sl-green);
}

.sl-system-card--mobile span,
.sl-system-card--mobile p {
    color: rgba(255, 255, 255, .72);
}

.sl-system-card--mobile strong {
    display: block;
    margin: 14px 0 4px;
    font-size: 26px;
}

.sl-system-card--mobile button {
    margin-top: 16px;
    border: 0;
    border-radius: 14px;
    padding: 12px 16px;
    color: var(--sl-brand);
    background: #fff;
    font-weight: 900;
}

.sl-funnel-bars {
    display: grid;
    gap: 9px;
    margin: 18px 0 14px;
}

.sl-funnel-bars i {
    display: block;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sl-brand), var(--sl-brand-dark));
}

.sl-browser,
.sl-phone,
.sl-floating {
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: var(--sl-shadow);
    backdrop-filter: blur(18px);
}

.sl-browser {
    position: absolute;
    right: 0;
    top: 32px;
    width: min(100%, 640px);
    overflow: hidden;
    border-radius: 28px;
}

.sl-browser__bar {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 54px;
    padding: 0 18px;
    border-bottom: 1px solid var(--sl-line);
}

.sl-browser__bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #f36d5e;
}

.sl-browser__bar span:nth-child(2) { background: #edc15b; }
.sl-browser__bar span:nth-child(3) { background: #6bbb74; }

.sl-browser__bar strong {
    flex: 1;
    margin-left: 12px;
    color: var(--sl-muted);
    font-size: 13px;
    text-align: center;
}

.sl-browser__hero {
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 44px;
    background:
        linear-gradient(90deg, rgba(255, 253, 248, .95), rgba(255, 253, 248, .48), rgba(32, 63, 43, .14)),
        linear-gradient(135deg, #eef5ef, #a1bba2 52%, #213c2b);
}

.sl-browser__hero h2 {
    max-width: 300px;
    margin: 8px 0 18px;
    color: var(--sl-brand);
    font-size: 40px;
    line-height: 1;
}

.sl-browser__hero small {
    color: var(--sl-brand);
    font-weight: 900;
}

.sl-browser__hero button,
.sl-phone__card button {
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--sl-brand);
    font-weight: 900;
    padding: 13px 18px;
}

.sl-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--sl-green);
    color: rgba(255, 255, 255, .78);
}

.sl-kpis span {
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.sl-kpis strong {
    display: block;
    color: #fff;
    font-size: 24px;
}

.sl-phone {
    position: absolute;
    left: 8px;
    bottom: 18px;
    width: 238px;
    min-height: 430px;
    border-radius: 38px;
    border: 10px solid #151915;
    overflow: hidden;
}

.sl-phone__top {
    width: 80px;
    height: 20px;
    margin: 9px auto -2px;
    border-radius: 999px;
    background: #111;
}

.sl-phone__image {
    height: 170px;
    background: linear-gradient(135deg, var(--sl-brand), var(--sl-green));
}

.sl-phone__card {
    margin: -26px 12px 0;
    padding: 22px 16px;
    border-radius: 24px;
    background: #fff;
}

.sl-phone__card strong {
    display: block;
    font-size: 24px;
    color: var(--sl-ink);
}

.sl-phone__card span {
    display: block;
    margin: 8px 0 18px;
    color: var(--sl-muted);
}

.sl-floating {
    position: absolute;
    display: grid;
    gap: 4px;
    min-width: 220px;
    padding: 18px 20px;
    border-radius: 22px;
}

.sl-floating strong { color: var(--sl-brand); }
.sl-floating span { color: var(--sl-muted); }
.sl-floating--top { right: 48px; top: 0; }
.sl-floating--bottom { left: 154px; bottom: 0; }

.sl-section {
    padding: clamp(64px, 8vw, 108px) 0;
}

.sl-section--band {
    background: var(--sl-green);
    color: #fff;
}

.sl-section--band h2,
.sl-section--band .sl-kicker {
    color: #fff;
}

.sl-section--soft {
    background: var(--sl-cream);
}

.sl-section--visual {
    background:
        linear-gradient(180deg, #fffdf8, #ffffff);
}

.sl-section__head {
    max-width: 800px;
    margin-bottom: 36px;
}

.sl-section__head--compact {
    max-width: 740px;
}

.sl-example-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sl-example {
    overflow: hidden;
    border: 1px solid var(--sl-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(32, 63, 43, .08);
}

.sl-example__media {
    display: grid;
    place-items: center;
    min-height: 220px;
    padding: 26px;
    background:
        radial-gradient(circle at 18% 0, rgba(161, 187, 162, .24), transparent 36%),
        var(--sl-cream);
}

.sl-example__media img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 22px;
    filter: drop-shadow(0 22px 34px rgba(32, 63, 43, .14));
}

.sl-example__body {
    padding: 26px;
}

.sl-example__body span,
.sl-usecase span {
    color: var(--sl-brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sl-example__body h3,
.sl-usecase h3 {
    margin: 8px 0 10px;
    font-size: 26px;
    line-height: 1.05;
}

.sl-example__body p {
    margin: 0;
    color: var(--sl-muted);
    line-height: 1.6;
}

.sl-feature-grid,
.sl-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sl-card {
    border: 1px solid var(--sl-line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(32, 63, 43, .08);
}

.sl-feature {
    padding: 28px;
}

.sl-feature__icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: var(--sl-brand);
    background: var(--sl-brand-soft);
    font-weight: 900;
}

.sl-feature h3,
.sl-plan h3 {
    margin: 22px 0 10px;
    font-size: 24px;
}

.sl-feature p,
.sl-plan li,
.sl-flow small {
    color: var(--sl-muted);
    line-height: 1.6;
}

.sl-flow {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 38px;
    align-items: center;
}

.sl-flow__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.sl-flow__steps article {
    min-height: 190px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
}

.sl-flow__steps span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--sl-brand);
    background: #fff;
    font-weight: 900;
}

.sl-flow__steps strong {
    display: block;
    margin-bottom: 8px;
    font-size: 19px;
}

.sl-flow small {
    color: rgba(255, 255, 255, .76);
}

.sl-usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sl-usecase {
    overflow: hidden;
    border: 1px solid var(--sl-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(32, 63, 43, .08);
}

.sl-usecase img {
    display: block;
    width: 100%;
    height: 210px;
    padding: 22px;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(161, 187, 162, .2), rgba(33, 60, 43, .12));
}

.sl-usecase div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px;
}

.sl-usecase h3 {
    width: 100%;
}

.sl-usecase span {
    display: inline-flex;
    padding: 9px 11px;
    border-radius: 999px;
    background: var(--sl-brand-soft);
    letter-spacing: 0;
    text-transform: none;
}

.sl-modules {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 38px;
}

.sl-module-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sl-module-list span {
    padding: 14px 16px;
    border: 1px solid var(--sl-line);
    border-radius: 999px;
    color: var(--sl-brand);
    background: #fff;
    font-weight: 800;
}

.sl-plan {
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.sl-plan.is-featured {
    color: #fff;
    background: linear-gradient(135deg, var(--sl-brand), var(--sl-brand-dark));
    transform: translateY(-12px);
}

.sl-plan span {
    color: var(--sl-brand);
    font-weight: 900;
}

.sl-plan.is-featured span,
.sl-plan.is-featured h3,
.sl-plan.is-featured strong,
.sl-plan.is-featured li {
    color: #fff;
}

.sl-plan strong {
    margin-bottom: 18px;
    color: var(--sl-brand);
    font-size: 22px;
}

.sl-plan ul {
    flex: 1;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.sl-plan li {
    padding: 10px 0;
    border-bottom: 1px solid var(--sl-line);
}

.sl-plan li::before {
    content: "\2713";
    margin-right: 8px;
    color: var(--sl-green-soft);
    font-weight: 900;
}

.sl-demo {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 38px;
    align-items: start;
}

.sl-demo-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--sl-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--sl-shadow);
}

.sl-demo-form label {
    display: grid;
    gap: 8px;
    color: var(--sl-brand);
    font-weight: 900;
}

.sl-demo-form input,
.sl-demo-form select {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--sl-line);
    border-radius: 16px;
    padding: 0 14px;
    color: var(--sl-ink);
    background: var(--sl-warm);
}

.sl-demo-form .sl-btn,
.sl-demo-form__mail {
    grid-column: 1 / -1;
}

.sl-demo-form__mail {
    color: var(--sl-muted);
    text-align: center;
    text-decoration: none;
}

.sl-footer {
    padding: 34px 0;
    color: rgba(255, 255, 255, .72);
    background: var(--sl-green);
}

.sl-footer .sl-shell {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.sl-footer strong {
    color: #fff;
}

@media (max-width: 980px) {
    .sl-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .sl-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .sl-hero__grid,
    .sl-flow,
    .sl-modules,
    .sl-demo {
        grid-template-columns: 1fr;
    }

    .sl-product-preview {
        min-height: auto;
    }

    .sl-platform-mockup {
        min-height: 720px;
    }

    .sl-product-desktop {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
    }

    .sl-reserve-phone {
        left: 22px;
        bottom: -10px;
    }

    .sl-business-card {
        right: 22px;
        bottom: 16px;
    }

    .sl-booking-card {
        right: 26px;
        top: 24px;
    }

    .sl-market-window {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
    }

    .sl-profile-phone {
        left: 22px;
        bottom: -10px;
    }

    .sl-confirm-card {
        right: 20px;
        top: auto;
        bottom: 56px;
    }

    .sl-example-grid,
    .sl-feature-grid,
    .sl-plan-grid,
    .sl-flow__steps,
    .sl-usecase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 640px) {
    .sl-shell {
        width: min(100% - 28px, 1180px);
    }

    .sl-header {
        padding: 14px;
    }

    .sl-header > .sl-btn {
        display: none;
    }

    .sl-hero {
        padding-top: 38px;
    }

    .sl-hero h1 {
        font-size: 42px;
    }

    .sl-actions .sl-btn {
        width: 100%;
    }

    .sl-product-preview {
        margin-top: 18px;
    }

    .sl-platform-mockup {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .sl-product-desktop,
    .sl-reserve-phone,
    .sl-business-card,
    .sl-booking-card {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .sl-product-desktop {
        border-radius: 26px;
    }

    .sl-product-desktop__body {
        padding: 16px;
    }

    .sl-product-hero-card,
    .sl-product-grid {
        grid-template-columns: 1fr;
    }

    .sl-product-hero-card img {
        height: 190px;
    }

    .sl-product-hero-card strong {
        font-size: 25px;
    }

    .sl-product-toolbar {
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .sl-reserve-phone {
        border-width: 8px;
        border-radius: 34px;
    }

    .sl-booking-card,
    .sl-business-card {
        min-width: 0;
    }

    .sl-market-window,
    .sl-profile-phone,
    .sl-confirm-card {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .sl-market-window {
        border-radius: 26px;
    }

    .sl-market-window__body {
        padding: 16px;
    }

    .sl-market-cards {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
    }

    .sl-market-cards article {
        min-width: 72%;
        scroll-snap-align: start;
    }

    .sl-market-kpis {
        grid-template-columns: 1fr;
    }

    .sl-profile-phone {
        border-width: 8px;
        border-radius: 34px;
    }

    .sl-confirm-card {
        min-width: 0;
    }

    .sl-system-board {
        padding: 14px;
        border-radius: 26px;
    }

    .sl-system-board__top {
        align-items: flex-start;
    }

    .sl-system-board__top strong {
        font-size: 22px;
    }

    .sl-system-board__top a {
        padding: 10px 12px;
        font-size: 13px;
    }

    .sl-system-board__metrics,
    .sl-system-board__grid {
        grid-template-columns: 1fr;
    }

    .sl-system-board__metrics article,
    .sl-system-card {
        padding: 15px;
    }

    .sl-system-board__metrics strong {
        font-size: 28px;
    }

    .sl-mini-landing {
        min-height: 150px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sl-mini-landing b {
        font-size: 22px;
    }

    .sl-example-grid,
    .sl-feature-grid,
    .sl-plan-grid,
    .sl-usecase-grid,
    .sl-flow__steps,
    .sl-demo-form {
        grid-template-columns: 1fr;
    }

    .sl-example__media {
        min-height: 220px;
    }

    .sl-usecase img {
        height: 180px;
    }

    .sl-plan.is-featured {
        transform: none;
    }

    .sl-footer .sl-shell {
        flex-direction: column;
    }
}
