/**
 * BookingPlaner — Landing Page CSS
 *
 * Self-contained. Does NOT depend on app.css or public.css.
 * Mobile-first, custom CSS only, no frameworks.
 *
 * Design System:
 * - Primary: #1e3a5f (Dunkelblau)
 * - Accent: #f59e0b (Gold/Amber)
 * - White, Light Gray backgrounds
 * - System font stack
 */

/* ─── Custom Properties ──────────────────────────────────────── */
:root {
    --lp-primary: #1e3a5f;
    --lp-primary-light: #2d5a8e;
    --lp-primary-dark: #142840;
    --lp-primary-darker: #0c1a2e;
    --lp-accent: #f59e0b;
    --lp-accent-hover: #d97706;
    --lp-accent-light: #fef3c7;
    --lp-success: #10b981;
    --lp-success-light: #d1fae5;
    --lp-text: #1e293b;
    --lp-text-muted: #64748b;
    --lp-text-light: #94a3b8;
    --lp-text-inverse: #f8fafc;
    --lp-border: #e2e8f0;
    --lp-bg: #f8fafc;
    --lp-bg-white: #ffffff;
    --lp-bg-alt: #f1f5f9;
    --lp-radius-sm: 4px;
    --lp-radius-md: 8px;
    --lp-radius-lg: 12px;
    --lp-radius-xl: 16px;
    --lp-radius-full: 9999px;
    --lp-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --lp-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --lp-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --lp-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --lp-transition: 200ms ease;
    --lp-transition-slow: 400ms ease;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--lp-text);
    background: var(--lp-bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--lp-primary-light);
    text-decoration: none;
    transition: color var(--lp-transition);
}

a:hover { color: var(--lp-primary); }

img { max-width: 100%; height: auto; }

/* ─── Utility ────────────────────────────────────────────────── */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lp-section {
    padding: 5rem 0;
}

.lp-section--alt {
    background: var(--lp-bg-alt);
}

.lp-section--dark {
    background: linear-gradient(135deg, var(--lp-primary-darker) 0%, var(--lp-primary) 100%);
    color: var(--lp-text-inverse);
}

.lp-section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.lp-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.lp-section--dark .lp-section__title {
    color: var(--lp-text-inverse);
}

.lp-section__subtitle {
    font-size: 1.125rem;
    color: var(--lp-text-muted);
    line-height: 1.7;
}

.lp-section--dark .lp-section__subtitle {
    color: rgba(255,255,255,0.7);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.4;
    border: 2px solid transparent;
    border-radius: var(--lp-radius-md);
    cursor: pointer;
    transition: all var(--lp-transition);
    text-decoration: none;
    white-space: nowrap;
}

.lp-btn:hover { text-decoration: none; transform: translateY(-1px); }
.lp-btn:active { transform: translateY(0); }

.lp-btn--primary {
    background: var(--lp-accent);
    color: var(--lp-primary-dark);
    border-color: var(--lp-accent);
}

.lp-btn--primary:hover {
    background: var(--lp-accent-hover);
    border-color: var(--lp-accent-hover);
    color: var(--lp-primary-dark);
    box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}

.lp-btn--secondary {
    background: transparent;
    color: var(--lp-text-inverse);
    border-color: rgba(255,255,255,0.4);
}

.lp-btn--secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: var(--lp-text-inverse);
}

.lp-btn--outline {
    background: transparent;
    color: var(--lp-primary);
    border-color: var(--lp-primary);
}

.lp-btn--outline:hover {
    background: var(--lp-primary);
    color: var(--lp-text-inverse);
}

.lp-btn--ghost {
    background: transparent;
    color: var(--lp-text-muted);
    border-color: var(--lp-border);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.lp-btn--ghost:hover {
    background: var(--lp-bg-alt);
    color: var(--lp-text);
}

.lp-btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.lp-btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.lp-btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--lp-transition-slow), box-shadow var(--lp-transition-slow);
}

.lp-nav--scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lp-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.lp-nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--lp-text-inverse);
    transition: color var(--lp-transition);
}

.lp-nav--scrolled .lp-nav__logo {
    color: var(--lp-primary);
}

.lp-nav__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--lp-accent);
    color: var(--lp-primary-dark);
    border-radius: var(--lp-radius-md);
    font-weight: 800;
    font-size: 0.875rem;
}

.lp-nav__logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lp-nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.lp-nav__link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--lp-transition);
}

.lp-nav__link:hover {
    color: var(--lp-text-inverse);
}

.lp-nav--scrolled .lp-nav__link {
    color: var(--lp-text-muted);
}

.lp-nav--scrolled .lp-nav__link:hover {
    color: var(--lp-text);
}

.lp-nav__cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lp-nav__cta .lp-btn--ghost {
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.3);
}

.lp-nav--scrolled .lp-nav__cta .lp-btn--ghost {
    color: var(--lp-text-muted);
    border-color: var(--lp-border);
}

.lp-nav--scrolled .lp-nav__cta .lp-btn--ghost:hover {
    color: var(--lp-text);
    background: var(--lp-bg-alt);
}

.lp-nav__mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--lp-text-inverse);
    transition: color var(--lp-transition);
}

.lp-nav--scrolled .lp-nav__mobile-toggle {
    color: var(--lp-text);
}

/* ─── Mobile Menu (hidden on desktop) ────────────────────────── */
.lp-mobile-menu {
    display: none;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--lp-primary-darker) 0%, var(--lp-primary) 50%, var(--lp-primary-light) 100%);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(245,158,11,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45,90,142,0.2) 0%, transparent 40%);
    pointer-events: none;
}

.lp-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-hero__content {
    color: var(--lp-text-inverse);
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: var(--lp-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-accent);
    margin-bottom: 1.5rem;
}

.lp-hero__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.lp-hero__title span {
    color: var(--lp-accent);
}

.lp-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    max-width: 520px;
}

.lp-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lp-hero__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.lp-hero__stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
}

.lp-hero__stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
}

/* Hero Calendar Mockup */
.lp-hero__visual {
    position: relative;
}

.lp-cal-mockup {
    background: var(--lp-bg-white);
    border-radius: var(--lp-radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.6s ease;
}

.lp-cal-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.lp-cal-mockup__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--lp-primary);
    color: var(--lp-text-inverse);
}

.lp-cal-mockup__title {
    font-size: 0.9375rem;
    font-weight: 600;
}

.lp-cal-mockup__dots {
    display: flex;
    gap: 6px;
}

.lp-cal-mockup__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-cal-mockup__body {
    padding: 0;
}

.lp-cal-mockup__row {
    display: grid;
    grid-template-columns: 100px repeat(7, 1fr);
    border-bottom: 1px solid var(--lp-border);
}

.lp-cal-mockup__row:last-child {
    border-bottom: none;
}

.lp-cal-mockup__row--header {
    background: var(--lp-bg-alt);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lp-text-muted);
}

.lp-cal-mockup__label {
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-right: 1px solid var(--lp-border);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.lp-cal-mockup__label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lp-cal-mockup__cell {
    padding: 0.625rem 0.25rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--lp-text-muted);
    position: relative;
    min-height: 40px;
}

.lp-cal-mockup__cell--header {
    padding: 0.5rem 0.25rem;
}

.lp-cal-mockup__booking {
    position: absolute;
    top: 4px;
    bottom: 4px;
    border-radius: var(--lp-radius-sm);
    font-size: 0.625rem;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 4px;
    white-space: nowrap;
    overflow: hidden;
}

/* ─── Value Props ────────────────────────────────────────────── */
.lp-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.lp-value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--lp-radius-lg);
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    transition: box-shadow var(--lp-transition), transform var(--lp-transition);
}

.lp-value-card:hover {
    box-shadow: var(--lp-shadow-lg);
    transform: translateY(-4px);
}

.lp-value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--lp-radius-lg);
    background: rgba(30,58,95,0.06);
    color: var(--lp-primary);
    margin-bottom: 1.25rem;
}

.lp-value-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lp-value-card__desc {
    font-size: 0.9375rem;
    color: var(--lp-text-muted);
    line-height: 1.6;
}

/* ─── Feature Showcase ───────────────────────────────────────── */
.lp-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}

.lp-feature:not(:last-child) {
    border-bottom: 1px solid var(--lp-border);
}

.lp-feature--reverse .lp-feature__visual {
    order: -1;
}

.lp-feature__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background: var(--lp-accent-light);
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--lp-radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-feature__badge--soon {
    background: rgba(30,58,95,0.08);
    color: var(--lp-primary);
}

.lp-feature__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.lp-feature__subtitle {
    font-size: 1.0625rem;
    color: var(--lp-text-muted);
    margin-bottom: 1.25rem;
}

.lp-feature__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-feature__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.lp-feature__list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--lp-success);
}

/* Feature Visuals */
.lp-feature__visual {
    position: relative;
}

.lp-feature-mockup {
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
}

.lp-feature-mockup__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--lp-bg-alt);
    border-bottom: 1px solid var(--lp-border);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lp-text-muted);
}

.lp-feature-mockup__body {
    padding: 1.25rem;
}

/* Mini Calendar rows in feature mockups */
.lp-mini-row {
    display: flex;
    gap: 2px;
    margin-bottom: 3px;
}

.lp-mini-cell {
    flex: 1;
    height: 28px;
    border-radius: 3px;
    background: var(--lp-bg-alt);
    position: relative;
}

.lp-mini-cell--booked {
    background: var(--lp-primary-light);
    opacity: 0.8;
}

.lp-mini-cell--inquiry {
    background: var(--lp-accent);
    opacity: 0.6;
}

.lp-mini-cell--free {
    background: var(--lp-success-light);
}

/* Status flow mockup */
.lp-status-flow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.lp-status-step {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--lp-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.lp-status-step--inquiry {
    background: var(--lp-accent-light);
    color: #92400e;
}

.lp-status-step--confirmed {
    background: var(--lp-success-light);
    color: #065f46;
}

.lp-status-step--done {
    background: rgba(30,58,95,0.08);
    color: var(--lp-primary);
}

.lp-status-arrow {
    color: var(--lp-text-light);
}

/* Widget embed mockup */
.lp-embed-mockup {
    background: var(--lp-bg-alt);
    border: 2px dashed var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.lp-embed-mockup__browser {
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.lp-embed-mockup__bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--lp-bg-alt);
    border-bottom: 1px solid var(--lp-border);
}

.lp-embed-mockup__bar-dots {
    display: flex;
    gap: 4px;
}

.lp-embed-mockup__bar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-border);
}

.lp-embed-mockup__bar-url {
    flex: 1;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    padding: 0.25rem 0.5rem;
    font-size: 0.6875rem;
    color: var(--lp-text-muted);
}

.lp-embed-mockup__content {
    padding: 1rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-embed-mockup__widget {
    background: var(--lp-primary);
    color: var(--lp-text-inverse);
    padding: 0.75rem 1.25rem;
    border-radius: var(--lp-radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
}

.lp-embed-mockup__caption {
    font-size: 0.75rem;
    color: var(--lp-text-light);
}

/* Channel logos mockup */
.lp-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.lp-channel-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
}

.lp-channel-card__icon {
    width: 28px;
    height: 28px;
    border-radius: var(--lp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    color: white;
    flex-shrink: 0;
}

.lp-sync-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--lp-success);
    font-weight: 600;
}

/* BackOffice feature items */
.lp-bo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.lp-bo-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    font-size: 0.8125rem;
    font-weight: 500;
}

.lp-bo-item__icon {
    width: 32px;
    height: 32px;
    border-radius: var(--lp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30,58,95,0.06);
    color: var(--lp-primary);
    flex-shrink: 0;
}

/* ─── Pricing ────────────────────────────────────────────────── */
.lp-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.lp-pricing-toggle__label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--lp-text-muted);
    cursor: pointer;
    transition: color var(--lp-transition);
}

.lp-pricing-toggle__label--active {
    color: var(--lp-text);
    font-weight: 600;
}

.lp-pricing-toggle__switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: var(--lp-border);
    border-radius: var(--lp-radius-full);
    cursor: pointer;
    transition: background var(--lp-transition);
}

.lp-pricing-toggle__switch--active {
    background: var(--lp-accent);
}

.lp-pricing-toggle__switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: transform var(--lp-transition);
    box-shadow: var(--lp-shadow-sm);
}

.lp-pricing-toggle__switch--active::after {
    transform: translateX(24px);
}

.lp-pricing-toggle__badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--lp-success);
    background: var(--lp-success-light);
    padding: 0.125rem 0.5rem;
    border-radius: var(--lp-radius-full);
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.lp-pricing-card {
    background: var(--lp-bg-white);
    border: 2px solid var(--lp-border);
    border-radius: var(--lp-radius-xl);
    padding: 2rem 1.5rem;
    position: relative;
    transition: box-shadow var(--lp-transition), transform var(--lp-transition);
}

.lp-pricing-card:hover {
    box-shadow: var(--lp-shadow-xl);
}

.lp-pricing-card--popular {
    border-color: var(--lp-accent);
    transform: scale(1.03);
}

.lp-pricing-card--popular:hover {
    transform: scale(1.05);
}

.lp-pricing-card--dimmed {
    opacity: 0.65;
}

.lp-pricing-card--dimmed:hover {
    opacity: 0.85;
}

.lp-pricing-card__popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-accent);
    color: var(--lp-primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: var(--lp-radius-full);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-pricing-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lp-pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.lp-pricing-card__amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lp-text);
    line-height: 1;
}

.lp-pricing-card__currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-text-muted);
}

.lp-pricing-card__period {
    font-size: 0.8125rem;
    color: var(--lp-text-muted);
}

.lp-pricing-card__free {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lp-success);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.lp-pricing-card__desc {
    font-size: 0.875rem;
    color: var(--lp-text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--lp-border);
}

.lp-pricing-card__features {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.lp-pricing-card__feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

.lp-pricing-card__feature--disabled {
    color: var(--lp-text-light);
}

.lp-pricing-card__check {
    flex-shrink: 0;
    color: var(--lp-success);
}

.lp-pricing-card__dash {
    flex-shrink: 0;
    color: var(--lp-text-light);
}

.lp-pricing-card__addon {
    font-size: 0.75rem;
    color: var(--lp-text-muted);
    text-align: center;
    margin-top: 0.75rem;
}

/* ─── Trust / Social Proof ───────────────────────────────────── */
.lp-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.lp-trust-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--lp-radius-lg);
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
}

.lp-trust-card__value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lp-primary);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.lp-trust-card__label {
    font-size: 0.9375rem;
    color: var(--lp-text-muted);
}

.lp-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.lp-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-text-muted);
}

.lp-trust-badge__icon {
    color: var(--lp-success);
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.lp-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-faq-item {
    background: var(--lp-bg-white);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    transition: box-shadow var(--lp-transition);
}

.lp-faq-item:hover {
    box-shadow: var(--lp-shadow-sm);
}

.lp-faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-text);
    text-align: left;
    gap: 1rem;
    transition: background var(--lp-transition);
}

.lp-faq-item__question:hover {
    background: var(--lp-bg-alt);
}

.lp-faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-text-muted);
    transition: transform var(--lp-transition);
}

.lp-faq-item--open .lp-faq-item__icon {
    transform: rotate(180deg);
}

.lp-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.lp-faq-item--open .lp-faq-item__answer {
    max-height: 300px;
}

.lp-faq-item__answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--lp-text-muted);
    line-height: 1.7;
}

/* ─── Final CTA ──────────────────────────────────────────────── */
.lp-final-cta {
    text-align: center;
    padding: 5rem 0;
}

.lp-final-cta__title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.lp-final-cta__subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.lp-final-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.lp-footer {
    background: var(--lp-primary-darker);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0 2rem;
}

.lp-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.lp-footer__brand-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 0.75rem;
    max-width: 300px;
}

.lp-footer__title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.lp-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-footer__link {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color var(--lp-transition);
}

.lp-footer__link:hover {
    color: rgba(255,255,255,0.9);
}

.lp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8125rem;
}

.lp-footer__bottom a {
    color: rgba(255,255,255,0.6);
}

.lp-footer__bottom a:hover {
    color: rgba(255,255,255,0.9);
}

/* ─── Scroll Animations ──────────────────────────────────────── */
.lp-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-fade-in--visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-fade-in--delay-1 { transition-delay: 0.1s; }
.lp-fade-in--delay-2 { transition-delay: 0.2s; }
.lp-fade-in--delay-3 { transition-delay: 0.3s; }
.lp-fade-in--delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
    .lp-hero__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .lp-hero__visual {
        max-width: 560px;
        margin: 0 auto;
    }

    .lp-hero__title {
        font-size: 2.5rem;
    }

    .lp-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lp-feature--reverse .lp-feature__visual {
        order: 0;
    }

    .lp-footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .lp-section {
        padding: 3.5rem 0;
    }

    .lp-section__title {
        font-size: 1.625rem;
    }

    .lp-hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .lp-hero__title {
        font-size: 2rem;
    }

    .lp-hero__subtitle {
        font-size: 1.0625rem;
    }

    .lp-hero__stats {
        gap: 1.5rem;
    }

    .lp-hero__stat-value {
        font-size: 1.375rem;
    }

    .lp-nav__links {
        display: none;
    }

    .lp-nav__mobile-toggle {
        display: flex;
    }

    .lp-nav__cta {
        display: none;
    }

    /* Mobile menu */
    .lp-mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 2000;
        background: var(--lp-primary-darker);
        display: flex;
        flex-direction: column;
        padding: 2rem 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .lp-mobile-menu--open {
        transform: translateX(0);
    }

    .lp-mobile-menu__close {
        align-self: flex-end;
        background: none;
        border: none;
        color: var(--lp-text-inverse);
        cursor: pointer;
        padding: 0.5rem;
        margin-bottom: 2rem;
    }

    .lp-mobile-menu__links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .lp-mobile-menu__link {
        display: block;
        padding: 0.875rem 0;
        color: rgba(255,255,255,0.8);
        font-size: 1.125rem;
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .lp-mobile-menu__link:hover {
        color: var(--lp-text-inverse);
    }

    .lp-mobile-menu__cta {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .lp-values {
        grid-template-columns: 1fr;
    }

    .lp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-pricing-card--popular {
        transform: none;
    }

    .lp-pricing-card--popular:hover {
        transform: none;
    }

    .lp-trust-grid {
        grid-template-columns: 1fr;
    }

    .lp-trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .lp-footer__inner {
        grid-template-columns: 1fr;
    }

    .lp-footer__bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .lp-final-cta__title {
        font-size: 1.75rem;
    }

    .lp-channel-grid {
        grid-template-columns: 1fr;
    }

    .lp-bo-grid {
        grid-template-columns: 1fr;
    }

    .lp-cal-mockup {
        transform: none;
    }

    .lp-cal-mockup:hover {
        transform: none;
    }

    .lp-cal-mockup__label {
        font-size: 0.6875rem;
        padding: 0.5rem;
    }

    .lp-cal-mockup__row {
        grid-template-columns: 70px repeat(7, 1fr);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .lp-container {
        padding: 0 1rem;
    }

    .lp-hero__actions {
        flex-direction: column;
    }

    .lp-hero__actions .lp-btn {
        width: 100%;
    }

    .lp-hero__stats {
        flex-direction: column;
        gap: 1rem;
    }

    .lp-pricing-toggle {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}
