/* SysTech — Landing pública (estilo institucional) */
@import url('brand.css');

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.lnd {
    min-height: 100dvh;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(var(--systech-blue-rgb), 0.18), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(var(--systech-purple-rgb), 0.1), transparent 50%),
        radial-gradient(ellipse 50% 40% at 0% 80%, rgba(var(--systech-cyan-rgb), 0.08), transparent 45%),
        #050a18;
    color: #e7eaf0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--systech-primary-light); }

/* Banner promocional */
.lnd-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(var(--systech-blue-rgb), 0.12);
    border-bottom: 1px solid rgba(var(--systech-cyan-rgb), 0.15);
    color: #c5cdd9;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
}

.lnd-promo strong { color: #fff; font-weight: 700; }

.lnd-promo-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--systech-primary-light);
    background: rgba(var(--systech-cyan-rgb), 0.12);
    border: 1px solid rgba(var(--systech-cyan-rgb), 0.25);
}

/* Nav shell — barra full-width no sticky */
.lnd-nav-shell {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 10, 24, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.lnd-nav-shell.scrolled {
    background: rgba(5, 10, 24, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.lnd-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px clamp(16px, 4vw, 24px);
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

.lnd-brand {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    flex-shrink: 0;
}

.lnd-brand img { height: 32px; width: auto; }

.lnd-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lnd-link {
    color: #c5cdd9;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
}

.lnd-link:hover { color: #fff; background: rgba(255,255,255,0.05); }

.lnd-menu-btn {
    display: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 18px;
    cursor: pointer;
}

.lnd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s;
    touch-action: manipulation;
    white-space: nowrap;
}

.lnd-btn:active { transform: scale(0.98); }

.lnd-btn-lg { padding: 14px 24px; font-size: 15px; border-radius: 14px; }

.lnd-btn-block { width: 100%; }

.lnd-btn-ghost {
    color: #e7eaf0;
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.lnd-btn-primary {
    color: #fff;
    background: var(--systech-gradient);
    box-shadow: 0 4px 20px rgba(var(--systech-blue-rgb), 0.28);
}

.lnd-btn-primary:hover {
    box-shadow: 0 8px 28px rgba(var(--systech-blue-rgb), 0.38);
}

/* Scroll reveal */
.lnd-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.lnd-reveal.visible {
    opacity: 1;
    transform: none;
}

/* Stats bar */
.lnd-stats {
    max-width: 1140px;
    margin: 0 auto 8px;
    padding: 0 clamp(16px, 4vw, 24px) 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.lnd-stats div {
    text-align: center;
    padding: 18px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.lnd-stats strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--systech-primary-light);
    margin-bottom: 4px;
}

.lnd-stats span {
    font-size: 12px;
    color: #8a92a3;
    line-height: 1.35;
}

/* Trust bar */
.lnd-trust-bar {
    max-width: 1140px;
    margin: 0 auto 32px;
    padding: 0 clamp(16px, 4vw, 24px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.lnd-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
}

.lnd-trust-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--systech-primary-light);
}

/* Tour tabs */
.lnd-tour {
    border-radius: 22px;
    border: 1px solid rgba(var(--systech-cyan-rgb), 0.2);
    background: rgba(0, 0, 0, 0.25);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lnd-tour-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.lnd-tour-tab {
    flex: 1;
    min-width: 120px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lnd-tour-tab:hover { color: #e7eaf0; background: rgba(255,255,255,0.04); }

.lnd-tour-tab.active {
    color: #fff;
    background: rgba(var(--systech-cyan-rgb), 0.12);
    border-color: rgba(var(--systech-cyan-rgb), 0.35);
}

.lnd-tour-panels { padding: 24px; }

.lnd-tour-panel > p {
    margin: 16px 0 0;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

.lnd-tour-screen {
    max-width: 520px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 16px;
    background: linear-gradient(160deg, #0c1220, #060a14);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lnd-tour-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
}

.lnd-tour-topbar em {
    font-style: normal;
    font-size: 11px;
    color: #34c759;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(52, 199, 89, 0.12);
}

.lnd-tour-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.lnd-tour-metrics div {
    padding: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    text-align: center;
}

.lnd-tour-metrics small {
    display: block;
    font-size: 9px;
    color: #8a92a3;
    text-transform: uppercase;
}

.lnd-tour-metrics b {
    font-size: 15px;
    color: var(--systech-primary-light);
}

.lnd-tour-chart {
    height: 72px;
    margin-bottom: 12px;
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(var(--systech-cyan-rgb),0.3), transparent 70%),
        linear-gradient(90deg, transparent 0%, rgba(var(--systech-cyan-rgb),0.15) 30%, rgba(52,199,89,0.2) 70%, transparent 100%);
    border: 1px solid rgba(255,255,255,0.06);
    animation: lnd-chart-pulse 3s ease-in-out infinite;
}

@keyframes lnd-chart-pulse {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}

.lnd-tour-list div,
.lnd-tour-os-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    margin-bottom: 6px;
    font-size: 13px;
}

.lnd-tour-list span { color: #94a3b8; }
.lnd-tour-list b { color: #e7eaf0; font-weight: 700; }

.lnd-tour-os-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 12px;
}

.lnd-tour-os-head span { color: #94a3b8; font-size: 12px; }

.lnd-tour-steps {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.lnd-tour-steps span {
    font-size: 10px;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    color: #6b7280;
}

.lnd-tour-steps span.done { color: #34c759; background: rgba(52,199,89,0.12); }
.lnd-tour-steps span.active { color: var(--systech-primary-light); background: rgba(var(--systech-cyan-rgb),0.15); }

.lnd-tour-plan-card {
    text-align: center;
    padding: 20px;
    margin-bottom: 12px;
    border-radius: 14px;
    background: rgba(var(--systech-cyan-rgb),0.08);
    border: 1px solid rgba(var(--systech-cyan-rgb),0.25);
}

.lnd-tour-plan-card small {
    display: block;
    font-size: 11px;
    color: #8a92a3;
    text-transform: uppercase;
}

.lnd-tour-plan-card b {
    display: block;
    font-size: 22px;
    margin: 6px 0;
}

.lnd-tour-plan-card span { color: var(--systech-primary-light); font-weight: 700; }

.lnd-tour-catalog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.lnd-tour-catalog-item {
    padding: 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    font-size: 12px;
}

.lnd-tour-catalog-item.wide { grid-column: 1 / -1; }
.lnd-tour-catalog-item span { display: block; color: #8a92a3; margin-bottom: 4px; }
.lnd-tour-catalog-item b { color: var(--systech-primary-light); font-size: 14px; }

.lnd-section-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    text-align: center;
    margin-top: 8px;
}

/* Mini grid & mocks */
.lnd-mini-grid {
    display: grid;
    gap: 12px;
}

.lnd-mini-grid article {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.lnd-mini-grid h3 {
    margin: 0 0 6px;
    font-size: 15px;
}

.lnd-mini-grid p {
    margin: 0;
    font-size: 13px;
    color: #94a3b8;
}

.lnd-catalog-mock {
    display: grid;
    gap: 12px;
}

.lnd-catalog-card {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.lnd-catalog-img {
    height: 80px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(var(--systech-cyan-rgb),0.2), rgba(var(--systech-blue-rgb),0.1));
}

.lnd-catalog-img.alt {
    background: linear-gradient(135deg, rgba(52,199,89,0.2), rgba(var(--systech-cyan-rgb),0.1));
}

.lnd-catalog-card b { display: block; margin-bottom: 4px; }
.lnd-catalog-card span { color: var(--systech-primary-light); font-weight: 800; }
.lnd-catalog-card em {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
    font-style: normal;
    color: #34c759;
    font-weight: 700;
}

.lnd-team-mock {
    display: grid;
    gap: 10px;
}

.lnd-team-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
}

.lnd-team-row span { color: #c5cdd9; }
.lnd-team-row b { color: var(--systech-primary-light); }
.lnd-team-row em {
    font-style: normal;
    font-size: 11px;
    color: #8a92a3;
}

/* Support compare */
.lnd-support-compare {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.lnd-support-col {
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
}

.lnd-support-col.bad {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.15);
}

.lnd-support-col.good {
    background: rgba(var(--systech-cyan-rgb), 0.06);
    border-color: rgba(var(--systech-cyan-rgb), 0.25);
}

.lnd-support-col h3 { margin: 0 0 14px; font-size: 17px; }

.lnd-support-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lnd-support-col li {
    padding: 8px 0;
    font-size: 14px;
    color: #c5cdd9;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lnd-support-col li:last-child { border-bottom: none; }

/* Pricing */
.lnd-pricing-hint {
    display: none;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 12px;
    font-weight: 600;
}

.lnd-pricing-wrap {
    margin: 0;
    padding: 0;
}

.lnd-pricing-wrap.is-scrollable .lnd-pricing-hint {
    display: block;
}

.lnd-pricing-wrap.is-scrollable {
    overflow-x: auto;
    margin: 0 calc(-1 * clamp(16px, 4vw, 24px));
    padding: 0 clamp(16px, 4vw, 24px) 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.lnd-pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}

.lnd-pricing-wrap.is-scrollable .lnd-pricing {
    display: flex;
    gap: 14px;
    min-width: max-content;
}

.lnd-pricing-wrap.is-scrollable .lnd-price-card {
    min-width: min(300px, 85vw);
    flex-shrink: 0;
    scroll-snap-align: center;
}

/* Sticky mobile CTA */
.lnd-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(5, 10, 24, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.35);
}

.lnd-sticky-cta .lnd-btn { width: 100%; }

.lnd-sticky-cta[hidden] { display: none !important; }

/* Hero */
.lnd-hero {
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 48px) clamp(16px, 4vw, 24px) clamp(40px, 6vw, 56px);
    display: grid;
    gap: clamp(28px, 5vw, 48px);
    align-items: center;
}

.lnd-hero h1 {
    font-size: clamp(30px, 7vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
}

.lnd-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--systech-primary-light), #34c759);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lnd-lead {
    font-size: clamp(16px, 3.5vw, 18px);
    color: #94a3b8;
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 560px;
}

.lnd-checklist {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.lnd-checklist li {
    position: relative;
    padding: 6px 0 6px 28px;
    color: #c5cdd9;
    font-size: 15px;
}

.lnd-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #34c759;
    font-weight: 800;
}

.lnd-checklist--compact li { font-size: 14px; }

.lnd-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.lnd-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 12px;
    color: #8a92a3;
    font-weight: 600;
}

.lnd-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.lnd-platforms span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #c5cdd9;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lnd-platforms .lnd-ico-inline { margin-right: 0; color: var(--systech-primary-light); }

/* Preview mock */
.lnd-preview {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(var(--systech-cyan-rgb), 0.25);
    background: linear-gradient(160deg, #0c1220, #060a14);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    animation: lnd-float 6s ease-in-out infinite;
}

@keyframes lnd-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.lnd-preview-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(0,0,0,0.35);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lnd-preview-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.lnd-preview-bar span:first-child { background: #ff5f57; }
.lnd-preview-bar span:nth-child(2) { background: #febc2e; }
.lnd-preview-bar span:nth-child(3) { background: #28c840; }

.lnd-preview-bar em {
    margin-left: auto;
    font-style: normal;
    font-size: 12px;
    color: #8a92a3;
}

.lnd-preview-body { padding: 20px; }

.lnd-preview-stat {
    display: block;
    width: auto;
    margin: 0;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.lnd-preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.lnd-preview-stat small {
    display: block;
    font-size: 10px;
    color: #8a92a3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lnd-preview-stat strong {
    display: block;
    font-size: 16px;
    margin-top: 4px;
    color: var(--systech-primary-light);
}

.lnd-preview-chart {
    height: 80px;
    margin: 8px 0 16px;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(var(--systech-cyan-rgb),0.25), transparent),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 40px);
    border: 1px solid rgba(255,255,255,0.06);
}

.lnd-preview-rows div {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    margin-bottom: 6px;
    font-size: 13px;
}

.lnd-preview-rows span { color: #94a3b8; }
.lnd-preview-rows b { color: #34c759; font-weight: 700; }

/* Sections */
.lnd-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 64px) clamp(16px, 4vw, 24px);
}

.lnd-section--alt {
    background: rgba(255, 255, 255, 0.02);
    max-width: none;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lnd-section--alt > *:not(.lnd-split) {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.lnd-eyebrow {
    display: inline-block;
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--systech-primary-light);
}

.lnd-section h2 {
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.lnd-sub {
    color: #94a3b8;
    margin: 0 0 32px;
    max-width: 640px;
    font-size: 16px;
}

/* Demo grid — legacy, kept for compatibility */
.lnd-demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.lnd-demo-card {
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.lnd-demo-icon { font-size: 32px; margin-bottom: 12px; }

.lnd-demo-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
}

.lnd-demo-card p {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.55;
}

/* Split layout */
.lnd-split {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    gap: clamp(28px, 5vw, 48px);
    align-items: center;
    padding: 0;
}

.lnd-section .lnd-split {
    padding: 0;
}

.lnd-phone-mock {
    display: flex;
    justify-content: center;
}

.lnd-phone-screen {
    width: min(280px, 100%);
    padding: 20px 16px;
    border-radius: 32px;
    border: 3px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, #0c1220, #050a18);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.lnd-phone-header {
    text-align: center;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--systech-primary-light);
}

.lnd-phone-tile {
    display: inline-block;
    width: calc(50% - 6px);
    margin: 4px 3px;
    padding: 16px 12px;
    border-radius: 14px;
    background: rgba(var(--systech-cyan-rgb),0.08);
    border: 1px solid rgba(var(--systech-cyan-rgb),0.2);
    text-align: center;
}

.lnd-phone-tile.wide { width: 100%; margin-top: 8px; }

.lnd-phone-tile b {
    display: block;
    font-size: 22px;
    color: #fff;
}

.lnd-phone-tile span {
    font-size: 11px;
    color: #8a92a3;
}

/* Features */
.lnd-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.lnd-feat {
    padding: 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s;
}

.lnd-feat:hover { border-color: rgba(var(--systech-cyan-rgb), 0.25); }

.lnd-feat-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(var(--systech-cyan-rgb), 0.08);
    border: 1px solid rgba(var(--systech-cyan-rgb), 0.18);
    color: var(--systech-primary-light);
}

.lnd-feat-ico svg { width: 22px; height: 22px; }

.lnd-ico-inline {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
    margin-right: 6px;
    color: var(--systech-primary-light);
}

.lnd-mini-grid h3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lnd-feat h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
}

.lnd-feat p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.55;
}

/* Compare */
.lnd-compare {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.lnd-compare-col {
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
}

.lnd-compare-col.bad {
    background: rgba(239, 68, 68, 0.06);
    border-color: rgba(239, 68, 68, 0.2);
}

.lnd-compare-col.good {
    background: rgba(52, 199, 89, 0.06);
    border-color: rgba(52, 199, 89, 0.25);
}

.lnd-compare-col h3 {
    margin: 0 0 14px;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lnd-compare-ico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.lnd-compare-ico--bad {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.lnd-compare-ico--bad::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: #ef4444;
    clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}

.lnd-compare-ico--good {
    background: rgba(52, 199, 89, 0.15);
    border: 1px solid rgba(52, 199, 89, 0.35);
}

.lnd-compare-ico--good::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid #34c759;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.lnd-compare-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lnd-compare-col li {
    padding: 8px 0;
    font-size: 14px;
    color: #c5cdd9;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lnd-compare-col li:last-child { border-bottom: none; }

/* Pricing cards */
.lnd-price-card {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lnd-price-card.destaque {
    border-color: rgba(var(--systech-cyan-rgb), 0.45);
    background: rgba(var(--systech-cyan-rgb), 0.06);
    box-shadow: 0 0 0 1px rgba(var(--systech-cyan-rgb), 0.15), 0 20px 50px rgba(var(--systech-blue-rgb), 0.15);
}

.lnd-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #94a3b8;
    margin-bottom: 10px;
    width: fit-content;
}

.lnd-badge--hot {
    background: rgba(255, 107, 53, 0.15);
    color: #ff8f4c;
}

.lnd-badge--pro {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
}

.lnd-price-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.lnd-price-old {
    font-size: 14px;
    color: #6b7280;
    text-decoration: line-through;
}

.lnd-price-val {
    font-size: 32px;
    font-weight: 800;
    color: var(--systech-primary-light);
    margin: 4px 0 16px;
    line-height: 1.1;
}

.lnd-price-val span {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
}

.lnd-price-block {
    margin-bottom: 14px;
    flex: 1;
}

.lnd-price-block h4 {
    margin: 0 0 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8a92a3;
}

.lnd-price-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    color: #94a3b8;
}

.lnd-price-block li {
    padding: 4px 0 4px 18px;
    position: relative;
}

.lnd-price-block li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--systech-primary-light);
}

.lnd-price-note {
    margin: 12px 0 0;
    font-size: 11px;
    color: #6b7280;
    text-align: center;
}

.lnd-plan-perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 32px;
    max-width: 1140px;
}

.lnd-plan-perks div {
    text-align: center;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.lnd-plan-perks strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.lnd-plan-perks span {
    font-size: 12px;
    color: #8a92a3;
}

/* FAQ */
.lnd-faq {
    max-width: 720px;
}

.lnd-faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.02);
    overflow: hidden;
}

.lnd-faq-item summary {
    padding: 16px 18px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    list-style: none;
}

.lnd-faq-item summary::-webkit-details-marker { display: none; }

.lnd-faq-item summary::after {
    content: '+';
    float: right;
    color: var(--systech-primary-light);
    font-size: 18px;
}

.lnd-faq-item[open] summary::after { content: '−'; }

.lnd-faq-item p {
    margin: 0;
    padding: 0 18px 16px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

/* CTA final */
.lnd-cta {
    text-align: center;
    padding: 64px 20px 72px;
    max-width: 720px;
    margin: 0 auto;
}

.lnd-cta h2 { margin-bottom: 12px; font-size: clamp(24px, 5vw, 32px); }

.lnd-cta p { color: #94a3b8; margin-bottom: 24px; }

.lnd-cta-foot {
    margin-top: 20px;
    font-size: 12px;
    color: #6b7280;
}

.lnd-cta-perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    font-size: 12px;
    font-weight: 600;
    color: #8a92a3;
}

.lnd-cta-perks li {
    position: relative;
    padding-left: 16px;
}

.lnd-cta-perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--systech-primary-light);
    opacity: 0.7;
}

/* Depoimentos */
.lnd-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lnd-quote {
    margin: 0;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.lnd-quote p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #c5cdd9;
    font-style: italic;
}

.lnd-quote footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lnd-quote footer strong { font-size: 14px; color: #fff; }
.lnd-quote footer span { font-size: 12px; color: #6b7280; }

/* Segurança */
.lnd-security {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.lnd-security article {
    padding: 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.lnd-security h3 {
    margin: 0 0 8px;
    font-size: 15px;
}

.lnd-security p {
    margin: 0;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.55;
}

/* Footer */
.lnd-foot {
    padding: 48px 20px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #6b7280;
    font-size: 13px;
}

.lnd-foot-grid {
    max-width: 1140px;
    margin: 0 auto 32px;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
    text-align: left;
}

.lnd-foot-brand p {
    margin: 12px 0 0;
    max-width: 280px;
    line-height: 1.6;
    color: #8a92a3;
}

.lnd-foot-col h4 {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #c5cdd9;
}

.lnd-foot-col a {
    display: block;
    margin-bottom: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.lnd-foot-col a:hover { color: var(--systech-primary-light); }

.lnd-foot-legal {
    max-width: 1140px;
    margin: 0 auto 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lnd-foot-legal h5 {
    margin: 0 0 8px;
    font-size: 13px;
    color: #c5cdd9;
}

.lnd-foot-legal p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    color: #6b7280;
    max-width: 720px;
}

.lnd-foot-copy {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
}

.lnd-foot-copy a {
    color: var(--systech-primary-light);
    text-decoration: none;
}

.lnd-foot .lnd-brand { justify-content: flex-start; }

/* WhatsApp flutuante */
.lnd-wa-float {
    position: fixed;
    right: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    z-index: 95;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lnd-wa-float:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.lnd-wa-float svg { width: 28px; height: 28px; }

.lnd-wa-float[hidden] { display: none !important; }

/* Responsive — PC · Tablet · Celular */

/* Tablet landscape / desktop pequeno */
@media (max-width: 1100px) {
    .lnd-pricing {
        grid-template-columns: repeat(2, 1fr);
    }

    .lnd-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .lnd-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .lnd-testimonials {
        grid-template-columns: 1fr;
    }

    .lnd-security {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet portrait */
@media (max-width: 900px) {
    .lnd-hero {
        grid-template-columns: 1fr;
    }

    .lnd-split {
        grid-template-columns: 1fr;
    }

    .lnd-split .lnd-catalog-mock,
    .lnd-split .lnd-team-mock,
    .lnd-split .lnd-phone-mock {
        order: -1;
        justify-self: center;
        width: 100%;
        max-width: 420px;
    }

    .lnd-catalog-mock {
        grid-template-columns: repeat(2, 1fr);
    }

    .lnd-nav-links .lnd-link {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* Tablet compacto + celular grande — menu hambúrguer */
@media (max-width: 1023px) {
    .lnd-menu-btn { display: block; }

    .lnd-nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: clamp(16px, 4vw, 24px);
        right: clamp(16px, 4vw, 24px);
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 16px;
        background: rgba(8, 14, 30, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    }

    .lnd-nav-links.open { display: flex; }

    .lnd-nav-links .lnd-link {
        padding: 12px 14px;
        font-size: 15px;
    }

    .lnd-nav-links .lnd-btn {
        width: 100%;
        margin-top: 4px;
    }

    .lnd-nav-links .lnd-btn-primary { order: -1; }
}

/* Celular */
@media (max-width: 639px) {
    .lnd-promo {
        font-size: 11px;
        padding: 8px 12px;
        line-height: 1.35;
    }

    .lnd-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .lnd-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .lnd-testimonials,
    .lnd-security {
        grid-template-columns: 1fr;
    }

    .lnd-foot-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lnd-stats span {
        font-size: 11px;
    }

    .lnd-hero-btns {
        flex-direction: column;
    }

    .lnd-hero-btns .lnd-btn {
        width: 100%;
    }

    .lnd-trust {
        flex-direction: column;
        gap: 6px;
    }

    .lnd-platforms {
        justify-content: flex-start;
    }

    .lnd-platforms span {
        flex: 1;
        justify-content: center;
        min-width: calc(33% - 8px);
    }

    .lnd-preview {
        animation: none;
    }

    .lnd-preview-stats {
        grid-template-columns: 1fr;
    }

    .lnd-tour-tab {
        min-width: 100%;
        flex: 1 1 100%;
    }

    .lnd-tour-panels {
        padding: 16px;
    }

    .lnd-tour-metrics {
        grid-template-columns: 1fr;
    }

    .lnd-features {
        grid-template-columns: 1fr;
    }

    .lnd-catalog-mock {
        grid-template-columns: 1fr;
    }

    .lnd-team-row {
        grid-template-columns: 1fr;
        gap: 4px;
        text-align: center;
    }

    .lnd-team-row b,
    .lnd-team-row em {
        justify-self: center;
    }

    .lnd-pricing {
        grid-template-columns: 1fr;
    }

    .lnd-pricing-wrap.is-scrollable .lnd-price-card {
        min-width: min(290px, 88vw);
    }

    .lnd-section-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .lnd-section-cta .lnd-btn {
        width: 100%;
    }

    .lnd-cta {
        padding-bottom: calc(88px + env(safe-area-inset-bottom));
    }

    .lnd-foot {
        padding-bottom: calc(32px + env(safe-area-inset-bottom));
    }

    .lnd-wa-float {
        bottom: calc(76px + env(safe-area-inset-bottom));
    }

    .lnd-faq-item summary {
        padding-right: 40px;
        line-height: 1.4;
    }
}

/* Desktop grande — hero lado a lado */
@media (min-width: 1024px) {
    .lnd-hero {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
        text-align: left;
    }

    .lnd-hero-copy {
        max-width: none;
    }

    .lnd-lead {
        margin-left: 0;
        margin-right: 0;
    }

    .lnd-checklist {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .lnd-hero-btns,
    .lnd-trust,
    .lnd-platforms {
        justify-content: flex-start;
    }

    .lnd-preview {
        width: 100%;
        max-width: none;
    }

    .lnd-split {
        grid-template-columns: 1fr 1fr;
    }

    .lnd-split .lnd-phone-mock,
    .lnd-split .lnd-catalog-mock,
    .lnd-split .lnd-team-mock {
        order: 0;
        justify-self: center;
    }

    .lnd-sticky-cta {
        display: none !important;
    }
}

/* Tablet: planos em grid 2x2, sem scroll */
@media (min-width: 640px) and (max-width: 1100px) {
    .lnd-pricing-wrap.is-scrollable {
        overflow: visible;
        margin: 0;
        padding: 0;
    }

    .lnd-pricing-wrap.is-scrollable .lnd-pricing-hint {
        display: none;
    }

    .lnd-pricing-wrap.is-scrollable .lnd-pricing {
        display: grid;
        min-width: 0;
    }

    .lnd-pricing-wrap.is-scrollable .lnd-price-card {
        min-width: 0;
        flex-shrink: 1;
    }
}

/* CTA fixo: celular e tablet retrato */
@media (max-width: 1023px) {
    .lnd-sticky-cta {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lnd-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .lnd-preview {
        animation: none;
    }

    .lnd-tour-chart {
        animation: none;
    }
}
