/* ── LANDING TOKENS ─────────────────────────────────── */
:root {
    --land-blue: var(--color-primary, #2563eb);
    --land-indigo: var(--color-primary-dark, #1d4ed8);
    --land-dark: #040914;
    --land-surface: #0a0f1e;
    --land-glass: rgba(255, 255, 255, 0.04);
    --land-border: rgba(255, 255, 255, 0.08);
    --land-text: rgba(255, 255, 255, 0.9);
    --land-radius: 3px;
    --land-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* ── SCROLL INDICATOR ──────────────────────────────── */
.lnd-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lnd-scroll-hint:hover {
    color: var(--land-blue);
    bottom: 25px;
}

.lnd-scroll-hint i {
    font-size: 2rem;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

/* ── HERO ───────────────────────────────────────────── */
.lnd-hero {
    min-height: 100vh;
    background: #040914;
    /* Deep, rich dark */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.lnd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(29, 78, 216, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    animation: pulseHeroGlow 10s ease-in-out infinite alternate;
}

@keyframes pulseHeroGlow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.lnd-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4) 80%, transparent);
    pointer-events: none;
}

.lnd-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: #93c5fd;
    padding: 6px 16px;
    border-radius: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.lnd-badge .dot {
    width: 6px;
    height: 6px;
    background: #2563eb;
    border-radius: 3px;
    animation: blink 1.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.lnd-h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 24px;
}

.lnd-h1 .accent {
    background: linear-gradient(90deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lnd-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--land-text);
    max-width: 500px;
    margin-bottom: 36px;
}

.lnd-btns {
    display: flex;
    gap: 20px;
    /* margin-bottom: 48px; */
    flex-direction: row;
}

.lnd-btn-primary {
    background: linear-gradient(135deg, var(--land-blue), var(--land-indigo));
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 3px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lnd-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--land-indigo), var(--land-blue));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.lnd-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.55);
    color: #fff;
}

.lnd-btn-primary:hover::before {
    opacity: 1;
}

.lnd-btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.lnd-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* Social proof avatars */
.lnd-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lnd-avatars {
    display: flex;
}

.lnd-avatars img {
    width: 42px;
    height: 42px;
    border-radius: 3px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-left: -12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lnd-avatars img:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 2;
    border-color: var(--land-blue);
}

.lnd-avatars img:first-child {
    margin-left: 0;
}

.lnd-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.lnd-social-text {
    font-size: 0.82rem;
    color: var(--land-text);
    line-height: 1.4;
}

.lnd-social-text strong {
    color: #fff;
}

/* ── MOCK UI ─────────────────────────────────────────── */
.lnd-mock {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    max-width: 520px;
    margin-left: auto;
    transform: perspective(1000px) rotateY(-6deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lnd-mock:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.lnd-mock-bar {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lnd-mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.lnd-mock-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    padding: 5px 12px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
}

.lnd-mock-body {
    padding: 20px;
}

.lnd-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.lnd-stat-tile {
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-radius: 3px;
    padding: 12px 10px;
    text-align: center;
}

.lnd-stat-tile .val {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}

.lnd-stat-tile .lbl {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.lnd-stat-tile .delta {
    font-size: 0.65rem;
    color: #34d399;
    margin-top: 2px;
    font-weight: 700;
}

.lnd-cal-heading {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 700;
    margin-bottom: 10px;
}

.lnd-appt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lnd-appt:last-child {
    border-bottom: none;
}

.lnd-appt-time {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    min-width: 38px;
}

.lnd-appt-bar {
    width: 3px;
    height: 34px;
    border-radius: 3px;
    flex-shrink: 0;
}

.lnd-appt-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}

.lnd-appt-svc {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1px;
}

.lnd-appt-badge {
    margin-left: auto;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 3px 8px;
    border-radius: 3px;
}

/* ── TICKER ─────────────────────────────────────────── */
.lnd-ticker {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 44px;
    height: 100%;
}

.lnd-ticker-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: ticker 35s linear infinite;
    white-space: nowrap;
    will-change: transform;
    padding: 0 10px;
}

.lnd-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lnd-ticker-item i {
    color: #2563eb;
    margin-right: 2px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.3333%);
    }
}


/* ── SECTION COMMON ──────────────────────────────────── */
.lnd-section {
    padding: 100px 0;
}

.lnd-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--land-blue);
    margin-bottom: 16px;
}

.lnd-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: #1e293b;
    line-height: 1.15;
}

.lnd-h2.light {
    color: #fff;
}

.lnd-subtitle {
    font-size: 1rem;
    color: #475569;
    max-width: 560px;
    line-height: 1.75;
    margin-top: 12px;
}

.lnd-subtitle.light {
    color: rgba(255, 255, 255, 0.6);
}

/* ── FEATURES ────────────────────────────────────────── */
.lnd-features-bg {
    background: #f8faff;
}

.lnd-feat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 40px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.lnd-feat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lnd-feat-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.lnd-feat-card:hover::before {
    opacity: 1;
}

.lnd-feat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 2;
}

.lnd-feat-title {
    font-weight: 800;
    font-size: 1.05rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.lnd-feat-desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.lnd-feat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.06);
    color: var(--land-blue);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 3px;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.lnd-feat-chip .chip-stat {
    font-size: 0.9rem;
}

/* ── WHY US ──────────────────────────────────────────── */
.lnd-why-bg {
    background: linear-gradient(150deg, var(--land-dark) 0%, var(--land-surface) 100%);
    position: relative;
    overflow: hidden;
}

.lnd-why-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.lnd-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.lnd-benefit-item:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateX(6px);
}

.lnd-benefit-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--land-blue), var(--land-indigo));
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.lnd-benefit-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 3px;
}

.lnd-benefit-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    line-height: 1.6;
}

.lnd-benefit-text strong {
    color: #fff;
}

.lnd-price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 36px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lnd-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(96, 165, 250, 0.3);
}

.lnd-price-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.5;
}

.lnd-price-tag sup {
    font-size: 1.5rem;
    vertical-align: super;
    font-weight: 700;
}

.lnd-price-tag sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.lnd-price-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lnd-price-feature:last-of-type {
    border-bottom: none;
}

.lnd-price-feature i {
    color: #34d399;
    width: 18px;
}

/* ── STEPS ───────────────────────────────────────────── */
.lnd-steps-bg {
    background: #fff;
}

.lnd-steps-track {
    position: relative;
}

.lnd-steps-track::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--land-blue), var(--land-indigo));
    z-index: 0;
}

@media(max-width:991px) {
    .lnd-steps-track::before {
        display: none;
    }
}

.lnd-step-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.lnd-step-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--land-blue), var(--land-indigo));
    color: #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    position: relative;
}

.lnd-step-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 3px;
    border: 2px dashed rgba(37, 99, 235, 0.3);
}

.lnd-step-title {
    font-weight: 800;
    font-size: 1.05rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.lnd-step-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.65;
}

/* ── FAQ ─────────────────────────────────────────────── */
.lnd-faq-bg {
    background: #f8faff;
}

.lnd-faq-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 3px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.lnd-faq-item.open {
    border-color: rgba(37, 99, 235, 0.25);
}

.lnd-faq-btn {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-weight: 700;
    font-size: 0.96rem;
    color: #1e293b;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.3s ease;
}

.lnd-faq-btn:hover {
    color: var(--land-blue);
}

.lnd-faq-btn .icon {
    width: 28px;
    height: 28px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--land-blue);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.lnd-faq-item.open .icon {
    background: var(--land-blue);
    color: #fff;
    transform: rotate(45deg);
}

.lnd-faq-body {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.7;
}

.lnd-faq-item.open .lnd-faq-body {
    display: block;
}

/* ── FINAL CTA ───────────────────────────────────────── */
.lnd-cta-section {
    background: linear-gradient(135deg, var(--land-blue) 0%, var(--land-indigo) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.lnd-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.lnd-cta-h {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.lnd-cta-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 auto 40px;
}

.lnd-btn-white {
    background: #fff;
    color: var(--land-blue);
    border: none;
    padding: 18px 44px;
    border-radius: 3px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.lnd-btn-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    color: var(--land-blue);
}

.lnd-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.lnd-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
}

.lnd-cta-trust-item i {
    color: rgba(255, 255, 255, 0.5);
}

/* ── FLOATING CTA  ───────────────────────────────────── */
.lnd-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    background: rgba(37, 99, 235, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 56px;
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 3px;
    overflow: hidden;
    animation: fabIn 0.8s 0.8s both;
}

.lnd-fab span {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lnd-fab:hover {
    width: auto;
    padding: 0 24px;
    gap: 12px;
    background: var(--land-blue);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.5);
    transform: translateY(-5px);
}

.lnd-fab:hover span {
    max-width: 200px;
    opacity: 1;
}

@media (max-width: 768px) {
    .lnd-fab {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
}

@keyframes fabIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fabFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.lnd-fab:hover {
    width: auto;
    padding: 0 24px;
    gap: 12px;
    background: var(--land-blue);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.5);
    transform: translateY(-5px);
}

.lnd-fab:hover span {
    max-width: 200px;
    opacity: 1;
}

.lnd-fab-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.lnd-fab:hover .lnd-fab-icon {
    transform: rotate(15deg) scale(1.1);
}

/* ── REVEAL ──────────────────────────────────────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-up.revealed {
    opacity: 1;
    transform: none;
}

/* ── SEARCH ───────────────────────────────────────── */
.d-search-wrap {
    position: relative;
    max-width: 520px;
    margin-bottom: 24px;
}

.d-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    z-index: 2;
    pointer-events: none;
}

.d-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    padding: 15px 20px 15px 48px;
    font-size: 0.96rem;
    color: #f1f5f9;
    outline: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.d-search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.d-search-input:focus {
    border-color: rgba(37, 99, 235, 0.6);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.d-search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 3px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
    max-height: 370px;
    overflow-y: auto;
    z-index: 3000;
    padding: 8px;
}

.d-search-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 14px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s;
    color: #1e293b;
}

.d-search-item:hover {
    background: rgba(37, 99, 235, 0.06);
    color: #1e293b;
}

.d-search-item img {
    width: 44px;
    height: 44px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}

.d-search-name {
    font-weight: 700;
    font-size: 0.92rem;
}

.d-search-city {
    font-size: 0.76rem;
    color: #64748b;
    margin-top: 2px;
}

/* ── CATALOG COMPONENT STYLES ───────────────────────── */
/* Used by catalog.php both standalone and embedded */
/* ── MODALS ─────────────────────────────────────────── */
.welcome-promo-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2070;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.welcome-promo-modal.active {
    display: flex !important;
}

.welcome-promo-card {
    max-width: 500px;
    width: 90%;
    position: relative;
    background: rgba(6, 12, 26, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 3px !important;
    color: white !important;
    padding: 3rem !important;
    text-align: center;
}

.welcome-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    opacity: 0.7;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.welcome-modal-close:hover {
    opacity: 1;
}

.welcome-promo-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.welcome-promo-title {
    color: #fff !important;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.welcome-promo-desc {
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.6;
    margin-bottom: 35px;
}

.welcome-cta-btn {
    border-radius: 3px !important;
    background: linear-gradient(135deg, #2563eb, #60a5fa) !important;
    color: white !important;
    border: none !important;
}

.welcome-secondary-btn {
    border-radius: 3px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.welcome-promo-footer {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── OVERRIDES ───────────────────────────────────────── */
body.is-landing-page .main-content {
    background: #040914 !important;
}

body.is-landing-page .lnd-hero {
    background: #040914 !important;
}

@media (max-width: 576px) {
    .lnd-btns {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .lnd-btn-primary,
    .lnd-btn-ghost {
        width: 100% !important;
        justify-content: center !important;
    }

    .lnd-h1 {
        font-size: 2.2rem !important;
    }
}

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --border-color: #cbd5e1;
    --shadow-subtle: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.catalog-hero {
    padding: 120px 0 100px;
    background: #040914;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    /* Align with container-fluid padding */
    border-radius: 3px;
}

.catalog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(29, 78, 216, 0.1) 0%, transparent 50%);
    filter: blur(40px);
    pointer-events: none;
}

.text-gradient {
    background: linear-gradient(135deg, #2563eb, #2563eb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.filter-chip {
    padding: 10px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    color: var(--text-muted) !important;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
    box-shadow: var(--shadow-md);
}

.filter-chips-wrapper {
    max-height: 120px;
    overflow-y: auto;
    padding: 5px;
    scrollbar-width: thin;
}

@media (min-width: 992px) {
    .filter-chips-wrapper {
        max-height: none;
        overflow-y: visible;
    }
}

/* Catalog Cards */
.company-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}



.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-color);
}

.card-img-wrapper {
    height: 160px;
    background: #f1f5f9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-img-wrapper i {
    color: #cbd5e1;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.card-logo {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    z-index: 2;
}

.card-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.company-card:hover .card-img-wrapper i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color) !important;
    letter-spacing: 0.5px;
    border: 1px solid var(--border-color);
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main) !important;
}

.rating-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #f59e0b;
    margin-bottom: 12px;
    font-weight: 600;
}

.address-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.desc-truncate {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.btn-book-premium {
    display: block;
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    border: none;
    border-radius: 3px;
    color: white;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    font-size: 0.95rem;
}

.btn-book-premium:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* ── GALLERY ────────────────────────────────────────── */
.lnd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

.lnd-gallery-item {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.lnd-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Browser Frame in Gallery */
.lnd-gal-bar {
    height: 28px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lnd-gal-dot {
    width: 8px;
    height: 8px;
    border-radius: 3px;
}

.lnd-gal-url {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.65rem;
    color: #94a3b8;
    font-family: monospace;
    background: rgba(255, 255, 255, 0.5);
    padding: 2px 12px;
    border-radius: 3px;
}

.lnd-gallery-body {
    flex: 1;
    position: relative;
    background: #f1f5f9;
    padding: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mock Components */
.m-side-nav {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    background: #fff;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12px;
    gap: 12px;
    z-index: 5;
}

.m-nav-i {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    background: #f1f5f9;
}

.m-nav-i.active {
    background: #2563eb;
}

.m-top-stats {
    display: flex;
    gap: 10px;
    z-index: 4;
    margin-left: 48px;
}

.m-stat-card {
    flex: 1;
    background: #fff;
    border-radius: 3px;
    padding: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.m-stat-v {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #1e293b;
}

.m-stat-l {
    font-size: 0.6rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
}

.m-main-card {
    flex: 1;
    background: #fff;
    border-radius: 3px;
    margin-left: 48px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 4;
}

/* Specific Views */
.m-chart-viz {
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding-top: 20px;
}

.m-chart-bar {
    flex: 1;
    background: #2563eb;
    opacity: 0.8;
    border-radius: 3px;
}

.m-cal-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.m-cal-line {
    height: 20px;
    background: #f8fafc;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.m-cal-block {
    position: absolute;
    top: 2px;
    bottom: 2px;
    border-radius: 3px;
    background: #2563eb;
    opacity: 0.6;
}

.m-res-item-full {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.m-res-circ {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    background: #e2e8f0;
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-rev-card {
    border-left: 3px solid #f59e0b;
    padding-left: 10px;
}

.m-rev-stars {
    color: #f59e0b;
    font-size: 0.6rem;
    margin-bottom: 4px;
}

.m-rev-user {
    font-weight: 800;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.m-rev-txt {
    font-size: 0.65rem;
    color: #64748b;
    font-style: italic;
}

.lnd-gallery-item:hover .m-main-card {
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.lnd-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    z-index: 10;
    transition: all 0.4s ease;
    transform: translateY(10px);
}

.lnd-gallery-item:hover .lnd-gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.lnd-gallery-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.lnd-gallery-cat {
    color: #60a5fa;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}

/* ══════════════ UNIFIED DESIGN ADDITIONS ══════════════ */

/* ── LIGHT SECTION PREMIUM ───────────────────────────── */
.lnd-light-section {
    background: linear-gradient(180deg, #f0f6ff 0%, #f8fafc 50%, #f0f6ff 100%);
    position: relative;
}

.lnd-light-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(29, 78, 216, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

/* ── CATEGORY ITEMS (Pre koho) ──────────────────────── */
.lnd-cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 3px;
    padding: 13px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lnd-cat-item:hover {
    border-color: rgba(37, 99, 235, 0.28);
    background: rgba(37, 99, 235, 0.04);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

/* ── SIDE HUSTLE BOX ────────────────────────────────── */
.lnd-side-hustle-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(29, 78, 216, 0.06));
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 3px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.lnd-side-hustle-box:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.lnd-side-hustle-box-icon {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.lnd-side-hustle-box-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.lnd-side-hustle-box-text {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ── STAT CHIPS ─────────────────────────────────────── */
.lnd-stat-chip {
    flex: 1;
    min-width: 110px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 3px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lnd-stat-chip:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.18);
}

.lnd-stat-chip-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
}

.lnd-stat-chip-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* ── DOC PAGE HERO ──────────────────────────────────── */
.lnd-doc-hero {
    background: linear-gradient(150deg, #040914 0%, #0b1628 55%, #111827 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.lnd-doc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.22) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(29, 78, 216, 0.16) 0%, transparent 50%);
    filter: blur(40px);
    pointer-events: none;
    animation: pulseHeroGlow 10s ease-in-out infinite alternate;
}

.lnd-doc-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4) 20%, rgba(0, 0, 0, 0.4) 80%, transparent);
    pointer-events: none;
}

.lnd-doc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.lnd-doc-hero-icon {
    width: 64px;
    height: 64px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.35);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: #93c5fd;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.lnd-doc-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: #93c5fd;
    padding: 5px 16px;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.lnd-doc-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    margin-bottom: 0;
    line-height: 1.1;
}

/* ── DOC PAGE BODY ──────────────────────────────────── */
.lnd-doc-wrap {
    background: linear-gradient(180deg, #f0f6ff 0%, #f8fafc 60%);
    padding: 0 0 100px;
    min-height: 60vh;
}

.lnd-doc-card {
    background: #fff;
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 3px;
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 52px;
    margin-top: -44px;
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .lnd-doc-card {
        padding: 28px 20px;
    }

    .lnd-doc-hero {
        padding: 100px 0 60px;
    }
}

.lnd-doc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.07);
    border: 1px solid rgba(37, 99, 235, 0.18);
    color: var(--land-blue);
    padding: 6px 16px;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.lnd-doc-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -1px;
    margin-bottom: 0;
}

.lnd-doc-content p {
    color: #64748b;
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.lnd-doc-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1e293b;
    margin-top: 36px;
    margin-bottom: 12px;
    padding-left: 14px;
    border-left: 3px solid var(--land-blue);
}

.lnd-doc-footer {
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.lnd-doc-footer-note {
    font-size: 0.82rem;
    color: #94a3b8;
}

/* ── FINAL CTA SECTION ──────────────────────────────── */
.lnd-final-cta {
    background: linear-gradient(160deg, #0f2d6e 0%, #1d4ed8 60%, #2563eb 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    text-align: center;
}

.lnd-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.lnd-final-cta::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 70%);
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.lnd-final-cta-inner {
    position: relative;
    z-index: 1;
}

.lnd-final-cta-h {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.lnd-final-cta-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.lnd-final-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.lnd-final-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
}

.lnd-final-cta-trust-item i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* ── LANDING FOOTER DARK OVERRIDE ───────────────────── */
footer#kontakt.landing-footer {
    background: #040914 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
    margin-top: 0 !important;
}

footer#kontakt.landing-footer .text-muted,
footer#kontakt.landing-footer li.text-muted {
    color: rgba(255, 255, 255, 0.45) !important;
}

footer#kontakt.landing-footer h5,
footer#kontakt.landing-footer .text-main {
    color: rgba(255, 255, 255, 0.9) !important;
}

footer#kontakt.landing-footer a.text-muted {
    color: rgba(255, 255, 255, 0.45) !important;
    transition: color 0.2s ease;
}

footer#kontakt.landing-footer a.text-muted:hover {
    color: #60a5fa !important;
}

footer#kontakt.landing-footer p.text-muted {
    color: rgba(255, 255, 255, 0.45) !important;
}

footer#kontakt.landing-footer .bg-light {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.55) !important;
}

footer#kontakt.landing-footer .bg-light:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #60a5fa !important;
}

footer#kontakt.landing-footer .border-top,
footer#kontakt.landing-footer .border-light {
    border-color: rgba(255, 255, 255, 0.07) !important;
}

footer#kontakt.landing-footer .pt-5.border-top p {
    color: rgba(255, 255, 255, 0.3) !important;
}

footer#kontakt.landing-footer img {
    filter: brightness(0) invert(1) !important;
    opacity: 0.85;
}

/* ── PRIMARY BUTTON (used in doc pages) ─────────────── */
.lnd-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--land-blue) 0%, var(--land-indigo) 100%);
    color: #fff !important;
    border: none;
    padding: 14px 28px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.lnd-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.45);
    color: #fff !important;
}

/* ── ADMIN DASHBOARD PAGE HERO ──────────────────────── */
.dash-page-hero {
    background: linear-gradient(135deg, #040914 0%, #0a1628 55%, #111827 100%);
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    padding: 40px 44px;
    margin-bottom: 32px;
}

.dash-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 30%, rgba(37, 99, 235, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 20% 70%, rgba(29, 78, 216, 0.18) 0%, transparent 45%);
    filter: blur(30px);
    pointer-events: none;
}

.dash-page-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
    border-radius: 3px;
}

.dash-page-hero-inner {
    position: relative;
    z-index: 2;
}

.dash-page-hero .dash-h1 {
    color: #fff !important;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.dash-page-hero .dash-h1 .dash-username {
    background: linear-gradient(90deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dash-page-hero .dash-lead {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 0.93rem;
    margin-bottom: 20px;
}

.dash-page-hero .dash-h4 {
    color: rgba(255, 255, 255, 0.9) !important;
}



.dash-hero-icon-col {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dash-hero-icon-ring {
    width: 100px;
    height: 100px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 20px rgba(37, 99, 235, 0.05),
        0 0 0 40px rgba(37, 99, 235, 0.03);
}

@media (max-width: 767px) {
    .dash-page-hero {
        padding: 28px 24px;
    }
}

/* ── ADVANCED SEARCH FORM (SHARP) ───────────────────────── */
.lnd-advanced-search {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    display: flex;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 32px;
    transition: all 0.4s ease;
}

.search-fields-container {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 4px 16px;
    text-align: left;
    min-width: 0;
}

.search-field label {
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.search-field input,
.search-field select {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.95rem;
    color: #fff;
    outline: none;
    font-weight: 600;
    width: 100%;
}

.search-field select option {
    background: #0a0f1e;
    color: #fff;
}

.search-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 8px;
    flex-shrink: 0;
}

.search-submit-btn {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 3px;
    height: 56px;
    padding: 0 32px;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-submit-btn:hover {
    background: var(--land-blue);
    color: #fff;
}

@media (max-width: 768px) {
    .lnd-advanced-search {
        flex-direction: column;
        padding: 16px;
    }

    .search-fields-container {
        flex-direction: column;
        gap: 16px;
    }

    .search-divider {
        display: none;
    }

    .search-submit-btn {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }
}

/* ── UNIFIED SEARCH TRIGGER (PREMIUM) ──────────────────── */

.lnd-search-trigger {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 680px;
    height: 64px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 28px 0 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Blue shimmer underline on the bottom edge */
.lnd-search-trigger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--land-blue), #60a5fa, var(--land-blue));
    background-size: 200% 100%;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 3px;
}

.lnd-search-trigger:hover {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(37, 99, 235, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lnd-search-trigger:hover::after {
    width: 100%;
}

.trigger-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.trigger-inner i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lnd-search-trigger:hover .trigger-inner i {
    color: #60a5fa;
    opacity: 1;
    transform: scale(1.1);
}

.trigger-inner span {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 500;
    letter-spacing: -0.1px;
    transition: color 0.3s ease;
}

.lnd-search-trigger:hover .trigger-inner span {
    color: rgba(255, 255, 255, 0.65);
}

.trigger-hint {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lnd-search-trigger:hover .trigger-hint {
    color: #93c5fd;
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.25);
}

@media (max-width: 768px) {
    .lnd-search-trigger {
        height: 56px;
        padding: 0 16px;
        margin-bottom: 32px;
    }

    .trigger-hint {
        display: none;
    }
}

/* ─── NOTE: Search engine overlay/modal styles live in portal_ui.css ─── */
/* ── VOUCHER MODAL ───────────────────────────────────── */
.voucher-active-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999999999;
    align-items: center;
    justify-content: center;
    background: rgba(4, 9, 20, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
}

.voucher-active-modal.active {
    display: flex !important;
}

.voucher-active-card {
    max-width: 550px;
    width: 90%;
    position: relative;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 3px !important;
    color: white !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    padding: 3rem !important;
    text-align: center;
}

.voucher-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    opacity: 0.5;
    font-size: 1.5rem;
    transition: opacity 0.3s;
    cursor: pointer;
}

.voucher-modal-close:hover {
    opacity: 1;
}

.voucher-active-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #10b981);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3);
    animation: pulseGreen 2s infinite;
}

.voucher-active-title {
    color: #fff !important;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
}

.voucher-active-desc {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.voucher-cta-btn {
    border-radius: 3px !important;
    background: linear-gradient(135deg, #2563eb, #60a5fa) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.voucher-secondary-btn {
    border-radius: 3px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* ── TEMPLATE MODAL ──────────────────────────────────── */
.tmplt-modal .tmplt-card {
    max-width: 600px;
    width: 90%;
    margin: auto;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem !important;
}

.tmplt-title {
    color: #0f172a !important;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.tmplt-desc {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tmplt-nav-pills {
    background: #f1f5f9;
    border-radius: 3px;
    padding: 6px;
    display: flex;
}

.tmplt-nav-pills .nav-link {
    border-radius: 3px !important;
}

.tmplt-nav-link-inactive {
    color: #64748b !important;
    background: transparent !important;
}

.tmplt-preview-placeholder {
    height: 180px;
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 3px;
}

.tmplt-item-title {
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tmplt-item-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tmplt-cta-btn {
    border-radius: 3px !important;
}

/* ── PARTNERS SECTION ───────────────────────────────── */
.lnd-partners {
    padding: 60px 0;
    background: #040914;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lnd-partner-track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: opacity 0.3s ease;
}

.lnd-partner-track:hover {
    opacity: 0.8;
    filter: grayscale(0.5);
}

.lnd-partner-img {
    height: 32px;
    object-fit: contain;
}

/* ── STATISTICS SECTION ─────────────────────────────── */
.lnd-stats-bg {
    background: #040914;
    padding: 80px 0;
    position: relative;
}

.lnd-stat-big-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.lnd-stat-big-card:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-5px);
}

.lnd-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lnd-stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--land-blue);
}

/* ── TESTIMONIALS ──────────────────────────────────── */
.lnd-testimonials-bg {
    background: #f8faff;
    padding: 100px 0;
}

.lnd-testi-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.lnd-testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.lnd-testi-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1e293b;
    font-style: italic;
    margin-bottom: 24px;
    flex: 1;
}

.lnd-testi-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lnd-testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 3px;
    object-fit: cover;
    border: 2px solid var(--land-blue);
}

.lnd-testi-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: #0f172a;
}

.lnd-testi-role {
    font-size: 0.75rem;
    color: #64748b;
}

/* ── MOBILE FIRST SECTION ───────────────────────────── */
.lnd-mobile-section {
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.lnd-phone-mockup {
    position: relative;
    width: 280px;
    height: 580px;
    background: #000;
    border-radius: 3px;
    border: 8px solid #1e293b;
    margin: 0 auto;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.lnd-phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lnd-phone-header {
    height: 20px;
    background: #f1f5f9;
    border-radius: 3px;
    width: 60%;
}

.lnd-phone-card {
    height: 120px;
    background: #f8fafc;
    border-radius: 3px;
    border: 1px solid #e2e8f0;
}