/* Livebooks78 landing page styles */

:root {
    --lb-blue-1: #1976D2;
    --lb-blue-2: #2196F3;
    --lb-blue-light: #4FC3F7;
    --lb-blue-pale: #E3F2FD;
    --lb-blue-border: #BBDEFB;
    --lb-bg-soft: #F5F9FD;
    --lb-bg-hero: #F2F9FF;
    --lb-text-dark: #263238;
    --lb-text-muted: #5a6771;
    --lb-text-faint: #8b98a3;
}

body[data-landing-page="1"] {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--lb-text-dark);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

body[data-landing-page="1"] * {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body[data-landing-page="1"] img {
    max-width: 100%;
    display: block;
}

body[data-landing-page="1"] a {
    color: var(--lb-blue-1);
    text-decoration: none;
    transition: color .2s ease;
}

body[data-landing-page="1"] a:hover {
    color: var(--lb-blue-2);
}

body[data-landing-page="1"] h1,
body[data-landing-page="1"] h2,
body[data-landing-page="1"] h3,
body[data-landing-page="1"] p {
    margin: 0;
    line-height: 1.35;
}

body[data-landing-page="1"] p {
    line-height: 1.6;
}

@keyframes lbHeroIn {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
}

@keyframes lbFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
}

[data-reveal].rv-on {
    opacity: 1;
    transform: none;
}

.lb-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.lb-container--narrow {
    max-width: 820px;
}

.lb-section {
    padding: clamp(56px, 9vw, 90px) 0 clamp(48px, 8vw, 80px);
}

.lb-section--tight {
    padding: 0 0 clamp(56px, 9vw, 90px);
}

.lb-section--soft {
    background: var(--lb-bg-soft);
}

.lb-section-title {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    text-align: center;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    line-height: 1.22;
}

.lb-section-subtitle {
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto 64px;
    padding: 0 12px;
    text-align: center;
    color: var(--lb-text-muted);
    font-size: 17px;
    line-height: 1.65;
}

.lb-section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0 64px;
    gap: 20px;
}

.lb-section-head .lb-section-title,
.lb-section-head .lb-section-subtitle {
    margin: 0;
    max-width: 640px;
}

/* Buttons — specificity must beat body[data-landing-page] a { color } */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all .2s ease;
    white-space: nowrap;
}

.btn-sm {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 15px;
}

.btn-lg {
    padding: 16px 30px;
    border-radius: 14px;
    font-size: 17px;
}

.btn-xl {
    padding: 18px 40px;
    border-radius: 16px;
    font-size: 18px;
}

body[data-landing-page="1"] a.btn-primary,
body[data-landing-page="1"] .btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--lb-blue-2), var(--lb-blue-1));
    box-shadow: 0 8px 24px rgba(33, 150, 243, .35);
}

body[data-landing-page="1"] a.btn-primary:hover,
body[data-landing-page="1"] .btn-primary:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(33, 150, 243, .5);
}

body[data-landing-page="1"] a.btn-outline,
body[data-landing-page="1"] .btn-outline {
    color: var(--lb-blue-1);
    background: #fff;
    border-color: var(--lb-blue-border);
}

body[data-landing-page="1"] a.btn-outline:hover,
body[data-landing-page="1"] .btn-outline:hover {
    color: var(--lb-blue-1);
    border-color: var(--lb-blue-2);
    background: #F0F8FF;
}

body[data-landing-page="1"] a.btn-white,
body[data-landing-page="1"] .btn-white {
    color: #1565C0 !important;
    background: #fff;
    box-shadow: 0 12px 32px rgba(13, 42, 68, .3);
    position: relative;
}

body[data-landing-page="1"] a.btn-white:hover,
body[data-landing-page="1"] .btn-white:hover {
    color: #1565C0 !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(13, 42, 68, .4);
}

/* ===== Header ===== */
.lb-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #EAF2FA;
}

.lb-header__row {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
}

.lb-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--lb-blue-1) !important;
}

.lb-logo__img {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.lb-nav {
    display: flex;
    gap: 24px;
    font-size: 15px;
    font-weight: 600;
    margin-left: auto;
}

.lb-nav a {
    color: #46535c;
}

.lb-nav a:hover {
    color: var(--lb-blue-2);
}

.lb-header__actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
    align-items: center;
}

.lb-burger {
    display: none;
    box-sizing: border-box;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1.5px solid var(--lb-blue-border);
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.lb-burger span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--lb-blue-1);
    display: block;
    transition: transform .25s ease, opacity .2s ease;
}

.lb-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lb-burger.is-open span:nth-child(2) { opacity: 0; }
.lb-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lb-mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #EAF2FA;
    box-shadow: 0 24px 48px rgba(25, 118, 210, .14);
    padding: 10px 16px 18px;
}

.lb-mobile-menu.is-open {
    display: flex;
}

.lb-mobile-menu a {
    padding: 14px 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--lb-text-dark);
    border-bottom: 1px solid #F1F6FB;
}

.lb-mobile-menu__cta {
    margin-top: 8px;
    padding: 13px !important;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    text-align: center;
    color: var(--lb-blue-1) !important;
    border: 1.5px solid var(--lb-blue-border);
    background: #fff;
}

/* ===== Hero ===== */
.lb-hero {
    background: linear-gradient(180deg, var(--lb-bg-hero) 0%, #ffffff 100%);
    position: relative;
}

.lb-hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 20px 80px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

.lb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lb-blue-pale);
    color: var(--lb-blue-1);
    font-weight: 700;
    font-size: 13.5px;
    padding: 7px 14px;
    border-radius: 99px;
}

.lb-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lb-blue-2);
    display: inline-block;
}

.lb-hero__title {
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.18;
    font-weight: 800;
    margin: 22px 0 20px;
    letter-spacing: -0.02em;
}

.lb-hero__highlight {
    background: linear-gradient(135deg, var(--lb-blue-2), #00B0FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lb-hero__subtitle {
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.6;
    color: var(--lb-text-muted);
    margin: 0 0 28px;
    max-width: 520px;
}

.lb-hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.lb-hero__note {
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.45;
    color: var(--lb-text-faint);
}

.lb-hero__media {
    position: relative;
}

.lb-hero__images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.lb-hero__figure {
    margin: 0;
    width: 42%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(25, 118, 210, .18);
    transform: rotate(-3deg);
    background: #fff;
    padding: 8px;
}

.lb-hero__figure--after {
    width: 46%;
    box-shadow: 0 24px 60px rgba(25, 118, 210, .3);
    transform: rotate(2.5deg);
    animation: lbFloat 5s ease-in-out infinite;
}

.lb-hero__figure img {
    border-radius: 14px;
    width: 100%;
}

.lb-hero__figure figcaption {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--lb-text-faint);
    padding: 8px 0 2px;
}

.lb-hero__figure--after figcaption {
    color: var(--lb-blue-1);
}

.lb-hero__arrow {
    flex-shrink: 0;
}

.lb-chip {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 800;
    color: var(--lb-blue-1);
    box-shadow: 0 10px 30px rgba(25, 118, 210, .2);
}

.lb-chip--styles {
    top: -14px;
    right: 2%;
}

.lb-chip--fast {
    bottom: -10px;
    left: 0;
}

/* ===== Counters ===== */
.lb-counters {
    background: linear-gradient(135deg, var(--lb-blue-1), var(--lb-blue-2));
    color: #fff;
}

.lb-counters__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 44px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    text-align: center;
}

.lb-counter__value {
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.lb-counter__label {
    font-size: 16px;
    opacity: .85;
    font-weight: 600;
}

/* ===== How it works ===== */
.lb-how__wrap {
    position: relative;
}

.lb-how__line {
    position: absolute;
    top: 34px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, var(--lb-blue-border), var(--lb-blue-2), var(--lb-blue-border));
    border-radius: 99px;
}

.lb-how__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    position: relative;
}

.lb-how__step {
    background: #fff;
    border: 1.5px solid #EAF2FA;
    border-radius: 20px;
    padding: 26px 22px;
    text-align: center;
    transition: all .25s ease;
}

.lb-how__step:hover {
    border-color: var(--lb-blue-2);
    box-shadow: 0 16px 40px rgba(33, 150, 243, .16);
    transform: translateY(-6px);
}

.lb-how__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--lb-blue-pale), var(--lb-blue-border));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    box-shadow: 0 0 0 6px #fff;
}

.lb-how__num {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--lb-blue-2);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-how__step h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.3;
}

.lb-how__step p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--lb-text-muted);
}

/* ===== Features ===== */
.lb-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 22px;
}

.lb-feature-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px 28px;
    box-shadow: 0 4px 18px rgba(25, 118, 210, .06);
    border: 1.5px solid transparent;
    transition: all .25s ease;
}

.lb-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(25, 118, 210, .15);
    border-color: var(--lb-blue-border);
}

.lb-feature-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--lb-blue-2), var(--lb-blue-1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(33, 150, 243, .3);
}

.lb-feature-card h3 {
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.3;
}

.lb-feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--lb-text-muted);
}

/* ===== Gallery ===== */
.lb-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(46%, 170px), 1fr));
    gap: 16px;
    margin-bottom: clamp(48px, 7vw, 72px);
}

.lb-gallery__item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 6px 20px rgba(25, 118, 210, .12);
    transition: all .25s ease;
    aspect-ratio: 318 / 513;
    background: var(--lb-blue-pale);
    border: none;
    padding: 0;
    display: block;
    width: 100%;
}

.lb-gallery__item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 44px rgba(25, 118, 210, .28);
}

.lb-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-gallery__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px 14px 12px;
    background: linear-gradient(180deg, transparent, rgba(13, 42, 68, .75));
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    text-align: left;
}

.lb-ba {
    max-width: 460px;
    margin: 0 auto;
}

.lb-ba h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 20px;
}

.lb-ba__slider {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(25, 118, 210, .22);
    aspect-ratio: 318 / 513;
    user-select: none;
    touch-action: none;
    cursor: ew-resize;
    background: var(--lb-blue-pale);
}

.lb-ba__after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-ba__before-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    clip-path: inset(0 50% 0 0);
}

.lb-ba__before {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb-ba__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, .35);
    transform: translateX(-50%);
}

.lb-ba__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lb-blue-1);
    font-weight: 800;
    font-size: 15px;
}

.lb-ba__tag {
    position: absolute;
    top: 14px;
    background: rgba(255, 255, 255, .9);
    border-radius: 99px;
    padding: 5px 13px;
    font-size: 13px;
    font-weight: 800;
    color: #46535c;
}

.lb-ba__tag--before {
    left: 14px;
}

.lb-ba__tag--after {
    right: 14px;
    background: rgba(33, 150, 243, .92);
    color: #fff;
}

/* ===== Pricing + calculator ===== */
.lb-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 26px;
    align-items: stretch;
    max-width: 980px;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}

.lb-pricing__card {
    background: linear-gradient(135deg, var(--lb-blue-1), var(--lb-blue-2));
    border-radius: 24px;
    padding: 36px 32px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(25, 118, 210, .3);
}

.lb-pricing__eyebrow {
    font-size: 15px;
    font-weight: 700;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.lb-pricing__price {
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 8px 0 4px;
}

.lb-pricing__price span {
    font-size: 20px;
    font-weight: 700;
    opacity: .85;
}

.lb-pricing__card ul {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 15.5px;
    font-weight: 600;
}

.lb-pricing__card li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lb-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.lb-calculator {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 4px 18px rgba(25, 118, 210, .08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.lb-calculator h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 6px;
}

.lb-calculator p {
    font-size: 15px;
    color: var(--lb-text-muted);
    margin: 0 0 18px;
}

.lb-calculator__value {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.lb-calculator__value span:first-child {
    font-size: 44px;
    font-weight: 800;
    color: var(--lb-blue-1);
    letter-spacing: -0.02em;
}

.lb-calculator__unit {
    font-size: 16px;
    font-weight: 700;
    color: var(--lb-text-faint);
}

.lb-calculator__scale {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--lb-text-faint);
    font-weight: 600;
    margin-top: 6px;
}

.lb-calculator__cost {
    margin-top: 20px;
    background: #F0F8FF;
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lb-calculator__cost span:first-child {
    font-size: 15px;
    font-weight: 700;
    color: #46535c;
}

.lb-calculator__cost span:last-child {
    font-size: 28px;
    font-weight: 800;
    color: var(--lb-blue-1);
    white-space: nowrap;
}

.lb-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--lb-blue-2) var(--fill, 50%), var(--lb-blue-pale) var(--fill, 50%));
    outline: none;
    cursor: pointer;
}

.lb-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--lb-blue-2);
    box-shadow: 0 4px 12px rgba(33, 150, 243, .4);
    cursor: grab;
}

.lb-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--lb-blue-2);
    box-shadow: 0 4px 12px rgba(33, 150, 243, .4);
    cursor: grab;
    border: none;
}

/* ===== For whom ===== */
.lb-audiences__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 22px;
}

.lb-audience-card {
    border: 1.5px solid #EAF2FA;
    border-radius: 22px;
    padding: 32px 28px;
    transition: all .25s ease;
    background: linear-gradient(180deg, #F8FBFE, #ffffff);
}

.lb-audience-card:hover {
    border-color: var(--lb-blue-2);
    box-shadow: 0 18px 40px rgba(33, 150, 243, .14);
    transform: translateY(-5px);
}

.lb-audience-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.lb-audience-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.3;
}

.lb-audience-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--lb-text-muted);
}

/* ===== Tech requirements ===== */
.lb-tech__card {
    background: #263238;
    border-radius: 24px;
    padding: 34px 36px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
}

.lb-tech__card h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.3;
}

.lb-tech__card p {
    font-size: 14px;
    line-height: 1.5;
    color: #a9b6bf;
}

.lb-tech__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.lb-chip-item {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
}

/* ===== FAQ ===== */
.lb-faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lb-faq__item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 3px 14px rgba(25, 118, 210, .06);
    overflow: hidden;
    border: 1.5px solid transparent;
    transition: border-color .25s ease;
}

.lb-faq__item.is-open {
    border-color: var(--lb-blue-border);
}

.lb-faq__question {
    all: unset;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    cursor: pointer;
    font-family: inherit;
}

.lb-faq__question span:first-child {
    font-size: 16.5px;
    font-weight: 800;
    color: var(--lb-text-dark);
}

.lb-faq__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--lb-blue-pale);
    color: var(--lb-blue-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    flex-shrink: 0;
    transition: all .3s ease;
}

.lb-faq__item.is-open .lb-faq__icon {
    background: var(--lb-blue-2);
    color: #fff;
    transform: rotate(45deg);
}

.lb-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.lb-faq__answer p {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--lb-text-muted);
}

/* ===== Final CTA ===== */
.lb-final-cta__card {
    background: linear-gradient(135deg, #1565C0, var(--lb-blue-2) 60%, var(--lb-blue-light));
    border-radius: 28px;
    padding: clamp(48px, 6vw, 76px) 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.lb-final-cta__card::before,
.lb-final-cta__card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    pointer-events: none;
}

.lb-final-cta__card::before {
    width: 380px;
    height: 380px;
    top: -190px;
    right: -110px;
}

.lb-final-cta__card::after {
    width: 260px;
    height: 260px;
    bottom: -140px;
    left: -80px;
    background: rgba(255, 255, 255, .07);
}

.lb-final-cta__card h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.22;
    position: relative;
    text-align: center;
    max-width: 640px;
}

.lb-final-cta__card p {
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
    max-width: 480px;
    width: 100%;
    opacity: .92;
    position: relative;
    text-align: center;
}

.lb-final-cta__card .btn {
    margin-top: 12px;
    position: relative;
}

/* ===== Footer ===== */
.lb-footer {
    background: #263238;
    color: #fff;
}

.lb-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 24px 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: space-between;
    align-items: flex-start;
}

.lb-footer__brand {
    max-width: 300px;
}

.lb-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

.lb-footer__brand p {
    font-size: 14px;
    color: #a9b6bf;
    line-height: 1.6;
}

.lb-footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
}

.lb-footer__heading {
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #7d8b94;
    margin-bottom: 4px;
}

.lb-footer__col a {
    color: #cfd8dd !important;
}

.lb-footer__col a:hover {
    color: var(--lb-blue-light) !important;
}

.lb-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    padding: 18px 24px;
    font-size: 13px;
    color: #7d8b94;
}

/* ===== Lightbox ===== */
.lb-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(13, 26, 38, .82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    cursor: zoom-out;
}

.lb-lightbox[hidden] {
    display: none;
}

.lb-lightbox__figure {
    margin: 0;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.lb-lightbox__figure img {
    max-height: 80vh;
    max-width: 90vw;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.lb-lightbox__figure figcaption {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.lb-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

body.lb-lightbox-open {
    overflow: hidden;
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
    .lb-nav {
        display: none;
    }

    .lb-how__line {
        display: none;
    }

    .lb-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 44px;
        padding-bottom: 60px;
    }

    .lb-burger {
        display: inline-flex;
    }
}

@media (max-width: 600px) {
    [data-btn-login] {
        display: none;
    }

    .lb-header__row {
        padding: 12px 16px;
        gap: 12px;
    }

    [data-btn-register] {
        padding: 9px 14px;
        font-size: 14px;
    }

    .lb-hero__cta a {
        flex: 1 1 100%;
        text-align: center;
    }

    .lb-chip--styles {
        top: -10px;
        right: 0;
    }

    .lb-chip--fast {
        bottom: -14px;
    }
}
